/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #242222;
    background: #fff;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}


/* =========================================================
   GLOBAL
========================================================= */

:root {
    --black: #292929;
    --dark: #303030;
    --blue: #0877c9;
    --cream: #e9dccd;
    --light: #f6f4f1;
    --border: #d8d8d8;
    --white: #fff;
}

.container {
    width: min(1180px, calc(100% - 100px));
    margin: 0 auto;
}

.section {
    padding: 70px 0;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 16px;
    font-weight: 500;
    text-transform: none;

    margin-bottom: 28px;
}

.blue-square {
    width: 7px;
    height: 7px;
    background: var(--blue);
    display: inline-block;
}

.section-label-light {
    color: #fff;
}

h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 500;
}

.text-link {
    font-size: 9px;
    letter-spacing: .2px;

    display: inline-flex;
    gap: 7px;
    align-items: center;
}

.text-link span {
    font-size: 12px;
}

.outline-button {
    display: inline-flex;

    border: 1px solid #fff;
    color: #fff;

    padding: 12px 20px;

    font-size: 9px;
    letter-spacing: 1px;

    margin-top: 20px;

    transition: .3s ease;
}

.outline-button:hover {
    background: #fff;
    color: var(--dark);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

    color: #fff;

    transition: .4s ease;
}

.site-header.scrolled {
    position: fixed;

    background: rgba(25, 25, 25, .94);

    backdrop-filter: blur(10px);
}

.header-inner {
    width: min(1180px, calc(100% - 100px));

    margin: auto;

    height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #fff;
}

.logo-mark {
    font-size: 21px;
}

.logo-text {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 500;
}

.menu-toggle {
    color: #fff;

    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 11px;
}

.menu-toggle i {
    display: block;

    width: 23px;
    height: 1px;

    background: #fff;

    position: relative;
}

.menu-toggle i+i {
    margin-left: -12px;
    transform: translateY(5px);
}


/* =========================================================
   FULLSCREEN MENU
========================================================= */

.fullscreen-menu {
    position: fixed;

    inset: 0;

    background: #252525;

    z-index: 200;

    color: #fff;

    visibility: hidden;
    opacity: 0;

    transition: .45s ease;
}

.fullscreen-menu.active {
    visibility: visible;
    opacity: 1;
}

.menu-close {
    position: absolute;

    top: 30px;
    right: 50px;

    color: #fff;

    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-close span {
    font-size: 10px;
}

.menu-close strong {
    font-size: 30px;
    font-weight: 300;
}

.menu-content {
    width: min(1180px, calc(100% - 100px));

    margin: auto;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-small {
    font-size: 10px;
    color: #999;

    margin-bottom: 35px;
    letter-spacing: 2px;
}

.main-navigation {
    display: flex;
    flex-direction: column;

    width: fit-content;
}

.main-navigation a {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(42px, 6vw, 85px);

    line-height: 1;

    padding: 7px 0;

    display: flex;
    gap: 25px;

    transition: .3s ease;
}

.main-navigation a span {
    font-family: "DM Sans", sans-serif;

    font-size: 10px;

    color: #777;

    padding-top: 12px;
}

.main-navigation a:hover {
    transform: translateX(15px);
    color: #bbb;
}

.menu-bottom {
    display: flex;

    justify-content: space-between;

    width: 100%;

    margin-top: 60px;

    color: #888;

    font-size: 10px;
}

.menu-bottom a {
    color: #fff;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    height: 650px;

    min-height: 650px;

    position: relative;

    color: #fff;

    overflow: hidden;
}

.hero-image {
    position: absolute;

    inset: 0;

background-image: url("../assets/hero.png");
    background-size: cover;

    background-position: center 45%;

    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(0, 60, 110, .55) 0%,
            rgba(0, 20, 40, .15) 40%,
            rgba(0, 0, 0, .9) 100%);
}

.hero-content {
    position: relative;

    z-index: 2;

    width: min(1180px, calc(100% - 100px));

    height: 100%;

    margin: auto;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding-top: 80px;
}

.hero-eyebrow {
    font-size: 9px;
    letter-spacing: 3px;

    margin-bottom: 18px;

    opacity: .8;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 66px);

    line-height: .92;

    font-weight: 500;

    letter-spacing: -2px;

    margin-bottom: 18px;
}

.hero-description {
    font-size: 10px;

    line-height: 1.5;

    max-width: 330px;

    color: #ddd;
}

.scroll-down {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;

    font-size: 9px;

    width: fit-content;
}

.scroll-circle {
    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, .8);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 17px;

    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}


/* =========================================================
   WHO WE ARE
========================================================= */

.who-section {
    background: #fff;
}

.who-intro {
    display: grid;

    grid-template-columns: 1fr 1fr;

    margin-bottom: 25px;
}

.who-heading h2 {
    max-width: 470px;
}

.who-action {
    display: flex;

    justify-content: flex-end;

    align-items: flex-end;

    padding-bottom: 4px;
}

.who-images {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 5px;
}

.who-image {
    height: 300px;

    overflow: hidden;

    border-radius: 10px;
}

.who-image img {
    height: 100%;
    object-fit: cover;

    transition: .6s ease;
}

.who-image:hover img {
    transform: scale(1.06);
}

/* =========================================================
   STATS SECTION
========================================================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    text-align: center;

    margin-top: 28px;
    padding: 0 10px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
}

.stat strong {
    font-family: "Times New Roman", serif;

    font-size: 27px;
    line-height: 1;

    font-weight: 500;

    color: #242222;

    letter-spacing: -0.5px;
}

.stat>span {
    position: absolute;

    top: -2px;
    margin-left: 75px;

    font-family: "Cormorant Garamond", serif;

    font-size: 24px;
    line-height: 1;

    font-weight: 500;

    color: #242222;
}

.stat p {
    margin-top: 7px;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    line-height: 1.2;

    font-weight: 400;

    color: #999;

    letter-spacing: 0.1px;
}

/* =========================================
   TRUSTED DEVELOPER LOGO STRIP
========================================= */

.partner-strip {
    width: 100%;
    background: #fff;
    border-top: 1px dashed #d9d9d9;
    border-bottom: 1px solid #ededed;
    overflow: hidden;
    padding: 18px 0;
}

.partner-container {
    width: 100%;
    display: flex;
    align-items: center;
}

/* =========================================
   FIXED TITLE AREA
========================================= */

.partner-title {
    width: 280px;
    min-width: 280px;
    height: 55px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding-left: 40px;
    padding-right: 25px;

    box-sizing: border-box;

    background: #fff;
    position: relative;
    z-index: 10;

    flex-shrink: 0;
}

.partner-star {
    width: 31px;
    min-width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    line-height: 1;
    color: #777;
    font-weight: 300;
}

.partner-title div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-title strong {
    display: block;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 500;

    color: #555;
    white-space: nowrap;
}

.partner-title small {
    display: block;

    margin-top: 3px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    line-height: 1.2;

    color: #777;
    letter-spacing: .2px;

    white-space: nowrap;
}

/* =========================================
   CAROUSEL AREA
========================================= */

.partner-marquee {
    flex: 1;
    min-width: 0;
    height: 55px;

    overflow: hidden;
    position: relative;
}

/* Fade only at the beginning/end of carousel */
.partner-marquee::before,
.partner-marquee::after {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;

    width: 45px;

    z-index: 5;
    pointer-events: none;
}

.partner-marquee::before {
    left: 0;
    background: linear-gradient(to right,
            #fff 0%,
            rgba(255, 255, 255, 0) 100%);
}

.partner-marquee::after {
    right: 0;
    background: linear-gradient(to left,
            #fff 0%,
            rgba(255, 255, 255, 0) 100%);
}

/* =========================================
   RUNNING LOGO TRACK
========================================= */

.partner-track {
    display: flex;
    align-items: center;

    width: max-content;
    height: 55px;

    gap: 70px;

    animation: partnerMarquee 32s linear infinite;

    will-change: transform;
}

@keyframes partnerMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.partner-marquee:hover .partner-track {
    animation-play-state: paused;
}

/* =========================================
   INDIVIDUAL LOGO
========================================= */

.partner-logo {
    width: 145px;
    min-width: 145px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.partner-logo img {
    display: block;

    width: auto;
    max-width: 125px;

    height: auto;
    max-height: 42px;

    object-fit: contain;

    /* ORIGINAL COLORS ALWAYS */
    filter: none;
    opacity: 1;

    transition: transform .3s ease;
}

.partner-logo:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.04);
}

/* =========================================================
   INFINITE ANIMATION
========================================================= */

@keyframes partnerMarquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* Pause when user hovers */

.partner-marquee:hover .partner-track {
    animation-play-state: paused;
}


/* =========================================================
   LAPTOP
========================================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .partner-title {
        width: 205px;

        min-width: 205px;

        padding-left: 40px;
    }

    .partner-track {
        gap: 55px;

        animation-duration: 30s;
    }

    .partner-logo {
        width: 130px;

        min-width: 130px;
    }

    .partner-logo img {
        max-width: 115px;

        max-height: 38px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 992px) {

    .partner-title {
        width: 190px;

        min-width: 190px;

        padding-left: 30px;
    }

    .partner-star {
        font-size: 26px;
    }

    .partner-track {
        gap: 40px;

        animation-duration: 26s;
    }

    .partner-logo {
        width: 120px;

        min-width: 120px;
    }

    .partner-logo img {
        max-width: 105px;

        max-height: 36px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    .partner-strip {
        padding: 16px 0;
    }

    .partner-container {
        display: block;
    }

    .partner-title {
        width: 100%;

        min-width: 100%;

        padding: 0 20px 12px;

        justify-content: flex-start;
    }

    .partner-star {
        font-size: 24px;
    }

    .partner-title strong {
        font-size: 7px;
    }

    .partner-title small {
        font-size: 6px;
    }

    .partner-track {
        gap: 30px;

        animation-duration: 22s;
    }

    .partner-logo {
        width: 105px;

        min-width: 105px;

        height: 48px;
    }

    .partner-logo img {
        max-width: 95px;

        max-height: 32px;
    }

}

/* =========================================================
   WHAT WE DO
========================================================= */

.what-we-do {
    width: 100%;
    background: #303030;
    padding: 82px 0 80px;
    overflow: hidden;
}

