* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body {
    background: #080808;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}


/* NAVIGATION */

/* =========================================
   HEADER / NAVIGATION
========================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    padding: 0 5vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 1000;

    transition:
        background .4s ease,
        color .4s ease,
        box-shadow .4s ease;

}


/* =========================================
   LOGO
========================================= */

.logo {

    display: inline-flex;

    align-items: center;

    width: 130px;

    line-height: 0;

    position: relative;

    z-index: 10;

}


.logo img {

    display: block;

    width: 130px;

    height: auto;

    max-height: 55px;

    object-fit: contain;

    transition:
        opacity .3s ease,
        transform .3s ease;

}


.logo:hover img {

    opacity: .7;

    transform: translateY(-1px);

}


/* =========================================
   NAV
========================================= */

.navbar nav {

    display: flex;

    align-items: center;

    gap: 32px;

}


.navbar nav a {

    position: relative;

    display: inline-block;

    padding: 8px 0;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    color: #aaa;

    transition:
        color .3s ease;

}


/* =========================================
   HOVER
========================================= */

.navbar nav a:hover {

    color: #fff;

}


/* =========================================
   ACTIVE PAGE
========================================= */

.navbar nav a.active {

    color: #fff;

}


/* ACTIVE UNDERLINE */

.navbar nav a.active::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 1px;

    background: currentColor;

    transform: scaleX(1);

    transform-origin: center;

}


/* =========================================
   LIGHT HEADER
   USED ON WHITE SECTIONS
========================================= */

.navbar.light-header {

    color: #111;

}


.navbar.light-header nav a {

    color: #777;

}


.navbar.light-header nav a:hover {

    color: #111;

}


.navbar.light-header nav a.active {

    color: #111;

}


.navbar.light-header nav a.active::after {

    background: #111;

}


/* =========================================
   HEADER BACKGROUND WHEN LIGHT
========================================= */

.navbar.light-header {

    background: rgba(242, 242, 240, .94);

    box-shadow:
        0 1px 0 rgba(0,0,0,.08);

    backdrop-filter: blur(12px);

}
/* =========================================
   CINEMATIC HERO
========================================= */

.hero-scroll {
    position: relative;
    height: 300vh;
    background: #000;
}

.hero-sticky {
    position: sticky;
    top: 0;

    width: 100%;
    height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* VIDEO */

.hero-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}


/* OVERLAY */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.6),
            rgba(0,0,0,.15),
            rgba(0,0,0,.6)
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.65),
            transparent 50%,
            rgba(0,0,0,.25)
        );

    z-index: 1;
}


/* =========================================
   TEXT
========================================= */

.hero-slide {

    position: absolute;

    top: 50%;
    left: 50%;

    width: 90%;

    text-align: center;

    /*
       THIS KEEPS THE TEXT
       EXACTLY IN THE CENTER
    */
    transform: translate(-50%, -50%);

    z-index: 3;

    will-change: transform, opacity;

}


/* FIRST TEXT */

.slide-one {

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    opacity: 1;

    z-index: 3;
}


.slide-one p,
.slide-two p,
.slide-three p {

    margin-bottom: 25px;

    font-size: 10px;

    letter-spacing: 5px;

    color: #ddd;
}


.slide-one h1 {

    margin: 0;

    font-size: clamp(
        80px,
        10vw,
        160px
    );

    line-height: .82;

    letter-spacing: -8px;

    font-weight: 800;
}


.slide-one h1 span {

    font-weight: 200;
}


/* =========================================
   SECOND TEXT
========================================= */

.slide-two {

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, 100vh);

    opacity: 0;

    z-index: 4;
}


.slide-two h2 {

    margin: 0;

    font-size: clamp(
        70px,
        10vw,
        150px
    );

    line-height: .82;

    letter-spacing: -8px;

    font-weight: 500;
}


.slide-two h2 span {

    color: #888;
}


/* =========================================
   THIRD TEXT
========================================= */

.slide-three {

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, 100vh);

    opacity: 0;

    z-index: 5;
}


