﻿body {
    font-family: "Open Sans", sans-serif;
}

h1, h2, h3, h4, h5 {
    font-family: Cinzel, serif;
}

/* ------------------------------ header ------------------------------- */
/* Checkbox for accepting terms                                          */
/* --------------------------------------------------------------------- */
.ChkBoxClass input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.sameLine label {
    display: inline;
}

.ChkboxFontSize {
    font-size: 14px;
}

/* ------------------------------ header ------------------------------- */
/* Backagournd color is default color for header an footer               */
/*                                                                       */
/* Step 1: Search and replace on #1646a0                                 */
/* --------------------------------------------------------------------- */
header {
    background-color: #e7e7e7;
    position: fixed;
    /* width adjest the entire header section width */
    width: 100%;
    Height: 140px;
    z-index: 100;
}

#logo {
    padding: 20px;
    margin-top:0px;
    margin-bottom:-20px;
    transition: all 0.5s ease;
}

    #logo img {
        transition: all 0.5s ease;
        /* Width adjusts the size of the Image */
        width: 200px;
	margin-top: -10px;
    }

header.scroll #logo {
    transition: all 0.5s ease;
    padding: 25px 0;
}

    header.scroll #logo img {
        /* should be 50px less that hte Logo Img with definition */
        width: 200px;
        transition: all 0.5s ease;
    }

.loginbox {
    position: absolute;
    top: 0;
    right: 24px;
    background-color: #FFF;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    font-size: 14px;
    padding: 0 10px;
}

.phone {
    background: linear-gradient(to bottom, #4982a4 0%, #3f708e 99.9%);
    border: 1px solid #b6b7b8;
    color: #FFF;
    border-radius: 4px;
    box-shadow: 0 2px 3px #000;
    padding: 0 10px;
    font-weight: bold;
}

    .phone a,
    .phone .fas {
        color: #FFF;
        font-size: 24px;
        line-height: 40px;
    }

    .phone .fas {
        display: inline-block;
        padding-right: 5px;
    }

#headerphone {
    position: absolute;
    top: 45px;
    right: 100px;
}

/* ------------------------------ footer ------------------------------- */
/* Change the background color of the footer to match that of the Header */
/* --------------------------------------------------------------------- */
footer {
    background-color: #e7e7e7;
    padding-top: 20px;
    color: #FFF;
}

    footer .callnow {
        font-family: Cinzel, serif;
        font-size: 1.6rem;
        line-height: 1;
        color:black;
    }

        footer .callnow span {
            color: #1FA543;
        }

        footer .callnow .phone {
            font-family: "Open-Sans", sans-serif;
            display: inline-block;
            margin-top: 20px;
            margin-bottom: 20px;
        }

.footer-logo img {
    margin-top: 30px;
    margin-bottom:10px;
    max-width: 200px;
}

footer .social {
    margin-top: 30px;
}

    footer .social a {
        color: #000000;
        font-size: 2rem;
        display: inline-block;
        margin: 5px;
    }

/* Address section of footer */
footer .address {
    color: #0a0a0a;
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: "Open Sans", sans-serif;
    margin-top: 20px;
    display: block;
    text-align: right;
}

/* Fax Number in footer section */
    footer .address span {
        color: #0a0a0a;
        font-size: 1.1rem;
    }

footer .awards img {
    max-width: 120px;
    max-height: 120px;
    vertical-align: top;
    margin-right: 10px;
    margin-bottom: 10px;
}

    footer .awards img.consumer-affairs {
        margin-right: 25px;
    }

footer .footer-bottom {
    background-color: #8e9091;
    /* Color controls the color of the Copyright text at the very bottom of the page */
    color: #ffffff;
    padding: 10px;
    font-size: 1rem;
}

    footer .footer-bottom a {
        /* Color controls the color of the hyperlink text at the very bottom of the page */
        color: #ffffff;
        text-decoration: underline;
    }

/* ------------ navigation ------------------ */

#navbtn {
    display: block;
    position: absolute;
    top: 40px;
    right: 30px;
    width: 50px;
    padding-left: 2px;
    padding-right: 2px;
    height: 50px;
    cursor: pointer;
    cursor: pointer;
    }

    #navbtn.sel {
    }

nav {
    position: absolute;
    top: 87px;
    right: 10px;
    background-image: url('../img/navarrow.svg');
    background-repeat: no-repeat;
    background-position: 260px top;
    background-size: 20px;
    padding-top: 15px;
    display: none;
    z-index: 100;
}

    nav ul {
        background-color: #fff;
        /* #1646a0 is the color of the border of the Nav box on the right top section */
        border: 2px solid #b6b7b8;
        border-top-width: 0;
        list-style: none;
        margin: 0;
        padding: 0;
    }

        nav ul li {
            list-style: none;
            border-bottom: 1px solid #DDD;
        }

            nav ul li:last-child {
                border-bottom-width: 0;
            }

            nav ul li a {
                line-height: 40px;
                padding: 5px 30px;
                font-size: 1.2rem;
                display: block;
                /* color of the text in the nav box on top right side */
                color: #1646a0;
                text-decoration: none;
            }

            nav ul li.current a {
                background-color: #e8ecf3;
            }

            nav ul li a:hover {
                background-color: #2066a9;
                color: #FFF;
            }

/* menu-global controls the color of the 3-bars on th right side under Login. */
.menu-global {
    backface-visibility: hidden;
    position: absolute;
    left: 11px;
    border-top: 3px solid White;
    width: 32px;
    transition: 0.55s;
}

.menu-top {
    top: 11px;
}

.menu-middle {
    top: 23px;
}

.menu-bottom {
    top: 35px;
}