.what-we-do-inner {
    width: min(1175px, calc(100% - 60px));
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.what-we-do-heading {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 35px;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.heading-icon {
    width: 13px;
    height: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #087fc1;

    color: #303030;

    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;

    line-height: 13px;
}


/* =========================================================
   3 COLUMN GRID
========================================================= */

.what-we-do-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    align-items: stretch;
}


/* =========================================================
   COLUMN
========================================================= */

.what-column {
    display: flex;
    flex-direction: column;

    gap: 20px;

    min-width: 0;
}


/* =========================================================
   IMAGE
========================================================= */

.what-image {
    width: 100%;
    height: 280px;

    overflow: hidden;

    border-radius: 8px;

    background: #222;
}

.what-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.what-image:hover img {
    transform: scale(1.035);
}


/* =========================================================
   TEXT CARD
========================================================= */

.what-text {
    width: 100%;
    min-height: 167px;

    padding: 22px 23px 20px;

    box-sizing: border-box;

    background: #ffffff;

    border-radius: 9px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/* =========================================================
   CARD TITLE
========================================================= */

.what-text h3 {
    margin: 0 0 12px;

    color: #111111;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -0.3px;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.what-text p {
    margin: 0;

    color: #333333;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;
    line-height: 1.55;

    font-weight: 400;

    letter-spacing: 0;
}


/* =========================================================
   LAPTOP — 993px TO 1440px
========================================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .what-we-do {
        padding: 70px 0 70px;
    }

    .what-we-do-inner {
        width: min(1175px, calc(100% - 80px));
    }

    .what-we-do-heading {
        margin-bottom: 32px;
        font-size: 16px;
    }

    .what-we-do-grid {
        gap: 28px;
    }

    .what-column {
        gap: 18px;
    }

    .what-image {
        height: 260px;
    }

    .what-text {
        min-height: 160px;
        padding: 20px 21px;
    }

    .what-text h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .what-text p {
        font-size: 12px;
        line-height: 1.5;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 992px) {

    .what-we-do {
        padding: 65px 0;
    }

    .what-we-do-inner {
        width: calc(100% - 50px);
    }

    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .what-image {
        height: 240px;
    }

    .what-text {
        min-height: 155px;
        padding: 20px;
    }

    .what-text h3 {
        font-size: 17px;
    }

    .what-text p {
        font-size: 12px;
        line-height: 1.5;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    .what-we-do {
        padding: 55px 0;
    }

    .what-we-do-inner {
        width: calc(100% - 36px);
    }

    .what-we-do-heading {
        margin-bottom: 27px;

        font-size: 16px;
    }

    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .what-column {
        gap: 14px;
    }

    .what-image {
        height: 250px;
        border-radius: 7px;
    }

    .what-text {
        min-height: auto;
        padding: 21px 20px 22px;
        border-radius: 8px;
    }

    .what-text h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .what-text p {
        font-size: 13px;
        line-height: 1.55;
    }
}

/* =========================================================
   EXPLORE BY LOCATION
========================================================= */

.location-section {
    width: 100%;
    background: #ffffff;

    padding: 78px 0 82px;

    overflow: hidden;
}

.location-inner {
    width: min(1185px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.location-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 58px;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1;

    color: #111111;
}

.location-label-icon {
    width: 19px;
    height: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0869a9;

    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;

    line-height: 19px;
}


/* =========================================================
   MAIN TWO-COLUMN LAYOUT
========================================================= */

.location-layout {
    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 46px;

    align-items: start;
}


/* =========================================================
   LEFT COLUMN
========================================================= */

.location-left {
    min-width: 0;
}

.location-left h2 {
    margin: 0 0 57px;

    color: #332b2b;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 40px;
    line-height: 1.05;

    font-weight: 400;

    letter-spacing: -1.5px;
}


/* =========================================================
   LOCATION LIST
========================================================= */

.location-list {
    width: 100%;

    border-top: 1px solid #c8c8c8;
}

.location-item {
    width: 100%;
    height: 86px;

    padding: 0 20px;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #c8c8c8;

    cursor: pointer;

    font-family: "DM Sans", sans-serif;

    font-size: 26px;
    line-height: 1;

    font-weight: 400;

    color: #171717;

    transition:
        background-color .3s ease,
        color .3s ease;
}


/* =========================================================
   ACTIVE LOCATION
========================================================= */

.location-item.active {
    background: #f1e8d9;
}


/* =========================================================
   ARROW
========================================================= */

.location-arrow {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e7e7e7;

    color: #171717;

    font-family: Arial, sans-serif;

    font-size: 28px;
    font-weight: 300;

    line-height: 1;

    transition:
        background-color .3s ease,
        color .3s ease,
        transform .3s ease;
}

.location-item:hover .location-arrow {
    transform: translate(2px, -2px);
}

.location-item.active .location-arrow {
    background: #383333;
    color: #ffffff;
}


/* =========================================================
   RIGHT COLUMN
========================================================= */

.location-right {
    min-width: 0;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.location-description {
    margin: -5px 0 47px;

    max-width: 540px;

    color: #333333;

    font-family: "DM Sans", sans-serif;

    font-size: 21px;
    line-height: 1.55;

    font-weight: 400;
}

/* =========================================================
   EXPLORE BY LOCATION
========================================================= */

.location-section {
    width: 100%;
    background: #ffffff;

    padding: 78px 0 82px;

    overflow: hidden;
}

.location-inner {
    width: min(1185px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.location-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 58px;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;

    color: #111111;
}

.location-label-icon {
    width: 19px;
    height: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0869a9;

    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;

    line-height: 19px;
}


/* =========================================================
   MAIN TWO-COLUMN LAYOUT
========================================================= */

.location-layout {
    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 46px;

    align-items: start;
}


/* =========================================================
   LEFT COLUMN
========================================================= */

.location-left {
    min-width: 0;
}

.location-left h2 {
    margin: 0 0 57px;

    color: #332b2b;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 34px;
    line-height: 1.05;

    font-weight: 400;

    letter-spacing: -1px;
}


/* =========================================================
   LOCATION LIST
========================================================= */

.location-list {
    width: 100%;

    border-top: 1px solid #c8c8c8;
}

.location-item {
    width: 100%;
    height: 86px;

    padding: 0 20px;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #c8c8c8;

    cursor: pointer;

    font-family: "DM Sans", sans-serif;

    font-size: 21px;
    line-height: 1;

    font-weight: 400;

    color: #171717;

    transition:
        background-color .3s ease,
        color .3s ease;
}


/* =========================================================
   ACTIVE LOCATION
========================================================= */

.location-item.active {
    background: #f1e8d9;
}


/* =========================================================
   LOCATION ARROW
========================================================= */

.location-arrow {
    width: 41px;
    height: 41px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e7e7e7;

    color: #171717;

    font-family: Arial, sans-serif;

    font-size: 24px;
    font-weight: 300;

    line-height: 1;

    transition:
        background-color .3s ease,
        color .3s ease,
        transform .3s ease;
}

.location-item:hover .location-arrow {
    transform: translate(2px, -2px);
}

.location-item.active .location-arrow {
    background: #383333;
    color: #ffffff;
}


/* =========================================================
   RIGHT COLUMN
========================================================= */

.location-right {
    min-width: 0;
}


/* =========================================================
   RIGHT DESCRIPTION
========================================================= */

.location-description {
    margin: -5px 0 47px;

    max-width: 540px;

    color: #333333;

    font-family: "DM Sans", sans-serif;

    font-size: 18px;
    line-height: 1.5;

    font-weight: 400;
}


/* =========================================================
   LOCATION IMAGE
========================================================= */

.location-image {
    width: 100%;
    height: 348px;

    overflow: hidden;

    border-radius: 9px;

    background: #eeeeee;
}

.location-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        opacity .25s ease,
        transform .6s ease;
}

.location-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   LAPTOP — 993px TO 1440px
========================================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .location-section {
        padding: 68px 0 72px;
    }

    .location-inner {
        width: min(1185px, calc(100% - 90px));
    }

    .location-label {
        margin-bottom: 48px;
        font-size: 15px;
    }

    .location-label-icon {
        width: 18px;
        height: 18px;
        font-size: 14px;
        line-height: 18px;
    }

    .location-layout {
        column-gap: 40px;
    }

    .location-left h2 {
        font-size: 32px;
        margin-bottom: 48px;
    }

    .location-item {
        height: 82px;

        padding: 0 18px;

        font-size: 20px;
    }

    .location-arrow {
        width: 40px;
        height: 40px;

        font-size: 23px;
    }

    .location-description {
        margin-bottom: 42px;

        font-size: 17px;
        line-height: 1.5;
    }

    .location-image {
        height: 340px;
    }
}


/* =========================================================
   TABLET — MAX 992px
========================================================= */

@media screen and (max-width: 992px) {

    .location-section {
        padding: 65px 0;
    }

    .location-inner {
        width: calc(100% - 50px);
    }

    .location-label {
        margin-bottom: 42px;
        font-size: 15px;
    }

    .location-layout {
        grid-template-columns: 1fr;

        row-gap: 55px;
    }

    .location-left h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .location-item {
        height: 78px;

        font-size: 20px;
    }

    .location-arrow {
        width: 40px;
        height: 40px;

        font-size: 23px;
    }

    .location-description {
        margin-bottom: 30px;

        font-size: 18px;
        max-width: 600px;
    }

    .location-image {
        height: 360px;
    }
}


/* =========================================================
   MOBILE — MAX 768px
========================================================= */

@media screen and (max-width: 768px) {

    .location-section {
        padding: 55px 0 60px;
    }

    .location-inner {
        width: calc(100% - 36px);
    }

    .location-label {
        margin-bottom: 36px;

        font-size: 14px;
    }

    .location-label-icon {
        width: 17px;
        height: 17px;

        font-size: 13px;
        line-height: 17px;
    }

    .location-layout {
        row-gap: 42px;
    }

    .location-left h2 {
        font-size: 30px;

        line-height: 1.08;

        letter-spacing: -0.8px;

        margin-bottom: 32px;
    }

    .location-item {
        height: 72px;

        padding: 0 14px;

        font-size: 19px;
    }

    .location-arrow {
        width: 38px;
        height: 38px;

        font-size: 22px;
    }

    .location-description {
        margin: 0 0 24px;

        font-size: 17px;
        line-height: 1.5;
    }

    .location-image {
        height: 250px;

        border-radius: 8px;
    }
}

/* =========================================================
   ABOUT US SECTION
========================================================= */

.about-section {
    width: 100%;
    background: #303030;

    padding: 55px 0 60px;

    overflow: hidden;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.about-inner {
    width: min(1068px, calc(100% - 60px));

    margin: 0 auto;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.about-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 40px;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
}

.about-label-icon {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #087fc1;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 14px;
    line-height: 18px;

    font-weight: 400;
}


/* =========================================================
   CONTENT GRID
========================================================= */

.about-content {
    width: 100%;

    display: grid;

    grid-template-columns: 425px minmax(0, 1fr);

    column-gap: 30px;

    align-items: start;
}


/* =========================================================
   LEFT TEXT
========================================================= */

.about-text {
    width: 100%;

    padding-top: 35px;

    margin: 0;
}

.about-text p {
    margin: 0;
    padding: 0;

    color: #eeeeee;

    font-family: "DM Sans", sans-serif;

    font-size: 16px;
    line-height: 1.72;

    font-weight: 400;

    letter-spacing: 0;

    text-align: left;
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.about-image {
    width: 100%;

    height: 500px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    border-radius: 8px;

    background: #222222;
}

.about-image img {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;

    object-position: center center;

    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   IMPORTANT RESET
   Prevent old styles from affecting the section
========================================================= */

.about-section *,
.about-section *::before,
.about-section *::after {
    box-sizing: border-box;
}

.about-section h1,
.about-section h2,
.about-section h3,
.about-section h4,
.about-section h5,
.about-section h6,
.about-section p {
    margin-top: 0;
}

.about-section a {
    text-decoration: none;
}


/* =========================================================
   LAPTOP — 993px TO 1440px
========================================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .about-section {
        padding: 50px 0 55px;
    }

    .about-inner {
        width: min(1068px, calc(100% - 80px));
    }

    .about-label {
        margin-bottom: 38px;

        font-size: 15px;
    }

    .about-content {
        grid-template-columns: 425px minmax(0, 1fr);

        column-gap: 30px;
    }

    .about-text {
        padding-top: 34px;
    }

    .about-text p {
        font-size: 17px;
        line-height: 1.6;
    }

    .about-image {
        height: 500px;
    }
}


/* =========================================================
   TABLET — MAX 992px
========================================================= */

@media screen and (max-width: 992px) {

    .about-section {
        padding: 60px 0;
    }

    .about-inner {
        width: calc(100% - 50px);
    }

    .about-label {
        margin-bottom: 35px;
    }

    .about-content {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

        column-gap: 25px;
    }

    .about-text {
        padding-top: 20px;
    }

    .about-text p {
        font-size: 16px;
        line-height: 1.58;
    }

    .about-image {
        height: 430px;
    }
}


/* =========================================================
   MOBILE — MAX 768px
========================================================= */

@media screen and (max-width: 768px) {

    .about-section {
        padding: 55px 0 60px;
    }

    .about-inner {
        width: calc(100% - 36px);
    }

    .about-label {
        margin-bottom: 30px;

        font-size: 14px;
    }

    .about-label-icon {
        width: 17px;
        height: 17px;

        flex-basis: 17px;

        font-size: 13px;
        line-height: 17px;
    }

    .about-content {
        display: flex;

        flex-direction: column;

        gap: 28px;
    }

    .about-text {
        width: 100%;

        padding-top: 0;

        order: 1;
    }

    .about-image {
        width: 100%;

        height: 350px;

        order: 2;
    }

    .about-text p {
        font-size: 15px;

        line-height: 1.6;

        letter-spacing: 0;
    }
}

/* =========================================================
   AWARDS SECTION
========================================================= */

.awards-section {
    width: 100%;
    background: #ffffff;

    padding: 72px 0 78px;

    overflow: hidden;
}

.awards-inner {
    width: min(1185px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.awards-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 52px;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;

    color: #111111;
}

.awards-label-icon {
    width: 19px;
    height: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0869a9;

    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 19px;
}


/* =========================================================
   TOP HEADING
========================================================= */

.awards-heading-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 46px;

    align-items: start;

    margin-bottom: 43px;
}

.awards-heading-row h2 {
    margin: 0;

    color: #3b3333;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 38px;
    line-height: 1.05;

    font-weight: 400;

    letter-spacing: -1px;
}

.awards-heading-row p {
    margin: -3px 0 0;

    max-width: 540px;

    color: #333333;

    font-family: "DM Sans", sans-serif;

    font-size: 18px;
    line-height: 1.55;

    font-weight: 400;
}


/* =========================================================
   MAIN AWARDS CONTENT
========================================================= */

.awards-content {
    display: grid;

    grid-template-columns: 325px minmax(0, 1fr);

    column-gap: 32px;

    align-items: start;
}


/* =========================================================
   LEFT INFORMATION
========================================================= */

.awards-info {
    padding-top: 27px;
}

.awards-counter {
    display: flex;
    align-items: baseline;

    margin-bottom: 27px;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    line-height: 1;

    color: #222222;
}

.awards-counter .award-slash {
    margin: 0 3px;

    color: #777777;
}

#award-total {
    color: #777777;
}


/* =========================================================
   AWARDS DESCRIPTION
========================================================= */

.awards-description {
    width: 270px;

    margin: 0;

    color: #555555;

    font-family: "DM Sans", sans-serif;

    font-size: 18px;
    line-height: 1.9;

    font-weight: 400;
}


/* =========================================================
   NAVIGATION
========================================================= */

.awards-navigation {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 54px;
}

.awards-navigation button {
    width: 43px;
    height: 43px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #bcbcbc;

    background: #ffffff;

    color: #333333;

    font-family: Arial, sans-serif;

    font-size: 23px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.awards-navigation button:hover {
    background: #44403f;

    border-color: #44403f;

    color: #ffffff;
}

.awards-navigation .award-next {
    background: #777777;

    border-color: #777777;

    color: #ffffff;
}

.awards-navigation .award-next:hover {
    background: #333333;

    border-color: #333333;
}


/* =========================================================
   CAROUSEL
========================================================= */

.awards-carousel {
    width: 100%;

    overflow: hidden;

    position: relative;
}

.awards-track {
    display: flex;
    align-items: flex-start;

    gap: 20px;

    width: max-content;

    transform: translateX(0);

    transition: transform .5s ease;
}


/* =========================================================
   AWARD CARD
========================================================= */

.award-card {
    width: 370px;
    min-width: 370px;

    margin: 0;
    padding: 0;
}


/* =========================================================
   AWARD IMAGE
========================================================= */

.award-image {
    width: 370px;
    height: 292px;

    overflow: hidden;

    border-radius: 8px;

    background: #eeeeee;
}

.award-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform .6s ease;
}

.award-card:hover .award-image img {
    transform: scale(1.03);
}


/* =========================================================
   CARD CAPTION
========================================================= */

.award-caption {
    margin: 12px 0 0;

    padding: 0;

    color: #555555;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;
    line-height: 1.45;

    font-weight: 400;
}


/* =========================================================
   LAPTOP — 993px TO 1440px
========================================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .awards-section {
        padding: 65px 0 70px;
    }

    .awards-inner {
        width: min(1185px, calc(100% - 90px));
    }

    .awards-label {
        margin-bottom: 46px;
        font-size: 15px;
    }

    .awards-label-icon {
        width: 18px;
        height: 18px;
        font-size: 14px;
        line-height: 18px;
    }

    .awards-heading-row {
        column-gap: 40px;
        margin-bottom: 40px;
    }

    .awards-heading-row h2 {
        font-size: 35px;
    }

    .awards-heading-row p {
        font-size: 17px;
        line-height: 1.5;
    }

    .awards-content {
        grid-template-columns: 300px minmax(0, 1fr);
        column-gap: 28px;
    }

    .awards-info {
        padding-top: 24px;
    }

    .awards-description {
        width: 255px;
        font-size: 17px;
        line-height: 1.8;
    }

    .award-card {
        width: 350px;
        min-width: 350px;
    }

    .award-image {
        width: 350px;
        height: 280px;
    }
}


/* =========================================================
   TABLET — MAX 992px
========================================================= */

@media screen and (max-width: 992px) {

    .awards-section {
        padding: 60px 0;
    }

    .awards-inner {
        width: calc(100% - 50px);
    }

    .awards-label {
        margin-bottom: 42px;
    }

    .awards-heading-row {
        grid-template-columns: 1fr;

        row-gap: 20px;

        margin-bottom: 35px;
    }

    .awards-heading-row h2 {
        font-size: 34px;
    }

    .awards-heading-row p {
        max-width: 600px;
        font-size: 17px;
    }

    .awards-content {
        grid-template-columns: 250px minmax(0, 1fr);

        column-gap: 25px;
    }

    .awards-description {
        width: 220px;

        font-size: 16px;
        line-height: 1.7;
    }

    .award-card {
        width: 320px;
        min-width: 320px;
    }

    .award-image {
        width: 320px;
        height: 260px;
    }
}


/* =========================================================
   MOBILE — MAX 768px
========================================================= */

@media screen and (max-width: 768px) {

    .awards-section {
        padding: 55px 0 60px;
    }

    .awards-inner {
        width: calc(100% - 36px);
    }

    .awards-label {
        margin-bottom: 35px;
        font-size: 14px;
    }

    .awards-label-icon {
        width: 17px;
        height: 17px;
        font-size: 13px;
        line-height: 17px;
    }

    .awards-heading-row {
        row-gap: 18px;
        margin-bottom: 32px;
    }

    .awards-heading-row h2 {
        font-size: 30px;
        line-height: 1.08;
    }

    .awards-heading-row p {
        font-size: 16px;
        line-height: 1.55;
    }

    .awards-content {
        display: flex;
        flex-direction: column;

        gap: 30px;
    }

    .awards-info {
        padding-top: 0;
    }

    .awards-description {
        width: 100%;
        max-width: 330px;

        font-size: 16px;
        line-height: 1.65;
    }

    .awards-navigation {
        margin-top: 28px;
    }

    .awards-navigation button {
        width: 40px;
        height: 40px;
        font-size: 21px;
    }

    .awards-carousel {
        width: calc(100vw - 36px);

        margin-left: 0;

        overflow: hidden;
    }

    .awards-track {
        gap: 16px;
    }

    .award-card {
        width: calc(100vw - 72px);
        min-width: calc(100vw - 72px);
    }

    .award-image {
        width: 100%;
        height: 250px;
    }

    .award-caption {
        font-size: 12px;
    }
}

/* =========================================================
   NYNEX CONTACT SECTION
========================================================= */

.contact-section {
    width: 100%;
    height: 594px;

    display: grid;
    grid-template-columns: 50% 50%;

    overflow: hidden;

    background: #e8dccd;
}


/* =========================================================
   LEFT IMAGE
========================================================= */

.contact-section .contact-image {
    position: relative;

    width: 100%;
    height: 594px;

    overflow: hidden;

    background: #15202a;
}

.contact-section .contact-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center center;

    filter: brightness(0.72);
}


/* =========================================================
   IMAGE DARK OVERLAY
========================================================= */

.contact-section .contact-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(8, 20, 29, 0.20);

    pointer-events: none;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.contact-section .contact-content {

    width: 100%;
    height: 594px;

    background: #e8dccd;

    display: flex;

    align-items: flex-start;
    justify-content: center;

    box-sizing: border-box;
}


/* =========================================================
   FORM INNER CONTAINER
========================================================= */

.contact-section .contact-inner {

    width: calc(100% - 112px);

    max-width: 475px;

    margin-top: 53px;
}


/* =========================================================
   HEADING
========================================================= */

.contact-section .contact-inner h2 {

    margin: 0 0 42px 0;

    padding: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 21px;

    line-height: 1.2;

    font-weight: 500;

    letter-spacing: -0.5px;

    color: #171414;

    text-transform: uppercase;
}


/* =========================================================
   FORM RESET
========================================================= */

.contact-section #contact-form {

    width: 100%;

    margin: 0;
    padding: 0;

    display: block;
}


/* =========================================================
   FIELD
========================================================= */

.contact-section .contact-field {

    position: relative;

    width: 100%;

    margin: 0 0 29px 0;

    padding: 0;
}


/* =========================================================
   INPUT RESET
========================================================= */

.contact-section .contact-field input {

    display: block;

    width: 100%;

    height: 42px;

    margin: 0;
    padding: 0 0 13px 0;

    border: 0;

    border-bottom: 1px solid rgba(69, 62, 58, 0.45);

    border-radius: 0;

    outline: none;

    background: transparent;

    box-shadow: none;

    appearance: none;
    -webkit-appearance: none;

    font-family: "DM Sans", sans-serif;

    font-size: 15px;

    line-height: 1;

    font-weight: 400;

    color: #292321;

    box-sizing: border-box;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.contact-section .contact-field input::placeholder {

    color: #77716d;

    opacity: 1;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    font-weight: 400;

    letter-spacing: 0;

    text-transform: uppercase;
}


/* =========================================================
   INPUT FOCUS
========================================================= */

.contact-section .contact-field input:focus {

    border-bottom-color: #403936;

    outline: none;

    box-shadow: none;
}


/* =========================================================
   PHONE + EMAIL ROW
========================================================= */

.contact-section .contact-row {

    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 84px;

    margin: 0;
    padding: 0;
}


/* =========================================================
   MESSAGE FIELD
========================================================= */

.contact-section .contact-field.full {

    width: 100%;
}


/* =========================================================
   CONSENT
========================================================= */

.contact-section .contact-consent {

    width: 100%;

    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-top: 9px;

    margin-bottom: 61px;

    padding: 0;
}


/* =========================================================
   CHECKBOX
========================================================= */

.contact-section .contact-consent input[type="checkbox"] {

    appearance: none;
    -webkit-appearance: none;

    position: relative;

    width: 12px;
    height: 12px;

    min-width: 12px;

    margin: 1px 0 0 0;
    padding: 0;

    border: 1px solid #77706b;

    border-radius: 0;

    background: transparent;

    cursor: pointer;

    box-sizing: border-box;
}


/* CHECKED */

.contact-section
.contact-consent
input[type="checkbox"]:checked {

    background: #3d3533;

    border-color: #3d3533;
}


/* CHECKMARK */

.contact-section
.contact-consent
input[type="checkbox"]:checked::after {

    content: "✓";

    position: absolute;

    left: 2px;
    top: -3px;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 9px;

    line-height: 1;
}


/* =========================================================
   CONSENT TEXT
========================================================= */

.contact-section .contact-consent label {

    display: block;

    margin: 0;
    padding: 0;

    color: #77716d;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    line-height: 1.4;

    font-weight: 400;

    cursor: pointer;
}


/* =========================================================
   CONNECT BUTTON
========================================================= */

.contact-section .contact-button {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    height: 51px;

    margin: 0;
    padding: 0;

    border: 0;

    border-radius: 0;

    outline: none;

    background: #3d3533;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 16px;

    line-height: 1;

    font-weight: 400;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.25s ease;
}


.contact-section .contact-button:hover {

    background: #2c2725;
}


/* =========================================================
   LAPTOP
   993px - 1440px
========================================================= */

@media screen and
(min-width: 993px) and
(max-width: 1440px) {

    .contact-section {

        height: 594px;

        grid-template-columns: 50% 50%;
    }


    .contact-section .contact-image {

        height: 594px;
    }


    .contact-section .contact-content {

        height: 594px;
    }


    .contact-section .contact-inner {

        width: calc(100% - 112px);

        max-width: 475px;

        margin-top: 53px;
    }


    .contact-section .contact-inner h2 {

        font-size: 21px;

        margin-bottom: 42px;
    }


    .contact-section .contact-row {

        column-gap: 84px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 992px) {

    .contact-section {

        height: auto;

        display: grid;

        grid-template-columns: 1fr;
    }


    .contact-section .contact-image {

        height: 430px;
    }


    .contact-section .contact-content {

        height: auto;

        min-height: 520px;

        padding: 55px 45px 65px;
    }


    .contact-section .contact-inner {

        width: 100%;

        max-width: 600px;

        margin: 0 auto;
    }


    .contact-section .contact-inner h2 {

        font-size: 21px;

        margin-bottom: 40px;
    }


    .contact-section .contact-row {

        column-gap: 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    .contact-section {

        display: flex;

        flex-direction: column;

        height: auto;
    }


    .contact-section .contact-image {

        width: 100%;

        height: 330px;

        min-height: 330px;
    }


    .contact-section .contact-content {

        width: 100%;

        height: auto;

        min-height: 0;

        padding: 42px 25px 50px;

        box-sizing: border-box;
    }


    .contact-section .contact-inner {

        width: 100%;

        max-width: none;

        margin: 0;
    }


    .contact-section .contact-inner h2 {

        font-size: 20px;

        margin-bottom: 38px;
    }


    .contact-section .contact-row {

        display: grid;

        grid-template-columns: 1fr;

        row-gap: 29px;

        column-gap: 0;
    }


    .contact-section .contact-field {

        margin-bottom: 29px;
    }


    .contact-section .contact-field input {

        height: 40px;

        font-size: 14px;

        padding-bottom: 12px;
    }


    .contact-section .contact-field input::placeholder {

        font-size: 12px;
    }


    .contact-section .contact-consent {

        margin-top: 4px;

        margin-bottom: 38px;
    }


    .contact-section .contact-consent label {

        font-size: 8px;

        line-height: 1.4;
    }


    .contact-section .contact-button {

        height: 50px;

        font-size: 14px;
    }

}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width: 100%;

    background: #000000;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    overflow: hidden;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-main {
    width: 100%;

    min-height: 333px;

    display: grid;

    grid-template-columns: 220px 1fr 1.6fr;

    column-gap: 70px;

    padding: 44px 60px 42px;

    box-sizing: border-box;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    display: flex;

    align-items: flex-start;
    justify-content: flex-start;

    padding-top: 0;
}


.footer-brand img {
    display: block;

    width: 100px;
    height: auto;

    /* max-height: 55px; */

    object-fit: contain;
}


/* =========================================================
   QUICK LINKS
========================================================= */

.footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-links h3,
.footer-office h3 {

    margin: 0 0 22px;

    padding: 0;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 20px;

    line-height: 1.2;

    font-weight: 500;
}


/* Links */

.footer-links a {

    display: block;

    margin: 0 0 13px;

    padding: 0;

    color: #d5d5d5;

    font-family: "DM Sans", sans-serif;

    font-size: 16px;

    line-height: 1.25;

    font-weight: 400;

    text-decoration: none;

    transition: color 0.25s ease;
}


.footer-links a:hover {

    color: #ffffff;
}


/* =========================================================
   OFFICE
========================================================= */

.footer-office {

    padding-left: 0;
}


.footer-office h3 {

    margin-bottom: 22px;
}


/* Office paragraphs */

.footer-office p {

    margin: 0 0 17px;

    padding: 0;

    color: #d1d1d1;

    font-family: "DM Sans", sans-serif;

    font-size: 15px;

    line-height: 1.85;

    font-weight: 400;
}


/* Strong labels */

.footer-office strong {

    color: #ffffff;

    font-weight: 600;
}


/* Office links */

.footer-office a {

    color: #d1d1d1;

    text-decoration: none;

    transition: color 0.25s ease;
}


.footer-office a:hover {

    color: #ffffff;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    width: 100%;

    min-height: 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border-top: 1px solid #252525;

    padding: 0 60px;

    box-sizing: border-box;
}


.footer-bottom p {

    margin: 0;

    padding: 0;

    color: #d0d0d0;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    line-height: 1.3;

    font-weight: 400;
}


/* =========================================================
   LAPTOP
   993px - 1440px
========================================================= */

@media screen and
(min-width: 993px) and
(max-width: 1440px) {

    .footer-main {

        min-height: 333px;

        grid-template-columns: 220px 1fr 1.6fr;

        column-gap: 60px;

        padding: 44px 60px 42px;
    }


    .footer-brand img {

        width: 48px;
    }


    .footer-links h3,
    .footer-office h3 {

        font-size: 19px;

        margin-bottom: 21px;
    }


    .footer-links a {

        font-size: 15px;

        margin-bottom: 12px;
    }


    .footer-office p {

        font-size: 14px;

        line-height: 1.85;
    }


    .footer-bottom {

        padding: 0 60px;
    }


    .footer-bottom p {

        font-size: 12px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 992px) {

    .footer-main {

        min-height: auto;

        grid-template-columns: 140px 1fr 1.4fr;

        column-gap: 35px;

        padding: 45px 40px 40px;
    }


    .footer-brand img {

        width: 45px;
    }


    .footer-links h3,
    .footer-office h3 {

        font-size: 18px;

        margin-bottom: 20px;
    }


    .footer-links a {

        font-size: 14px;

        margin-bottom: 12px;
    }


    .footer-office p {

        font-size: 13px;

        line-height: 1.7;
    }


    .footer-bottom {

        padding: 0 40px;

        min-height: 50px;
    }


    .footer-bottom p {

        font-size: 11px;
    }

}


@media screen and (max-width: 768px) {

    /* MAIN FOOTER */

    .footer-main {
        display: flex;
        flex-direction: column;

        gap: 38px;

        padding: 42px 25px 35px;
    }


    /* LOGO */

    .footer-brand {
        display: flex;
        align-items: flex-start;
    }


    .footer-brand img {
        width: 48px;
        height: auto;
    }


    /* QUICK LINKS */

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }


    .footer-links h3,
    .footer-office h3 {

        margin: 0 0 18px;

        font-size: 18px;

        line-height: 1.2;
    }


    .footer-links a {

        margin-bottom: 11px;

        font-size: 14px;

        line-height: 1.3;
    }


    /* OFFICE */

    .footer-office {
        padding: 0;
    }


    .footer-office p {

        margin: 0 0 14px;

        font-size: 13px;

        line-height: 1.7;
    }


    /* =====================================================
       BOTTOM BAR
    ===================================================== */

    .footer-bottom {

        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: flex-start;
        justify-content: center;

        gap: 7px;

        padding: 18px 25px 20px;

        min-height: auto;

        box-sizing: border-box;

        border-top: 1px solid #252525;
    }


    .footer-bottom p {

        width: 100%;

        margin-left: 30px;
        padding: 0;

        color: #bdbdbd;

        font-family: "DM Sans", sans-serif;

        font-size: 10px;

        line-height: 1.5;

        font-weight: 400;

        white-space: normal;
    }


    .footer-bottom p:last-child {

        color: #a8a8a8;
    }

}
/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   LAPTOP
========================================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .container,
    .header-inner,
    .hero-content,
    .menu-content {
        width: min(1100px, calc(100% - 80px));
    }

    .hero {
        height: 600px;
        min-height: 600px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .section {
        padding: 60px 0;
    }

    .who-image {
        height: 105px;
    }

    .services-section {
        padding-bottom: 65px;
    }

    .about-image {
        height: 330px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 992px) {

    .container,
    .header-inner,
    .hero-content,
    .menu-content {
        width: calc(100% - 60px);
    }

    .hero {
        height: 650px;
    }

    .hero h1 {
        font-size: 54px;
    }

    .who-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .who-image {
        height: 150px;
    }

    .partner-inner {
        gap: 30px;
    }

    .partner-logos {
        gap: 20px;
        overflow: hidden;
    }

    .partner-logos span {
        font-size: 11px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-middle {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .service-middle .service-image {
        order: 1;
    }

    .service-middle .service-text {
        order: 2;
    }

    .about-grid {
        gap: 30px;
    }

    .contact-form-inner {
        width: 85%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    .container,
    .header-inner,
    .hero-content,
    .menu-content {
        width: calc(100% - 40px);
    }

    .section {
        padding: 50px 0;
    }


    /* Header */

    .header-inner {
        height: 70px;
    }

    .menu-close {
        right: 20px;
        top: 20px;
    }


    /* Menu */

    .main-navigation a {
        font-size: 48px;
    }

    .menu-bottom {
        flex-direction: column;
        gap: 20px;
    }


    /* Hero */

    .hero {
        min-height: 620px;
        height: 620px;
    }

    .hero-content {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .hero-description {
        max-width: 270px;
    }


    /* Who */

    .who-intro {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .who-action {
        justify-content: flex-start;
    }

    .who-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .who-image {
        height: 120px;
    }

    .stats-grid {
        margin-top: 25px;
    }

    .stat strong,
    .stat>span {
        font-size: 20px;
    }


    /* Partners */

    .partner-strip {
        padding: 18px 0;
    }

    .partner-inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }

    .partner-logos {
        width: 100%;

        overflow-x: auto;

        justify-content: flex-start;
    }


    /* Services */

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-middle {
        grid-column: auto;

        display: flex;
    }

    .service-large .service-image,
    .service-middle .service-image {
        height: 220px;
    }


    /* Location */

    .location-header {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .location-layout {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .location-image {
        height: 230px;
    }


    /* About */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .about-image {
        height: 300px;
    }


    /* Awards */

    .awards-heading {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .awards-layout {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .award-info {
        min-height: auto;

        gap: 20px;
    }

    .award-card {
        min-width: 250px;
    }


    /* Contact */

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-image {
        position: relative;
        overflow: hidden;
    }

    .contact-image img {
        position: absolute;
        inset: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center center;
    }

    .contact-image::after {
        content: "";
        position: absolute;
        inset: 0;

        background: rgba(5, 18, 28, 0.38);

        z-index: 2;
    }

    .contact-form-wrapper {
        min-height: 450px;
    }

    .contact-form-inner {
        width: calc(100% - 40px);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row .form-field:first-child {
        grid-column: auto;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 5px;

        padding: 15px 0;
    }

}

/* =========================================================
   HERO + HEADER — REFERENCE MATCH
========================================================= */

/* Remove browser/page spacing */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    overflow-x: hidden;
}

/* =========================================
   HEADER
========================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    z-index: 1000;

    background: linear-gradient(
        to bottom,
        rgba(5, 25, 40, 0.48),
        rgba(5, 25, 40, 0.20),
        rgba(5, 25, 40, 0)
          );
}


.header-inner {
    width: calc(100% - 80px);
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
   LOGO - LEFT SIDE
========================================= */

.site-header .logo {
    display: flex;
    align-items: center;

    width: auto;
    height: auto;

    text-decoration: none;
}


.site-header .logo img {
    width: auto;
    height: 90px;
    max-width: 250px;
    object-fit: contain;
}


/* =========================================
   MENU - RIGHT SIDE
========================================= */

.menu-toggle {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 16px;

    padding: 0;

    border: 0;
    outline: none;

    background: transparent;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 17px;
    font-weight: 400;

    cursor: pointer;
}


.menu-toggle span {
    display: block;
}


/* =========================================
   HAMBURGER LINES
========================================= */

.menu-toggle i {
    display: block;

    width: 40px;
    height: 1px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.menu-toggle i + i {
    margin-left: -56px;
    transform: translateY(10px);
}


/* =========================================
   WHEN MENU IS OPEN
========================================= */

.menu-toggle.active i:first-of-type {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active i:last-of-type {
    transform: rotate(-45deg) translate(4px, -4px);
}


/* =========================================
   LAPTOP
========================================= */

@media screen and
(min-width: 993px) and
(max-width: 1440px) {

    .site-header {
        height: 82px;
    }

    .header-inner {
        width: calc(100% - 70px);
    }

    .site-header .logo img {
        height: 48px;
        max-width: 150px;
    }

    .menu-toggle {
        font-size: 16px;
        gap: 15px;
    }

    .menu-toggle i {
        width: 38px;
    }
}


/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 992px) {

    .site-header {
        height: 75px;
    }

    .header-inner {
        width: calc(100% - 40px);
    }

    .site-header .logo img {
        height: 44px;
        max-width: 140px;
    }

    .menu-toggle {
        font-size: 15px;
        gap: 13px;
    }

    .menu-toggle i {
        width: 34px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 768px) {

    .site-header {
        height: 68px;
    }

    .header-inner {
        width: calc(100% - 30px);
    }

    .site-header .logo img {
        height: 38px;
        max-width: 125px;
    }

    .menu-toggle {
        font-size: 14px;
        gap: 11px;
    }

    .menu-toggle i {
        width: 30px;
    }
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 100vh;

    margin: 0;
    padding: 0;

    overflow: hidden;

    color: #fff;
}


/* Hero image */

.about-hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    /*
       Replace this with your actual reference image.
       Ideally use the exact image from the reference.
    */

    background-image: url("/assets/about.png");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    transform: none;
}


/* Dark overlay */

.about-hero-overlay {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 1;

    background:
        linear-gradient(to bottom,
            rgba(0, 32, 65, 0.16) 0%,
            rgba(0, 25, 45, 0.08) 32%,
            rgba(0, 0, 0, 0.30) 60%,
            rgba(0, 0, 0, 0.90) 100%);
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 5;

    width: calc(100% - 140px);
    max-width: none;

    height: 100%;

    margin: 0 auto;

    padding: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    transform: translateY(15px);
}


/* Small eyebrow */

.hero-eyebrow {
    margin: 0 0 20px;

    font-size: 10px;

    line-height: 1;

    letter-spacing: 4px;

    font-weight: 500;

    color: rgba(255, 255, 255, .85);
}


/* Main heading */

.hero h1 {
    margin: 0;

    max-width: 650px;

    font-family: "DM Sans", sans-serif;

    font-size: clamp(42px, 4.2vw, 58px);

    line-height: 1.03;

    letter-spacing: -1.8px;

    font-weight: 500;

    color: #fff;
}


/* Description */

.hero-description {
    margin: 20px 0 0;

    max-width: 370px;

    font-size: 11px;

    line-height: 1.45;

    font-weight: 400;

    color: rgba(255, 255, 255, .88);
}


/* =========================================================
   SCROLL BUTTON
========================================================= */

.scroll-down {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 32px;

    color: #fff;

    font-size: 10px;

    font-weight: 400;
}

.scroll-circle {
    width: 62px;
    height: 62px;

    border: 1px solid rgba(255, 255, 255, .9);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    font-weight: 300;

    animation: none;
}


/* =========================================================
   REMOVE UNNECESSARY HERO SPACING
========================================================= */

.hero-content>* {
    flex-shrink: 0;
}


/* =========================================================
   LAPTOP — 993px to 1440px
========================================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .site-header {
        height: 77px;
    }

    .header-inner {
        width: calc(100% - 100px);
        height: 77px;
    }

    .hero-content {
        width: calc(100% - 100px);

        transform: translateY(5px);
    }

    .hero h1 {
        font-size: 50px;

        line-height: 1.02;

        max-width: 570px;

        letter-spacing: -1.5px;
    }

    .hero-eyebrow {
        font-size: 9px;

        margin-bottom: 17px;

        letter-spacing: 3.5px;
    }

    .hero-description {
        font-size: 9px;

        max-width: 330px;

        margin-top: 18px;
    }

    .scroll-down {
        margin-top: 28px;

        font-size: 9px;
    }

    .scroll-circle {
        width: 58px;
        height: 58px;

        font-size: 20px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 992px) {

    .site-header {
        height: 72px;
    }

    .header-inner {
        width: calc(100% - 60px);

        height: 72px;
    }

    .hero-content {
        width: calc(100% - 60px);
    }

    .hero h1 {
        font-size: clamp(40px, 7vw, 54px);

        max-width: 600px;
    }

    .hero-description {
        max-width: 340px;

        font-size: 10px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    .site-header {
        height: 68px;

        background: rgba(70, 128, 180, .48);
    }

    .header-inner {
        width: calc(100% - 40px);

        height: 68px;
    }

    .menu-toggle {
        font-size: 11px;

        gap: 10px;
    }

    .menu-toggle i {
        width: 28px;
    }


    /* Hero */

    .hero {
        height: 100svh;
        min-height: 600px;
    }

    .hero-image {
        background-position: center center;
    }

    .hero-content {
        width: calc(100% - 40px);

        justify-content: center;

        transform: translateY(10px);
    }

    .hero-eyebrow {
        font-size: 8px;

        letter-spacing: 3px;

        margin-bottom: 15px;
    }

    .hero h1 {
        font-size: clamp(36px, 10vw, 46px);

        line-height: 1;

        letter-spacing: -1px;

        max-width: 100%;
    }

    .hero-description {
        font-size: 9px;

        max-width: 290px;

        margin-top: 17px;
    }

    .scroll-down {
        margin-top: 25px;

        gap: 12px;

        font-size: 9px;
    }

    .scroll-circle {
        width: 52px;
        height: 52px;

        font-size: 18px;
    }

}


/* ABOUTT US SECTION STARTS HERE */


/* =========================================================
   ABOUT PAGE — FULL SCREEN HERO
========================================================= */

.about-hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 700px;

    overflow: hidden;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.about-hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;

    z-index: 1;
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.about-hero-overlay {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            to bottom,
            rgba(5, 25, 38, 0.45),
            rgba(5, 25, 38, 0.60)
        );

    z-index: 2;

    pointer-events: none;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.about-hero-content {
    position: absolute;

    top: 50%;
    left: 0;

    width: 100%;

    transform: translateY(-50%);

    text-align: center;

    z-index: 3;
}


/* =========================================================
   ABOUT US
========================================================= */

.about-hero-content h1 {
    margin: 0;
    padding: 0;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 64px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 0;

    text-transform: uppercase;
}


/* =========================================================
   LAPTOP
========================================================= */

@media screen and
(min-width: 993px) and
(max-width: 1440px) {

    .about-hero {
        height: 100vh;
        min-height: 650px;
    }

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


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 992px) {

    .about-hero {
        height: 100vh;
        min-height: 600px;
    }

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


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    .about-hero {
        height: 100svh;
        min-height: 600px;
    }

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


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 480px) {

    .about-hero {
        height: 100svh;
        min-height: 550px;
    }

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

/* =========================================================
   ABOUT PAGE — WHO WE ARE
========================================================= */

.about-who-we-are {
    width: 100%;

    background: #ffffff;

    padding: 48px 0 52px;
}


.about-who-container {
    width: calc(100% - 220px);

    max-width: 1010px;

    margin: 0 auto;
}


/* Heading */

.about-who-container h2 {
    margin: 0 0 25px;

    padding: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 23px;

    line-height: 1.15;

    font-weight: 700;

    color: #111111;

    text-transform: uppercase;
}


/* Paragraph */

.about-who-container p {
    margin: 0;

    padding: 0;

    max-width: 1010px;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    line-height: 1.55;

    font-weight: 400;

    color: #3f3f3f;
}


/* =========================================================
   LAPTOP
   993px - 1440px
========================================================= */

@media screen and
(min-width: 993px) and
(max-width: 1440px) {

    .about-who-we-are {
        padding: 45px 0 50px;
    }

    .about-who-container {
        width: calc(100% - 180px);

        max-width: 1010px;
    }

    .about-who-container h2 {
        font-size: 21px;

        margin-bottom: 23px;
    }

    .about-who-container p {
        font-size: 12px;

        line-height: 1.55;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 992px) {

    .about-who-we-are {
        padding: 40px 0 45px;
    }

    .about-who-container {
        width: calc(100% - 80px);

        max-width: none;
    }

    .about-who-container h2 {
        font-size: 19px;

        margin-bottom: 20px;
    }

    .about-who-container p {
        font-size: 11px;

        line-height: 1.6;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    .about-who-we-are {
        padding: 34px 0 38px;
    }

    .about-who-container {
        width: calc(100% - 44px);
    }

    .about-who-container h2 {
        font-size: 16px;

        margin-bottom: 16px;
    }

    .about-who-container p {
        font-size: 10px;

        line-height: 1.6;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 480px) {

    .about-who-container {
        width: calc(100% - 36px);
    }

    .about-who-container h2 {
        font-size: 15px;
    }

    .about-who-container p {
        font-size: 9px;

        line-height: 1.65;
    }
}

/* =========================================================
   FOUNDERS SECTION
========================================================= */

.about-founders {
    width: 100%;
    background: #eef1f3;
    padding: 38px 0 42px;
}

.about-founders-container {
    width: calc(100% - 80px);
    max-width: 1050px;
    margin: 0 auto;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.about-founders-container > h2 {
    margin: 0 0 20px;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;

    color: #111;
    text-transform: uppercase;
}


/* =========================================================
   FOUNDERS GRID
========================================================= */

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 18px;
    row-gap: 14px;
}


/* =========================================================
   FOUNDER CARD
========================================================= */

.founder-card {
    position: relative;
    width: 100%;
    height: 480px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 8px 28px 8px;
    box-sizing: border-box;
}


/* =========================================================
   PROFILE AREA
========================================================= */

.founder-profile {
    position: relative;

    width: 100%;
    height: 180px;

    padding-top: 65px;

    box-sizing: border-box;
}


/* =========================================================
   BLUE PROFILE PANEL
========================================================= */

.founder-blue-panel {
    position: relative;

    width: 100%;
    height: 120px;

    background: #4196b3;

    border-radius: 6px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-end;

    padding-bottom: 11px;

    box-sizing: border-box;

    overflow: visible;
}


/* =========================================================
   FOUNDER IMAGE
========================================================= */

.founder-image {
    position: absolute;

    top: -66px;
    left: 50%;

    transform: translateX(-50%);

    width: 140px;
    height: 140px;

    object-fit: cover;
    object-position: center;

    border-radius: 50%;

    background: #fff;

    border: 5px solid #fff;

    outline: 4px solid #e6eef0;

    z-index: 5;
}


/* =========================================================
   FOUNDER NAME
========================================================= */

.founder-name {
    position: relative;

    z-index: 6;

    width: 100%;

    text-align: center;

    color: #fff;

    font-family: "DM Sans", sans-serif;

    font-size: 15px;
    line-height: 1.1;

    font-weight: 700;

    text-transform: uppercase;

    white-space: nowrap;
}


/* =========================================================
   FOUNDER ROLE
========================================================= */

.founder-role {
    position: relative;

    z-index: 6;

    margin-top: 3px;

    color: #fff;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;
    line-height: 1;

    font-weight: 400;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.founder-experience {
    width: 100%;

    height: 72px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-bottom: 1px solid #dedede;

    box-sizing: border-box;
}


.founder-experience strong {
    display: block;

    font-family: "DM Sans", sans-serif;

    font-size: 22px;
    line-height: 1;

    font-weight: 700;

    color: #111;
}


.founder-experience span {
    display: block;

    margin-top: 5px;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;
    line-height: 1.2;

    font-weight: 400;

    color: #333;
}


/* =========================================================
   INFORMATION AREA
========================================================= */

.founder-info {
    width: 100%;
}


/* =========================================================
   INFORMATION BLOCK
========================================================= */

.founder-info-block {
    width: 100%;

    min-height: 82px;

    padding: 13px 16px 11px;

    border-bottom: 1px solid #dedede;

    box-sizing: border-box;
}


/* =========================================================
   INFORMATION LABEL
========================================================= */

.founder-label {
    display: block;

    margin-bottom: 8px;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;

    line-height: 1;

    font-weight: 500;

    color: #4196b3;

    text-transform: uppercase;
}


/* =========================================================
   INFORMATION TEXT
========================================================= */

.founder-info-block p {
    margin: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    line-height: 1.35;

    font-weight: 400;

    color: #111;
}


/* =========================================================
   CONTACT AREA
========================================================= */

.founder-contact {
    width: 100%;

    height: 45px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    padding-top: 7px;

    box-sizing: border-box;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.founder-contact a {
    min-width: 0;

    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 10px;

    background: #eef6f8;

    border-radius: 5px;

    text-decoration: none;

    color: #222;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;

    line-height: 1;

    white-space: nowrap;

    box-sizing: border-box;
}


/* =========================================================
   CONTACT ICON
========================================================= */

.contact-icon {
    flex: 0 0 auto;

    color: #4196b3;

    font-size: 16px;

    line-height: 1;
}


/* =========================================================
   LAPTOP
   993px - 1440px
========================================================= */

@media screen and
(min-width: 993px) and
(max-width: 1440px) {

    .about-founders {
        padding: 35px 0 38px;
    }

    .about-founders-container {
        width: calc(100% - 80px);
        max-width: 1000px;
    }

    .about-founders-container > h2 {
        font-size: 12px;
        margin-bottom: 18px;
    }

    .founders-grid {
        column-gap: 14px;
        row-gap: 12px;
    }

    .founder-card {
        height: 555px;
        padding: 7px 22px 7px;
    }

    .founder-profile {
        height: 172px;
        padding-top: 61px;
    }

    .founder-blue-panel {
        height: 113px;
        padding-bottom: 10px;
    }

    .founder-image {
        width: 132px;
        height: 132px;

        top: -63px;

        border-width: 4px;
        outline-width: 3px;
    }

    .founder-name {
        font-size: 14px;
    }

    .founder-role {
        font-size: 10px;
    }

    .founder-experience {
        height: 68px;
    }

    .founder-experience strong {
        font-size: 21px;
    }

    .founder-experience span {
        font-size: 10px;
    }

    .founder-info-block {
        min-height: 78px;
        padding: 12px 13px 10px;
    }

    .founder-label {
        font-size: 9px;
        margin-bottom: 7px;
    }

    .founder-info-block p {
        font-size: 11px;
        line-height: 1.35;
    }

    .founder-contact {
        height: 43px;
        gap: 9px;
        padding-top: 6px;
    }

    .founder-contact a {
        height: 34px;
        font-size: 9px;
    }
}


/* =========================================================
   TABLET
   MAX 992px
========================================================= */

@media screen and (max-width: 992px) {

    .about-founders {
        padding: 32px 0 38px;
    }

    .about-founders-container {
        width: calc(100% - 45px);
    }

    .founders-grid {
        column-gap: 12px;
        row-gap: 12px;
    }

    .founder-card {
        height: auto;
        min-height: 520px;

        padding: 8px 17px 9px;
    }

    .founder-profile {
        height: 165px;
        padding-top: 57px;
    }

    .founder-blue-panel {
        height: 108px;
    }

    .founder-image {
        width: 125px;
        height: 125px;

        top: -60px;

        border-width: 4px;
        outline-width: 3px;
    }

    .founder-name {
        font-size: 13px;
    }

    .founder-role {
        font-size: 10px;
    }

    .founder-experience {
        height: 66px;
    }

    .founder-experience strong {
        font-size: 19px;
    }

    .founder-experience span {
        font-size: 10px;
    }

    .founder-info-block {
        min-height: 75px;
        padding: 11px 11px 9px;
    }

    .founder-label {
        font-size: 8px;
    }

    .founder-info-block p {
        font-size: 10px;
    }

    .founder-contact {
        height: 42px;
        gap: 7px;
        padding-top: 6px;
    }

    .founder-contact a {
        height: 33px;
        font-size: 8px;
    }
}


/* =========================================================
   MOBILE
   MAX 768px
========================================================= */

@media screen and (max-width: 768px) {

    .about-founders {
        padding: 28px 0 32px;
    }

    .about-founders-container {
        width: calc(100% - 25px);
    }

    .about-founders-container > h2 {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .founders-grid {
        grid-template-columns: 1fr;

        row-gap: 14px;
    }

    .founder-card {
        height: auto;
        min-height: 0;

        padding: 8px 15px 9px;
    }

    .founder-profile {
        height: 168px;
        padding-top: 57px;
    }

    .founder-blue-panel {
        height: 108px;
    }

    .founder-image {
        width: 125px;
        height: 125px;

        top: -61px;
    }

    .founder-name {
        font-size: 14px;
    }

    .founder-role {
        font-size: 10px;
    }

    .founder-experience {
        height: 70px;
    }

    .founder-experience strong {
        font-size: 20px;
    }

    .founder-experience span {
        font-size: 10px;
    }

    .founder-info-block {
        min-height: 82px;
        padding: 13px 10px;
    }

    .founder-label {
        font-size: 9px;
        margin-bottom: 8px;
    }

    .founder-info-block p {
        font-size: 11px;
        line-height: 1.4;
    }

    .founder-contact {
        height: 44px;
        gap: 7px;
        padding-top: 6px;
    }

    .founder-contact a {
        height: 34px;
        font-size: 8px;
    }
}


/* =========================================================
   SMALL MOBILE
   MAX 480px
========================================================= */

@media screen and (max-width: 480px) {

    .about-founders {
        padding: 25px 0 30px;
    }

    .about-founders-container {
        width: calc(100% - 18px);
    }

    .founder-card {
        padding: 7px 12px 8px;
    }

    .founder-profile {
        height: 160px;
        padding-top: 54px;
    }

    .founder-blue-panel {
        height: 101px;
    }

    .founder-image {
        width: 115px;
        height: 115px;

        top: -56px;

        border-width: 4px;
        outline-width: 3px;
    }

    .founder-name {
        font-size: 13px;
    }

    .founder-role {
        font-size: 9px;
    }

    .founder-experience {
        height: 67px;
    }

    .founder-experience strong {
        font-size: 18px;
    }

    .founder-experience span {
        font-size: 9px;
    }

    .founder-info-block {
        min-height: 78px;
        padding: 12px 8px;
    }

    .founder-label {
        font-size: 8px;
    }

    .founder-info-block p {
        font-size: 10px;
    }

    .founder-contact {
        height: 42px;
        gap: 5px;
    }

    .founder-contact a {
        height: 33px;
        padding: 0 6px;
        font-size: 7px;
    }

    .contact-icon {
        font-size: 14px;
    }
}

/* =========================================================
   OUR MISSION & VISION
========================================================= */

.mission-vision-section {
    width: 100%;
    background: #ffffff;
    padding: 70px 0 85px;
    box-sizing: border-box;
}

.mission-vision-container {
    width: calc(100% - 100px);
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================================
   SECTION TITLES
========================================================= */

.mission-title,
.vision-title {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;

    color: #111111;
}


/* =========================================================
   OUR MISSION
========================================================= */

.mission-section {
    width: 100%;
}


/* =========================================================
   MISSION CARDS
========================================================= */

.mission-cards {
    width: 100%;

    margin-top: 28px;

    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 14px;
}


/* =========================================================
   MISSION CARD
========================================================= */

.mission-card {
    width: calc((100% - 28px) / 3);

    min-height: 70px;

    display: flex;
    align-items: center;

    padding: 12px 20px;

    background: #ffffff;

    border: 1px solid #dddddd;

    border-radius: 7px;

    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.16);

    box-sizing: border-box;
}


/* =========================================================
   BOTTOM TWO CARDS
========================================================= */

.mission-card:nth-child(4) {
    margin-left: calc((100% - 28px) / 6);
}

.mission-card:nth-child(5) {
    margin-right: calc((100% - 28px) / 6);
}


/* =========================================================
   MISSION ICON
========================================================= */

.mission-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #333333;

    margin-right: 16px;
}

.mission-icon svg {
    width: 42px;
    height: 42px;

    display: block;
}


/* =========================================================
   MISSION TEXT
========================================================= */

.mission-card p {
    margin: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 15px;
    line-height: 1.35;

    font-weight: 400;

    color: #333333;
}


/* =========================================================
   OUR VISION
========================================================= */

.vision-section {
    width: 100%;

    margin-top: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}


/* =========================================================
   VISION CONTENT
========================================================= */

.vision-content {
    width: 58%;

    padding-right: 10px;

    box-sizing: border-box;
}


.vision-title {
    margin-bottom: 18px;
}


.vision-content p {
    margin: 0 0 18px;

    max-width: 620px;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;
    line-height: 1.6;

    font-weight: 400;

    color: #333333;
}


.vision-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   VISION IMAGES
========================================================= */

.vision-images {
    position: relative;

    width: 38%;

    height: 185px;

    flex-shrink: 0;
}


/* =========================================================
   VISION IMAGE COMMON
========================================================= */

.vision-image {
    position: absolute;

    display: block;

    object-fit: cover;

    border-radius: 7px;
}


/* =========================================================
   MAIN FAMILY IMAGE
========================================================= */

.vision-image-main {
    width: 215px;
    height: 125px;

    left: 0;
    bottom: 0;

    z-index: 1;
}


/* =========================================================
   TOP ADVISORY IMAGE
========================================================= */

.vision-image-top {
    width: 195px;
    height: 112px;

    right: 0;
    top: 0;

    z-index: 2;
}


/* =========================================================
   LAPTOP
   993px - 1440px
========================================================= */

@media screen and
(min-width: 993px) and
(max-width: 1440px) {

    .mission-vision-section {
        padding: 65px 0 75px;
    }

    .mission-vision-container {
        width: calc(100% - 90px);
        max-width: 1050px;
    }

    .mission-title,
    .vision-title {
        font-size: 19px;
    }

    .mission-cards {
        margin-top: 26px;
        gap: 13px;
    }

    .mission-card {
        min-height: 68px;

        padding: 11px 18px;
    }

    .mission-icon {
        width: 45px;
        min-width: 45px;
        height: 45px;

        margin-right: 14px;
    }

    .mission-icon svg {
        width: 39px;
        height: 39px;
    }

    .mission-card p {
        font-size: 14px;
    }

    .vision-section {
        margin-top: 70px;
        gap: 50px;
    }

    .vision-content {
        width: 57%;
    }

    .vision-title {
        margin-bottom: 17px;
    }

    .vision-content p {
        max-width: 580px;

        font-size: 10px;
        line-height: 1.55;
    }

    .vision-images {
        width: 39%;
        height: 175px;
    }

    .vision-image-main {
        width: 200px;
        height: 117px;
    }

    .vision-image-top {
        width: 180px;
        height: 105px;
    }
}


/* =========================================================
   TABLET
   MAX 992px
========================================================= */

@media screen and (max-width: 992px) {

    .mission-vision-section {
        padding: 55px 0 65px;
    }

    .mission-vision-container {
        width: calc(100% - 50px);
    }

    .mission-title,
    .vision-title {
        font-size: 18px;
    }

    .mission-cards {
        margin-top: 25px;
        gap: 12px;
    }

    .mission-card {
        width: calc((100% - 12px) / 2);

        min-height: 68px;

        padding: 11px 15px;
    }

    .mission-card:nth-child(4),
    .mission-card:nth-child(5) {
        margin-left: 0;
        margin-right: 0;
    }

    .mission-icon {
        width: 43px;
        min-width: 43px;

        margin-right: 12px;
    }

    .mission-icon svg {
        width: 37px;
        height: 37px;
    }

    .mission-card p {
        font-size: 13px;
    }

    .vision-section {
        margin-top: 60px;

        gap: 35px;
    }

    .vision-content {
        width: 55%;
    }

    .vision-content p {
        font-size: 10px;
        line-height: 1.55;
    }

    .vision-images {
        width: 41%;
        height: 160px;
    }

    .vision-image-main {
        width: 175px;
        height: 105px;
    }

    .vision-image-top {
        width: 160px;
        height: 95px;
    }
}


/* =========================================================
   MOBILE
   MAX 768px
========================================================= */

@media screen and (max-width: 768px) {

    .mission-vision-section {
        padding: 45px 0 55px;
    }

    .mission-vision-container {
        width: calc(100% - 30px);
    }

    .mission-title,
    .vision-title {
        font-size: 17px;
    }

    .mission-cards {
        margin-top: 22px;

        display: grid;

        grid-template-columns: 1fr;

        gap: 10px;
    }

    .mission-card,
    .mission-card-wide {
        width: 100%;

        min-height: 68px;

        margin: 0 !important;

        padding: 11px 15px;
    }

    .mission-icon {
        width: 42px;
        min-width: 42px;

        margin-right: 12px;
    }

    .mission-icon svg {
        width: 36px;
        height: 36px;
    }

    .mission-card p {
        font-size: 13px;
    }

    .vision-section {
        margin-top: 55px;

        display: flex;
        flex-direction: column;

        align-items: flex-start;

        gap: 30px;
    }

    .vision-content {
        width: 100%;
        padding-right: 0;
    }

    .vision-title {
        margin-bottom: 16px;
    }

    .vision-content p {
        max-width: none;

        font-size: 10px;
        line-height: 1.6;
    }

    .vision-images {
        width: 100%;
        height: 190px;
    }

    .vision-image-main {
        width: 60%;
        height: 125px;

        left: 0;
        bottom: 0;
    }

    .vision-image-top {
        width: 54%;
        height: 112px;

        right: 0;
        top: 0;
    }
}


/* =========================================================
   SMALL MOBILE
   MAX 480px
========================================================= */

@media screen and (max-width: 480px) {

    .mission-vision-section {
        padding: 38px 0 45px;
    }

    .mission-vision-container {
        width: calc(100% - 22px);
    }

    .mission-title,
    .vision-title {
        font-size: 16px;
    }

    .mission-cards {
        margin-top: 20px;
        gap: 9px;
    }

    .mission-card {
        min-height: 65px;

        padding: 10px 12px;
    }

    .mission-icon {
        width: 38px;
        min-width: 38px;

        margin-right: 9px;
    }

    .mission-icon svg {
        width: 32px;
        height: 32px;
    }

    .mission-card p {
        font-size: 12px;
    }

    .vision-section {
        margin-top: 45px;
        gap: 25px;
    }

    .vision-content p {
        font-size: 10px;
        line-height: 1.55;
    }

    .vision-images {
        height: 165px;
    }

    .vision-image-main {
        width: 60%;
        height: 108px;
    }

    .vision-image-top {
        width: 54%;
        height: 98px;
    }
}

.site-header .logo img {
    filter: brightness(1.12) contrast(1.05);
}

.menu-toggle {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.menu-toggle i {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* =========================================
   MENU / CLOSE BUTTONS
========================================= */

.menu-toggle,
.menu-close {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    padding: 0;

    border: none;
    outline: none;

    background: transparent;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;

    cursor: pointer;
}


/* MENU VISIBLE BY DEFAULT */

.menu-toggle {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* CLOSE HIDDEN BY DEFAULT */

.menu-close {
    display: none;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* HAMBURGER / CLOSE LINES */

.menu-toggle i,
.menu-close i {
    display: block;

    width: 40px;
    height: 1px;

    background: #ffffff;
}


/* =========================================
   WHEN MENU IS OPEN
========================================= */

.site-header.menu-open .menu-toggle {
    display: none;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.site-header.menu-open .menu-close {
    display: flex;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* CLOSE ICON */

.menu-close i:first-of-type {
    position: absolute;
    transform: rotate(45deg);
}

.menu-close i:last-of-type {
    transform: rotate(-45deg);
}


/* =========================================
   LAPTOP
========================================= */

@media screen and
(min-width: 993px) and
(max-width: 1440px) {

    .menu-toggle,
    .menu-close {
        font-size: 16px;
        gap: 15px;
    }

    .menu-toggle i,
    .menu-close i {
        width: 38px;
    }
}


/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 992px) {

    .menu-toggle,
    .menu-close {
        font-size: 15px;
        gap: 13px;
    }

    .menu-toggle i,
    .menu-close i {
        width: 34px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 768px) {

    .menu-toggle,
    .menu-close {
        font-size: 14px;
        gap: 11px;
    }

    .menu-toggle i,
    .menu-close i {
        width: 30px;
    }
}

/* =========================================
   CLOSE ICON
========================================= */

.menu-close {
    position: relative;
    gap: 14px;
}


/* Keep the two lines contained */

.menu-close i {
    position: absolute;

    right: 0;

    width: 30px;
    height: 1px;

    background: #ffffff;

    margin: 0;

    transform-origin: center;
}


/* First diagonal */

.menu-close i:first-of-type {
    transform: rotate(45deg);
}


/* Second diagonal */

.menu-close i:last-of-type {
    transform: rotate(-45deg);
}


/* Give Close text enough room */

.menu-close span {
    margin-right: 44px;
}
/* =====================================================
   WORKPLACE SECTION
===================================================== */

.workplace-section {
    width: 100%;
    background: #ffffff;
    padding: 58px 0 52px;
    box-sizing: border-box;
}


/* =====================================================
   MAIN CONTAINER
===================================================== */

.workplace-container {
    width: calc(100% - 120px);
    max-width: 1100px;
    margin: 0 auto;
}

/* =====================================================
   TOP CONTENT
===================================================== */

.workplace-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
}


/* =====================================================
   LEFT TEXT
===================================================== */

.workplace-text {
    width: 520px;
    padding-top: 1px;
    box-sizing: border-box;
}

.workplace-text p {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.38;
    font-weight: 400;
    color: #222222;
}

.workplace-text p + p {
    margin-top: 48px;
}

.workplace-statement p {
    width: 780px;
    margin: 0;
    text-align: center;

    font-family: "DM Sans", sans-serif;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 400;

    color: #111111;
}
.workplace-text strong {
    font-weight: 600;
}


/* =====================================================
   IMAGE
===================================================== */

.workplace-image {
    width: 290px;
    height: 183px;

    flex-shrink: 0;

    overflow: hidden;
    border-radius: 12px;
}

.workplace-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =====================================================
   BOTTOM STATEMENT
===================================================== */

.workplace-statement {
    width: 100%;

    margin-top: 73px;

    display: flex;
    justify-content: center;
}

.workplace-statement p {
    width: 700px;

    margin: 0;

    text-align: center;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;

    color: #111111;
}


/* =====================================================
   LAPTOP
   993px - 1440px
===================================================== */

@media screen and
(min-width: 993px) and
(max-width: 1440px) {

    .workplace-container {
        width: calc(100% - 100px);
        max-width: 1050px;
    }

    .workplace-top {
        gap: 80px;
    }

    .workplace-text {
        width: 540px;
    }

    .workplace-text p {
        font-size: 14px;
        line-height: 1.4;
    }

    .workplace-text p + p {
        margin-top: 42px;
    }

    .workplace-statement {
        margin-top: 70px;
    }

    .workplace-statement p {
        width: 760px;
        font-size: 18px;
        line-height: 1.35;
    }
}


/* =====================================================
   TABLET
   MAX 992px
===================================================== */

@media screen and (max-width: 992px) {

    .workplace-section {
        padding: 50px 0 55px;
    }

    .workplace-container {
        width: calc(100% - 70px);
        max-width: none;
    }

    .workplace-top {
        gap: 45px;
    }

    .workplace-text {
        width: 55%;
    }

    .workplace-text p {
        font-size: 12px;
        line-height: 1.4;
    }

    .workplace-text p + p {
        margin-top: 32px;
    }

    .workplace-image {
        width: 40%;
        height: 180px;
    }

    .workplace-statement {
        margin-top: 60px;
    }

    .workplace-statement p {
        width: 80%;
        font-size: 15px;
        line-height: 1.35;
    }
}


/* =====================================================
   MOBILE
   MAX 768px
===================================================== */

@media screen and (max-width: 768px) {

    .workplace-section {
        padding: 42px 0 45px;
    }

    .workplace-container {
        width: calc(100% - 36px);
    }

    .workplace-top {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .workplace-text {
        width: 100%;
    }

    .workplace-text p {
        font-size: 12px;
        line-height: 1.45;
    }

    .workplace-text p + p {
        margin-top: 28px;
    }

    .workplace-image {
        width: 100%;
        height: 210px;
        border-radius: 10px;
    }

    .workplace-statement {
        margin-top: 45px;
    }

    .workplace-statement p {
        width: 100%;
        font-size: 15px;
        line-height: 1.4;
    }
}


/* =====================================================
   SMALL MOBILE
   MAX 480px
===================================================== */

@media screen and (max-width: 480px) {

    .workplace-section {
        padding: 36px 0 40px;
    }

    .workplace-container {
        width: calc(100% - 28px);
    }

    .workplace-top {
        gap: 25px;
    }

    .workplace-text p {
        font-size: 11px;
        line-height: 1.45;
    }

    .workplace-text p + p {
        margin-top: 25px;
    }

    .workplace-image {
        height: 190px;
    }

    .workplace-statement {
        margin-top: 38px;
    }

    .workplace-statement p {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* =====================================================
   CAREER IMAGE MARQUEE
===================================================== */

.career-marquee-section {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    padding: 24px 0 30px;
}


/* =====================================================
   MARQUEE VIEWPORT
===================================================== */

.career-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}


/* =====================================================
   MOVING TRACK
===================================================== */

.career-marquee-track {
    display: flex;
    align-items: center;
    gap: 18px;

    width: max-content;

    animation: careerMarqueeMove 42s linear infinite;

    will-change: transform;
}


/* =====================================================
   INDIVIDUAL IMAGE
===================================================== */

.career-marquee-item {
    flex-shrink: 0;
    overflow: hidden;

    border-radius: 8px;

    background: #eeeeee;
}

.career-marquee-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* =====================================================
   IMAGE SIZES
===================================================== */

.career-marquee-large {
    width: 188px;
    height: 252px;
}

.career-marquee-small {
    width: 105px;
    height: 205px;
}

.career-marquee-medium {
    width: 230px;
    height: 122px;
}

.career-marquee-wide {
    width: 207px;
    height: 198px;
}


/* =====================================================
   IMAGE HOVER
===================================================== */

.career-marquee-item:hover img {
    transform: scale(1.04);
}


/* =====================================================
   INFINITE ANIMATION
===================================================== */

@keyframes careerMarqueeMove {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}


/* =====================================================
   PAUSE WHEN USER HOVERS
===================================================== */

.career-marquee:hover .career-marquee-track {
    animation-play-state: paused;
}


/* =====================================================
   LAPTOP
   993px - 1440px
===================================================== */

@media screen and
(min-width: 993px) and
(max-width: 1440px) {

    .career-marquee-section {
        padding: 22px 0 28px;
    }

    .career-marquee-track {
        gap: 16px;
        animation-duration: 40s;
    }

    .career-marquee-large {
        width: 175px;
        height: 235px;
    }

    .career-marquee-small {
        width: 100px;
        height: 190px;
    }

    .career-marquee-medium {
        width: 215px;
        height: 115px;
    }

    .career-marquee-wide {
        width: 195px;
        height: 188px;
    }
}


/* =====================================================
   TABLET
   MAX 992px
===================================================== */

@media screen and (max-width: 992px) {

    .career-marquee-section {
        padding: 20px 0 25px;
    }

    .career-marquee-track {
        gap: 14px;
        animation-duration: 36s;
    }

    .career-marquee-large {
        width: 160px;
        height: 215px;
    }

    .career-marquee-small {
        width: 90px;
        height: 175px;
    }

    .career-marquee-medium {
        width: 190px;
        height: 105px;
    }

    .career-marquee-wide {
        width: 175px;
        height: 170px;
    }
}


/* =====================================================
   MOBILE
   MAX 768px
===================================================== */

@media screen and (max-width: 768px) {

    .career-marquee-section {
        padding: 16px 0 20px;
    }

    .career-marquee-track {
        gap: 12px;
        animation-duration: 32s;
    }

    .career-marquee-large {
        width: 135px;
        height: 185px;
    }

    .career-marquee-small {
        width: 78px;
        height: 150px;
    }

    .career-marquee-medium {
        width: 155px;
        height: 90px;
    }

    .career-marquee-wide {
        width: 150px;
        height: 145px;
    }
}


/* =====================================================
   SMALL MOBILE
   MAX 480px
===================================================== */

@media screen and (max-width: 480px) {

    .career-marquee-section {
        padding: 14px 0 18px;
    }

    .career-marquee-track {
        gap: 10px;
        animation-duration: 28s;
    }

    .career-marquee-large {
        width: 115px;
        height: 155px;
    }

    .career-marquee-small {
        width: 68px;
        height: 130px;
    }

    .career-marquee-medium {
        width: 135px;
        height: 78px;
    }

    .career-marquee-wide {
        width: 130px;
        height: 125px;
    }
}

/* =========================================
   NYNEX - OUR VACANCIES
========================================= */

.nynex-vacancies {
    width: 100%;
    background: #f7f7f7;
    padding: 80px 0 90px;
    box-sizing: border-box;
}

.nynex-vacancies-container {
    width: min(1170px, calc(100% - 110px));
    margin: 0 auto;
}


/* -----------------------------------------
   SECTION TITLE
----------------------------------------- */

.nynex-vacancies-title {
    margin: 0 0 38px;
    text-align: center;

    font-family: "DM Sans", sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.3px;

    color: #111;
}


/* -----------------------------------------
   VACANCY ROW
----------------------------------------- */

.nynex-vacancy {
    position: relative;

    display: flex;
    align-items: flex-start;

    width: 100%;
    min-height: 195px;

    padding: 0 0 20px;
    margin-bottom: 32px;

    border-bottom: 1px solid #d2d2d2;
    box-sizing: border-box;
}


/* -----------------------------------------
   NUMBER
----------------------------------------- */

.nynex-vacancy-number {
    flex: 0 0 82px;

    padding-top: 3px;

    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;

    color: #111;
}


/* -----------------------------------------
   CONTENT
----------------------------------------- */

.nynex-vacancy-content {
    flex: 1;
    min-width: 0;
}

.nynex-vacancy-content h3 {
    margin: 0 0 12px;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;

    color: #111;
}

.nynex-vacancy-label {
    margin-bottom: 5px;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;

    color: #8b8b8b;
}

.nynex-vacancy-description {
    margin: 0 0 7px;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.38;

    color: #999;
}

.nynex-vacancy-meta {
    margin: 3px 0 0;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.45;

    color: #333;
}

.nynex-vacancy-meta strong {
    font-weight: 500;
}


/* -----------------------------------------
   APPLY BUTTON
----------------------------------------- */

.nynex-apply-btn {
    position: absolute;
    right: 5px;
    bottom: 20px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 0 0 5px;

    border-bottom: 1px solid #777;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 400;

    color: #777;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.nynex-apply-arrow {
    font-size: 18px;
    line-height: 10px;

    transition: transform 0.25s ease;
}

.nynex-apply-btn:hover {
    color: #111;
    border-color: #111;
}

.nynex-apply-btn:hover .nynex-apply-arrow {
    transform: translateX(4px);
}


/* =========================================
   LAPTOP
========================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .nynex-vacancies {
        padding: 70px 0 80px;
    }

    .nynex-vacancies-container {
        width: min(1100px, calc(100% - 90px));
    }

    .nynex-vacancies-title {
        font-size: 25px;
        margin-bottom: 35px;
    }

    .nynex-vacancy {
        min-height: 190px;
    }

}


/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 992px) {

    .nynex-vacancies {
        padding: 65px 0 70px;
    }

    .nynex-vacancies-container {
        width: calc(100% - 70px);
    }

    .nynex-vacancies-title {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .nynex-vacancy-number {
        flex-basis: 70px;
    }

    .nynex-vacancy {
        min-height: 195px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 768px) {

    .nynex-vacancies {
        padding: 55px 0 60px;
    }

    .nynex-vacancies-container {
        width: calc(100% - 40px);
    }

    .nynex-vacancies-title {
        font-size: 23px;
        margin-bottom: 35px;
    }

    .nynex-vacancy {
        display: grid;
        grid-template-columns: 42px 1fr;

        min-height: 0;

        padding-bottom: 28px;
        margin-bottom: 28px;
    }

    .nynex-vacancy-number {
        grid-column: 1;

        padding-top: 1px;

        font-size: 16px;
    }

    .nynex-vacancy-content {
        grid-column: 2;
    }

    .nynex-vacancy-content h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .nynex-vacancy-label {
        font-size: 11px;
    }

    .nynex-vacancy-description {
        font-size: 10.5px;
        line-height: 1.45;
    }

    .nynex-vacancy-meta {
        font-size: 10.5px;
    }

    .nynex-apply-btn {
        position: static;

        grid-column: 2;

        justify-self: start;

        margin-top: 18px;

        font-size: 11px;
    }

}

/* =========================================
   NYNEX - PRIVACY POLICY
========================================= */

.nynex-privacy-section {
    width: 100%;
    background: #ffffff;
    box-sizing: border-box;

    padding: 68px 0 135px;
}

.nynex-privacy-container {
    width: calc(100% - 188px);
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.nynex-privacy-container p {
    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;

    letter-spacing: 0;

    color: #222;
}

.nynex-privacy-container p + p {
    margin-top: 24px;
}


/* =========================================
   LAPTOP
========================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .nynex-privacy-section {
        padding: 65px 0 120px;
    }

    .nynex-privacy-container {
        width: calc(100% - 150px);
    }

    .nynex-privacy-container p {
        font-size: 13px;
        line-height: 1.55;
    }

    .nynex-privacy-container p + p {
        margin-top: 24px;
    }

}


/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 992px) {

    .nynex-privacy-section {
        padding: 60px 0 90px;
    }

    .nynex-privacy-container {
        width: calc(100% - 90px);
    }

    .nynex-privacy-container p {
        font-size: 13px;
        line-height: 1.6;
    }

    .nynex-privacy-container p + p {
        margin-top: 24px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 768px) {

    .nynex-privacy-section {
        padding: 45px 0 65px;
    }

    .nynex-privacy-container {
        width: calc(100% - 40px);
    }

    .nynex-privacy-container p {
        font-size: 12px;
        line-height: 1.6;
    }

    .nynex-privacy-container p + p {
        margin-top: 22px;
    }

}

/* =========================================
   NYNEX - TERMS & CONDITIONS
========================================= */

.nynex-terms-section {
    width: 100%;
    background: #ffffff;
    box-sizing: border-box;

    padding: 55px 0 100px;
}

.nynex-terms-container {
    width: calc(100% - 190px);
    max-width: 1320px;

    margin: 0 auto;
    box-sizing: border-box;
}


/* -----------------------------------------
   TERMS BLOCK
----------------------------------------- */

.nynex-terms-block {
    margin: 0 0 32px;
}

.nynex-terms-block:last-child {
    margin-bottom: 0;
}


/* -----------------------------------------
   HEADINGS
----------------------------------------- */

.nynex-terms-block h2 {
    margin: 0 0 16px;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;

    color: #111;
}


/* -----------------------------------------
   BODY TEXT
----------------------------------------- */

.nynex-terms-block p {
    margin: 0 0 11px;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;

    letter-spacing: 0;

    color: #333;
}

.nynex-terms-block p:last-child {
    margin-bottom: 0;
}


/* =========================================
   LAPTOP
========================================= */

@media screen and (min-width: 993px) and (max-width: 1440px) {

    .nynex-terms-section {
        padding: 50px 0 90px;
    }

    .nynex-terms-container {
        width: calc(100% - 150px);
        max-width: 1200px;
    }

    .nynex-terms-block {
        margin-bottom: 30px;
    }

    .nynex-terms-block h2 {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .nynex-terms-block p {
        font-size: 11.5px;
        line-height: 1.55;
    }
}


/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 992px) {

    .nynex-terms-section {
        padding: 50px 0 75px;
    }

    .nynex-terms-container {
        width: calc(100% - 80px);
    }

    .nynex-terms-block {
        margin-bottom: 30px;
    }

    .nynex-terms-block h2 {
        font-size: 13px;
        margin-bottom: 13px;
    }

    .nynex-terms-block p {
        font-size: 11.5px;
        line-height: 1.6;
    }
}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 768px) {

    .nynex-terms-section {
        padding: 40px 0 60px;
    }

    .nynex-terms-container {
        width: calc(100% - 40px);
    }

    .nynex-terms-block {
        margin-bottom: 28px;
    }

    .nynex-terms-block h2 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .nynex-terms-block p {
        font-size: 11.5px;
        line-height: 1.6;
    }
}