.slide-three h2 {

    margin: 0;

    font-size: clamp(
        70px,
        10vw,
        150px
    );

    line-height: .82;

    letter-spacing: -8px;

    font-weight: 500;
}


.slide-three h2 span {

    color: #888;
}


/* =========================================
   HEADER
========================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 90px;

    padding: 0 5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 100;

    /*
       HEADER DOES NOT MOVE
    */

    pointer-events: auto;
}


.navbar .logo {

    color: #fff;

    font-size: 23px;

    font-weight: 800;

    letter-spacing: -1px;
}


.navbar .logo span {

    font-weight: 300;
}


.navbar nav {

    display: flex;

    gap: 32px;
}


.navbar nav a {

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    color: #aaa;

    transition: .3s;
}


.navbar nav a:hover,
.navbar nav a.active {

    color: #fff;
}


/* =========================================
   SCROLL INDICATOR
========================================= */

.scroll-indicator {

    position: absolute;

    bottom: 35px;
    left: 5vw;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 18px;

    font-size: 9px;

    letter-spacing: 3px;

    color: #aaa;
}


.scroll-indicator span {

    width: 70px;

    height: 1px;

    background: #888;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width: 700px) {

    .navbar {
        padding: 0 25px;
    }

    .navbar nav {
        display: none;
    }

    .hero-slide {
        width: 95%;
    }

    .slide-one h1,
    .slide-two h2,
    .slide-three h2 {

        font-size: 65px;

        letter-spacing: -5px;
    }

}

/* INTRO */

.intro {
    max-width: 1400px;

    margin: auto;

    padding: 150px 5vw;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    border-bottom: 1px solid #222;
}

.intro small,
.section-heading small,
.contact small {
    font-size: 10px;

    letter-spacing: 4px;

    color: #777;
}

.intro h2 {
    font-size: clamp(50px, 6vw, 90px);

    line-height: .9;

    letter-spacing: -5px;

    font-weight: 500;

    margin-top: 30px;
}

.intro h2 span {
    display: block;
    color: #777;
}

.intro-right {
    padding-top: 50px;
}

.intro-right p {
    color: #aaa;

    line-height: 1.8;

    font-size: 16px;

    max-width: 560px;

    margin-bottom: 25px;
}

.text-link {
    display: inline-block;

    margin-top: 20px;

    padding-bottom: 10px;

    border-bottom: 1px solid white;

    font-size: 10px;

    letter-spacing: 2px;
}


/* SERVICES */

.services {
    max-width: 1400px;

    margin: auto;

    padding: 150px 5vw;
}

.section-heading h2 {
    font-size: clamp(50px, 6vw, 90px);

    line-height: .88;

    letter-spacing: -5px;

    font-weight: 500;

    margin-top: 30px;
}

.section-heading h2 span {
    color: #777;
}

.service-grid {
    margin-top: 90px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #222;
}

.service-card {
    min-height: 300px;

    padding: 30px;

    border-right: 1px solid #222;

    transition: .3s;
}

.service-card:hover {
    background: #111;
}

.service-card span {
    font-size: 10px;

    color: #777;

    letter-spacing: 2px;
}

.service-card h3 {
    font-size: 27px;

    font-weight: 400;

    margin-top: 100px;

    margin-bottom: 15px;
}

