body{
    width: 100%;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    color: #1A202C;
}

.font-quick-sand{
    font-family: 'Quicksand', sans-serif;
}

.font-source-sans-pro{
    font-family: 'Source Sans Pro', sans-serif;
}

h1,h2,h3,h4{
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
}

a,a:visited{
    text-decoration: none;
}

header{
    background: white;
    position: absolute;
    width: 100%;
    z-index: 2;
    border-bottom: 1px solid #1A202C;
}

#home header{
    background: none;
    border-bottom: 1px solid #FFFFFF;
}

.h0{
    font-size: 64px;
    font-weight: 700;
    display: block;
}

.btn:hover{
    border: none;
    background: #1A202C;
    color: #FFFFFF;
}

.btn-primary-lg{
    background-color: #FEAD34;
    padding: 16px 24px 16px 24px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    color: #1A202C;
    border: none;
}

.btn-secondary-lg{
    background: none;
    padding: 16px 24px 16px 24px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    color: #1A202C;
    border: 1px solid #1A202C;
}

.btn-secondary-lg-white{
    background: none;
    padding: 16px 24px 16px 24px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.btn-secondary-lg-grey{
    background: none;
    padding: 16px 24px 16px 24px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    color: #717D96;
    border: 1px solid #717D96;
}

.btn-secondary-md-grey{
    background: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    color: #717D96;
    border: 1px solid #717D96;
}

.container{
    max-width: 1080px;
}

.vertical-align-middle{
    display: flex;
    align-items: center;
}

.vertical-align-baseline{
    display: flex;
    align-items: baseline;
}

.vertical-align-end{
    display: flex;
    align-items: end;
}

.large-body-text{
    font-size: 24px;
}

.padding-left-0{
    padding-left: 0;
}

.padding-right-0{
    padding-right: 0;
}

.title-numbering{
    color: #717D96;
}

.jump-animation {
    animation: jump 2s infinite;
}

@keyframes jump {
    0%, 100% {
        transform: translateY(0); /* The button stays at its original position */
    }
    50% {
        transform: translateY(-20px); /* The button moves 10px up from its original position */
    }
}

.form-error-msg{
    color: red !important;
    font-weight: bold;
}

.field-error{
    border-color: red;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


/* ************ Header Navigation START ************ */
.navbar{
    padding: 24px 0;
}

.navbar-brand img{
    max-width: 150px;
}

.nav-bar-buttons{
    display: inline-block;
    float: right;
    font-size: 16px;
}

.navbar-item:not(:last-child){
    color: #1A202C;
    margin-right: 32px;
}

#home .navbar-item:not(:last-child){
    color: white;
}

.btn-free-consultation{
    color: #1A202C;
    padding: 12px 20px;
    border: 1px solid #1A202C;
}

#home .btn-free-consultation{
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.mobile-nav-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#btn-mobile-nav{
    color: #1A202C;
}

#home #btn-mobile-nav{
    color: white;
}

.navbar-item.mobile-nav-item{
    color: #1A202C !important;
}

.mobile-header-div{
    display: none;
}

/* --- Curtain Overlay Menu --- */
/* The Overlay (background) */
.overlay {
    display: none;
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    height: 0;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 99; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(255,255,255); /* Black fallback color */
    /*background-color: rgba(0,0,0, 0.9); !* Black w/opacity *!*/
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 120px; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: left; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
    padding-left: 25px;
}

/* The navigation links inside the overlay */
.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 18px;
    color: #181D29;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
    margin-bottom: 32px;
    font-weight: 700;
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
    color: #181D29;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}
/* --- Curtain Overlay Menu END --- */
/* ************ Header Navigation END ************ */

/* ************ Footer START ************ */
.footer-section-1{
    background-color: #2D3648;
    padding-top: 80px;
    padding-bottom: 80px;
}

footer .footer-promotion-title{
    line-height: normal;
    color: white;
}

.footer-promotion-desc{
    color: white;
    font-size: 24px;
}

.footer-section-2{
    font-size: 14px;
    background-color: #1A202C;
    padding-top: 44px;
    padding-bottom: 64px;
    color: white;
}

.footer-section-2 .row{
    display: flex;
    align-items: end;
}

.footer-nav-link{
    display: block;
    color: white;
}

.footer-social-media{
    text-align: right;
}

.footer-social-media-icon{
    max-width: 30px;
    display: inline-block;
}

.footer-left-container p{
    margin-bottom: 0;
}

.footer-copyright-txt-mobile{
    display: none;
}
/* ************ Footer END ************ */

@media (max-width: 860px){
    .navbar{
        display: none;
    }

    .mobile-header-div{
        display: block;
    }

    .overlay {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .container{
        max-width: 712px;
    }

    .footer-section-1{
        padding-top: 40px;
        padding-bottom: 40px;
        text-align: center;
    }

    .footer-promotion-title{
        font-size: 40px;
    }

    .footer-promotion-desc{
        padding: 40px 0;
        font-size: 16px;
    }

    .footer-left-container p {
        display: none;
    }

    .footer-nav-link-container{
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .footer-social-media {
        text-align: left;
        margin-bottom: 32px;
    }

    .footer-copyright-txt-mobile{
        display: block;
    }
}

@media (max-width: 425px) {
    .footer-promotion-title{
        font-size: 32px;
    }

    .footer-section-1{
        text-align: left;
    }
}

@media (max-width: 375px) {
    .container{
        max-width: 343px;
    }

    .footer-promotion-col{
        padding: 0;
    }

    #btn-get-free-consultation-footer{
        width: 100%;
    }
}

@media (max-width: 334px) {
    .footer-promotion-col{
        padding: 0 15px;
    }

}