/* Animation On Page Load  */
    /* Bottom To Top */
    .slideFromBootmToTop {
        animation: slideFromBootmToTop 1s ease-in;
    }
    @keyframes slideFromBootmToTop {
        0% {
            transform: translateY(50px);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Animation On Scroll */
        /* Left To Right */
    .reveal {
        position: relative;
        opacity: 0;
    }
    .reveal.active {
        opacity: 1;
    }
    .active.fade-left {
        animation: fade-left 1s ease-in;
    }
    @keyframes fade-left {
        0% {
            transform: translateX(-100px);
            opacity: 0;
        }
        100% {
            transform: translateX(0);
            opacity: 1;
        }
    }
    /* Bottom To Top */
    .active.fade-bottom {
        animation: fade-bottom 1s ease-in;
    }
    @keyframes fade-bottom {
        0% {
            transform: translateY(50px);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

.ftco-navbar-light {
        background: #d4cc5c !important;
        z-index: 3;
        padding: 0;
        width: 100%;
        /* position: fixed; */
        -webkit-box-shadow: 0px 5px 20px -17px rgba(0, 0, 0, 0.34);
        -moz-box-shadow: 0px 5px 20px -17px rgba(0, 0, 0, 0.34);
        box-shadow: 0px 5px 20px -17px rgba(0, 0, 0, 0.34); 
    }
    @media (max-width: 991.98px) {
        .ftco-navbar-light {
            background: #fff;
            position: relative;
            top: 0;
            padding: 10px 15px; 
        } 
    }
    .ftco-navbar-light .navbar-brand {
        color: #000;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 20px;
        line-height: 1; 
    }
    .ftco-navbar-light .navbar-brand span {
        display: block;
        font-size: 12px;
        font-weight: 500; 
    }
    .ftco-navbar-light .navbar-brand:hover, .ftco-navbar-light .navbar-brand:focus {
        color: #000; 
    }
    @media (max-width: 767.98px) {
        .ftco-navbar-light .navbar-brand {
            margin-bottom: 20px; 
        } 
    }
    @media (max-width: 991.98px) {
        .ftco-navbar-light .navbar-nav {
            padding-bottom: 10px; 
        }
    }
    .ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
            font-size: 11px;
            padding-top: 2.5rem;
            padding-bottom: 60px;
            padding-left: 10px;
            padding-right: 10px;
            font-weight: 500;
            color: #4d4d4d;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            opacity: 1 !important;
            height: 51px;
    }
    .ftco-navbar-light .navbar-nav > .nav-item > .nav-link:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        bottom: 0;
        left: 0;
        background-color: #f6e9c6;
        visibility: hidden;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: all 0.2s ease-in-out 0s;
        -o-transition: all 0.2s ease-in-out 0s;
        transition: all 0.2s ease-in-out 0s;
        z-index: -1; 
    }
    .ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
        color: black; 
    }
        .ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover:before {
            visibility: visible;
            background-color: #f6e9c6;
            -webkit-transform: scaleX(1);
            -ms-transform: scaleX(1);
            transform: scaleX(1); 
        }
    @media (max-width: 991.98px) {
        .ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
            padding-left: 0;
            padding-right: 0;
            padding-top: .9rem;
            padding-bottom: .9rem; }
            .ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
            color: #fff; 
        } 
    }
    @media (max-width: 767.98px) {
        .ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05); 
        } 
    }
    .ftco-navbar-light .navbar-nav > .nav-item .dropdown-menu {
        border: none;
        background: #fff;

        -webkit-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
        -moz-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
        box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
        border-radius: 4px; 
    }
    .ftco-navbar-light .navbar-nav > .nav-item .dropdown-menu .dropdown-item {
        font-size: 20px;
        color: #000; 
    }
    .ftco-navbar-light .navbar-nav > .nav-item .dropdown-menu .dropdown-item:hover, .ftco-navbar-light .navbar-nav > .nav-item .dropdown-menu .dropdown-item:focus {
        background: #f6e9c6;
        color: #fff; 
    }
    @media (max-width: 991.98px) {
        .ftco-navbar-light .navbar-nav > .nav-item .dropdown-menu {
            display: block !important;
            background: #fff;
            -webkit-box-shadow: none;
            box-shadow: none; 
        } 
    }
    .ftco-navbar-light .navbar-nav > .nav-item.cta > a {
        color: #fff;
        background: #f6e9c6;
        border-radius: 0px; 
    }
    @media (max-width: 767.98px) {
        .ftco-navbar-light .navbar-nav > .nav-item.cta > a {
            padding-left: 15px;
            padding-right: 15px; 
        } 
    }
    @media (max-width: 991.98px) {
        .ftco-navbar-light .navbar-nav > .nav-item.cta > a {
            color: #fff;
            background: #f6e9c6;
            border-radius: 4px; 
        } 
    }
        .ftco-navbar-light .navbar-nav > .nav-item.active > a {
            color: black; /* menu text color*/
        }
        .ftco-navbar-light .navbar-nav > .nav-item.active > a:before {
        visibility: visible;
        background-color: #f6e9c6;
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1); 
    }
    @media (max-width: 991.98px) {
        .ftco-navbar-light .navbar-nav > .nav-item.active > a {
            color: #000; 
        }
        .ftco-navbar-light .navbar-nav > .nav-item.active > a:before {
            display: none; 
        } 
    }
    .ftco-navbar-light .navbar-toggler {
        border: none;
        color: rgba(0, 0, 0, 0.5) !important;
        cursor: pointer;
        padding-right: 0;
        text-transform: uppercase;
        font-size: 16px;
        letter-spacing: .1em; 
    }
    .ftco-navbar-light .navbar-toggler:focus {
        outline: none !important; 
    }
    .blue{
        /* margin-top: 5%; */
        background-color: #302c74;
        color: white;
        padding: 10px;
        margin-top:100px;
    }
