@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;600;700&display=swap');

:root {
    --navy: #073668;
    --deep-navy: #032b58;
    --blue: #0b67b2;
    --sky: #edf7fd;
    --text: #243d5b;
    --muted: #66809a;
    --orange: #e84b4b;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text);
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: .25s ease;
}

a:hover {
    color: var(--blue);
    text-decoration: none;
}

.container {
    max-width: 1140px;
}

.topbar {
    background: var(--deep-navy);
    color: #fff;
    font: 600 .85em 'Montserrat', sans-serif;
    letter-spacing: .05em;
    padding: 13px 0;
    text-transform: uppercase;
}

.topbar-social {
    display: flex;
    gap: 12px;
}

.topbar-social a {
    color: #fff;
    opacity: .85;
}

.site-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(4, 42, 84, .08);
    position: relative;
    z-index: 10;
}

.navbar {
    min-height: 76px;
}
.footer-content ul {
    margin: 0;
    padding: 0;
}
.navbar-brand {
    align-items: center;
    color: var(--navy);
    display: inline-flex;
    font-weight: 600;
    text-align: center;
 }
 
 

#mainNavigation .dropdown-menu .nav-link {
    text-transform:  capitalize;
    font-size: .9em;
    font-weight: 500;
}
#mainNavigation .nav-link {
    color: var(--navy) !important;
    font: 700 1em 'Montserrat', sans-serif;
}
.nav-link  .menu-group{

    padding: 30px 14px !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange) !important;
}
 
.dropdown-menu {
    border: 0;
    border-radius: 0;
    box-shadow: 0 8px 22px rgba(5, 50, 95, .14);
    font-size: 12px;
}

.dropdown-item {
    padding: 9px 16px;
}

/* Frontend menu dropdowns open on hover while every menu label remains a link. */
#mainNavigation .menu-group li {
    position: relative;
}

#mainNavigation .menu-group .dropdown-menu {
    display: none;
    left: 0;
    margin: 0;
    min-width: 190px;
    padding: 0;
    top: 100%;
}

#mainNavigation .menu-group .menu-child > .dropdown-menu {
    left: 100%;
    top: 0;
}

#mainNavigation .menu-group .menu-has-children:hover > .dropdown-menu,
#mainNavigation .menu-group .menu-has-children:focus-within > .dropdown-menu {
    display: block;
}

#mainNavigation .menu-group .menu-child > .nav-link {
    padding: 9px 16px;
    white-space: nowrap;
}

#mainNavigation .menu-arrow {
    border-bottom: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    display: inline-block;
    height: 7px;
    margin-left: 8px;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .2s ease;
    width: 7px;
}

#mainNavigation .menu-child > .nav-link .menu-arrow {
    transform: translateY(-1px) rotate(-45deg);
}

#mainNavigation .menu-has-children:hover > .nav-link .menu-arrow,
#mainNavigation .menu-has-children:focus-within > .nav-link .menu-arrow {
    transform: translateY(1px) rotate(225deg);
}

#mainNavigation .menu-child.menu-has-children:hover > .nav-link .menu-arrow,
#mainNavigation .menu-child.menu-has-children:focus-within > .nav-link .menu-arrow {
    transform: translateY(-1px) rotate(135deg);
}

/* Two-sided Bootstrap menu with the brand fixed in the center. */
.site-header .navbar {
    position: relative;
}

.site-header .navbar-brand-center {
    left: 50%;
    margin: 0;
    position: absolute;
    transform: translateX(-50%);
    z-index: 2;
}

.site-header .navbar-collapse {
    width: 100%;
}

.site-header .menu-group {
    align-items: center;
    display: flex;
    flex: 1 1 0;
}


.site-header .menu-right {
    justify-content: flex-end;
 }

@media (min-width: 992px) {
    .site-header .navbar-collapse {
        display: flex !important;
        justify-content: space-between;
    }
}