.service-card p {
    color: #777;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   CAPABILITIES
========================================= */

.capabilities {

    background: #f2f2f0;

    color: #090909;

    padding: 160px 5vw;

}


.capabilities-header {

    max-width: 1500px;

    margin: 0 auto 140px;

}


.capabilities-header small {

    font-size: 10px;

    letter-spacing: 4px;

    color: #777;

}


.capabilities-header h2 {

    margin-top: 30px;

    font-size: clamp(
        70px,
        9vw,
        140px
    );

    line-height: .82;

    letter-spacing: -8px;

    font-weight: 500;

}


.capabilities-header h2 span {

    color: #888;

}


/* =========================================
   CAPABILITIES
========================================= */

.capabilities {

    background: #f2f2f0;

    color: #090909;

    padding: 160px 5vw;

}


/* =========================================
   HEADER
========================================= */

.capabilities-header {

    max-width: 1500px;

    margin: 0 auto 130px;

}


.capabilities-header small {

    font-size: 10px;

    letter-spacing: 4px;

    color: #777;

}


.capabilities-header h2 {

    margin-top: 30px;

    font-size: clamp(
        70px,
        9vw,
        140px
    );

    line-height: .82;

    letter-spacing: -8px;

    font-weight: 500;

}


.capabilities-header h2 span {

    color: #888;

}


/* =========================================
   CAPABILITY ROW
========================================= */

.capability-row {

    max-width: 1500px;

    margin: 0 auto 160px;

    display: grid;

    grid-template-columns:
        1.35fr
        1fr;

    gap: 80px;

    align-items: center;

}


.capability-row:last-child {

    margin-bottom: 0;

}


/* =========================================
   REVERSE ROW
========================================= */

.capability-row.reverse {

    grid-template-columns:
        1fr
        1.35fr;

}


.capability-row.reverse
.capability-image {

    order: 2;
}


.capability-row.reverse
.capability-text {

    order: 1;
}


/* =========================================
   IMAGE
========================================= */

/* =========================================
   REAL HORIZONTAL IMAGE SLIDER
========================================= */

.capability-image.slider {

    position: relative;

    width: 100%;

    height: 520px;

    overflow: hidden;

    background: #111;

    cursor: zoom-in;

}


.slides {

    display: flex;

    width: 100%;

    height: 100%;

    transform: translateX(0);

    transition:
        transform .7s cubic-bezier(
            .77,
            0,
            .18,
            1
        );

}


.slide {

    min-width: 100%;

    width: 100%;

    height: 100%;

    flex-shrink: 0;

}


.slide img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .6s ease;

}


.slide:hover img {

    transform: scale(1.02);

}


/* =========================================
   ARROWS
========================================= */

.slider-prev,
.slider-next {

    position: absolute;

    bottom: 25px;

    z-index: 20;

    width: 48px;

    height: 48px;

    border: 1px solid
        rgba(255,255,255,.6);

    background:
        rgba(0,0,0,.4);

    color: #fff;

    font-size: 18px;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition: .3s;

}


.slider-prev {

    right: 85px;

}


.slider-next {

    right: 25px;

}


.slider-prev:hover,
.slider-next:hover {

    background: #fff;

    color: #000;

}


/* =========================================
   COUNTER
========================================= */

.slider-counter {

    position: absolute;

    top: 25px;

    right: 25px;

    z-index: 20;

    padding: 9px 13px;

    background:
        rgba(0,0,0,.4);

    color: #fff;

    font-size: 10px;

    letter-spacing: 3px;

    backdrop-filter: blur(8px);

}


/* =========================================
   LIGHTBOX / POPUP
========================================= */

.image-lightbox {

    position: fixed;

    inset: 0;

    width: 100vw;

    height: 100vh;

    background:
        rgba(0,0,0,.94);

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;

}


.image-lightbox.active {

    opacity: 1;

    visibility: visible;

}


.lightbox-image {

    max-width: 90vw;

    max-height: 88vh;

    object-fit: contain;

    transform: scale(.92);

    transition:
        transform .4s ease;

}


.image-lightbox.active
.lightbox-image {

    transform: scale(1);

}


/* CLOSE */

.lightbox-close {

    position: absolute;

    top: 30px;

    right: 35px;

    width: 50px;

    height: 50px;

    border: 1px solid
        rgba(255,255,255,.5);

    background: transparent;

    color: white;

    font-size: 25px;

    cursor: pointer;

    z-index: 10;

}


.lightbox-close:hover {

    background: white;

    color: black;

}


/* =========================================
   LIGHTBOX ARROWS
========================================= */

.lightbox-prev,
.lightbox-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;

    height: 55px;

    border: 1px solid
        rgba(255,255,255,.4);

    background:
        rgba(0,0,0,.3);

    color: white;

    font-size: 20px;

    cursor: pointer;

}


.lightbox-prev {

    left: 30px;

}


.lightbox-next {

    right: 30px;

}


