/* =========================================================
   AEGIS PARTNERS
   PREMIUM CONSTRUCTION / INFRASTRUCTURE FRONTEND
   ========================================================= */


/* =========================================================
   ROOT
========================================================== */

:root {

    --black: #080808;
    --black-soft: #101010;
    --navy: #071827;
    --navy-2: #0b2235;

    --gold: #e8b532;
    --gold-dark: #c99a20;
    --gold-light: #f2ca55;

    --white: #ffffff;
    --off-white: #f5f5f2;
    --paper: #eeeeeb;

    --text: #171717;
    --muted: #6d6d6d;
    --muted-light: #a8a8a8;

    --line: rgba(0,0,0,.12);
    --line-dark: rgba(255,255,255,.14);

    --container: 1380px;

    --ease: cubic-bezier(.22,.61,.36,1);

}


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

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

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

    color: var(--text);
    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img,
video {
    max-width: 100%;
}

img {
    display: block;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

::selection {
    background: var(--gold);
    color: var(--black);
}


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

.container {
    width: min(
        calc(100% - 10vw),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   TOPBAR
========================================================== */

.topbar {
    position: relative;
    z-index: 1000;

    background: var(--black);
    color: rgba(255,255,255,.72);

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar-inner {
    width: min(
        calc(100% - 10vw),
        1500px
    );

    min-height: 42px;

    margin-inline: auto;

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

    gap: 30px;
}

.top-contact,
.top-right {
    display: flex;
    align-items: center;
}

.top-contact {
    gap: 26px;
}

.top-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 11px;
    letter-spacing: .4px;

    transition:
        color .25s ease;
}

.top-contact a:hover {
    color: var(--white);
}

.top-icon {
    color: var(--gold);
}

.top-right {
    gap: 24px;
}

.top-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-socials a {
    width: 24px;
    height: 24px;

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

    display: grid;
    place-items: center;

    font-size: 10px;
    font-weight: 700;

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

.top-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.top-quote {
    min-height: 42px;

    padding-inline: 18px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: var(--gold);
    color: var(--black);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;

    transition:
        background .25s ease;
}

.top-quote:hover {
    background: var(--gold-light);
}

.top-quote span {
    font-size: 16px;
}


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

.site-header {
    position: absolute;
    z-index: 900;

    top: 42px;
    left: 0;
    right: 0;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.58),
        rgba(0,0,0,0)
    );

    border-bottom: 1px solid rgba(255,255,255,.10);

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

.site-header.scrolled {
    position: fixed;
    top: 0;

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

    backdrop-filter: blur(16px);

    border-bottom-color:
        rgba(255,255,255,.08);
}

.nav-inner {
    width: min(
        calc(100% - 10vw),
        1500px
    );

    height: 94px;

    margin-inline: auto;

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

    gap: 35px;
}

.brand {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.brand img {
    width: 190px;
    height: auto;

    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(18px, 2vw, 34px);

    margin-left: auto;
}

.nav-links a {
    position: relative;

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

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    padding: 10px 0;

    transition:
        color .25s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 100%;
    bottom: 2px;

    height: 2px;

    background: var(--gold);

    transition:
        right .3s var(--ease);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    right: 0;
}

.nav-actions {
    display: flex;
    align-items: center;

    gap: 12px;
}

.nav-cta {
    min-height: 45px;

    padding: 0 18px;

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

    background: var(--gold);
    color: var(--black);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;

    transition:
        background .25s ease,
        transform .25s ease;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.nav-cta strong {
    font-size: 16px;
}


/* =========================================================
   MOBILE NAV BUTTON
========================================================== */

.menu-btn {
    display: none;

    width: 45px;
    height: 45px;

    background: transparent;

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

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    cursor: pointer;
}

.menu-btn span {
    display: block;

    width: 19px;
    height: 2px;

    background: var(--white);

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

.menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;

    z-index: 850;

    background: rgba(0,0,0,.62);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   FLASH
========================================================== */

.flash-container {
    position: fixed;

    top: 115px;
    right: 25px;

    z-index: 2000;

    width: min(420px, calc(100% - 40px));
}

.flash {
    padding: 15px 18px;

    margin-bottom: 10px;

    background: var(--black);
    color: var(--white);

    border-left: 3px solid var(--gold);

    box-shadow:
        0 20px 50px rgba(0,0,0,.18);

    font-size: 13px;
}


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

.home-hero {
    position: relative;

    min-height: 820px;

    background: var(--black);

    color: var(--white);

    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    opacity: 0;

    transform: scale(1.05);

    animation:
        heroSlide 24s infinite;
}

.hero-slide-1 {
    background-image:
        url("../images/hero-equipment.jpg");

    animation-delay: 0s;
}

.hero-slide-2 {
    background-image:
        url("../images/hero-construction.jpg");

    animation-delay: 6s;
}

.hero-slide-3 {
    background-image:
        url("../images/hero-earthworks.jpg");

    animation-delay: 12s;
}

.hero-slide-4 {
    background-image:
        url("../images/hero-site.jpg");

    animation-delay: 18s;
}

@keyframes heroSlide {

    0% {
        opacity: 0;
        transform: scale(1.05);
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
        transform: scale(1);
    }

    30% {
        opacity: 0;
        transform: scale(1.02);
    }

    100% {
        opacity: 0;
    }

}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.62) 44%,
            rgba(0,0,0,.22) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.76),
            transparent 48%
        );

    z-index: 2;
}

.hero-grid {
    position: absolute;
    inset: 0;

    z-index: 3;

    opacity: .22;

    background-image:
        linear-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size: 120px 120px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 78%
        );
}

.hero-content {
    position: relative;
    z-index: 5;

    width: min(
        calc(100% - 10vw),
        1500px
    );

    margin-inline: auto;

    min-height: 820px;

    padding-top: 235px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 27px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.hero-line {
    width: 38px;
    height: 1px;

    background: var(--gold);
}

.hero-title {
    max-width: 900px;

    margin: 0;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size:
        clamp(
            64px,
            7.2vw,
            112px
        );

    font-weight: 800;

    line-height: .95;

    letter-spacing: -4px;
}

.hero-title span {
    display: block;

    color: var(--gold);
}

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

    margin:
        35px 0 0;

    color: rgba(255,255,255,.76);

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

.hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-top: 36px;
}

.btn {
    min-height: 54px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;

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

.btn:hover {
    transform: translateY(-3px);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-light);
}

.btn-outline-light {
    color: var(--white);

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn span {
    font-size: 17px;
}

.hero-side {
    position: absolute;

    right: 4.5%;
    bottom: 125px;

    z-index: 6;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;

    color: rgba(255,255,255,.45);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.7px;

    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.hero-bottom {
    position: absolute;

    left: 5%;
    right: 5%;
    bottom: 38px;

    z-index: 6;

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

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 14px;

    color: rgba(255,255,255,.64);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.scroll-line {
    width: 45px;
    height: 1px;

    background: var(--gold);
}

.hero-slide-counter {
    display: flex;
    align-items: center;
    gap: 13px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-slide-counter span:first-child {
    color: var(--gold);
}

.counter-line {
    width: 45px;
    height: 1px;

    background: rgba(255,255,255,.3);
}


/* =========================================================
   REVEAL
========================================================== */

.reveal {
    opacity: 0;
    transform: translateY(25px);

    animation:
        revealUp .9s var(--ease) forwards;
}

.hero-content .reveal:nth-child(1) {
    animation-delay: .15s;
}

.hero-content .reveal:nth-child(2) {
    animation-delay: .28s;
}

.hero-content .reveal:nth-child(3) {
    animation-delay: .4s;
}

.hero-content .reveal:nth-child(4) {
    animation-delay: .52s;
}

@keyframes revealUp {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   LIGHT SECTIONS
========================================================== */

.section-light {
    background: var(--off-white);
}

.intro-section {
    padding: 125px 0 135px;
}

.section-tag {
    color: #7b7b7b;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.section-tag::before {
    content: "";

    display: inline-block;

    width: 28px;
    height: 1px;

    margin-right: 10px;

    vertical-align: middle;

    background: var(--gold);
}

.section-tag.light {
    color: rgba(255,255,255,.54);
}

.intro-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(300px, .75fr);

    gap: 90px;

    margin-top: 55px;
}

.intro-heading h2,
.section-title,
.partners-heading h2,
.why-heading h2,
.equipment-copy h2,
.cta-content h2 {
    margin: 0;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-weight: 800;

    letter-spacing: -2.5px;
}

.intro-heading h2 {
    max-width: 780px;

    font-size:
        clamp(
            48px,
            5.2vw,
            78px
        );

    line-height: 1.02;
}

.intro-heading h2 span,
.section-title span,
.partners-heading h2 span,
.why-heading h2 span,
.equipment-copy h2 span,
.cta-content h2 span {
    color: var(--gold);
}

.intro-copy {
    padding-top: 8px;
}

.intro-copy p {
    margin: 0 0 22px;

    color: #666;

    font-size: 15px;
    line-height: 1.8;
}

.intro-copy .lead {
    color: #242424;

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

.inline-link,
.section-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;

    margin-top: 20px;

    color: var(--black);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.inline-link span,
.section-link span {
    color: var(--gold);

    font-size: 17px;

    transition:
        transform .25s ease;
}

.inline-link:hover span,
.section-link:hover span {
    transform: translateX(5px);
}


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

.stats-section {
    background: var(--black);
    color: var(--white);

    border-top:
        1px solid rgba(255,255,255,.08);
}

.stats-grid {
    display: grid;

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

.stat-item {
    min-height: 180px;

    padding: 35px 28px;

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

    border-right:
        1px solid rgba(255,255,255,.10);
}

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

.stat-item strong {
    color: var(--gold);

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size:
        clamp(
            42px,
            4vw,
            62px
        );

    line-height: 1;

    font-weight: 800;

    letter-spacing: -2px;
}

.stat-item span {
    margin-top: 13px;

    color: rgba(255,255,255,.58);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}


/* =========================================================
   SERVICES
========================================================== */

.services-section {
    padding: 130px 0 145px;
}

.section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}

.section-title {
    margin-top: 16px;

    font-size:
        clamp(
            46px,
            5vw,
            76px
        );

    line-height: .98;
}

.section-link {
    margin: 0;
}

.service-cards {
    display: grid;

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

    gap: 12px;
}

.service-card {
    position: relative;

    min-height: 560px;

    background: var(--white);

    overflow: hidden;

    border:
        1px solid rgba(0,0,0,.08);
}

.service-number {
    position: absolute;

    z-index: 4;

    top: 22px;
    left: 22px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background: var(--gold);
    color: var(--black);

    font-size: 10px;
    font-weight: 800;
}

.service-image {
    position: absolute;
    inset: 0;

    background-position: center;
    background-size: cover;

    transition:
        transform .7s var(--ease);
}

.service-image-1 {
    background-image:
        url("../images/service-civil.jpg");
}

.service-image-2 {
    background-image:
        url("../images/service-earthworks.jpg");
}

.service-image-3 {
    background-image:
        url("../images/service-construction.jpg");
}

.service-image-4 {
    background-image:
        url("../images/service-equipment.jpg");
}

.service-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.88),
            rgba(0,0,0,.08) 68%
        );

    z-index: 1;
}

.service-card:hover .service-image {
    transform: scale(1.07);
}

.service-content {
    position: absolute;

    z-index: 3;

    left: 30px;
    right: 30px;
    bottom: 30px;

    color: var(--white);
}

.service-content > span {
    color: var(--gold);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.service-content h3 {
    margin: 10px 0 12px;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

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

    letter-spacing: -1px;
}

.service-content p {
    margin: 0;

    color: rgba(255,255,255,.72);

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

.service-content a {
    width: 42px;
    height: 42px;

    margin-top: 22px;

    display: grid;
    place-items: center;

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

    color: var(--white);

    font-size: 18px;

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

.service-card:hover .service-content a {
    background: var(--gold);
    color: var(--black);
}


/* =========================================================
   FEATURED PROJECT
========================================================== */

.featured-section {
    position: relative;

    min-height: 690px;

    background: var(--black);
    color: var(--white);

    overflow: hidden;
}

.featured-image {
    position: absolute;
    inset: 0;

    width: 60%;
}

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

    object-fit: cover;

    filter: saturate(.82);
}

.featured-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.12),
            rgba(0,0,0,.88)
        );
}

.featured-content {
    position: relative;
    z-index: 2;

    width: 48%;

    margin-left: 52%;

    min-height: 690px;

    padding:
        115px
        7vw
        100px
        60px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.featured-label {
    margin-top: 30px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.featured-content h2 {
    max-width: 700px;

    margin: 14px 0;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size:
        clamp(
            44px,
            4.5vw,
            72px
        );

    line-height: .98;

    letter-spacing: -2.5px;
}

.featured-location {
    margin: 0;

    color: rgba(255,255,255,.62);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.featured-location span {
    margin-inline: 7px;

    color: var(--gold);
}

.featured-description {
    max-width: 570px;

    margin: 25px 0 32px;

    color: rgba(255,255,255,.67);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   PROJECTS
========================================================== */

.section-dark {
    background: var(--black);
    color: var(--white);
}

.projects-section {
    padding: 130px 0 145px;
}

.section-top.dark {
    align-items: flex-end;
}

.section-title.light {
    color: var(--white);
}

.light-link {
    color: var(--white);
}

.project-grid {
    display: grid;

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

    gap: 18px;
}

.project-card {
    display: block;

    background: #121212;

    overflow: hidden;

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

    transition:
        transform .35s var(--ease),
        border-color .35s ease;
}

.project-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(232,181,50,.4);
}

.project-image {
    position: relative;

    height: 390px;

    background: #191919;

    overflow: hidden;
}

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

    object-fit: cover;

    transition:
        transform .65s var(--ease);
}

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

.project-placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    color: var(--gold);

    font-size: 22px;
    font-weight: 800;
    letter-spacing: 4px;
}

.project-overlay {
    position: absolute;
    inset: 0;

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

    padding: 25px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.82),
            transparent 45%
        );

    opacity: 0;

    transition:
        opacity .35s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay span {
    color: var(--white);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.project-overlay strong {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    background: var(--gold);
    color: var(--black);

    font-size: 17px;
}

.project-info {
    padding: 24px 25px 28px;
}

.project-meta {
    display: flex;
    gap: 7px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.project-info h3 {
    margin: 10px 0 13px;

    color: var(--white);

    font-family:
        "Manrope",
        Arial,
        sans-serif;

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

    letter-spacing: -.7px;
}

.project-status {
    color: rgba(255,255,255,.42);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-empty {
    grid-column: 1 / -1;

    min-height: 300px;

    padding: 55px;

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

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

.project-empty span {
    color: var(--gold);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.project-empty h3 {
    margin: 13px 0;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 32px;
}

.project-empty p {
    margin: 0;

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


/* =========================================================
   PARTNERS
========================================================== */

.partners-section {
    padding: 125px 0 135px;

    background: var(--white);

    overflow: hidden;
}

.partners-heading {
    max-width: 750px;

    margin-bottom: 65px;
}

.partners-heading h2 {
    margin-top: 18px;

    font-size:
        clamp(
            46px,
            5vw,
            74px
        );

    line-height: .98;
}

.partners-heading p {
    max-width: 550px;

    margin: 25px 0 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.75;
}

.partner-marquee {
    width: 100%;

    overflow: hidden;

    border-top:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);
}

.partner-track {
    width: max-content;

    min-height: 145px;

    display: flex;
    align-items: center;

    animation:
        partnerScroll 28s linear infinite;
}

.partner-logo {
    min-width: 220px;

    padding-inline: 45px;

    color: #777;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 20px;
    font-weight: 800;
    letter-spacing: -1px;

    text-align: center;

    white-space: nowrap;

    border-right:
        1px solid var(--line);

    transition:
        color .25s ease;
}

.partner-logo:hover {
    color: var(--black);
}

@keyframes partnerScroll {

    from {
        transform: translateX(0);
    }

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

}


/* =========================================================
   TESTIMONIALS
========================================================== */

.testimonials-section {
    padding: 125px 0 145px;
}

.testimonial-slider {
    position: relative;

    margin-top: 55px;

    min-height: 470px;

    overflow: hidden;

    background: var(--white);

    border:
        1px solid var(--line);
}

.testimonial-slide {
    position: absolute;
    inset: 0;

    padding:
        50px
        65px
        45px;

    display: flex;
    flex-direction: column;

    opacity: 0;
    visibility: hidden;

    transform: translateX(40px);

    transition:
        opacity .55s ease,
        transform .55s var(--ease),
        visibility .55s ease;
}

.testimonial-slide.active {
    position: relative;

    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}

.testimonial-company {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-logo {
    width: 68px;
    height: 68px;

    border-radius: 50%;

    overflow: hidden;

    background: var(--paper);

    flex-shrink: 0;
}

.testimonial-logo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.testimonial-company strong {
    display: block;

    color: var(--black);

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 16px;
    font-weight: 800;
}

.testimonial-company span {
    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: .4px;
}

.testimonial-main {
    max-width: 950px;

    margin-top: 55px;
}

.testimonial-quote-mark {
    height: 45px;

    color: var(--gold);

    font-family:
        Georgia,
        serif;

    font-size: 75px;

    line-height: .8;
}

.testimonial-main blockquote {
    margin: 15px 0 0;

    color: #292929;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size:
        clamp(
            24px,
            2.5vw,
            38px
        );

    font-weight: 500;

    line-height: 1.25;

    letter-spacing: -1.1px;
}

.testimonial-footer {
    margin-top: auto;

    padding-top: 25px;

    display: flex;
    justify-content: space-between;

    border-top:
        1px solid var(--line);

    color: var(--muted);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonial-footer span:last-child {
    color: var(--gold);
}

.testimonial-controls {
    position: absolute;

    right: 45px;
    bottom: 42px;

    z-index: 10;

    display: flex;
    gap: 7px;
}

.testimonial-controls button {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    background: var(--black);
    color: var(--white);

    cursor: pointer;

    font-size: 17px;

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

.testimonial-controls button:hover {
    background: var(--gold);
    color: var(--black);
}


/* =========================================================
   EQUIPMENT
========================================================== */

.equipment-section {
    position: relative;

    min-height: 690px;

    background: var(--navy);

    color: var(--white);

    overflow: hidden;
}

.equipment-background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,24,39,.96),
            rgba(7,24,39,.68)
        ),
        url("../images/hero-equipment.jpg")
        center / cover no-repeat;

    opacity: .85;
}

.equipment-container {
    position: relative;
    z-index: 2;

    min-height: 690px;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 70px;
}

.equipment-copy {
    max-width: 650px;
}

.equipment-copy h2 {
    margin-top: 20px;

    font-size:
        clamp(
            50px,
            5.5vw,
            82px
        );

    line-height: .94;
}

.equipment-copy p {
    max-width: 540px;

    margin: 30px 0;

    color: rgba(255,255,255,.68);

    font-size: 15px;
    line-height: 1.8;
}

.equipment-orbit {
    position: relative;

    width: min(480px, 100%);
    aspect-ratio: 1;

    margin-inline: auto;

    display: grid;
    place-items: center;
}

.orbit-ring {
    position: absolute;

    border:
        1px solid rgba(232,181,50,.25);

    border-radius: 50%;
}

.orbit-ring-1 {
    inset: 6%;
}

.orbit-ring-2 {
    inset: 18%;

    border-color:
        rgba(255,255,255,.12);
}

.orbit-ring-3 {
    inset: 31%;

    border-color:
        rgba(232,181,50,.18);
}

.equipment-orb {
    width: 190px;
    aspect-ratio: 1;

    border-radius: 50%;

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

    text-align: center;

    background:
        radial-gradient(
            circle at 30% 25%,
            #ffffff 0%,
            #d9dfe3 30%,
            #64717a 65%,
            #111c24 100%
        );

    color: var(--navy);

    box-shadow:
        0 25px 80px rgba(0,0,0,.42),
        inset -15px -18px 30px rgba(0,0,0,.25);

    animation:
        equipmentFloat 5s ease-in-out infinite;
}

.equipment-orb span {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 3px;
}

.equipment-orb small {
    margin-top: 5px;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

@keyframes equipmentFloat {

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

    50% {
        transform: translateY(-13px);
    }

}


/* =========================================================
   MEDIA
========================================================== */

.media-section {
    padding: 125px 0 145px;
}

.media-preview-grid {
    display: grid;

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

    gap: 16px;
}

.media-preview {
    background: var(--white);

    border:
        1px solid var(--line);

    overflow: hidden;
}

.media-preview-image {
    position: relative;

    height: 320px;

    background: #ddd;

    overflow: hidden;
}

.media-preview-image img,
.media-preview-image video {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s var(--ease);
}

.media-preview:hover
.media-preview-image img {
    transform: scale(1.05);
}

.media-play {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 55px;
    height: 55px;

    transform: translate(-50%, -50%);

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--gold);
    color: var(--black);

    font-size: 14px;
}

.media-preview-copy {
    padding: 20px 22px 24px;
}

.media-preview-copy span {
    color: var(--gold);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.media-preview-copy h3 {
    margin: 8px 0 0;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 20px;
    line-height: 1.15;
}

.media-empty {
    grid-column: 1 / -1;

    min-height: 270px;

    padding: 50px;

    border:
        1px solid var(--line);

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

.media-empty span {
    color: var(--gold);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.media-empty h3 {
    max-width: 700px;

    margin: 12px 0;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 32px;
}

.media-empty p {
    max-width: 600px;

    margin: 0;

    color: var(--muted);
}


/* =========================================================
   WHY AEGIS
========================================================== */

.why-section {
    padding: 130px 0 145px;
}

.why-layout {
    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap: 100px;
}

.why-heading h2 {
    margin-top: 20px;

    font-size:
        clamp(
            50px,
            5vw,
            76px
        );

    line-height: .95;
}

.why-heading p {
    max-width: 480px;

    margin: 30px 0 0;

    color: rgba(255,255,255,.62);

    font-size: 14px;
    line-height: 1.8;
}

.why-grid {
    display: grid;

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

    gap: 0;
}

.why-grid article {
    min-height: 250px;

    padding: 28px;

    border-top:
        1px solid rgba(255,255,255,.12);

    border-left:
        1px solid rgba(255,255,255,.12);
}

.why-grid article:nth-child(2n+1) {
    border-left: 0;
}

.why-grid article:nth-child(n+3) {
    border-bottom:
        1px solid rgba(255,255,255,.12);
}

.why-grid span {
    color: var(--gold);

    font-size: 10px;
    font-weight: 800;
}

.why-grid h3 {
    margin: 24px 0 12px;

    color: var(--white);

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 24px;
}

.why-grid p {
    margin: 0;

    color: rgba(255,255,255,.5);

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


/* =========================================================
   FINAL CTA
========================================================== */

.final-cta {
    position: relative;

    min-height: 590px;

    display: flex;
    align-items: center;

    background: var(--black);

    color: var(--white);

    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.94),
            rgba(0,0,0,.65)
        ),
        url("../images/hero-construction.jpg")
        center / cover no-repeat;

    opacity: .85;
}

.cta-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
}

.cta-content h2 {
    margin-top: 20px;

    font-size:
        clamp(
            58px,
            6.5vw,
            100px
        );

    line-height: .92;
}

.cta-content p {
    max-width: 570px;

    margin: 28px 0 34px;

    color: rgba(255,255,255,.68);

    font-size: 15px;
    line-height: 1.8;
}


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

.site-footer {
    background: #050505;
    color: var(--white);
}

.footer-main {
    width: min(
        calc(100% - 10vw),
        1500px
    );

    margin-inline: auto;

    padding:
        85px 0
        75px;

    display: grid;

    grid-template-columns:
        1.6fr
        1fr
        1fr
        1.2fr;

    gap: 60px;
}

.footer-logo img {
    width: 190px;
}

.footer-brand p {
    max-width: 360px;

    margin: 25px 0;

    color: rgba(255,255,255,.48);

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

.footer-quote {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.footer-quote span {
    font-size: 17px;

    transition:
        transform .25s ease;
}

.footer-quote:hover span {
    transform: translateX(5px);
}

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

    gap: 12px;
}

.footer-heading {
    margin-bottom: 9px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.footer-column a,
.footer-address {
    color: rgba(255,255,255,.52);

    font-size: 12px;

    transition:
        color .25s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    line-height: 1.6;
}

.location-dot {
    color: var(--gold);

    font-size: 8px;

    margin-top: 5px;
}

.footer-socials {
    display: flex;
    gap: 8px;

    margin-top: 12px;
}

.footer-socials a {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

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

    color: var(--white);

    font-size: 10px;
}

.footer-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.footer-trust {
    min-height: 60px;

    padding-inline: 5%;

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

    gap: clamp(18px, 4vw, 60px);

    border-top:
        1px solid rgba(255,255,255,.08);

    border-bottom:
        1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.28);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;

    text-align: center;
}

.footer-bottom {
    width: min(
        calc(100% - 10vw),
        1500px
    );

    min-height: 70px;

    margin-inline: auto;

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

    gap: 20px;

    color: rgba(255,255,255,.3);

    font-size: 9px;
    letter-spacing: .3px;
}


/* =========================================================
   PAGE TRANSITION
========================================================== */

.aegis-transition {
    position: fixed;
    inset: 0;

    z-index: 99999;

    background: var(--navy);

    visibility: hidden;
    opacity: 0;

    pointer-events: none;

    overflow: hidden;

    transition:
        opacity .15s ease,
        visibility .15s ease;
}

.aegis-transition.active {
    visibility: visible;
    opacity: 1;

    pointer-events: auto;
}

.transition-track {
    position: absolute;
    inset: 0;

    overflow: hidden;
}

.transition-orb {
    position: absolute;

    width: 92px;
    height: 92px;

    left: -120px;
    top: 50%;

    margin-top: -46px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 30% 25%,
            #ffffff 0%,
            #eeeeee 10%,
            #aeb4b8 32%,
            #59636b 60%,
            #162535 100%
        );

    box-shadow:
        0 0 0 2px rgba(255,255,255,.12),
        0 20px 50px rgba(0,0,0,.4),
        inset -12px -14px 25px rgba(0,0,0,.25);

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

    will-change:
        left,
        transform;
}

.transition-orb::before {
    content: "";

    position: absolute;
    inset: 7px;

    border:
        1px solid rgba(232,181,50,.55);

    border-radius: 50%;
}

.transition-orb-inner {
    position: relative;
    z-index: 2;

    width: 66px;
    height: 66px;

    border-radius: 50%;

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

    text-align: center;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #dfe3e6 70%,
            #b7bec3
        );

    color: var(--navy);

    box-shadow:
        inset 0 2px 5px rgba(255,255,255,.95),
        inset 0 -5px 10px rgba(0,0,0,.15);
}

.transition-orb-inner span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.transition-orb-inner small {
    margin-top: 2px;

    font-size: 5px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.aegis-transition.active
.transition-orb {
    animation:
        aegisRollAcross
        .9s
        cubic-bezier(.22,.61,.36,1)
        forwards;
}

@keyframes aegisRollAcross {

    0% {
        left: -120px;

        transform:
            translateY(0)
            rotate(0deg);
    }

    30% {
        transform:
            translateY(-15px)
            rotate(220deg);
    }

    65% {
        transform:
            translateY(10px)
            rotate(470deg);
    }

    100% {
        left: calc(100% + 120px);

        transform:
            translateY(0)
            rotate(720deg);
    }

}


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

@media (max-width: 1150px) {

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 10px;
    }

    .nav-cta {
        display: none;
    }

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

    .service-card {
        min-height: 500px;
    }

    .intro-layout {
        gap: 55px;
    }

    .why-layout {
        gap: 50px;
    }

    .footer-main {
        grid-template-columns:
            1.4fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

}


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

@media (max-width: 850px) {

    .topbar {
        display: none;
    }

    .site-header {
        top: 0;

        background:
            rgba(5,5,5,.92);

        backdrop-filter: blur(14px);
    }

    .nav-inner {
        width: 90%;
        height: 78px;
    }

    .brand img {
        width: 165px;
    }

    .nav-links {
        position: fixed;

        top: 78px;
        left: 0;
        right: 0;

        height:
            calc(100vh - 78px);

        padding:
            35px 7%;

        background:
            rgba(7,7,7,.98);

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;

        gap: 0;

        transform:
            translateX(100%);

        transition:
            transform .4s var(--ease);
    }

    .nav-links.open {
        transform:
            translateX(0);
    }

    .nav-links a {
        width: 100%;

        padding: 17px 0;

        border-bottom:
            1px solid rgba(255,255,255,.09);

        font-size: 14px;
        letter-spacing: 1.2px;
    }

    .nav-links a::after {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .home-hero {
        min-height: 760px;
    }

    .hero-content {
        width: 90%;

        min-height: 760px;

        padding-top: 170px;
    }

    .hero-title {
        font-size:
            clamp(
                52px,
                13vw,
                78px
            );

        letter-spacing: -2.8px;
    }

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

        font-size: 15px;
    }

    .hero-side {
        display: none;
    }

    .hero-bottom {
        left: 5%;
        right: 5%;
    }

    .intro-section,
    .services-section,
    .projects-section,
    .partners-section,
    .testimonials-section,
    .media-section,
    .why-section {
        padding-top: 90px;
        padding-bottom: 95px;
    }

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

        gap: 35px;

        margin-top: 40px;
    }

    .intro-heading h2 {
        font-size:
            clamp(
                42px,
                9vw,
                60px
            );
    }

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

    .stat-item {
        min-height: 145px;

        border-bottom:
            1px solid rgba(255,255,255,.1);
    }

    .stat-item:nth-child(2n) {
        border-right: 0;
    }

    .stat-item:last-child {
        grid-column: 1 / -1;

        border-right: 0;
    }

    .section-top {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 530px;
    }

    .featured-section {
        min-height: auto;
    }

    .featured-image {
        position: relative;

        width: 100%;

        height: 450px;
    }

    .featured-image-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(0,0,0,.7),
                transparent
            );
    }

    .featured-content {
        width: 100%;

        min-height: auto;

        margin-left: 0;

        padding:
            70px 7%
            85px;

        background: var(--black);
    }

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

    .project-image {
        height: 330px;
    }

    .partner-track {
        min-height: 115px;
    }

    .partner-logo {
        min-width: 175px;

        padding-inline: 25px;

        font-size: 16px;
    }

    .testimonial-slide {
        padding: 35px 30px 35px;
    }

    .testimonial-main {
        margin-top: 40px;
    }

    .testimonial-main blockquote {
        font-size: 24px;
    }

    .testimonial-controls {
        right: 25px;
        bottom: 25px;
    }

    .equipment-container {
        min-height: auto;

        padding-top: 90px;
        padding-bottom: 90px;

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .equipment-orbit {
        width: min(390px, 90vw);
    }

    .media-preview-grid {
        grid-template-columns: 1fr;
    }

    .media-preview-image {
        height: 350px;
    }

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

        gap: 55px;
    }

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

        gap: 45px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-trust {
        flex-wrap: wrap;

        padding-top: 15px;
        padding-bottom: 15px;

        line-height: 2;
    }

    .footer-bottom {
        min-height: auto;

        padding:
            22px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 9px;
    }

}


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

@media (max-width: 520px) {

    .container {
        width: 90%;
    }

    .nav-inner {
        width: 90%;
    }

    .brand img {
        width: 145px;
    }

    .home-hero {
        min-height: 700px;
    }

    .hero-content {
        min-height: 700px;

        padding-top: 145px;
    }

    .hero-kicker {
        font-size: 8px;
        letter-spacing: 1.4px;
    }

    .hero-title {
        font-size: 49px;

        letter-spacing: -2.4px;
    }

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

    .hero-actions {
        width: 100%;

        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-bottom {
        bottom: 25px;
    }

    .hero-scroll {
        font-size: 8px;
    }

    .hero-slide-counter {
        display: none;
    }

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

    .stat-item,
    .stat-item:last-child {
        grid-column: auto;

        border-right: 0;

        min-height: 125px;
    }

    .stat-item strong {
        font-size: 48px;
    }

    .section-title {
        font-size: 45px;
    }

    .service-card {
        min-height: 500px;
    }

    .featured-image {
        height: 330px;
    }

    .featured-content h2 {
        font-size: 45px;
    }

    .project-image {
        height: 280px;
    }

    .testimonial-slider {
        min-height: 520px;
    }

    .testimonial-company {
        align-items: flex-start;
    }

    .testimonial-logo {
        width: 54px;
        height: 54px;
    }

    .testimonial-company strong {
        font-size: 13px;
    }

    .testimonial-company span {
        max-width: 180px;

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

    .testimonial-main blockquote {
        font-size: 21px;
    }

    .testimonial-controls {
        position: relative;

        right: auto;
        bottom: auto;

        margin-top: 30px;
    }

    .equipment-copy h2,
    .why-heading h2 {
        font-size: 48px;
    }

    .equipment-orbit {
        width: 310px;
    }

    .equipment-orb {
        width: 140px;
    }

    .equipment-orb span {
        font-size: 17px;
    }

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

        gap: 40px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }

    .footer-logo img {
        width: 165px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}


/* =========================================================
   AEGIS NAVIGATION LOGO — ALIGNMENT FIX
   ========================================================= */

.site-header .nav-inner {
    display: flex;
    align-items: center;
}

.site-header .brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 150px;
    height: 100%;
    position: static;
    flex-shrink: 0;
}

.site-header .brand img {
    display: block;
    width: 105px;
    height: 72px;
    max-width: 105px;
    max-height: 72px;
    object-fit: contain;
    object-position: center;
    margin: 0;
}


/* Keep navigation vertically centred */

.site-header .nav-links {
    display: flex;
    align-items: center;
}


/* Keep the quote button aligned with the navigation */

.site-header .nav-actions {
    display: flex;
    align-items: center;
}


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

@media (max-width: 900px) {

    .site-header .brand {
        width: 120px;
    }

    .site-header .brand img {
        width: 90px;
        height: 62px;
        max-width: 90px;
        max-height: 62px;
    }

}




/* =========================================================
   AEGIS INNER PAGE SYSTEM
   ABOUT / SERVICES / PROJECTS / EQUIPMENT / MEDIA / CONTACT
   ========================================================= */


/* =========================================================
   GLOBAL INNER PAGE
   ========================================================== */

.page-hero {
    position: relative;

    min-height: 520px;

    padding:
        190px
        5vw
        90px;

    display: flex;
    align-items: flex-end;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.96),
            rgba(0,0,0,.72),
            rgba(0,0,0,.35)
        );

    color: var(--white);

    overflow: hidden;
}

.page-hero > div {
    width: min(1500px, 100%);
    margin-inline: auto;
}

.page-hero .eyebrow {
    margin: 0 0 24px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-hero h1 {
    max-width: 950px;

    margin: 0;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size:
        clamp(
            52px,
            7vw,
            105px
        );

    line-height: .95;

    font-weight: 800;

    letter-spacing: -4px;
}

.page-hero h1 em {
    color: var(--gold);
    font-style: normal;
}


/* =========================================================
   STANDARD SECTION
   ========================================================== */

.section {
    width: min(
        calc(100% - 10vw),
        var(--container)
    );

    margin-inline: auto;

    padding-top: 120px;
    padding-bottom: 125px;
}

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

    margin-bottom: 30px;

    color: #777;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.section-label::before {
    content: "";

    width: 38px;
    height: 1px;

    margin-right: 14px;

    background: var(--gold);
}

.section h2 {
    margin: 0;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-weight: 800;

    letter-spacing: -2.5px;

    line-height: 1;
}

.section h2 em {
    color: var(--gold);
    font-style: normal;
}

.section p {
    color: #666;

    font-size: 15px;
    line-height: 1.8;
}


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

.two-col {
    display: grid;

    grid-template-columns:
        minmax(180px, .65fr)
        minmax(0, 1.35fr);

    gap: 90px;
}

.two-col h2 {
    margin-bottom: 30px;

    font-size:
        clamp(
            42px,
            5vw,
            70px
        );
}

.two-col p {
    max-width: 700px;

    margin:
        0 0 22px;
}

.reach-section {
    background: var(--black);

    color: var(--white);

    padding:
        105px 5vw;
}

.reach-inner {
    width: min(
        1500px,
        100%
    );

    margin-inline: auto;
}

.reach-heading {
    margin-bottom: 65px;
}

.reach-heading span {
    color: var(--gold);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.reach-heading h2 {
    margin-top: 18px;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size:
        clamp(
            45px,
            5vw,
            76px
        );

    line-height: .95;

    letter-spacing: -3px;
}

.reach-heading em {
    color: var(--gold);
    font-style: normal;
}

.reach-grid {
    display: grid;

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

    border-top:
        1px solid rgba(255,255,255,.12);
}

.reach-item {
    min-height: 170px;

    padding: 35px 30px;

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

    border-right:
        1px solid rgba(255,255,255,.12);
}

.reach-item:last-child {
    border-right: 0;
}

.reach-item strong {
    color: var(--gold);

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size:
        clamp(
            42px,
            4vw,
            65px
        );

    line-height: 1;

    letter-spacing: -3px;
}

.reach-item span {
    margin-top: 12px;

    color: rgba(255,255,255,.58);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


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

.experience-intro {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 90px;

    margin-bottom: 80px;
}

.experience-intro h2 {
    font-size:
        clamp(
            45px,
            5vw,
            74px
        );
}

.experience-intro h2 span {
    color: var(--gold);
}

.experience-lead {
    padding-top: 8px;
}

.experience-lead p {
    max-width: 600px;
}

.experience-header {
    margin-bottom: 25px;

    color: #888;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.experience-grid {
    display: grid;

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

    border-top:
        1px solid var(--line);

    border-left:
        1px solid var(--line);
}

.experience-grid article {
    min-height: 270px;

    padding: 35px;

    border-right:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);

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

.experience-grid article:hover {
    background: #f7f7f7;

    transform: translateY(-4px);
}

.experience-number {
    color: var(--gold);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.experience-grid h3 {
    margin:
        45px 0 15px;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 24px;

    letter-spacing: -.7px;
}

.experience-grid p {
    margin: 0;

    font-size: 14px;
}


/* =========================================================
   SERVICES
   ========================================================== */

.service-list {
    border-top:
        1px solid var(--line);
}

.service-list article {
    min-height: 190px;

    padding:
        35px 0;

    display: grid;

    grid-template-columns:
        100px
        1fr;

    gap: 40px;

    align-items: center;

    border-bottom:
        1px solid var(--line);

    transition:
        padding .3s ease,
        background .3s ease;
}

.service-list article:hover {
    padding-left: 20px;
    padding-right: 20px;

    background: #f7f7f7;
}

.service-list article > span {
    color: var(--gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.service-list h2 {
    margin: 0 0 12px;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size:
        clamp(
            28px,
            3vw,
            44px
        );

    letter-spacing: -1.5px;
}

.service-list p {
    max-width: 700px;

    margin: 0;

    color: #666;

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

.dark-section {
    width: 100%;

    background: var(--black);

    color: var(--white);
}

.dark-section h2 {
    font-size:
        clamp(
            45px,
            5vw,
            76px
        );
}

.dark-section h2 em {
    color: var(--gold);
    font-style: normal;
}

.dark-section .section-label {
    color: rgba(255,255,255,.5);
}


/* =========================================================
   PROJECTS
   ========================================================== */

.page-cards {
    display: grid;

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

    gap: 18px;
}

.project-card {
    background: #111;

    color: var(--white);

    overflow: hidden;

    border:
        1px solid rgba(0,0,0,.08);

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

.project-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(232,181,50,.5);
}

.media-box {
    position: relative;

    height: 330px;

    background: #1b1b1b;

    overflow: hidden;
}

.media-box img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .6s var(--ease);
}

.project-card:hover .media-box img {
    transform: scale(1.06);
}

.image-fallback {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    color: var(--gold);

    font-weight: 800;
    letter-spacing: 3px;
}

.card-copy {
    padding:
        25px 25px 30px;
}

.card-copy small {
    color: var(--gold);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.card-copy h3 {
    margin:
        12px 0;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 23px;

    letter-spacing: -.8px;
}

.card-copy p {
    margin:
        8px 0 0;

    color: rgba(255,255,255,.55);

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

.empty-state {
    grid-column: 1 / -1;

    min-height: 280px;

    padding: 50px;

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

    border:
        1px solid var(--line);
}

.empty-state h2 {
    font-size: 32px;
}

.empty-state p {
    margin: 10px 0 0;
}


/* =========================================================
   EQUIPMENT
   ========================================================== */

.page-hero-equipment {
    min-height: 570px;

    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,.95),
            rgba(5,5,5,.70)
        ),
        url("../images/hero-equipment.jpg")
        center / cover no-repeat;
}

.page-hero-copy {
    max-width: 600px;

    margin-top: 25px;

    color: rgba(255,255,255,.65);

    font-size: 15px;
    line-height: 1.8;
}

.equipment-intro-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 90px;
}

.equipment-intro-grid h2 {
    font-size:
        clamp(
            45px,
            5vw,
            75px
        );
}

.equipment-intro-grid h2 span {
    color: var(--gold);
}

.equipment-page-grid {
    display: grid;

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

    gap: 18px;
}

.equipment-page-card {
    background: var(--white);

    border:
        1px solid var(--line);

    overflow: hidden;

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

.equipment-page-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(232,181,50,.55);
}

.equipment-page-image {
    position: relative;

    height: 320px;

    background: #e8e8e8;

    overflow: hidden;
}

.equipment-page-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .6s var(--ease);
}

.equipment-page-card:hover
.equipment-page-image img {
    transform: scale(1.05);
}

.equipment-image-fallback {
    width: 100%;
    height: 100%;

    display: flex;

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

    background: #151515;

    color: var(--gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.equipment-status {
    position: absolute;

    top: 18px;
    right: 18px;

    padding:
        8px 12px;

    background: var(--gold);

    color: var(--black);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.equipment-page-content {
    padding:
        25px;
}

.equipment-meta {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    color: #888;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.equipment-page-content h2 {
    margin:
        14px 0;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 25px;

    letter-spacing: -.8px;
}

.equipment-page-content p {
    color: #666;

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

.equipment-price {
    margin-top: 22px;

    color: var(--gold);

    font-weight: 800;

    font-size: 18px;
}

.equipment-card-bottom {
    margin-top: 25px;

    padding-top: 18px;

    display: flex;

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

    border-top:
        1px solid var(--line);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.equipment-card-bottom a {
    color: var(--black);

    transition:
        color .25s ease;
}

.equipment-card-bottom a:hover {
    color: var(--gold);
}

.equipment-search-section {
    background: #f4f4f4;
}

.equipment-search-inner {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 90px;

    align-items: center;
}

.equipment-search-inner h2 {
    margin-top: 15px;

    font-size:
        clamp(
            42px,
            5vw,
            70px
        );
}

.equipment-search-inner h2 em {
    color: var(--gold);

    font-style: normal;
}

.equipment-search-inner .btn {
    margin-top: 20px;
}


/* =========================================================
   MEDIA
   ========================================================== */

.media-grid {
    display: grid;

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

    gap: 18px;
}

.media-grid article {
    background: var(--white);

    border:
        1px solid var(--line);

    overflow: hidden;

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

.media-grid article:hover {
    transform: translateY(-5px);

    border-color:
        rgba(232,181,50,.45);
}

.media-grid img,
.media-grid video {
    width: 100%;
    height: 320px;

    display: block;

    object-fit: cover;

    background: #111;
}

.media-grid h3 {
    margin: 0;

    padding:
        20px 22px 24px;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 20px;
}


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

.contact-grid {
    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap: 100px;

    align-items: start;
}

.contact-grid h2 {
    margin-bottom: 25px;

    font-size:
        clamp(
            45px,
            5vw,
            70px
        );
}

.contact-grid > div > p {
    max-width: 600px;
}

.contact-details {
    margin-top: 40px;

    display: flex;
    flex-direction: column;

    gap: 13px;
}

.contact-details a {
    color: var(--black);

    font-size: 14px;
    font-weight: 600;

    transition:
        color .25s ease;
}

.contact-details a:hover {
    color: var(--gold);
}

.contact-details span {
    color: #666;

    font-size: 14px;
}

.contact-form {
    padding:
        40px;

    background: #f5f5f5;

    border:
        1px solid var(--line);
}

.contact-form label {
    display: flex;
    flex-direction: column;

    gap: 9px;

    margin-bottom: 22px;

    color: #333;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding:
        15px 16px;

    border:
        1px solid #d7d7d7;

    background: var(--white);

    color: var(--black);

    outline: none;

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

.contact-form textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 2px rgba(232,181,50,.12);
}

.contact-form .btn {
    margin-top: 5px;
}


/* =========================================================
   CTA
   ========================================================== */

.cta {
    padding:
        120px 5vw 130px;

    background:
        linear-gradient(
            135deg,
            #0a0a0a,
            #151515
        );

    color: var(--white);

    text-align: left;
}

.cta > * {
    width: min(
        900px,
        100%
    );

    margin-left: auto;
    margin-right: auto;
}

.cta .section-label {
    color: rgba(255,255,255,.45);
}

.cta h2 {
    margin: 0;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size:
        clamp(
            50px,
            6vw,
            88px
        );

    line-height: .95;

    letter-spacing: -4px;
}

.cta h2 em {
    color: var(--gold);
    font-style: normal;
}

.cta-copy {
    max-width: 600px;

    margin-top: 25px;

    color: rgba(255,255,255,.58);

    font-size: 15px;
    line-height: 1.8;
}

.cta .btn {
    margin-top: 30px;
}


/* =========================================================
   RESPONSIVE INNER PAGES
   ========================================================== */

@media (max-width: 900px) {

    .page-hero {
        min-height: 480px;

        padding:
            150px 7% 75px;
    }

    .page-hero h1 {
        font-size:
            clamp(
                48px,
                10vw,
                75px
            );

        letter-spacing: -3px;
    }

    .two-col,
    .experience-intro,
    .equipment-intro-grid,
    .equipment-search-inner,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

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

    .reach-item:nth-child(2) {
        border-right: 0;
    }

    .experience-grid,
    .page-cards,
    .equipment-page-grid,
    .media-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .service-list article {
        grid-template-columns:
            65px 1fr;

        gap: 20px;
    }

}


@media (max-width: 600px) {

    .page-hero {
        min-height: 430px;

        padding:
            135px 7% 65px;
    }

    .page-hero h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }

    .section {
        width: 86%;

        padding-top: 85px;
        padding-bottom: 90px;
    }

    .reach-section {
        padding:
            80px 7%;
    }

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

    .reach-item {
        min-height: 135px;

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.12);
    }

    .reach-item:last-child {
        border-bottom: 0;
    }

    .experience-grid,
    .page-cards,
    .equipment-page-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid article {
        min-height: 220px;
    }

    .service-list article {
        min-height: auto;

        padding:
            30px 0;

        grid-template-columns:
            45px 1fr;
    }

    .service-list article:hover {
        padding-left: 10px;
        padding-right: 10px;
    }

    .service-list h2 {
        font-size: 29px;
    }

    .media-grid img,
    .media-grid video {
        height: 280px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .cta {
        padding:
            90px 7% 100px;
    }

    .cta h2 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }

}



/* =========================================================
   SERVICE CARD MEDIA
========================================================= */

.service-card {
    position: relative;
    overflow: hidden;
    background: #222;
}

.service-card-media {
    position: relative;
    height: 430px;
    overflow: hidden;
    background: #111;
}

.service-card-media video,
.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark gradient over the video */
.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05) 20%,
        rgba(0,0,0,0.25) 50%,
        rgba(0,0,0,0.85) 100%
    );
    pointer-events: none;
}

/* Number box */
.service-number {
    position: absolute;
    top: 24px;
    left: 24px;

    width: 46px;
    height: 46px;

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

    background: #f0b429;
    color: #111;

    font-size: 12px;
    font-weight: 700;
}

/* Content */
.service-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 32px;
    color: #fff;
    z-index: 2;
}

.service-category {
    display: block;
    margin-bottom: 12px;

    color: #f0b429;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.service-card-content h2 {
    margin: 0 0 12px;

    color: #fff;

    font-size: 30px;
    line-height: 1.1;
}

.service-card-content p {
    margin: 0;
    max-width: 420px;

    color: rgba(255,255,255,0.78);

    font-size: 15px;
    line-height: 1.6;
}

.service-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    margin-top: 24px;

    border: 1px solid rgba(255,255,255,0.35);

    color: #fff;
    text-decoration: none;

    font-size: 20px;

    transition: all 0.3s ease;
}

.service-arrow:hover {
    background: #f0b429;
    border-color: #f0b429;
    color: #111;
}

@media (max-width: 768px) {

    .service-card-media {
        height: 380px;
    }

    .service-card-content {
        padding: 24px;
    }

    .service-card-content h2 {
        font-size: 25px;
    }

}




/* =========================================================
   SERVICES PAGE
========================================================= */

.services-section {
    background: #f5f5f3;
    overflow: hidden;
}


/* ---------------------------------------------------------
   SERVICES HEADING
--------------------------------------------------------- */

.services-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin: 35px 0 55px;
}

.services-heading h2 {
    max-width: 1000px;
    margin: 0;
    font-size: clamp(42px, 5.5vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: 700;
    color: #111;
}

.services-heading h2 span {
    color: #e9ad22;
}

.services-view-all {
    position: relative;
    min-width: 145px;
    padding-bottom: 5px;
    color: #111;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.45;
}

.services-view-all span {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #e9ad22;
    font-size: 22px;
    font-weight: 400;
}


/* ---------------------------------------------------------
   SERVICE GRID
--------------------------------------------------------- */

.service-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}


/* ---------------------------------------------------------
   SERVICE CARD
--------------------------------------------------------- */

.service-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #222;
}

.service-card-media {
    position: relative;
    height: 580px;
    overflow: hidden;
    background: #222;
}


/* ---------------------------------------------------------
   VIDEO
--------------------------------------------------------- */

.service-card-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ---------------------------------------------------------
   DARK GRADIENT
--------------------------------------------------------- */

.service-card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.12) 35%,
            rgba(0, 0, 0, 0.55) 65%,
            rgba(0, 0, 0, 0.92) 100%
        );

    z-index: 1;
}


/* ---------------------------------------------------------
   GOLD NUMBER
--------------------------------------------------------- */

.service-number {
    position: absolute;
    top: 24px;
    left: 24px;

    width: 48px;
    height: 48px;

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

    background: #e9ad22;
    color: #111;

    font-size: 11px;
    font-weight: 800;

    z-index: 3;
}


/* ---------------------------------------------------------
   CARD CONTENT
--------------------------------------------------------- */

.service-card-content {
    position: absolute;

    left: 32px;
    right: 32px;
    bottom: 30px;

    color: #fff;

    z-index: 3;
}

.service-category {
    display: block;
    margin-bottom: 14px;

    color: #f0b52b;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
}


.service-card-content h2 {
    margin: 0 0 12px;

    color: #fff;

    font-size: clamp(26px, 2.2vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.03em;
}


.service-card-content p {
    max-width: 360px;

    margin: 0;

    color: rgba(255, 255, 255, 0.78);

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


/* ---------------------------------------------------------
   ARROW BUTTON
--------------------------------------------------------- */

.service-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    margin-top: 25px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    color: #fff;

    text-decoration: none;

    font-size: 22px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.service-arrow:hover {
    background: #e9ad22;
    border-color: #e9ad22;
    color: #111;
}


/* ---------------------------------------------------------
   CARD HOVER
--------------------------------------------------------- */

.service-card-media video {
    transition: transform 0.8s ease;
}

.service-card:hover .service-card-media video {
    transform: scale(1.05);
}


/* =========================================================
   SERVICES RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .service-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card-media {
        height: 520px;
    }

    .services-heading {
        align-items: flex-start;
    }

}


@media (max-width: 700px) {

    .services-heading {
        display: block;
        margin-bottom: 35px;
    }

    .services-heading h2 {
        font-size: clamp(40px, 11vw, 60px);
    }

    .services-view-all {
        display: inline-block;
        margin-top: 25px;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-card-media {
        height: 520px;
    }

    .service-card-content {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }

    .service-number {
        top: 20px;
        left: 20px;
    }

}


.uk-flag {
    display: inline-block;
    margin-right: 8px;
    font-size: 15px;
    line-height: 1;
    vertical-align: middle;
}


.uk-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
}
