/*
The MIT License

Copyright 2021 Jayson Fong <contact@jaysonfong.org>.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
/* 
    Created on : Mar 12, 2021, 10:52:22 AM
    Author     : Jayson Fong <contact@jaysonfong.org>
*/

/*
    TSA Colors:
    Blue: rgb(0, 93, 171)
    Red: rgb(238, 49, 36)
*/

/*
    General
*/

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body {
    font: normal 600 'Halant', serif;
}

hr {
    margin: 10px 0px;
}

.wrapper {
    margin-left: 5%;
    margin-right: 5%;
}

.right-text {
    text-align: right;
}

.piece {
    margin-bottom: 30px;
}

.piece:last-of-type {
    margin-bottom: 0px;
}

.row-no-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

br {
    margin: 25px 0;
    display: block;
}

section {
    margin-bottom: 25px;
}

.short {
    display: none;
}

/*
    Brand Header
*/
#brand {
    display: inline;
    margin-right: 10px;
}

#logo, #brand-name {
    display: inline-block;
    vertical-align: middle;
    font-size: 24px;
}

#logo {
    margin-right: 10px;
    height: 64px;
}

/*
    Navigation
*/
nav {
    background-color: rgb(255, 255, 255);
    color: rgb(85, 85, 85);
    width: 100%;
    padding: 10px 0;
    z-index: 1;
}

nav ul {
    list-style: none;
    display: inline;
}

.nav-item {
    display: inline;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.nav-item:last-of-type {
    border-right: none;
}

.nav-link {
    font-size: 20px;
    display: inline-block;
    padding: 15px 25px;
    color: rgb(85, 85, 85);
}

.nav-link[data-active='true'] {
    text-decoration: underline;
    
}

#salesButton {
    font-weight: 900;
    border: 1px solid rgba(0, 93, 171, 0.2);
    border-radius: 45px;
}

#salesButton:hover {
    background-color: rgba(32, 183, 232, 0.5);
    transition: 0.25s;
}

.sticky {
    position: fixed;
    top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/*
    Main Content
*/
main {
    padding: 15px 0;
    font-family: 'Lato', sans-serif;
}

.stickyPush {
    padding-top: 100px; /** Header Height + Header Padding **/
}

.topBuffer {
    margin-top: 15px;
}

.bottomBuffer {
    margin-bottom: 15px;
}

.bigImage {
    width: 100%;
    object-fit: cover;
}

.bigImage-right {
    border-bottom-left-radius: 45px;
}

.bigImage-left {
    border-bottom-right-radius: 45px;
}

.bigImage-contain {
    object-fit: contain;
}

.emphasis {
    text-decoration: underline;
    color: rgb(0, 93, 171);
    margin-bottom: 15px;
}

.emphasis span {
    color: rgb(0, 0, 0);
}

p:first-of-type {
    margin-top: 15px;
}

p {
    font-size: 24px;
}

.rotatingIcon:hover {
    transition: 1s;
    transform: rotate(360deg);
}

.fa-list:hover:before {
    content: "\f09d";
}

.button {
    border: 1px solid rgb(0, 93, 171);
    background-color: transparent;
    padding: 15px;
    font-size: 16px;
    color: rgb(0, 0, 0);
}

.button:hover {
    background-color: rgba(32, 183, 232, 0.5);
    transition: 0.25s;
}

.space {
    margin: 30px;
}

.button-center {
    text-align: center;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.content-center {
    height: 50%;
    margin-top: auto !important;
    margin-bottom: auto;
}

.center-content {
    text-align: center;
}

.headline-date {
    text-decoration: underline;
}

.headline {
    font-weight: 800;
    font-size: 24px;
}

p.signature {
    font-size: 18px;
    margin-left: 30px;
    text-align: right;
}

/*
    Input Controls
*/
textarea {
    display: block;
    width: 100%;
    padding: 5px;
    min-height: 96px;
    padding: 12px 20px;
}

#submitButton, input[type='submit'] {
    margin-top: 15px;
    margin-bottom: 15px;
    display: block;
}

input[type='text'], input[type='email'] {
    padding: 12px 20px;
    box-sizing: border-box;
    margin-bottom: 15px;
    display: block;
    width: 100%;
}

textarea, input[type='text'], input[type='email'] {
    border-radius: 10px;
    border: 1px solid rgb(0, 93, 171);
}

.submitItem {
    display: block;
    margin-bottom: 15px;
    width: 100%;
    background-color: rgba(80, 220, 100, 0.5);
    color: rgb(0, 0 ,0);
}

.hide {
    display: none;
}

.center {
    text-align: center;
}

/*
    Product
*/
.product {
    display: block;
    width: 100%;
    border: 1px solid rgba(32, 183, 232, 0.5);
    margin: 15px;
    border-radius: 24px;
    padding: 24px;
    color: rgb(0, 0, 0);
}

.product:hover {
    background-color: rgba(32, 183, 232, 0.5);
    transition: 0.25s;
}

.block {
    display: block;
}

.buttonSpace {
    margin: 5px;
}

#pricing {
    margin-left: 15px;
    list-style: none;
}

