/* 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;
    }
}

/* Right To Left */
.active.fade-right {
    animation: fade-right 1s ease-in;
}
@keyframes fade-right {
    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;
    }
}

/* Animation on Page Load */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}
.slideFromLeftOnPageLoad{
    animation: 1s ease-out 0s 1 slideInFromLeft;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100px);
    }
    100% {
        transform: translateX(0);
    }
}
.slideFromRightOnPageLoad{
    animation: 1s ease-out 0s 1 slideInFromRight;
}

.ftco-navbar-light {
        background-color: #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); 
    }
    .bg-dark{
        background-color: #302c74 !important;
    }
    @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;
    }
    .letterSpace{
        letter-spacing: 5px;
    }
    .droptext{
        font-size: 11px !important;
        font-weight: 500;
        color: #4d4d4d;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .bold{
        font-weight: bold;
    }
    .cont1{
        position: relative;
    }
    .overlay1 {
        position: absolute;
        top:0;
        margin-left: 4%;
        background:  linear-gradient(135deg, #302c74 60%, #d4cc5c 60%);;
        color: #f1f1f1;
        height: 385px;
        transition: .5s ease;
        opacity:0;
        color: white;
        font-size: 20px;
        padding: 10px;
        text-align: center;
    }
    .cont1:hover .overlay1 {
        opacity: 1;
    }
    .colorBlue{
        color: #302c74;
    }
    .line{
        background-color: black;
        width: 2px;
        height: 150px;
        margin-left: 50px;
    }
    .section1{
        background-image: url('../images/Path 47163.png');
        height: 1570px;
        background-repeat: no-repeat;
        
    }
    .leftback{
        background-color: #e4e4e4;
    }
    .rightBack{
        background-color: #302c74;
    }
    .formInput{
        width: 100%;
        border: none;
        outline: none;
        padding: 10px;
    }
    .btnsky{
        background-color: #72bdff;
        padding: 10px;
        border: none;
    }
    .btnsky:focus{
        outline: none;
    }
    .backYellow{
        background-color: #f7f6e2;
        padding-top: 30px;
        padding-bottom: 40px;
    }
    /* 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;
    }
    .line{
        background-color: black;
        width: 100%;
        height: 2px;
        margin-left: 0px;
    }
    .overlay1 {
        position: absolute;
        top:0;
        margin-left: 4%;
        background:  linear-gradient(135deg, #302c74 60%, #d4cc5c 60%);;
        color: #f1f1f1;
        height: 319px;
        transition: .5s ease;
        opacity:0;
        color: white;
        font-size: 20px;
        padding: 10px;
        text-align: center;
    }
}
@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;
    }
    .line{
        background-color: black;
        width: 100%;
        height: 2px;
        margin-left: 0px;
    }
    .overlay1 {
        position: absolute;
        top:0;
        margin-left: 4%;
        background:  linear-gradient(135deg, #302c74 60%, #d4cc5c 60%);;
        color: #f1f1f1;
        height: 379px;
        transition: .5s ease;
        opacity:0;
        color: white;
        font-size: 20px;
        padding: 10px;
        text-align: center;
    }
}
@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;
    }
    .line{
        background-color: black;
        width: 100%;
        height: 2px;
        margin-left: 0px;
    }
    .overlay1 {
        position: absolute;
        top:0;
        margin-left: 4%;
        background:  linear-gradient(135deg, #302c74 60%, #d4cc5c 60%);;
        color: #f1f1f1;
        height: 436px;
        transition: .5s ease;
        opacity:0;
        color: white;
        font-size: 20px;
        padding: 10px;
        text-align: center;
    }
}
/* 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;
    }
    .line{
        background-color: black;
        width: 100%;
        height: 2px;
        margin-left: 0px;
    }
    .overlay1 {
        position: absolute;
        top:0;
        margin-left: 3%;
        background:  linear-gradient(135deg, #302c74 60%, #d4cc5c 60%);;
        color: #f1f1f1;
        height: 759px;
        transition: .5s ease;
        opacity:0;
        color: white;
        font-size: 20px;
        padding: 10px;
        text-align: center;
    }
}