.hero-section {
    align-items: center;
    color: #fff;
    display: flex;
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

.hero-section>img,
.company-bg,
.career-background img {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}

.hero-section>img {
    filter: saturate(.82);
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(3, 35, 72, .85), rgba(5, 45, 91, .23) 75%), linear-gradient(0deg, rgba(3, 35, 72, .2), transparent);
    inset: 0;
    position: absolute;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.eyebrow,
.section-kicker {
    color: #64aae0;
    font: 700 12px 'Montserrat', sans-serif;
    letter-spacing: .16em;
    margin-bottom: 14px;
}

.hero-content h1 {
    font: 800 clamp(32px, 4.8vw, 64px)/1.13 'Montserrat', sans-serif;
    letter-spacing: .02em;
    margin: 0 0 18px;
}

.hero-content h1 span {
    color: #83c7f2;
}

.hero-description {
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 480px;
}

.btn-primary {
    background: var(--orange);
    border-color: var(--orange);
    font: 700 11px 'Montserrat', sans-serif;
    letter-spacing: .06em;
    padding-bottom: 12px;
    padding-top: 12px;
}

.btn-primary:hover {
    background: #cf3738;
    border-color: #cf3738;
}

.section {
    padding: 80px 0;
}

.section-heading {
    margin: 0 auto 38px;
    max-width: 670px;
    text-align: center;
}

.section-heading h2 {
    color: var(--navy);
    font: 800 clamp(23px, 3vw, 34px)/1.25 'Montserrat', sans-serif;
    margin: 0 0 12px;
}

.section-heading p {
    color: var(--muted);
    font-size: 14px;
    margin: 0 auto;
}

.section-kicker {
    color: var(--blue);
    display: block;
    font-size: 11px;
    margin-bottom: 9px;
}

.projects-section {
    background: #fff;
}

.project-card {
    box-shadow: 0 8px 24px rgba(5, 45, 85, .13);
    display: block;
    min-height: 280px;
    overflow: hidden;
    position: relative;
}

.project-card img,
.service-card img,
.career-card img {
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
    width: 100%;
}

.project-card img {
    height: 280px;
}

.project-card:hover img,
.service-card:hover img,
.career-card:hover img {
    transform: scale(1.06);
}

.project-card:after,
.news-tile:after,
.service-card:after,
.career-card:after {
    background: linear-gradient(0deg, rgba(3, 38, 78, .88), transparent 65%);
    content: '';
    inset: 0;
    position: absolute;
}

.project-caption {
    bottom: 20px;
    color: #fff;
    left: 22px;
    position: absolute;
    right: 20px;
    z-index: 1;
}

.project-caption span,
.news-label {
    color: #8ed1f7;
    display: block;
    font: 700 9px 'Montserrat', sans-serif;
    letter-spacing: .1em;
    margin-bottom: 6px;
}

.project-caption strong {
    display: block;
    font: 700 16px 'Montserrat', sans-serif;
    max-width: 220px;
}

.project-caption i {
    bottom: 2px;
    font-size: 18px;
    position: absolute;
    right: 0;
}

.text-link {
    color: var(--blue);
    font: 700 11px 'Montserrat', sans-serif;
    letter-spacing: .1em;
}

.company-section {
    color: #fff;
    overflow: hidden;
    padding: 85px 0 75px;
    position: relative;
}

.company-bg {
    filter: grayscale(1) blur(1px);
    opacity: .16;
}

.company-wash {
    background: linear-gradient(115deg, rgba(4, 64, 120, .98), rgba(29, 122, 176, .91));
    inset: 0;
    position: absolute;
}

.light-heading h2,
.light-heading p {
    color: #fff;
}

.light-heading .section-kicker {
    color: #b5dcf3;
}

.light-heading p {
    opacity: .85;
}

.stats-row {
    margin: 0 auto 35px;
    max-width: 870px;
}

.stat-item {
    border-right: 1px solid rgba(255, 255, 255, .25);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.stat-item:last-child {
    border: 0;
}

.stat-item i {
    color: #9cdbff;
    font-size: 22px;
    margin-bottom: 12px;
}

.stat-item strong {
    font: 800 27px 'Montserrat', sans-serif;
}

.stat-item sup {
    font-size: 14px;
}

.stat-item span {
    color: #c3e4f6;
    font-size: 11px;
    margin-top: 5px;
}

.service-row {
    margin-top: 58px;
}

.service-card {
    color: #fff;
    display: block;
    height: 225px;
    overflow: hidden;
    position: relative;
}

.service-card img {
    position: absolute;
}

.service-card span,
.service-card small {
    bottom: 33px;
    left: 22px;
    position: absolute;
    right: 18px;
    z-index: 1;
}

.service-card span {
    font: 700 13px 'Montserrat', sans-serif;
}

.service-card small {
    bottom: 14px;
    color: #cae9fa;
    font-size: 10px;
}

.partners-box {
    background: #fff;
    color: var(--navy);
    margin: 22px auto 0;
    max-width: 920px;
    padding: 18px 18px 0;
}

.partners-box h3 {
    font: 800 20px 'Montserrat', sans-serif;
    margin: 0 0 15px;
    text-align: center;
}

.partner-list {
    border-top: 1px solid #edf0f4;
}

.partner-item {
    align-items: center;
    border-right: 1px solid #edf0f4;
    display: flex;
    height: 70px;
    justify-content: center;
    text-align: center;
}

.partner-item:last-child {
    border: 0;
}

.partner-item strong {
    font: 800 15px 'Montserrat', sans-serif;
}

.partner-item span {
    font-size: 10px;
    font-weight: 600;
}

.partner-red {
    color: #ed3b42;
}

.partner-green {
    color: #247a4a;
    font-size: 33px;
    margin-right: 5px;
}

.partner-pink {
    color: #e52d4e;
    font-size: 29px !important;
}

.partner-blue {
    color: #1474ad;
    font-size: 22px !important;
}

.news-section {
    background: #fff;
}

.news-tabs {
    display: flex;
    gap: 27px;
    justify-content: center;
    margin: -14px auto 28px;
}

.news-tabs a {
    border-bottom: 2px solid transparent;
    color: var(--muted);
    font: 700 10px 'Montserrat', sans-serif;
    padding: 5px 0 10px;
}

.news-tabs a.active,
.news-tabs a:hover {
    border-color: var(--orange);
    color: var(--navy);
}

.news-mosaic {
    display: grid;
    gap: 4px;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 165px 165px;
    margin: auto;
    max-width: 950px;
}

.news-tile {
    color: #fff;
    overflow: hidden;
    position: relative;
}

.news-tile img {
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    width: 100%;
}

.news-tile:hover img {
    transform: scale(1.05);
}
.news-tile:hover {
    color: #fff !important;
}

.news-tile:after {
    background: linear-gradient(0deg, rgba(2, 38, 78, .91), transparent 72%);
}

.news-large {
    grid-row: 1 / 3;
}

.news-wide {
    grid-column: 2 / 4;
}

.news-tile .news-label,
.news-tile strong {
    bottom: 22px;
    left: 17px;
    position: absolute;
    z-index: 1;
}

.news-tile .news-label {
    bottom: 49px;
}

.news-tile strong {
    font: 700 11px/1.35 'Montserrat', sans-serif;
    right: 14px;
}

.news-large strong {
    font-size: 15px;
}

.news-large .news-label {
    bottom: 72px;
}

.career-section {
    color: #fff;
    overflow: hidden;
    padding: 75px 0 80px;
    position: relative;
}

.career-background {
    inset: 0;
    position: absolute;
}

.career-background:after {
    background: linear-gradient(90deg, rgba(4, 51, 99, .95), rgba(8, 89, 141, .7));
    content: '';
    inset: 0;
    position: absolute;
}

.career-background img {
    filter: saturate(.5);
}

 

.career-card {
    color: #fff;
    display: block;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.career-card img {
    position: absolute;
}

.career-card span,
.career-card small {
    bottom: 36px;
    left: 23px;
    position: absolute;
    z-index: 1;
}

.career-card span {
    font: 700 13px 'Montserrat', sans-serif;
    right: 15px;
}

.career-card small {
    bottom: 17px;
    color: #c8e8f8;
    font-size: 11px;
}

.btn-light {
    color: var(--navy);
    font: 700 11px 'Montserrat', sans-serif;
    padding-bottom: 12px;
    padding-top: 12px;
}

.reviews-section {
    padding-bottom: 95px;
}

.review-card {
    border: 1px solid #e1e9f0;
    box-shadow: 0 6px 18px rgba(11, 57, 97, .07);
    min-height: 310px;
    text-align: center;
}
.mod-logo img {
    width: 100%;
    height: auto;
    min-height: 250px;
}
.mod-logo {
    height:250px;
    overflow: hidden;
}
.review-logo {
    align-items: center;
    color: #17a4da;
    display: flex;
    font-size: 48px;
    justify-content: center;
    margin: 0 auto 7px;
}
.review-logo img {
    height: 100px;
    width: auto;
    border-radius: 100%;
}
.review-card h3 {
    color: var(--navy);
    font: 800 16px 'Montserrat', sans-serif;
    margin-bottom: 8px;
}

.stars {
    color: #ed4b51;
    font-size: 13px;
    letter-spacing: 3px;
}

.review-card p {
    color: var(--muted);
    font-size: 12px;
    font-style: italic;
    line-height: 1.7;
    margin: 22px auto 18px;
    max-width: 240px;
}

.review-card strong {
    color: var(--navy);
    font-size: 13px;
}

.logo-nova {
    color: #7c9b45;
    font: 800 35px 'Montserrat', sans-serif;
}

.logo-nova span {
    color: #d4ac42;
}

.logo-rise {
    color: #9b7846;
}

.site-footer {
    background: var(--deep-navy);
    color: #fff;
    padding: 52px 0 20px;
}

.site-footer .navbar-brand {
    color: #fff;
    margin-bottom: 5px;
    margin-right: 5px !important;
}



.footer-brand p {
    font-size: 11px;
    margin-bottom: 10px;
}

.footer-brand p i {
    color: #7bc6ef;
    margin-right: 9px;
    width: 13px;
}

.footer-column h3 {
    color: #fff;
    font: 700 12px 'Montserrat', sans-serif;
    margin: 6px 0 19px;
}

.footer-column a {
    display: block;
    font-size: 14px !important;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #fff;
}

.footer-column a:hover {
    color: #7bc6ef;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    margin-top: 38px;
    padding-top: 19px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #fff;
}

.back-to-top {
    align-items: center;
    background: transparent;
    border: 1px solid #78a7cc;
    border-radius: 50%;
    bottom: 18px;
    color: #78a7cc;
    display: flex;
    font-size: 11px;
    height: 30px;
    justify-content: center;
    position: fixed;
    right: 20px;
    width: 30px;
    z-index: 20;
}

.back-to-top:hover {
    background: #fff;
}

@media (max-width: 991.98px) {
    .site-header .navbar-brand-center {
        left: 50%;
    }

    .site-header .menu-group {
        display: flex;
        flex: none;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .site-header .menu-group .nav-item {
        width: 100%;
    }

    .site-header .menu-group .nav-link {
        border-bottom: 1px solid #edf1f5;
    }

    #mainNavigation .menu-group .dropdown-menu,
    #mainNavigation .menu-group .menu-child > .dropdown-menu {
        box-shadow: none;
        display: block;
        left: auto;
        min-width: 0;
        padding-left: 16px;
        position: static;
        top: auto;
        width: 100%;
    }

    #mainNavigation .menu-group .menu-child > .nav-link {
        padding-left: 16px !important;
        white-space: normal;
    }

    .nav-link {
        padding: 12px 0 !important;
    }

    .nav-contact {
        border: 0;
        margin: 0;
    }

    .navbar-collapse {
        background: #fff;
        padding: 12px 18px;
    }

    .hero-section {
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 767.98px) {
    .topbar .container>span:nth-child(2) {
        display: none;
    }

    .topbar {
        font-size: 8px;
    }

    .section {
        padding: 58px 0;
    }

    .hero-section {
        min-height: 560px;
    }

    .hero-content {
        padding: 60px 25px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-description {
        font-size: 14px;
    }

    .stat-item {
        border: 0;
        margin-bottom: 28px;
    }

    .service-row {
        margin-top: 40px;
    }

    .partners-box {
        padding-left: 9px;
        padding-right: 9px;
    }

    .partner-item {
        height: 58px;
    }

    .partner-item strong {
        font-size: 11px;
    }

    .news-mosaic {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 155px);
    }

    .news-large {
        grid-row: 1 / 3;
    }

    .news-wide {
        grid-column: 1 / 3;
        grid-row: 3;
    }

    .news-large strong {
        font-size: 12px;
    }

    .footer-bottom {
        align-items: flex-start;
        gap: 15px;
        flex-direction: column;
    }
}

@media (max-width: 400px) {
  
    
 
    .hero-content h1 {
        font-size: 28px;
    }
}