.blueLine{
    width:98%;
    border:solid 5px rgb(40,44,115)  ;
}
.textBlue{
    color:#302c74;
}
.bold{
    font-weight: bold;
}
.backgrayTextBlue{
    background-color: #e4e4e4;
    padding-bottom: 30px;
}
.skyText{
    color:#0080c2;
    font-size: xx-large;
}
.colorBlue{
    color:#302c74 ;
    font-weight: bold;
}
.cardIndi{
    width: 100%;
    background-color:white;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    padding: 25px;
}
.btnBlueCard{
    background-color: rgb(40,44,115);
    border: none;
    color: white;
    font-weight: bold;
    padding: 10px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.droptext{
    font-size: 11px !important;
    font-weight: 500;
    color: #4d4d4d;
    text-transform: uppercase;
    letter-spacing: 2px;
}
/* mobile */
@media  screen and (max-width:320px){
    .blue{
        background-color: #302c74;
        color: white;
        padding: 10px;
        margin-top:0px;
    }
    .blueTextArea{
        font-size: small;
    }
    .searchImage{
        width: 20px;
        float: right;
        margin-top: -27px;
    }
}
@media  screen and (min-width:321px) and (max-width:375px){
    .blue{
        background-color: #302c74;
        color: white;
        padding: 10px;
        margin-top:0px;
    }
    .blueTextArea{
        font-size: small;
    }
    .searchImage{
        width: 20px;
        float: right;
        margin-top: -27px;
    }
}
@media  screen and (min-width:376px) and (max-width:425px){
    .blue{
        background-color: #302c74;
        color: white;
        padding: 10px;
        margin-top:0px;
    }
    .blueTextArea{
        font-size: small;
    }
    .searchImage{
        width: 20px;
        float: right;
        margin-top: -27px;
    }
}
/* tablet */
@media only screen and (min-width:601px) and (max-width:768px){
    .blue{
        background-color: #302c74;
        color: white;
        padding: 10px;
        margin-top:0px;
    }
    .blueTextArea{
        font-size: small;
    }
    .searchImage{
        width: 20px;
        float: right;
        margin-top: -24px;
        margin-right: 167px;
    }
}