.lightbox-prev:hover,
.lightbox-next:hover {

    background: white;

    color: black;

}


/* =========================================
   MOBILE
========================================= */

@media(max-width: 600px) {

    .capability-image.slider {

        height: 330px;

    }


    .slider-prev,
    .slider-next {

        width: 40px;

        height: 40px;

        bottom: 15px;

    }


    .slider-prev {

        right: 65px;

    }


    .slider-next {

        right: 15px;

    }


    .lightbox-image {

        max-width: 94vw;

        max-height: 80vh;

    }


    .lightbox-prev {

        left: 10px;

    }


    .lightbox-next {

        right: 10px;

    }

}
/* =========================================
   TEXT
========================================= */

.capability-text {

    max-width: 560px;

}


.capability-number {

    font-size: 10px;

    letter-spacing: 3px;

    color: #888;

    margin-bottom: 30px;

}


.capability-text h3 {

    margin: 0;

    font-size: clamp(
        50px,
        5vw,
        80px
    );

    line-height: .9;

    font-weight: 500;

    letter-spacing: -5px;

}


.capability-text p {

    max-width: 500px;

    margin-top: 30px;

    font-size: 14px;

    line-height: 1.9;

    color: #666;

}


.capability-line {

    display: block;

    width: 70px;

    height: 1px;

    background: #999;

    margin-top: 40px;

}


/* =========================================
   HOVER EFFECT
========================================= */

.capability-row:hover
.capability-line {

    width: 140px;

    transition: width .5s ease;

}


/* =========================================
   TABLET
========================================= */

@media(max-width: 900px) {

    .capabilities {

        padding: 110px 25px;

    }


    .capabilities-header {

        margin-bottom: 80px;

    }


    .capability-row,
    .capability-row.reverse {

        grid-template-columns: 1fr;

        gap: 40px;

        margin-bottom: 110px;

    }


    .capability-row.reverse
    .capability-image {

        order: 1;

    }


    .capability-row.reverse
    .capability-text {

        order: 2;

    }


    .capability-image {

        height: 450px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width: 600px) {

    .capabilities {

        padding: 90px 20px;

    }


    .capabilities-header h2 {

        font-size: 65px;

        letter-spacing: -5px;

    }


    .capability-image {

        height: 330px;

    }


    .capability-text h3 {

        font-size: 48px;

        letter-spacing: -3px;

    }


    .capability-text p {

        font-size: 13px;

    }

}

/* =========================================
   BOOK IMAGE SLIDER
========================================= */

.book-slider {

    position: relative;

    overflow: hidden;

    background: #111;

}


/* TRACK */

.book-track {

    width: 100%;

    height: 100%;

    display: flex;

    transition:
        transform .75s
        cubic-bezier(.77,0,.18,1);

}


/* EACH PAGE */

.book-page {

    position: relative;

    min-width: 100%;

    height: 100%;

    overflow: hidden;

}


.book-page img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


/* =========================================
   BOOK PAGE EFFECT
========================================= */

.book-page::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.25),
            transparent 20%,
            transparent 80%,
            rgba(0,0,0,.2)
        );

    pointer-events: none;

}


/* =========================================
   NAVIGATION
========================================= */

.book-prev,
.book-next {

    position: absolute;

    bottom: 25px;

    width: 45px;

    height: 45px;

    border: 1px solid
        rgba(255,255,255,.5);

    background:
        rgba(0,0,0,.35);

    color: white;

    cursor: pointer;

    backdrop-filter: blur(5px);

    z-index: 5;

    transition: .3s;

}


.book-prev {

    right: 80px;

}


.book-next {

    right: 25px;

}


.book-prev:hover,
.book-next:hover {

    background: white;

    color: black;

}


/* =========================================
   COUNTER
========================================= */

.book-counter {

    position: absolute;

    top: 25px;

    right: 25px;

    z-index: 5;

    color: white;

    font-size: 10px;

    letter-spacing: 3px;

    background:
        rgba(0,0,0,.35);

    padding: 10px 14px;

    backdrop-filter: blur(5px);

}