.listItem {
    border-bottom: 1px solid rgba(0, 0, 0, 0.7);
    padding: 5px;
    margin: 15px;
}

.listItem:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.forceHeightSmall {
    min-height: 250px;
}

.forceHeightLarge {
    min-height: 500px;
}

/*
    Feature Text
*/
.feature-card {
    padding: 30px 0;
    margin-top: 30px;
    margin-bottom: 30px;
}

.feature-card.blue {
    background-color: rgba(32, 183, 232, 0.5);
}

.feature-card-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}


.feature-circle {
    border-radius: 90px;
    padding: 20px;
    font-size: 24px;
    font-weight: 800;
    height: 64px;
}

.feature-circle.blue {
    background-color: rgba(32, 128, 246, 0.7);
    color: rgb(255, 255, 255);
}

.feature-text {
    
}

.rounded-box-right {
    border-top-right-radius: 45px;
    border-bottom-right-radius: 45px;
}

.rounded-box-left {
    border-top-left-radius: 45px;
    border-bottom-left-radius: 45px;
}

.side-text {
    display: inline;
    font-size: 24px;
}

.side-text.side-left {
    margin-left: 10px;
}

/*
    Footer
*/
footer {
    background-color: rgba(32, 183, 232, 0.5);
    padding: 30px 0;
    margin-top: 15px;
}

.footer-block {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 25px;
}

.footer-block:last-of-type {
    border-right: none;
}

#footer-content {
    padding-bottom: 15px;
}

footer .content {
    margin-left: 15px;
}

footer ul {
    list-style: none;
}

footer li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

footer li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 10px 0;
}

footer li a:hover {
    background-color: rgba(0, 93, 171, 0.05);
}

footer a {
    /*color: rgb(255, 255, 255);*/
    color: rgb(0, 0, 0);
    font-size: 18px;
}

.footer-block h2 {
    letter-spacing: 4px;
    font: normal 600 16px/1.4 'Halant', serif;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    text-transform: uppercase;
}

#logoFull {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.iconset, .iconset i {
    font-size: 36px;
    letter-spacing: 4px;
    text-align: center;
}

#noticeText, #noticeText a {
    font-size: 12px;
}

a.underline {
    text-decoration: underline;
}

@media only screen and (max-width: 922px) {
    
    #salesButton {
        display: none;
    }
    
}

@media only screen and (max-width: 768px) {
    
    .stickyPush {
        padding-top: 150px; /** Header Height + Header Padding **/
    }
    
    nav ul {
        display: block;
        text-align: center;
    }
    
    #brand {
        text-align: center;
        display: block;
    }
    
    .bigImage-right {
        border-bottom-left-radius: 0;
    }
    
    .bigImage-left {
        border-bottom-right-radius: 0;
    }
    
    .rounded-box-right {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    .rounded-box-left {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    
    .primaryDouble {
        display: none;
    }
    
}

@media only screen and (max-width: 476px) {
 
    .long {
        display: none;
    }
    
    .short {
        display: inherit;
    }
    
}

@media only screen and (max-width: 370px) {
 
    #logo {
        margin-right: 0;
    }
    
    #brand-name {
        display: none;
    }
    
}

@media print {
    
    nav, footer {
        display: none;
    }
    
}
