/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #124265;
    text-decoration: none;
}

a:hover {
    color: #2487ce;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #2487ce;
    border-top-color: #9ec8ff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 75px;
    z-index: 996;
    background: #124265;
    width: 48px;
    height: 48px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    /* background: #2487ce; */
    transform: scale(1.1);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    background: rgba(1, 4, 136, 0.9);
}

#header.header-transparent {
    background: transparent;
}

#header.header-scrolled {
    /* background: rgba(1, 4, 136, 0.9); */
    height: 60px;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0 10px 30px;
    font-size: 25px;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 3px;
    left: 30px;
    background-color: #9ec8ff;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #fff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #124265;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul .active {
    color: #124265;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #2487ce;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 700px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 8px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile>ul>li>a:before {
    display: none;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #124265;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #2487ce;
}


.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
    position: static;
    display: block;
    margin: -10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: none;
    font-size: 12px;
}

.navbar-mobile .dropdown ul li,
.navbar-mobile .dropdown .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
    padding: 10px 20px;
    font-size: 12px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
    color: #2487ce;
    font-size: 12px;
}

.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    background: url("../img/title5.jpg");
    background-size: cover;
    position: fixed;
    width: 100%;
    padding: 120px 0 0 0;
    z-index: 99;
    transition: 1s;
}

#hero.header-scrolled {
    padding: 0px 0 0 0;
}

#hero:before {
    content: "";
    background: none;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#image {
    width: auto;
    height: 300px;
    transition: 1s;
}

#logo {
    transition: 1s;
}

#image.header-scrolled {
    width: auto;
    height: 100px;
}

#hero h1 {
    margin: 0 0 20px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: rgba(255, 255, 255, 1);
}

#hero p {
    color: rgba(200, 200, 200, 1);
    margin: 15px 0 0 0;
    font-size: 26px;
    font-family: "Poppins", sans-serif;
}

#hero p span {
    color: #9ec8ff;
    letter-spacing: 1px;
}

#hero .social-links {
    margin-top: 30px;
}

#hero .social-links a {
    font-size: 24px;
    display: inline-block;
    color: rgba(200, 200, 200, 1);
    line-height: 1;
    margin-right: 20px;
    transition: 0.3s;
}

#hero .social-links a:hover {
    color: #9ec8ff;
}

#hero .animated {
    animation: up-down 10s infinite ease-in-out alternate-reverse both;
}

#hero .animated.header-scrolled {
    animation: none;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    #hero {
        padding-top: 80px;
    }
}

@media (max-width: 575px) {
    #hero h1 {
        font-size: 32px;
        line-height: 36px;
    }

    #hero p {
        margin-top: 10px;
        font-size: 20px;
        line-height: 24px;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@-webkit-keyframes left-right {
    0% {
        transform: translateX(20px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes left-right {
    0% {
        transform: translateX(20px);
    }

    100% {
        transform: translateX(0px);
    }
}

@-webkit-keyframes right-left {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(20px);
    }
}

@keyframes right-left {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(20px);
    }
}

.hero-waves {
    display: block;
    margin-top: 60px;
    width: 100%;
    height: 30px;
    z-index: 5;
    position: relative;
}

.hero-waves.header-scrolled {
    margin-top: 0px;
}

.wave1 use {
    -webkit-animation: move-forever1 20s linear infinite;
    animation: move-forever1 20s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave2 use {
    -webkit-animation: move-forever2 16s linear infinite;
    animation: move-forever2 16s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}


@-webkit-keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@-webkit-keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}


/*--------------------------------------------------------------
# Hero2 Section
--------------------------------------------------------------*/
#hero2 {
    width: 100%;
    height: 100vh;
    position: relative;
    background-size: cover;
    position: relative;
    padding: 0px 0px 40px 0px;
}

#hero2:before {
    content: "";
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero2 .container {
    padding-top: 80px;
}

#hero2 h1 {
    margin: 0;
    font-size: 56px;
    line-height: 72px;
    color: #124265;
    font-family: "Poppins", sans-serif;
}

#hero2 h2 {
    color: #5e5e5e;
    margin: 10px 0 0 0;
    font-size: 22px;
}

#hero2 .btn-get-started {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 14px 50px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    background: #2487ce;
}

#hero2 .btn-get-started:hover {
    background: #3194db;
}

#hero2 .icon-boxes {
    margin-top: 50px;
}

#hero2 .icon-box {
    padding: 50px 25px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

#hero2 .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

#hero2 .icon-box .title a {
    color: #124265;
    transition: 0.3s;
}

#hero2 .icon-box .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

#hero2 .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: 36px;
    line-height: 1;
    color: #2487ce;
}

#hero2 .icon-box:hover {
    transform: scale(1.05);
}

#hero2 .icon-box:hover .title a {
    color: #2487ce;
}

@media (min-width: 1024px) {
    #hero2 {
        background-attachment: fixed;
    }
}

@media (max-height: 800px) {
    #hero2 {
        height: auto;
    }
}

@media (max-width: 992px) {
    #hero2 {
        height: auto;
    }

    #hero2 h1 {
        font-size: 28px;
        line-height: 36px;
        margin-top: 100px;
    }

    #hero2 h2 {
        font-size: 18px;
        line-height: 24px;
    }
}


/*--------------------------------------------------------------
# Featured
--------------------------------------------------------------*/

.featured {
    background: white;
}

.featured h3 {
    color: #124265;
}

.featured .nav-tabs {
    border: 0;
}

.featured .nav-link {
    border: 0;
    padding: 20px;
    color: #124265;
    transition: 0.3s;
}

.featured .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.featured .details h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.featured .details p {
    text-align: justify;
    text-align-last: none;
    padding: 5px 5px 0px 0px;
}

.featured .details p:last-child {
    margin-bottom: 0;
}

.featured .nav-link:hover h4 {
    color: #2487ce;
}

.featured .nav-link p {
    font-size: 14px;
    margin-bottom: 0;
    color: #444444;
}

.featured .nav-link.active {
    box-shadow: 0px 0 9px rgba(0, 0, 0, 0.08);
}

.featured .nav-link.active h4 {
    color: #2487ce;
}

@keyframes slide-down {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 1300px) {
    .featured #video {
        width: 300px;
    }
}

@media (max-width: 1120px) {
    .featured #video {
        width: 260px;
    }
}

@media (max-width: 992px) {
    .featured .nav-link {
        border: 0;
        padding: 15px;
    }

    .featured .details h3 {
        margin-top: 50px;
    }

    .featured #video {
        width: 720px;
    }
}

@media (max-width: 768px) {
    .featured #video {
        width: 540px;
    }
}



/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.featured {
    overflow: hidden;
}

.featured .swiper-pagination {
    margin-top: 80px;
    position: relative;
}

.featured .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #d1d1d7;
    opacity: 1;
}

.featured .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #124265;
}

.featured .swiper-slide-active {
    text-align: center;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f5f5ff;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #2487ce;
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #010483;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #124265;
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
}

#footer h3 {
    font-weight: 700;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 48px;
    line-height: 56px;
}

#footer p {
    font-size: 15;
    padding: 0;
    margin: 0 0 40px 0;
}

#footer .social-links {
    margin: 0 0 40px 0;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #124265;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    /* background: #2487ce; */
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}