.book-counter .current-page {

    color: white;

}


/* =========================================
   BOOK SHADOW
========================================= */

.book-slider::before {

    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 0;

    width: 30px;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.35),
            transparent
        );

    z-index: 4;

    pointer-events: none;

}


/* =========================================
   MOBILE
========================================= */

@media(max-width: 600px) {

    .book-prev,
    .book-next {

        width: 40px;

        height: 40px;

        bottom: 15px;

    }


    .book-prev {

        right: 65px;

    }


    .book-next {

        right: 15px;

    }


    .book-counter {

        top: 15px;

        right: 15px;

    }

}

/* =========================================
   CONTACT SECTION
========================================= */

.contact {

    background: #f2f2f0;

    color: #090909;

    padding: 140px 5vw;

}


.contact-container {

    max-width: 1500px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: stretch;

}


/* =========================================
   CONTACT
========================================= */

.contact-section {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #f2f2f0;
    color: #111;
    margin-bottom: 0;
}


.contact-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 8vw;
}

/* =========================================
   LEFT
========================================= */

.contact-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 140px 8vw;

}

.contact-label {

    margin-bottom: 35px;

    font-size: 9px;

    letter-spacing: 3px;

    color: #777;

}


.contact-content h2 {

    margin: 0;

    font-size: clamp(
        65px,
        7vw,
        110px
    );

    line-height: .85;

    font-weight: 500;

    letter-spacing: -7px;

}


.contact-content h2 span {

    color: #888;

}


.contact-description {

    max-width: 390px;

    margin-top: 40px;

    font-size: 14px;

    line-height: 1.8;

    color: #666;

}


/* =========================================
   FACEBOOK
========================================= */

.social-link {

    display: flex;

    align-items: center;

    width: 100%;

    max-width: 420px;

    margin-top: 45px;

    padding: 18px 0;

    border-top: 1px solid #ccc;

    border-bottom: 1px solid #ccc;

    color: #111;

    text-decoration: none;

    transition: .35s ease;

}


.social-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    margin-right: 15px;

    background: #111;

    color: #fff;

}


.social-icon svg {

    width: 20px;

    height: 20px;

    fill: currentColor;

}