#navbtn.sel .menu-top {
    backface-visibility: hidden;
    top: 23px;
    transform: rotate(220deg);
    -webkit-transform: rotate(220deg);
    transition: 0.55s 0.5s;
}

#navbtn.sel .menu-middle {
    opacity: 0;
}

#navbtn.sel .menu-bottom {
    backface-visibility: hidden;
    top: 23px;
    transform: rotate(-220deg);
    -webkit-transform: rotate(-220deg);
    transition: 0.55s 0.5s;
}

.page-wrap {
    padding-top: 130px;
}

    .page-wrap .alert {
        text-align: center;
    }



/* ---------------------- get started -------------------- */
.getstarted-container, .consultation-container {
    padding: 50px 0;
}

.page-link {
    display: inline-block;
    border-left-width: 0;
    border-right-width: 0;
    font-size: 0.9rem;
    line-height: 1.2rem;
    vertical-align: middle;
}

.squad .page-link,
.spouse .page-link {
    font-size: 0.8rem;
}

.spouse.squad .page-link {
    font-size: 0.7rem;
}

.page-item .arrow {
    background-image: url(../img/gs-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    line-height: 1.2rem;
    padding: 0.5rem 0;
    display: inline-block;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
}

.page-item.last .arrow {
    border-top-width: 0;
    border-bottom-width: 0;
}

.page-item:hover .arrow {
    background-image: url(../img/gs-arrow-hover.png);
}

.page-item.active .arrow {
    background-image: url(../img/gs-arrow-active.png);
}

.page-item.before .arrow {
    /* Background-color and Color that affect the arrow section at top */
    background-color: #28225f;
    border-color: #28225f;
    background-image: url(../img/gs-arrow-active.png);
}

.button {
    display: inline-block;
    vertical-align: top;
    padding-top: 16px;
    padding-left: 50px;
    padding-right: 37px;
    padding-bottom: 16px;
    border-radius: 6px;
    position: relative;
    font-size: 21px;
    line-height: 21px;
    transition: all 0.2s;
    text-align: center;
    box-shadow: 0 7px 7px rgba(46, 46, 46, 0.35);
    font-weight: 600;
    color: #fdfdfd;
}

    .button i {
        position: absolute;
        top: 16px;
        left: 26px;
    }

.button-green {
    background-color: #0ca537;
}

    .button-green:hover {
        background: #10bd40;
    }

/* --------------------- Continue Button Parameters ----------------------- */
/* Change the background color of the footer to match that of the Header    */
/* ------------------------------------------------------------------------ */
.page-item.active .page-link,
.btn-primary {
    background-color: #28225f;
    border-color: #2645cf;
}

.btn-primary {
    border-radius: 4px;
    font-size: 1.2rem;
}

.text-primary {
    color: #b6b7b8 !important;
    margin-top: 40px;
}

.hidden {
    display: none;
}

.card-image img {
    max-height: 40px;
}

.form-group.row.sameaddress {
    margin-top: 30px;
}


@media only screen and (max-width: 1800px) {

}

@media only screen and (max-width: 1200px) {

}

@media only screen and (max-width: 1120px) {
    header {
        position: relative;
    }

    .page-wrap {
        padding-top: 0;
    }

    .gs-pagination-steps {
        font-size: 0.8rem;
    }

    .page-item.spouse {
        font-size: 0.6rem;
    }
}

@media only screen and (max-width: 1000px) {

    .container {
        width: 100%;
    }
}

@media only screen and (max-width: 900px) {

    h2 {
        font-size: 1.5rem;
    }

    #logo {
        max-width: 80%;
    }

        #logo img {
            width: 100%;
        }

    #headerphone {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin: 5px;
    }

    #navbtn {
        top: 30px;
    }

    nav {
        top: 75px;
    }


    .getstarted-container, .consultation-container {
        width: 96%;
        margin: 0 2%;
    }

    .gs-pagination-steps {
        display: none;
    }

        .gs-pagination-steps .page-link {
            min-height: 118px;
        }

    #gs-form .program-title {
        font-size: 14px;
    }

    #gs-form h2, .consultation-container h2 {
        font-size: 2rem;
        text-align: center;
    }

    #gs-form .text-muted, .consultation-container .text-muted {
        font-size: 0.9rem;
        text-align: center;
    }

    #gs-form .gs-description {
        font-size: 14px;
    }

    footer .col-md-4 {
        text-align: center !important;
        padding-bottom: 20px;
    }

}

@media only screen and (max-width: 500px) {
    #gs-form .text-primary, .consultation-container .text-primary {
        margin-top: 0;
    }

    #gs-form .gs-program-selector {
        text-align: center;
        margin: 10px;
        border-radius: 5px;
        background-color: #e9f0f6;
    }

        #gs-form .gs-program-selector label.custom-radio {
            padding: 0;
            margin: 0;
            display: block;
            position: relative;
        }

    #gs-form .program-title {
        font-size: 2rem;
    }

    #gs-form .gs-program-selector h3 {
        font-size: 1.2rem;
    }

    #gs-form .gs-program-selector .custom-control-indicator {
        left: 15px;
        top: 15px;
    }

    .program-item-header {
        font-size: 1.2rem;
        font-weight: normal;
        padding: 10px 30px;
    }

    .payment-page-price {
        display: none;
    }

    #gs-form h4.text-primary {
        text-align: center;
    }

}

@media only screen and (max-width: 375px) {
    header .container {
        text-align: center;
    }

    .loginbox {
        right: 8px;
    }

    #navbtn {
        top: 25px;
        right: 15px;
    }

    nav {
        top: 65px;
        background-position: 275px top;
    }

}

@media only screen and (max-width: 320px) {
    #logo {
        padding-top: 25px;
    }

    nav {
        background-position: 255px top;
    }

}

