/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #00003C;
    text-decoration: none;
}

    a:hover {
        color: #080859d9;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #00003C;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #080859d9;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# 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 #00003C;
        border-top-color: #fff;
        border-bottom-color: #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #9696ffd1;
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    box-shadow: 0px 0 18px rgba(18, 49, 128, 0.8);
}

    #header .logo {
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-family: "Poppins", sans-serif;
    }

        #header .logo a {
            color: #00003C;
        }

        #header .logo img {
            max-height: 55px;
        }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.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: 10px 0 10px 30px;
        font-family: "Poppins", sans-serif;
        font-size: 15px;
        font-weight: 500;
        color: #37423b;
        white-space: nowrap;
        transition: 0.3s;
    }

        .navbar a i,
        .navbar a:focus i {
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #00003C;
            font-size: medium;
            transition: 0.3s;
            transition-timing-function: ease-out;
        }

    .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: #eef0eff0;
        box-shadow: 8px 8px 30px rgb(73 73 153);
        transition: 0.3s;
        border-radius: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            text-transform: none;
            font-weight: 500;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #00003C;
                background-color: #d3d3d361;
                font-size: medium;
                transition: 0.3s;
                transition-timing-function: ease-out;
            }

    .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: #37423b;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(32, 38, 34, 0.9);
    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: 6px;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #37423b;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #00003C;
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .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 {
                color: #00003C;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Page Links
--------------------------------------------------------------*/
.pageLinks {
    display: flex;
    justify-content: end;
    list-style: none;
    margin-top: 5px;
}

    .pageLinks li {
        color: #00003C;
        margin-left: 5px;
        font-weight: 600;
    }

        .pageLinks li a {
            margin-right: 5px;
        }

            .pageLinks li a:hover {
                color: #303090cf;
            }
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 70vh;
    /* background: url("../img/heroSlides/Slide1.PNG") top center; */
    background-size: cover;
    position: relative;
}

    #hero:before {
        content: "";
        background: #00003C;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero .container {
        padding-top: 72px;
    }

.carousel-inner {
    max-height: 400px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    padding: 20px 0;
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #fff;
    border-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 25%;
    text-indent: 0;
    color: #fff;
}

.carousel-indicators button h5 {
    margin-top: 1rem;
}

@media (max-width: 992px) {
    #hero .container {
        padding-top: 62px;
    }

    .carousel-indicators button h5 {
        display: none;
    }
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

#hero h2 {
    color: #eee;
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero .btn-learn-more {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
    background: #9696ffd1;
    position: absolute;
    bottom: 35px;
    left: -2%;
}

    #hero .btn-learn-more:hover {
        background: #9696ff;
        border: 2px solid #9696ff;
    }

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 100vh;
    }

        #hero h1 {
            font-size: 28px;
            line-height: 36px;
        }

        #hero h2 {
            font-size: 18px;
            line-height: 24px;
        }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 30px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f6f7f6;
}

.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: #9696ff;
            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: #37423b;
    }

.breadcrumbs {
    margin-top: 85px;
    text-align: center;
    background: #00003C;
    padding: 30px 0;
    color: #fff;
}

    .breadcrumbs h2 {
        font-size: 32px;
        font-weight: 500;
    }

    .breadcrumbs p {
        font-size: 14px;
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding-bottom: 10px;
    }

    .about .content ul i {
        font-size: 20px;
        padding-right: 4px;
        color: #00003C;
    }

.about .content {
    font-weight: 500;
}

    .about .content p {
        text-align: justify;
    }

    .about .content a {
        font-weight: 500;
        font-style: oblique;
        text-decoration: underline;
    }

        .about .content a:hover {
            color: #303090cf;
        }

@media (max-width: 992px) {
    .about .row .intugentLogo {
        display: none !important;
    }
}

.about .row .intugentLogo img {
    border-radius: 5px;
}

.about .row .servicesImage {
    background-color: #00003C;
    border-radius: 5px;
}

    .about .row .servicesImage img {
        border-radius: 5px;
    }

.about .row .teamImage {
    background-color: white;
    border-radius: 5px;
}

    .about .row .teamImage img {
        border-radius: 5px;
    }

.about .content span {
    color: #303090cf;
    font-weight: 600;
    font-style: oblique;
}

.about .content .learn-more-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #fff;
    background: #00003C;
    text-decoration: none;
}

    .about .content .learn-more-btn:hover {
        background: #080859d9;
        color: #fff;
        /* border: 2px solid #080859d9; */
    }


/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events .card {
    border: 0;
    padding: 0 30px;
    margin-bottom: 60px;
    position: relative;
}

.events .card-img {
    width: calc(100% + 60px);
    margin-left: -30px;
    overflow: hidden;
    z-index: 9;
    border-radius: 0;
}

    .events .card-img img {
        max-width: 100%;
        transition: all 0.3s ease-in-out;
    }

.events .card-body {
    z-index: 100;
    background: #fff;
    border-top: 4px solid #fff;
    padding: 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: -40px;
    transition: 0.3s;
}

.events .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

    .events .card-title a {
        color: #37423b;
        transition: 0.3s;
    }

.events .card-text {
    color: #5e5e5e;
    text-align: center;
}

.events .read-more a {
    color: #777777;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: 0.3s;
}

    .events .read-more a:hover {
        color: #c01b3f;
    }

.events .card:hover img {
    transform: scale(1.1);
}

.events .card:hover .card-body {
    border-color: #9696ff;
}

    .events .card:hover .card-body .card-title a {
        color: #00003C;
    }

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.content .learn-more-btn-product {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0;
    border: 2px solid #fff;
    color: #fff;
    background: #00003C;
    text-decoration: none !important;
}

    .content .learn-more-btn-product:hover {
        background: #080859d9;
        color: #fff !important;
    }


/*--------------------------------------------------------------
# services
--------------------------------------------------------------*/
.services .member {
    text-align: center;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #d8dad9;
    border-radius: 5px;
}

    .services .member:hover {
        box-shadow: 0px 3px 4px 2px #a9a9ffa3;
    }

    .services .member img {
        margin: -1px -1px 30px -1px;
        background-color: #00003c;
        border-radius: 5px;
    }

    .services .member .member-content {
        padding: 0 20px 30px 20px;
    }

    .services .member h4 {
        font-weight: 700;
        margin-bottom: 2px;
        font-size: 18px;
    }

    .services .member span {
        font-style: italic;
        display: block;
        font-size: 13px;
    }

    .services .member p {
        padding-top: 10px;
        font-size: 14px;
        font-style: italic;
        color: #aaaaaa;
    }

    .services .member .social {
        margin-top: 15px;
    }

        .services .member .social a {
            color: #7e9486;
            transition: 0.3s;
        }

            .services .member .social a:hover {
                color: #00003C;
            }

        .services .member .social i {
            font-size: 18px;
            margin: 0 2px;
        }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #37423b;
    font-size: 14px;
    background: #eef0ef;
}

.footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #777777;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #00003C;
    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: #080859d9;
        color: #fff;
        text-decoration: none;
    }