.social-content {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.social-content small {

    font-size: 7px;

    letter-spacing: 2px;

    color: #888;

}


.social-content strong {

    font-size: 15px;

    font-weight: 500;

    letter-spacing: 1px;

}


.social-content span {

    font-size: 8px;

    letter-spacing: 2px;

    color: #888;

}


.social-arrow {

    margin-left: auto;

    font-size: 22px;

    transition:
        transform .35s ease;

}


.social-link:hover {

    padding-left: 8px;

}


.social-link:hover
.social-arrow {

    transform:
        translate(5px, -5px);

}


/* =========================================
   MAP
========================================= */

.contact-map {

    position: relative;

    width: 100%;

    height: 600px;

    overflow: hidden;

    background: #ddd;

}


/* MAP IFRAME */

.contact-map iframe {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    border: 0;

    display: block;

    filter: grayscale(100%);

    transition:
        filter .7s ease;

}


/* MAP COLOR ON HOVER */

.contact-map:hover iframe {

    filter: grayscale(0%);

}


/* =========================================
   LOCATION LABEL
========================================= */

.map-location {

    position: absolute;

    left: 25px;

    bottom: 25px;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 16px 20px;

    background:
        rgba(255,255,255,.94);

    box-shadow:
        0 8px 30px
        rgba(0,0,0,.12);

    pointer-events: none;

}


.location-dot {

    width: 7px;

    height: 7px;

    margin-top: 5px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #111;

}


.map-location strong {

    display: block;

    font-size: 10px;

    letter-spacing: 2px;

}


.map-location p {

    margin: 6px 0 0;

    font-size: 9px;

    line-height: 1.6;

    color: #777;

}


/* =========================================
   GAP BEFORE FOOTER
========================================= */

.site-footer {

    margin-top: 0;

}


/* =========================================
   TABLET
========================================= */

@media(max-width: 900px) {

    .contact-section {

        grid-template-columns: 1fr;

        gap: 60px;

        padding: 100px 6vw 130px;

    }


    .contact-map {

        height: 500px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width: 600px) {

    .contact-section {

        padding: 80px 20px 110px;

        gap: 50px;

    }


    .contact-content h2 {

        font-size: 65px;

        letter-spacing: -5px;

    }


    .contact-map {

        height: 400px;

    }


    .map-location {

        left: 15px;

        bottom: 15px;

    }

}

/* =========================================
   INKSPIRE — MODERN COMPACT FOOTER
========================================= */

.site-footer {

    width: 100%;

    background: #080808;

    color: #fff;

    padding: 38px 5vw 18px;

    border-top: 1px solid #1d1d1d;

}


/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {

    max-width: 1400px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


/* =========================================
   BRAND
========================================= */

.footer-brand {

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.footer-logo {

    display: inline-block;

    font-size: 19px;

    font-weight: 800;

    letter-spacing: -1px;

    color: #fff;

}


.footer-logo span {

    font-weight: 300;

}


.footer-brand p {

    margin: 0;

    font-size: 8px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #555;

}


/* =========================================
   INKSPIRE — CLEAN COMPACT FOOTER
========================================= */

.site-footer {

    width: 100%;

    background: #080808;

    color: #fff;

    padding: 40px 5vw 18px;

    border-top: 1px solid #1c1c1c;

}


/* =========================================
   MAIN
========================================= */

.footer-inner {

    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    align-items: center;

    gap: 60px;

}


/* =========================================
   LOGO
========================================= */

.footer-logo {

    display: block;

    width: 120px;

    line-height: 0;

}


.footer-logo img {

    display: block;

    width: 120px;

    height: auto;

    max-height: 55px;

    object-fit: contain;

    transition: opacity .3s ease;

}


.footer-logo:hover img {

    opacity: .7;

}


/* =========================================
   CENTER
========================================= */

.footer-center {

    text-align: center;

}


.footer-center p {

    max-width: 270px;

    margin: 0 auto;

    font-size: 12px;

    line-height: 1.6;

    color: #777;

}


/* =========================================
   CONTACT
========================================= */

.footer-contact {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

}


.footer-contact > span {

    margin-bottom: 10px;

    font-size: 8px;

    letter-spacing: 3px;

    color: #555;

}


/* ACTUAL CONTACT DETAILS */

.footer-contact a {

    display: block;

    margin-bottom: 4px;

    font-size: 12px;

    line-height: 1.5;

    color: #aaa;

    text-decoration: none;

    transition: color .3s ease;

}


.footer-contact a:hover {

    color: #fff;

}


.footer-contact p {

    margin: 6px 0 0;

    font-size: 11px;

    line-height: 1.6;

    text-align: right;

    color: #777;

}


/* =========================================
   DIVIDER
========================================= */

.footer-line {

    max-width: 1400px;

    height: 1px;

    margin: 32px auto 15px;

    background: #1c1c1c;

}


/* =========================================
   BOTTOM
========================================= */

.footer-meta {

    max-width: 1400px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-meta span {

    font-size: 7px;

    letter-spacing: 1.5px;

    color: #444;

}


.footer-meta a {

    font-size: 8px;

    letter-spacing: 2px;

    color: #777;

    text-decoration: none;

    transition: color .3s ease;

}


.footer-meta a:hover {

    color: #fff;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .footer-inner {

        grid-template-columns:
            1fr
            1fr;

        gap: 35px;

    }


    .footer-center {

        text-align: left;

    }


    .footer-center p {

        margin: 0;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .site-footer {

        padding: 35px 20px 18px;

    }


    .footer-inner {

        grid-template-columns: 1fr;

        gap: 30px;

        align-items: start;

    }


    .footer-center {

        text-align: left;

    }


    .footer-contact {

        align-items: flex-start;

    }


    .footer-contact p {

        text-align: left;

    }


    .footer-meta {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }

}

/* =========================================
   GLOBAL SMOOTH SCROLL
========================================= */

html {
    scroll-behavior: auto;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    overflow-x: hidden;
}