/* =====================================================
   ROOT
===================================================== */

:root {

    --navy: #0a2745;
    --navy-dark: #061a30;
    --blue: #145b91;
    --blue-light: #1f75b5;

    --white: #ffffff;
    --off-white: #f5f7f9;
    --black: #07131f;

    --gray: #687582;
    --line: rgba(10, 39, 69, .12);

    --transition: all .45s cubic-bezier(.22, .61, .36, 1);

}


/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "DM Sans", sans-serif;

    color: var(--black);

    background: var(--white);

    overflow-x: hidden;

}


a {
    text-decoration: none;
    color: inherit;
}


img {
    max-width: 100%;
}


.section-padding {
    padding: 120px 0;
}


/* =====================================================
   LOADER
===================================================== */

.page-loader {

    position: fixed;

    inset: 0;

    background: var(--white);

    z-index: 9999;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    transition: opacity .7s ease,
                visibility .7s ease;

}


.page-loader.hide {

    opacity: 0;

    visibility: hidden;

}


.loader-logo img {

    width: 180px;

    /* filter: brightness(0) invert(1); */

}


.loader-line {

    width: 0;

    height: 2px;

    background: white;

    margin-top: 25px;

    animation: loaderLine 1.5s ease forwards;

}


@keyframes loaderLine {

    to {
        width: 180px;
    }

}


/* =====================================================
   CURSOR
===================================================== */

.custom-cursor {

    position: fixed;

    width: 12px;

    height: 12px;

    background: var(--blue);

    border-radius: 50%;

    pointer-events: none;

    z-index: 10000;

    transform: translate(-50%, -50%);

    transition: transform .1s ease;

}


@media(max-width: 991px) {

    .custom-cursor {
        display: none;
    }

}


/* =====================================================
   NAVBAR
===================================================== */

.site-header {

    position: fixed;

    top: 20px;

    left: 0;

    width: 100%;

    z-index: 1000;

}


.site-header .navbar {

    margin: auto;

    max-width: 1450px;

    padding: 0px 20px;

    background: rgba(255,255,255,.94);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(10,39,69,.08);

    border-radius: 100px;

    box-shadow: 0 15px 50px rgba(0,0,0,.08);

}


.site-logo {

    width: 125px;

    height: auto;

    display: block;

}


.navbar-nav {

    gap: 8px;

}


.nav-link {

    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .7px;

    padding: 10px 16px !important;

    color: var(--navy) !important;

    position: relative;

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 16px;

    right: 16px;

    bottom: 4px;

    height: 1px;

    background: var(--blue);

    transform: scaleX(0);

    transform-origin: left;

    transition: var(--transition);

}


.nav-link:hover::after,
.nav-link.active::after {

    transform: scaleX(1);

}


.nav-contact-btn {

    background: var(--navy);

    color: white;

    padding: 13px 22px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .5px;

    transition: var(--transition);

}


.nav-contact-btn i {

    margin-left: 8px;

}


.nav-contact-btn:hover {

    background: var(--blue);

    color: white;

    transform: translateY(-2px);

}


.navbar-toggler {

    border: 0;

    padding: 8px;

}


.navbar-toggler:focus {

    box-shadow: none;

}


.navbar-toggler span {

    display: block;

    width: 25px;

    height: 2px;

    background: var(--navy);

    margin: 5px 0;

}

/* =====================================================
   PREMIUM PRODUCTS DROPDOWN - STYLE 02
===================================================== */

.products-dropdown {
    position: relative;
}


/* Dropdown */

.products-menu {

    width: 390px;

    padding: 14px;

    margin-top: 14px;

    background: #ffffff;

    border: 1px solid rgba(10, 39, 69, .08);

    border-radius: 4px;

    box-shadow:
        0 25px 70px rgba(5, 30, 50, .14);

    overflow: hidden;

}


/* Small top line */

.products-menu::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background: #145b91;

}


/* Dropdown item */

.products-menu .dropdown-item {

    position: relative;

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 17px 15px;

    margin-bottom: 3px;

    color: #0a2745;

    background: transparent;

    border-bottom: 1px solid rgba(10,39,69,.07);

    overflow: hidden;

    transition: all .35s ease;

}


.products-menu .dropdown-item:last-child {

    border-bottom: 0;

}


/* =====================================================
   LEFT HOVER SLIDE BAR
===================================================== */

.products-menu .dropdown-item::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    bottom: 0;

    width: 3px;

    background: #145b91;

    transform: scaleY(0);

    transform-origin: bottom;

    transition: transform .35s ease;

}


.products-menu .dropdown-item:hover::before {

    transform: scaleY(1);

}


/* =====================================================
   NUMBER
===================================================== */

.product-menu-number {

    width: 34px;

    height: 34px;

    min-width: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(20,91,145,.2);

    border-radius: 50%;

    color: #145b91;

    font-family: "Space Grotesk", sans-serif;

    font-size: 9px;

    font-weight: 600;

    transition: all .35s ease;

}


/* =====================================================
   PRODUCT CONTENT
===================================================== */

.products-menu .dropdown-item > span:nth-child(2) {

    flex: 1;

    font-size: 13px;

    font-weight: 700;

    line-height: 1.3;

    transition: all .35s ease;

}


.products-menu .dropdown-item small {

    display: block;

    margin-top: 4px;

    color: #9aa5ae;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: all .35s ease;

}


/* =====================================================
   ARROW
===================================================== */

.products-menu .dropdown-item > i {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(10,39,69,.12);

    border-radius: 50%;

    color: #145b91;

    font-size: 11px;

    opacity: 0;

    transform: translateX(-12px) rotate(-45deg);

    transition: all .4s ease;

}


/* =====================================================
   HOVER EFFECT
===================================================== */

.products-menu .dropdown-item:hover {

    background: #f3f8fb;

    color: #0a2745;

    padding-left: 22px;

}


.products-menu .dropdown-item:hover
.product-menu-number {

    background: #145b91;

    color: #ffffff;

    border-color: #145b91;

    transform: rotate(360deg);

}


.products-menu .dropdown-item:hover > i {

    opacity: 1;

    transform: translateX(0) rotate(0deg);

}


.products-menu .dropdown-item:hover
small {

    color: #145b91;

}


/* =====================================================
   DESKTOP HOVER
===================================================== */

@media (min-width: 992px) {

    .products-dropdown:hover .products-menu {

        display: block;

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .products-menu {

        display: block;

        opacity: 0;

        visibility: hidden;

        transform: translateY(15px);

        transition:
            opacity .3s ease,
            transform .3s ease,
            visibility .3s ease;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991px) {

    .products-menu {

        width: 100%;

        margin-top: 5px;

        padding: 8px;

        background: #f5f8fa;

        border: 0;

        box-shadow: none;

    }


    .products-menu .dropdown-item {

        padding: 14px 12px;

    }


    .products-menu .dropdown-item:hover {

        padding-left: 18px;

    }


    .products-menu .dropdown-item > i {

        opacity: 1;

        transform: none;

    }

}

/* =====================================================
   FULL WIDTH HERO BANNER
===================================================== */

.main-hero {

    min-height: 100vh;

    width: 100%;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    background-image:
        url("../images/mannequin-banner1.webp");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

}


/* Dark Overlay */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(5, 25, 45, .90) 0%,
            rgba(5, 25, 45, .70) 38%,
            rgba(5, 25, 45, .25) 72%,
            rgba(5, 25, 45, .15) 100%
        );

    z-index: 1;

}


/* Content */

.main-hero .container {

    position: relative;

    z-index: 2;

}


.hero-content {

    max-width: 760px;

    padding-top: 70px;

    animation: heroContentReveal 1.2s ease forwards;

}


@keyframes heroContentReveal {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* Small Tag */

.hero-tag {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #8ec9ef;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 25px;

}


.hero-tag span {

    display: block;

    width: 45px;

    height: 1px;

    background: #8ec9ef;

}


/* Heading */

.hero-content h1 {

    font-family: "Space Grotesk", sans-serif;

    color: #ffffff;

    font-size: clamp(
        55px,
        7vw,
        105px
    );

    line-height: .94;

    letter-spacing: -4px;

    font-weight: 600;

    margin: 0;

}


.hero-content h1 span {

    display: block;

    color: #67b9ed;

    font-style: italic;

}


/* Description */

.hero-content p {

    max-width: 600px;

    color: rgba(255,255,255,.72);

    font-size: 17px;

    line-height: 1.8;

    margin-top: 30px;

    margin-bottom: 35px;

}


/* Buttons */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

}


.hero-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 16px 25px;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .7px;

    text-transform: uppercase;

    transition: all .4s ease;

}


.hero-btn-primary {

    background: #ffffff;

    color: #0a2745;

}


.hero-btn-primary:hover {

    background: #67b9ed;

    color: #071a2c;

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.25);

}


.hero-btn-outline {

    color: #ffffff;

    border: 1px solid rgba(255,255,255,.6);

}


.hero-btn-outline:hover {

    background: #ffffff;

    color: #0a2745;

    transform: translateY(-4px);

}


/* Bottom Info */

.hero-bottom {

    position: absolute;

    z-index: 5;

    bottom: 30px;

    left: 0;

    right: 0;

    padding: 0 5%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: rgba(255,255,255,.7);

}


.hero-bottom-left {

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.hero-bottom-line {

    width: 55px;

    height: 1px;

    background: rgba(255,255,255,.5);

}


.hero-scroll-text {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 9px;

    letter-spacing: 2px;

}


.hero-scroll-text i {

    font-size: 15px;

    animation: scrollArrow 1.5s infinite;

}


@keyframes scrollArrow {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(7px);

    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .main-hero {

        min-height: 850px;

        background-position: 65% center;

    }


    .hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(5,25,45,.92),
                rgba(5,25,45,.55)
            );

    }


    .hero-content {

        padding-top: 90px;

    }


    .hero-content h1 {

        font-size: 75px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .main-hero {

        min-height: 760px;

        background-position: 68% center;

    }


    .hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(5,25,45,.94),
                rgba(5,25,45,.62)
            );

    }


    .hero-content {

        padding-top: 80px;

    }


    .hero-tag {

        font-size: 9px;

        letter-spacing: 1.5px;

    }


    .hero-content h1 {

        font-size: 55px;

        letter-spacing: -2.5px;

    }


    .hero-content p {

        font-size: 15px;

        line-height: 1.7;

    }


    .hero-buttons {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

    }


    .hero-btn {

        width: auto;

        min-width: 210px;

    }


    .hero-bottom {

        padding: 0 20px;

    }


    .hero-scroll-text {

        display: none;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .main-hero {

        min-height: 720px;

        background-position: 70% center;

    }


    .hero-content {

        padding-top: 70px;

    }


    .hero-content h1 {

        font-size: 45px;

    }


    .hero-content p {

        font-size: 14px;

        margin-top: 22px;

    }


    .hero-btn {

        width: 100%;
        margin-bottom: 10px;

    }


    .hero-buttons {

        width: 100%;

    }

}

/* =====================================================
   MARQUEE SECTION
===================================================== */

.marquee-section {

    width: 100%;

    overflow: hidden;

    background: #0a2745;

    padding: 22px 0;

    position: relative;

}


/* Main Wrapper */

.marquee-wrapper {

    width: 100%;

    overflow: hidden;

}


/* Moving Track */

.marquee-track {

    display: flex;

    width: max-content;

    animation: marqueeMove 25s linear infinite;

    will-change: transform;

}


/* Each Content Set */

.marquee-content {

    display: flex;

    align-items: center;

    flex-shrink: 0;

    white-space: nowrap;

}


/* Text */

.marquee-content span {

    display: inline-block;

    font-family: "Space Grotesk", sans-serif;

    font-size: 22px;

    font-weight: 600;

    line-height: 1;

    letter-spacing: 1px;

    color: #ffffff;

    padding: 0 28px;

}


/* Star */

.marquee-content i {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    font-size: 8px;

    color: #67b9ed;

}


/* =====================================================
   ANIMATION
===================================================== */

@keyframes marqueeMove {

    0% {

        transform: translateX(0);

    }

    100% {

        transform: translateX(-50%);

    }

}


/* =====================================================
   HOVER - PAUSE
===================================================== */

.marquee-section:hover .marquee-track {

    animation-play-state: paused;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .marquee-section {

        padding: 18px 0;

    }


    .marquee-content span {

        font-size: 18px;

        padding: 0 22px;

    }


    .marquee-content i {

        font-size: 7px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .marquee-section {

        padding: 17px 0;

    }


    .marquee-content span {

        font-size: 15px;

        padding: 0 18px;

        letter-spacing: .8px;

    }


    .marquee-content i {

        font-size: 6px;

    }

}
/* =====================================================
   MODERN ABOUT SECTION
===================================================== */

.about-modern {

    position: relative;

    padding: 80px 0;

    background: #ffffff;

    overflow: hidden;

}


/* =====================================================
   HEADING
===================================================== */

.about-heading {

    max-width: 900px;

    margin: 0 auto 75px;

    text-align: center;

}



.about-label {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    color: #145b91;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 24px;

}


.about-label span {

    width: 32px;

    height: 32px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(20, 91, 145, .25);

    border-radius: 50%;

    font-size: 9px;

}


.about-heading h2 {

    margin: 0 auto;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(48px, 6vw, 82px);

    line-height: .98;

    letter-spacing: -4px;

    font-weight: 600;

    color: #0a2745;

}


.about-heading h2 span {

    display: block;

    color: #145b91;

    font-style: italic;

}


/* =====================================================
   MAIN
===================================================== */

.about-main {

    position: relative;

}


/* =====================================================
   VISUAL
===================================================== */

.about-visual {

    position: relative;

    min-height: 580px;

    background: #edf4f8;

    overflow: hidden;

}


/* Background circles */

.about-visual::before {

    content: "";

    position: absolute;

    width: 430px;

    height: 430px;

    border: 1px solid rgba(20,91,145,.12);

    border-radius: 50%;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

}


.about-visual::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border: 1px solid rgba(20,91,145,.1);

    border-radius: 50%;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

}


/* Visual content */

.about-visual-content {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

}


.visual-number {

    position: absolute;

    top: 30px;

    left: 35px;

    color: #145b91;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

}


.about-visual-content > i {

    position: relative;

    z-index: 2;

    font-size: 290px;

    color: #0a2745;

    opacity: .9;

}


/* Bottom labels */

.visual-bottom {

    position: absolute;

    bottom: 30px;

    left: 35px;

    right: 35px;

    display: flex;

    justify-content: space-between;

    border-top: 1px solid rgba(10,39,69,.12);

    padding-top: 15px;

}


.visual-bottom span {

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #687582;

}


/* =====================================================
   FLOATING CARD
===================================================== */

.about-float-card {

    position: absolute;

    right: 25px;

    bottom: 25px;

    z-index: 5;

    width: 190px;

    padding: 22px;

    background: #0a2745;

    color: #ffffff;

    box-shadow: 0 20px 45px rgba(10,39,69,.2);

}


.about-float-card strong {

    display: block;

    font-family: "Space Grotesk";

    font-size: 28px;

    line-height: 1;

    margin-bottom: 8px;

}


.about-float-card span {

    display: block;

    color: rgba(255,255,255,.6);

    font-size: 10px;

    line-height: 1.5;

    text-transform: uppercase;

    letter-spacing: 1px;

}


/* =====================================================
   CONTENT
===================================================== */

.about-content {

    height: 100%;

    min-height: 580px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 40px 20px 40px 55px;

}

/* =====================================================
   SMALL LABEL
===================================================== */

.about-content-label {

    display: inline-block;

    margin-bottom: 22px;

    color: #145b91;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


/* Small line before label */

.about-content-label::before {

    content: "";

    display: inline-block;

    width: 32px;

    height: 1px;

    margin-right: 10px;

    vertical-align: middle;

    background: #145b91;

}


.about-intro {

    max-width: 570px;

    margin: 0 0 32px;

    color: #0a2745;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(25px, 2.2vw, 32px);

    font-weight: 500;

    line-height: 1.35;

    letter-spacing: -.8px;

}



/* =====================================================
   DESCRIPTION
===================================================== */

.about-text {

    max-width: 550px;

}


.about-description {

    margin: 0 0 18px;

    color: #6d7b86;

    font-size: 15px;

    line-height: 1.9;

}


.about-description:last-child {

    margin-bottom: 0;

}


/* Link */

.about-link {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 20px;

    color: #0a2745;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.about-link span {

       width: 112px;
    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(10,39,69,.2);

    border-radius: 50%;

    transition: all .4s ease;

}


.about-link:hover span {

    background: #145b91;

    color: #ffffff;

    border-color: #145b91;

    transform: rotate(45deg);

}


/* =====================================================
   STATS
===================================================== */

.about-stats {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 100px;

    border-top: 1px solid rgba(10,39,69,.12);

    border-bottom: 1px solid rgba(10,39,69,.12);

}


.about-stat {

    min-height: 145px;

    padding: 30px;

    display: flex;

    align-items: center;

    gap: 20px;

    border-right: 1px solid rgba(10,39,69,.12);

}


.about-stat:last-child {

    border-right: 0;

}


.stat-number {

    font-family: "Space Grotesk";

    color: #145b91;

    font-size: 45px;

    line-height: 1;

    letter-spacing: -2px;

    white-space: nowrap;

}


.stat-info strong {

    display: block;

    color: #0a2745;

    font-size: 14px;

    font-weight: 700;

}


.stat-info span {

    display: block;

    margin-top: 4px;

    color: #8996a2;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .8px;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .about-modern {

        padding: 100px 0;

    }


    .about-heading {

        margin-bottom: 55px;

    }


    .about-heading h2 {

        font-size: 62px;

    }


    .about-content {

        padding-left: 0;

    }


    .about-visual {

        min-height: 500px;

    }


    .about-stats {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .about-stat:nth-child(2) {

        border-right: 0;

    }


    .about-stat:nth-child(1),
    .about-stat:nth-child(2) {

        border-bottom: 1px solid rgba(10,39,69,.12);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .about-modern {

        padding: 75px 0;

    }


     .about-heading {

        margin-bottom: 45px;

        padding: 0 15px;

    }

    .about-label {

        font-size: 9px;

        letter-spacing: 1.5px;

    }

    .about-heading h2 {

        font-size: 48px;

        letter-spacing: -2.5px;

        line-height: 1;

    }


    .about-visual {

        min-height: 430px;

    }


    .about-visual-content > i {

        font-size: 220px;

    }


    .about-float-card {

        right: 15px;

                bottom: 75px;

        width: 160px;

        padding: 17px;

    }


    .about-float-card strong {

        font-size: 23px;

    }


    .about-intro {

        font-size: 23px;

        margin-top: 35px;

    }


    .about-description {

        font-size: 14px;

        line-height: 1.8;

    }


    .about-stats {

        margin-top: 60px;

    }


    .about-stat {

        min-height: 120px;

        padding: 20px 15px;

        gap: 10px;

    }


    .stat-number {

        font-size: 32px;

    }


    .stat-info strong {

        font-size: 12px;

    }


    .stat-info span {

        font-size: 8px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

   
    .about-heading h2 {

        font-size: 40px;

        letter-spacing: -2px;

    }


    .about-visual {

        min-height: 380px;

    }


    .about-visual-content > i {

        font-size: 185px;

    }


    .visual-bottom {

        left: 20px;

        right: 20px;

    }


    .visual-bottom span {

        font-size: 7px;

    }


    .about-float-card {

        width: 145px;

    }


    .about-stats {

        grid-template-columns: 1fr;

    }


    .about-stat {

        border-right: 0;

        border-bottom: 1px solid rgba(10,39,69,.12);

    }


    .about-stat:last-child {

        border-bottom: 0;

    }

}

/* =====================================================
   ACTION
===================================================== */

.about-action {

    margin-top: 30px;

}


.about-link {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    color: #0a2745;

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;

}


.about-link-text {

    transition: color .3s ease;

}


.about-link-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(10,39,69,.2);

    border-radius: 50%;

    transition: all .4s ease;

}


.about-link-icon i {

    font-size: 13px;

    transition: transform .4s ease;

}


/* =====================================================
   HOVER
===================================================== */

.about-link:hover {

    color: #145b91;

}


.about-link:hover .about-link-icon {

    background: #145b91;

    border-color: #145b91;

    color: #ffffff;

}


.about-link:hover .about-link-icon i {

    transform: rotate(45deg);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .about-content {

        min-height: auto;

        padding: 45px 10px 10px;

    }


    .about-intro {

        max-width: 650px;

        font-size: 28px;

    }


    .about-text {

        max-width: 650px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .about-content {

        padding: 40px 5px 0;

    }


    .about-content-label {

        font-size: 9px;

        margin-bottom: 18px;

    }


    .about-intro {

        font-size: 23px;

        line-height: 1.4;

        letter-spacing: -.4px;

        margin-bottom: 25px;

    }


    .about-description {

        font-size: 14px;

        line-height: 1.8;

        margin-bottom: 15px;

    }


    .about-action {

        margin-top: 22px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .about-content {

        padding-left: 0;

        padding-right: 0;

    }


    .about-intro {

        font-size: 21px;

    }


    .about-description {

        font-size: 13.5px;

    }

}

/* =====================================================
   ABOUT IMAGE
===================================================== */

.about-image-box {

    position: relative;

    width: 100%;

    height: 580px;

    overflow: hidden;

    background: #edf3f6;

}


/* =====================================================
   MAIN IMAGE
===================================================== */

.about-main-image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center center;

    transition:
        transform 1s cubic-bezier(.2,.7,.2,1);

}


/* Image Zoom */

.about-image-box:hover .about-main-image {

    transform: scale(1.04);

}


/* =====================================================
   OVERLAY
===================================================== */

.about-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5, 25, 45, .15) 0%,
            transparent 45%,
            rgba(5, 25, 45, .75) 100%
        );

    pointer-events: none;

}


/* =====================================================
   NUMBER
===================================================== */

.about-image-number {

    position: absolute;

    top: 25px;

    left: 25px;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid
        rgba(255,255,255,.6);

    border-radius: 50%;

    color: #ffffff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    backdrop-filter: blur(8px);

}


/* =====================================================
   BOTTOM CAPTION
===================================================== */

.about-image-caption {

    position: absolute;

    left: 30px;

    right: 30px;

    bottom: 28px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    color: #ffffff;

}


.about-image-caption div {

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.about-image-caption span {

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    color: rgba(255,255,255,.65);

}


.about-image-caption strong {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 23px;

    font-weight: 500;

}


/* =====================================================
   CAPTION ARROW
===================================================== */

.about-image-caption > i {

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid
        rgba(255,255,255,.5);

    border-radius: 50%;

    font-size: 13px;

    transition: all .4s ease;

}


.about-image-box:hover
.about-image-caption > i {

    background: #ffffff;

    color: #0a2745;

    transform: rotate(45deg);

}


/* =====================================================
   FLOATING CARD
===================================================== */

.about-float-card {

    position: absolute;

    top: 405px;

    right: -1px;

    width: 175px;

    padding: 22px 20px;

    background: #0a2745;

    color: #ffffff;

    z-index: 5;

    box-shadow:
        0 15px 40px
        rgba(5,30,50,.25);

}


.about-float-card strong {

    display: block;

    margin-bottom: 7px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 32px;

    line-height: 1;

    color: #67b9ed;

}


.about-float-card span {

    display: block;

    max-width: 120px;

    color: rgba(255,255,255,.65);

    font-size: 9px;

    line-height: 1.6;

    letter-spacing: 1px;

    text-transform: uppercase;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .about-image-box {

        height: 520px;

    }


    .about-float-card {

        top: 25px;

        width: 165px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .about-image-box {

        height: 470px;

    }


    .about-image-number {

        top: 18px;

        left: 18px;

        width: 38px;

        height: 38px;

    }


    .about-image-caption {

        left: 20px;

        right: 20px;

        bottom: 20px;

    }


    .about-image-caption strong {

        font-size: 19px;

    }

    .about-float-card {
        top: 340px;
        right: 0;
        width: 150px;
        padding: 17px;
        margin-top: -101px;
    }

    .about-float-card strong {

        font-size: 27px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .about-image-box {

        height: 420px;

    }


    .about-image-caption span {

        font-size: 7px;

        letter-spacing: 1.5px;

    }


    .about-image-caption strong {

        font-size: 17px;

    }


    .about-image-caption > i {

        width: 38px;

        height: 38px;

    }

}


/* =====================================================
   COLLECTION SLIDER
===================================================== */

.collection-slider-section {

    background: #f5f4f0;
    padding: 120px 0;
    overflow: hidden;

}


/* HEADER */

.collection-header {

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 55px;

}


.collection-title {

    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2px;
    margin: 18px 0 0;
    color: #102d43;

}


.collection-title span {

    display: block;
    font-style: italic;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    color: #114e87;

}


/* CONTROLS */

.collection-controls {

    display: flex;
    gap: 10px;

}


.collection-controls button {

    width: 54px;
    height: 54px;

    border: 1px solid rgba(16,45,67,.2);
    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    transition: .35s ease;

}


.collection-controls button:hover {

    background: #102d43;
    color: #fff;
    border-color: #102d43;

}


/* SLIDER */

.collection-slider-wrapper {

    overflow: visible;

}


.collection-slider {

    display: flex;
    gap: 24px;

    transition:
        transform .8s cubic-bezier(.77,0,.18,1);

}


/* SLIDE */

.collection-slide {

    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;

}


/* IMAGE CARD */

.collection-image {

    height: 560px;
    position: relative;
    overflow: hidden;
    background: #ddd;

}


.collection-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 1s cubic-bezier(.2,.7,.2,1);

}


.collection-slide:hover
.collection-image img {

    transform: scale(1.07);

}


/* DARK OVERLAY */

.collection-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(10,20,30,.05) 20%,
            rgba(10,20,30,.15) 45%,
            rgba(10,20,30,.88) 100%
        );

    z-index: 1;

}


/* TOP */

.collection-top {

    position: absolute;

    top: 25px;
    left: 25px;
    right: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 2;

    color: #fff;

}


.collection-top span {

    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;

}


.collection-top i {

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255,255,255,.45);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;

    transition: .35s ease;

}


.collection-slide:hover
.collection-top i {

    background: #fff;
    color: #102d43;
    transform: rotate(45deg);

}


/* CONTENT */

.collection-info {

    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 32px;

    z-index: 2;

    color: #fff;

}


.collection-category {

    display: block;

    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;

    margin-bottom: 12px;

    opacity: .7;

}


.collection-info h3 {

    font-family: "Space Grotesk", sans-serif;

    font-size: 30px;
    font-weight: 500;

    margin: 0 0 12px;

}


.collection-info p {

    max-width: 330px;

    margin: 0;

    font-size: 14px;
    line-height: 1.7;

    color: rgba(255,255,255,.72);

}


/* BOTTOM */

.collection-bottom {

    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 35px;

}


.collection-progress {

    height: 2px;

    background: rgba(16,45,67,.15);

    flex: 1;

    position: relative;

}


.collection-progress span {

    position: absolute;

    left: 0;
    top: 0;

    width: 20%;
    height: 100%;

    background: #102d43;

    transition: width .6s ease;

}


.collection-count {

    font-family: "Space Grotesk", sans-serif;

    font-size: 12px;
    letter-spacing: 2px;

    color: #102d43;

    white-space: nowrap;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .collection-slider-section {

        padding: 90px 0;

    }


    .collection-header {

        margin-bottom: 40px;

    }


    .collection-slide {

        flex: 0 0 calc((100% - 24px) / 2);

    }


    .collection-image {

        height: 500px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .collection-slider-section {

        padding: 70px 0;

    }


    .collection-header {

        align-items: flex-start;
        flex-direction: column;
        gap: 25px;

    }


    .collection-title {

        font-size: 42px;
        letter-spacing: -1px;

    }


    .collection-controls {

        width: 100%;

        justify-content: flex-end;

    }


    .collection-controls button {

        width: 48px;
        height: 48px;

    }


    .collection-slide {

        flex: 0 0 88%;

    }


    .collection-image {

        height: 500px;

    }


    .collection-info h3 {

        font-size: 26px;

    }


    .collection-bottom {

        margin-top: 25px;

    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .collection-title {

        font-size: 36px;

    }


    .collection-slide {

        flex: 0 0 92%;

    }


    .collection-image {

        height: 450px;

    }


    .collection-info {

        left: 22px;
        right: 22px;
        bottom: 25px;

    }


    .collection-top {

        left: 22px;
        right: 22px;
        top: 22px;

    }

}

/* =====================================================
   WHY CHOOSE US
   STORY / EDITORIAL DESIGN
===================================================== */

.why-story-section {

    background: #ece9e2;

    padding: 120px 0 0;

    overflow: hidden;

    color: #142f42;

}


/* TOP */

.why-story-top {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 50px;

    margin-bottom: 80px;

}


.why-story-intro {

    max-width: 600px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(26px, 3vw, 42px);

    line-height: 1.2;

    letter-spacing: -1px;

}


.why-story-intro strong {

    font-family: "Playfair Display", serif;

    font-style: italic;

    font-weight: 400;

    color: #b28a58;

}


/* =====================================================
   VISUAL
===================================================== */

.why-story-visual {

    position: relative;

    min-height: 600px;

    display: flex;

    align-items: center;

}


/* VERTICAL TEXT */

.why-vertical-text {

    position: absolute;

    left: -20px;

    top: 50%;

    transform:
        translateY(-50%)
        rotate(-90deg);

    transform-origin: center;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(65px, 9vw, 150px);

    font-weight: 600;

    letter-spacing: -8px;

    color: rgba(20,47,66,.055);

    white-space: nowrap;

    z-index: 0;

}


/* IMAGE */

.why-story-image {

    position: relative;

    width: 62%;

    height: 560px;

    margin-left: 14%;

    overflow: hidden;

    z-index: 2;

}


.why-story-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 1s cubic-bezier(.2,.7,.2,1);

}


.why-story-image:hover img {

    transform: scale(1.06);

}


/* OVERLAY */

.why-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(10,28,40,.75),
            transparent 55%
        );

}


/* IMAGE CAPTION */

.why-image-caption {

    position: absolute;

    left: 35px;

    bottom: 35px;

    color: #ffffff;

}


.why-image-caption span {

    display: block;

    font-size: 9px;

    letter-spacing: 3px;

    margin-bottom: 8px;

    opacity: .65;

}


.why-image-caption strong {

    font-family: "Space Grotesk", sans-serif;

    font-size: 32px;

    line-height: .9;

    font-weight: 500;

}


/* FLOATING COPY */

.why-floating-copy {

    position: absolute;

    right: 4%;

    bottom: 70px;

    width: 280px;

    z-index: 4;

    padding: 28px;

    background: #ffffff;

    box-shadow: 0 25px 60px rgba(20,47,66,.12);

}


.floating-line {

    display: block;

    width: 35px;

    height: 2px;

    background: #b28a58;

    margin-bottom: 18px;

}


.why-floating-copy p {

    margin: 0;

    font-size: 13px;

    line-height: 1.8;

    color: #666;

}


/* =====================================================
   REASONS
===================================================== */

.why-reasons {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 100px;

    border-top: 1px solid rgba(20,47,66,.2);

}


.why-reason {

    position: relative;

    padding: 35px 30px 40px 0;

    border-right: 1px solid rgba(20,47,66,.2);

    transition: .4s ease;

}


.why-reason:not(:first-child) {

    padding-left: 30px;

}


.why-reason:last-child {

    border-right: 0;

}


.reason-number {

    display: none;

}


.reason-title {

    display: flex;

    align-items: center;

    gap: 14px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 25px;

    font-weight: 500;

    margin-bottom: 15px;

}


.reason-title span {

    font-size: 10px;

    color: #b28a58;

    letter-spacing: 1px;

}


.why-reason p {

    max-width: 230px;

    margin: 0;

    font-size: 12px;

    line-height: 1.8;

    color: #707575;

}


.why-reason:hover {

    transform: translateY(-8px);

}


.why-reason:hover .reason-title {

    color: #b28a58;

}


/* =====================================================
   MARQUEE
===================================================== */

.why-marquee {

    margin-top: 0;

    background: #142f42;

    overflow: hidden;

    padding: 25px 0;

}


.why-marquee-track {

    display: flex;

    align-items: center;

    gap: 35px;

    width: max-content;

    animation: whyMarquee 25s linear infinite;

}


.why-marquee-track span {

    font-family: "Space Grotesk", sans-serif;

    font-size: 28px;

    font-weight: 500;

    color: #ffffff;

    letter-spacing: 2px;

}


.why-marquee-track i {

    color: #b28a58;

    font-size: 10px;

}


@keyframes whyMarquee {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .why-story-section {

        padding-top: 90px;

    }


    .why-story-top {

        flex-direction: column;

        margin-bottom: 60px;

    }


    .why-story-visual {

        min-height: 520px;

    }


    .why-story-image {

        width: 72%;

        margin-left: 12%;

        height: 500px;

    }


    .why-floating-copy {

        right: 2%;

        bottom: 35px;

    }


    .why-reasons {

        grid-template-columns: repeat(2, 1fr);

    }


    .why-reason:nth-child(2) {

        border-right: 0;

    }


    .why-reason:nth-child(-n+2) {

        border-bottom: 1px solid rgba(20,47,66,.2);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .why-story-section {

        padding-top: 70px;

    }


    .why-story-top {

        gap: 25px;

        margin-bottom: 45px;

    }


    .why-story-intro {

        font-size: 27px;

    }


    .why-story-visual {

        display: block;

        min-height: 550px;

    }


    .why-vertical-text {

        left: -75px;

        font-size: 80px;

    }


    .why-story-image {

        width: 88%;

        height: 470px;

        margin-left: 6%;

    }


    .why-floating-copy {

        right: 0;

        bottom: 0;

        width: 250px;

        padding: 22px;

    }


    .why-image-caption {

        left: 25px;

        bottom: 25px;

    }


    .why-image-caption strong {

        font-size: 27px;

    }


    .why-reasons {

        grid-template-columns: 1fr;

        margin-top: 70px;

    }


    .why-reason,
    .why-reason:not(:first-child) {

        padding: 25px 0;

        border-right: 0;

        border-bottom: 1px solid rgba(20,47,66,.2);

    }


    .why-reason:last-child {

        border-bottom: 0;

    }


    .reason-title {

        font-size: 22px;

    }


    .why-reason p {

        max-width: 100%;

    }


    .why-marquee-track span {

        font-size: 22px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .why-story-image {

        width: 92%;

        margin-left: 4%;

        height: 420px;

    }


    .why-floating-copy {

        width: 220px;

        padding: 18px;

    }


    .why-floating-copy p {

        font-size: 12px;

    }

}

/* =====================================================
   WHY STORY - COMPACT TOP
===================================================== */

.why-story-section {

    background: #ece9e2;

    padding: 80px 0 0;

    overflow: hidden;

}


/* TOP ROW */

.why-story-top {

    display: grid;

    grid-template-columns: 35% 65%;

    align-items: start;

    gap: 40px;

    margin-bottom: 45px;

}


/* LABEL */

.why-story-top .section-label {
    padding-top: 20px;
    margin: 0;
    padding-left: 145px;
}


/* INTRO */

.why-story-intro {

    max-width: 680px;

    margin: 0;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(28px, 3.2vw, 46px);

    line-height: 1.18;

    letter-spacing: -1.5px;

    color: #102d43;

}


.why-story-intro strong {

    font-family: "Playfair Display", serif;

    font-style: italic;

    font-weight: 400;

    color: #114e87;

}


/* =====================================================
   VISUAL - REDUCED SPACE
===================================================== */

.why-story-visual {

    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

}


/* IMAGE */

.why-story-image {

    position: relative;

    width: 65%;

    height: 500px;

    margin-left: 13%;

    overflow: hidden;

    z-index: 2;

}


/* FLOATING COPY */

.why-floating-copy {

    position: absolute;

    right: 5%;

    bottom: 35px;

    width: 280px;

    z-index: 4;

    padding: 25px;

    background: #fff;

    box-shadow: 0 20px 50px rgba(20,47,66,.10);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .why-story-section {

        padding-top: 70px;

    }


    .why-story-top {

        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 40px;

    }


    .why-story-intro {

        max-width: 700px;

    }


    .why-story-visual {

        min-height: 480px;

    }


    .why-story-image {

        width: 75%;

        height: 470px;

        margin-left: 10%;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .why-story-section {

        padding-top: 55px;

    }


    .why-story-top {

        gap: 18px;

        margin-bottom: 30px;

    }


    .why-story-intro {

        font-size: 28px;

        line-height: 1.2;

        letter-spacing: -.8px;

    }


    .why-story-visual {

        min-height: 470px;

        display: block;

    }


    .why-story-image {

        width: 90%;

        height: 420px;

        margin-left: 5%;

    }


    .why-floating-copy {

        width: 240px;

        right: 0;

                bottom: -70px;

        padding: 20px;

    }

}

/* =====================================================
   BENEFIT SHOWCASE
===================================================== */

.benefit-showcase {

    background: #f7f5f0;

    padding: 100px 0;

    overflow: hidden;

}


/* =====================================================
   TOP
===================================================== */

.benefit-showcase-top {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    margin-bottom: 55px;

}


.benefit-showcase-top p {

    max-width: 360px;

    margin: 0;

    color: #777;

    font-size: 13px;

    line-height: 1.8;

}


/* =====================================================
   GRID
===================================================== */

.benefit-showcase-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

}


/* =====================================================
   BENEFIT
===================================================== */

.showcase-benefit {

    min-height: 480px;

    position: relative;

    padding: 35px;

    overflow: hidden;

    background: #e9e6df;

    transition: .5s ease;

}


.showcase-benefit:hover {

    transform: translateY(-8px);

}


/* DARK */

.showcase-dark {

    background: #102d43;

    color: #ffffff;

}


/* GOLD */

.showcase-gold {

    background: #b89462;

    color: #ffffff;

}


/* =====================================================
   BACKGROUND WORD
===================================================== */

.showcase-bg-text {

    position: absolute;

    left: -15px;

    bottom: -15px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 105px;

    line-height: .8;

    font-weight: 600;

    letter-spacing: -7px;

    color: rgba(16,45,67,.055);

    user-select: none;

    transition: .6s ease;

}


.showcase-dark .showcase-bg-text {

    color: rgba(255,255,255,.045);

}


.showcase-gold .showcase-bg-text {

    color: rgba(255,255,255,.10);

}


.showcase-benefit:hover
.showcase-bg-text {

    transform: translateX(20px);

}


/* =====================================================
   NUMBER
===================================================== */

.showcase-number {

    position: absolute;

    top: 35px;

    right: 35px;

    font-size: 10px;

    letter-spacing: 2px;

    color: #9b8c79;

}


.showcase-dark .showcase-number {

    color: rgba(255,255,255,.45);

}


.showcase-gold .showcase-number {

    color: rgba(255,255,255,.7);

}


/* =====================================================
   ICON
===================================================== */

.showcase-icon {

    width: 72px;

    height: 72px;

    border-radius: 50%;

    background: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #102d43;

    font-size: 25px;

    transition: .5s ease;

}


.showcase-dark .showcase-icon {

    background: #c49a63;

    color: #102d43;

}


.showcase-gold .showcase-icon {

    background: #ffffff;

    color: #b89462;

}


.showcase-benefit:hover
.showcase-icon {

    transform:
        rotate(-10deg)
        scale(1.08);

}


/* =====================================================
   CONTENT
===================================================== */

.showcase-content {

    position: absolute;

    left: 35px;

    bottom: 110px;

    right: 35px;

    z-index: 2;

}


.showcase-content h3 {

    font-family: "Space Grotesk", sans-serif;

    font-size: 42px;

    line-height: .9;

    font-weight: 500;

    letter-spacing: -1.5px;

    margin: 0 0 20px;

    color: #102d43;

}


.showcase-content h3 em {

    display: block;

    font-family: "Playfair Display", serif;

    font-weight: 400;

    font-style: italic;

    color: #ad8250;

}


.showcase-dark .showcase-content h3 {

    color: #ffffff;

}


.showcase-dark .showcase-content h3 em {

    color: #c49a63;

}


.showcase-gold .showcase-content h3 {

    color: #ffffff;

}


.showcase-gold .showcase-content h3 em {

    color: #ffffff;

}


.showcase-content p {

    max-width: 270px;

    margin: 0;

    font-size: 12px;

    line-height: 1.8;

    color: #747474;

}


.showcase-dark .showcase-content p {

    color: rgba(255,255,255,.6);

}


.showcase-gold .showcase-content p {

    color: rgba(255,255,255,.8);

}


/* =====================================================
   BOTTOM
===================================================== */

.showcase-bottom {

    position: absolute;

    left: 35px;

    right: 35px;

    bottom: 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 15px;

    border-top: 1px solid rgba(16,45,67,.15);

}


.showcase-dark .showcase-bottom {

    border-color: rgba(255,255,255,.15);

}


.showcase-gold .showcase-bottom {

    border-color: rgba(255,255,255,.3);

}


.showcase-bottom span {

    font-size: 9px;

    letter-spacing: 3px;

    color: #777;

}


.showcase-dark .showcase-bottom span,
.showcase-gold .showcase-bottom span {

    color: rgba(255,255,255,.7);

}


.showcase-bottom i {

    font-size: 18px;

    color: #102d43;

    transition: .4s ease;

}


.showcase-dark .showcase-bottom i,
.showcase-gold .showcase-bottom i {

    color: #ffffff;

}


.showcase-benefit:hover
.showcase-bottom i {

    transform: translate(5px,-5px);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .benefit-showcase {

        padding: 80px 0;

    }


    .benefit-showcase-grid {

        grid-template-columns: 1fr;

        gap: 15px;

    }


    .showcase-benefit {

        min-height: 400px;

    }


    .showcase-content {

        bottom: 95px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575px) {

    .benefit-showcase {

        padding: 60px 0;

    }


    .benefit-showcase-top {

        flex-direction: column;

        gap: 20px;

        margin-bottom: 35px;

    }


    .showcase-benefit {

        min-height: 390px;

        padding: 28px;

    }


    .showcase-icon {

        width: 62px;

        height: 62px;

        font-size: 21px;

    }


    .showcase-content {

        left: 28px;

        right: 28px;

        bottom: 90px;

    }


    .showcase-content h3 {

        font-size: 36px;

    }


    .showcase-bottom {

        left: 28px;

        right: 28px;

        bottom: 25px;

    }


    .showcase-bg-text {

        font-size: 80px;

    }

}

/* =====================================================
   MODERN PROCESS
===================================================== */

.process-modern-section {

    background: #f3f0ea;

    padding: 110px 0;

    overflow: hidden;

}


/* =====================================================
   HEADER
===================================================== */

.process-modern-head {

    display: grid;

    grid-template-columns: .7fr 1.3fr;

    gap: 60px;

    align-items: start;

    margin-bottom: 70px;

}


.process-modern-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 50px;

}


.process-modern-heading h2 {

    margin: 0;

    color: #102d43;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(42px, 5vw, 68px);

    line-height: .9;

    font-weight: 500;

    letter-spacing: -3px;

}


.process-modern-heading h2 span {

    display: block;

    font-family: "Playfair Display", serif;

    font-style: italic;

    font-weight: 400;

    color: #b28a58;

}


.process-modern-heading p {

    max-width: 270px;

    margin: 0;

    color: #777;

    font-size: 12px;

    line-height: 1.8;

}


/* =====================================================
   LIST
===================================================== */

.process-modern-list {

    display: flex;

    flex-direction: column;

    gap: 14px;

}


/* =====================================================
   ITEM
===================================================== */

.process-modern-item {

    min-height: 145px;

    display: grid;

    grid-template-columns: 80px 90px 1fr 60px;

    align-items: center;

    gap: 30px;

    padding: 25px 35px;

    background: #ffffff;

    position: relative;

    overflow: hidden;

    transition: .5s ease;

}


.process-modern-item::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 4px;

    height: 0;

    background: #b28a58;

    transition: .5s ease;

}


.process-modern-item:hover {

    transform: translateX(12px);

    box-shadow:
        0 20px 50px rgba(16,45,67,.08);

}


.process-modern-item:hover::before {

    height: 100%;

}


/* =====================================================
   NUMBER
===================================================== */

.process-modern-number {

    font-family: "Space Grotesk", sans-serif;

    font-size: 12px;

    letter-spacing: 2px;

    color: #b28a58;

}


/* =====================================================
   ICON
===================================================== */

.process-modern-icon {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f2eee7;

    color: #102d43;

    font-size: 21px;

    transition: .5s ease;

}


.process-modern-item:hover
.process-modern-icon {

    background: #102d43;

    color: #ffffff;

    transform: rotate(-8deg);

}


/* =====================================================
   CONTENT
===================================================== */

.process-modern-content span {

    font-size: 8px;

    letter-spacing: 3px;

    color: #b28a58;

}


.process-modern-content h3 {

    margin: 6px 0 7px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 25px;

    font-weight: 500;

    color: #102d43;

}


.process-modern-content p {

    max-width: 500px;

    margin: 0;

    color: #777;

    font-size: 12px;

    line-height: 1.7;

}


/* =====================================================
   ARROW
===================================================== */

.process-modern-arrow {

    width: 45px;

    height: 45px;

    border: 1px solid #ddd8cf;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #102d43;

    transition: .4s ease;

}


.process-modern-item:hover
.process-modern-arrow {

    background: #b28a58;

    border-color: #b28a58;

    color: #ffffff;

    transform: translate(3px,-3px);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .process-modern-head {

        grid-template-columns: 1fr;

        gap: 30px;

        margin-bottom: 50px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .process-modern-section {

        padding: 75px 0;

    }


    .process-modern-heading {

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

    }


    .process-modern-item {

        grid-template-columns: 45px 60px 1fr;

        gap: 15px;

        padding: 25px 20px;

    }


    .process-modern-icon {

        width: 55px;

        height: 55px;

        font-size: 18px;

    }


    .process-modern-content h3 {

        font-size: 21px;

    }


    .process-modern-content p {

        font-size: 11px;

    }


    .process-modern-arrow {

        display: none;

    }

}

/* =====================================================
   FINAL CONTACT
===================================================== */

.final-contact-section {

    position: relative;

    min-height: 600px;

    display: flex;

    align-items: center;

    background: #102d43;

    overflow: hidden;

    color: #ffffff;

}


/* =====================================================
   DECORATION
===================================================== */

.final-contact-decoration {

    position: absolute;

    right: -70px;

    bottom: -100px;

    width: 520px;

    height: 520px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;

}


.final-contact-decoration::before {

    content: "";

    position: absolute;

    inset: 45px;

    border: 1px solid rgba(196,154,99,.18);

    border-radius: 50%;

}


.final-contact-decoration::after {

    content: "";

    position: absolute;

    inset: 100px;

    border: 1px dashed rgba(255,255,255,.08);

    border-radius: 50%;

}


.final-contact-decoration span {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%,-50%);

    font-family: "Playfair Display", serif;

    font-size: 100px;

    font-style: italic;

    color: rgba(255,255,255,.06);

}


/* =====================================================
   CONTENT
===================================================== */

.final-contact-content {

    position: relative;

    z-index: 2;

    width: 100%;

}


/* =====================================================
   TITLE
===================================================== */

.final-contact-title {

    margin-top: 45px;

}


.final-contact-title h2 {

    max-width: 900px;

    margin: 0;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(55px, 8vw, 115px);

    line-height: .82;

    letter-spacing: -6px;

    font-weight: 400;

    color: #ffffff;

}


.final-contact-title h2 span {

    display: block;

    padding-left: 14%;

    font-family: "Playfair Display", serif;

    font-style: italic;

    font-weight: 400;

    color: #c49a63;

}


/* =====================================================
   BOTTOM
===================================================== */

.final-contact-bottom {

    margin-top: 90px;

    padding-top: 30px;

    border-top: 1px solid rgba(255,255,255,.15);

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;

}


.final-contact-bottom p {

    max-width: 390px;

    margin: 0;

    color: rgba(255,255,255,.55);

    font-size: 12px;

    line-height: 1.8;

}


/* =====================================================
   LINK
===================================================== */

.final-contact-link {

    display: flex;

    align-items: center;

    gap: 20px;

    color: #ffffff;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1.5px;

}


.final-contact-link div {

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background: #c49a63;

    color: #102d43;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

    transition: .4s ease;

}


.final-contact-link:hover {

    color: #ffffff;

}


.final-contact-link:hover div {

    background: #ffffff;

    transform: rotate(45deg);

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .final-contact-section {

        min-height: 550px;

    }


    .final-contact-decoration {

        width: 350px;

        height: 350px;

        right: -130px;

        bottom: -60px;

    }


    .final-contact-decoration span {

        font-size: 70px;

    }


    .final-contact-title {

        margin-top: 35px;

    }


    .final-contact-title h2 {

        font-size: 58px;

        letter-spacing: -3px;

    }


    .final-contact-title h2 span {

        padding-left: 5%;

    }


    .final-contact-bottom {

        margin-top: 60px;

        align-items: flex-start;

        flex-direction: column;

        gap: 30px;

    }

}
/* =====================================================
   FOOTER
===================================================== */

.site-footer {

    background: #061a30;

    color: white;

    padding: 90px 0 25px;

}


.footer-logo img {

    width: 150px;

    /* filter: brightness(0) invert(1); */

}


.footer-description {

    max-width: 400px;

    color: rgba(255,255,255,.5);

    line-height: 1.8;

    margin: 25px 0;

    margin-top: -10px;

}


.social-links {

    display: flex;

    gap: 10px;

}


.social-links a {

    width: 40px;

    height: 40px;

    border: 1px solid rgba(255,255,255,.15);

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    transition: var(--transition);

}


.social-links a:hover {

    background: white;

    color: var(--navy);

}


.site-footer h5 {

    font-size: 12px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    margin-bottom: 25px;

}


.site-footer ul {

    list-style: none;

    padding: 0;

    margin: 0;

}


.site-footer li {

    color: rgba(255,255,255,.45);

    margin-bottom: 13px;

    font-size: 13px;

}


.site-footer li a {

    transition: var(--transition);

}


.site-footer li a:hover {

    color: white;

}


.footer-bottom {

    border-top: 1px solid rgba(255,255,255,.1);

    margin-top: 70px;

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p,
.footer-bottom a {

    color: rgba(255,255,255,.4);

    font-size: 11px;

    margin: 0;

}


.footer-bottom div {

    display: flex;

    gap: 25px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 1199px) {

    .hero-content h1 {
        font-size: 80px;
    }

    .hero-image-frame {
        width: 390px;
        height: 540px;
    }

    .hero-visual {
        min-height: 580px;
    }

    .philosophy-box {
        padding: 70px;
    }

}


@media(max-width: 991px) {

    .site-header {
        top: 10px;
    }

    .site-header .navbar {
        border-radius: 25px;
    }

    .navbar-collapse {
        padding: 20px 5px 10px;
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding: 12px 10px !important;
    }

    .nav-contact-btn {
        display: inline-block;
        margin-top: 10px;
    }


    .hero-section {
        min-height: auto;
    }

    .hero-row {
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .hero-content {
        padding: 50px 0 30px;
    }

    .hero-content h1 {
        font-size: clamp(60px, 12vw, 90px);
    }

    .hero-visual {
        min-height: 580px;
    }

    .hero-floating-card {
        right: 5%;
    }


    .section-padding {
        padding: 90px 0;
    }


    .lookbook-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lookbook-large {
        grid-column: span 2;
    }


    .solution-item {
        align-items: flex-start;
        gap: 30px;
    }

    .solution-right p {
        width: 240px;
    }

}


@media(max-width: 767px) {

    .site-header .navbar {
        padding: 10px 15px;
    }

    .site-logo {
        width: 105px;
    }


    .hero-content h1 {
        font-size: 60px;
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 16px;
    }


    .hero-visual {
        min-height: 500px;
    }

    .hero-image-frame {
        width: 320px;
        height: 430px;
    }

    .fashion-silhouette i {
        font-size: 270px;
    }

    .hero-floating-card {
        right: 0;
        bottom: 30px;
        width: 210px;
    }


    .hero-scroll {
        display: none;
    }


    .section-padding {
        padding: 75px 0;
    }


    .section-heading-row {
        display: block;
        margin-bottom: 40px;
    }

    .section-side-text {
        margin-top: 25px;
    }


    .section-title {
        font-size: 48px;
        letter-spacing: -2px;
    }


    .stats-row {
        margin-top: 60px;
    }

    .stat-box {
        padding: 30px 10px;
    }

    .stat-box h3 {
        font-size: 38px;
    }


    .philosophy-box {
        padding: 60px 30px;
    }

    .philosophy-box h2 {
        font-size: 48px;
        margin-bottom: 40px;
    }


    .solution-item {
        display: block;
        padding: 30px 0;
    }

    .solution-left {
        gap: 20px;
    }

    .solution-left h3 {
        font-size: 23px;
    }

    .solution-right {
        margin-top: 20px;
        gap: 20px;
    }

    .solution-right p {
        width: auto;
    }


    .lookbook-grid {
        display: block;
    }

    .lookbook-card {
        margin-bottom: 30px;
    }

    .lookbook-placeholder {
        height: 400px;
    }


    .cta-section {
        padding: 100px 20px;
    }

    .cta-content h2 {
        font-size: 55px;
        letter-spacing: -3px;
    }


    .footer-top > div {
        margin-bottom: 40px;
    }


    .footer-bottom {
        display: block;
    }

    .footer-bottom div {
        margin-top: -5px;
    }

}


@media(max-width: 480px) {

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-buttons {
        display: block;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }


    .hero-image-frame {
        width: 280px;
        height: 390px;
    }

    .fashion-silhouette i {
        font-size: 230px;
    }


    .section-title {
        font-size: 42px;
    }


    .collection-card {
        min-height: 380px;
        padding: 30px;
    }

    .collection-content {
        left: 30px;
        bottom: 30px;
    }


    .philosophy-box {
        padding: 50px 25px;
    }


    .cta-content h2 {
        font-size: 45px;
    }

}


.footer-logo {
    display: inline-flex;
    align-items: center;
    /* margin-bottom: 25px; */
}

.footer-logo img {
    width: 170px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* =====================================================
   PRODUCTS IMAGE SCROLL DROPDOWN
===================================================== */

.products-menu {

    width: 370px;

    padding: 14px;

    margin-top: 14px;

    background: #ffffff;

    border: 1px solid rgba(10,39,69,.08);

    border-radius: 6px;

    box-shadow:
        0 25px 70px rgba(5,30,50,.16);

    overflow: hidden;

}


/* =====================================================
   HORIZONTAL SCROLL
===================================================== */

.products-scroll {

    display: flex;

    gap: 12px;

    overflow-x: auto;

    overflow-y: hidden;

    scroll-behavior: smooth;

    scroll-snap-type: x mandatory;

    padding-bottom: 8px;

}


/* Hide scrollbar */

.products-scroll::-webkit-scrollbar {

    height: 4px;

}

.products-scroll::-webkit-scrollbar-track {

    background: #edf1f3;

}

.products-scroll::-webkit-scrollbar-thumb {

    background: #145b91;

    border-radius: 20px;

}


/* =====================================================
   PRODUCT CARD
===================================================== */

.product-scroll-card {

    flex: 0 0 290px;

    scroll-snap-align: start;

}


.product-scroll-card a {

    display: block;

    text-decoration: none;

}


/* =====================================================
   IMAGE
===================================================== */

.product-scroll-image {

    position: relative;

    height: 350px;

    overflow: hidden;

    background: #e8edf0;

}


.product-scroll-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .7s ease;

}


/* =====================================================
   OVERLAY
===================================================== */

.product-scroll-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,25,42,.90) 0%,
            rgba(5,25,42,.25) 55%,
            rgba(5,25,42,.02) 100%
        );

}


/* =====================================================
   TOP
===================================================== */

.product-scroll-top {

    position: absolute;

    top: 15px;

    left: 15px;

    right: 15px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.product-scroll-top span {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.6);

    border-radius: 50%;

    color: #ffffff;

    font-size: 9px;

}


.product-scroll-top i {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #145b91;

    font-size: 11px;

    transition: .35s ease;

}


/* =====================================================
   CONTENT
===================================================== */

.product-scroll-content {

    position: absolute;

    left: 20px;

    right: 20px;

    bottom: 20px;

    color: #ffffff;

}


.product-scroll-content small {

    display: block;

    margin-bottom: 7px;

    color: #d8a25d;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.8px;

}


.product-scroll-content h4 {

    margin: 0;

    color: #ffffff;

    font-family: "Space Grotesk", sans-serif;

    font-size: 20px;

    font-weight: 600;

}


.product-scroll-content p {

    margin: 5px 0 0;

    color: rgba(255,255,255,.65);

    font-size: 10px;

}


/* =====================================================
   HOVER
===================================================== */

.product-scroll-card:hover
.product-scroll-image img {

    transform: scale(1.08);

}


.product-scroll-card:hover
.product-scroll-top i {

    background: #145b91;

    color: #ffffff;

    transform: rotate(45deg);

}


/* =====================================================
   BOTTOM SCROLL INDICATOR
===================================================== */

.products-scroll-bottom {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 12px;

    padding: 5px 2px 0;

}


.products-scroll-bottom > span {

    white-space: nowrap;

    color: #7c8992;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.products-scroll-line {

    position: relative;

    flex: 1;

    height: 1px;

    background: #dfe5e8;

}


.products-scroll-line span {

    display: block;

    width: 30%;

    height: 2px;

    background: #145b91;

}


.products-scroll-bottom i {

    color: #145b91;

    font-size: 13px;

}

/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonials-section {
    background: #f5f3ee;
    overflow: hidden;
}


.testimonial-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 50px;

    margin-bottom: 55px;

}


.testimonial-header > p {

    max-width: 390px;

    margin: 0;

    color: var(--gray);

    font-size: 14px;

    line-height: 1.8;

}


.testimonial-slider-wrapper {

    overflow: hidden;

}


.testimonial-track {

    display: flex;

    gap: 24px;

    transition: transform .6s ease;

}


.testimonial-card {

    flex: 0 0 calc(33.333% - 16px);

    min-height: 390px;

    padding: 35px;

    background: #ffffff;

    border: 1px solid rgba(10,39,69,.08);

    position: relative;

    transition: .4s ease;

}


.testimonial-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 60px rgba(10,39,69,.10);

}


.testimonial-featured {

    background: #0a2745;

    color: #ffffff;

}


.testimonial-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.testimonial-number {

    font-size: 10px;

    letter-spacing: 2px;

    color: #b48b58;

}


.testimonial-stars {

    display: flex;

    gap: 4px;

}


.testimonial-stars i {

    color: #c99651;

    font-size: 10px;

}


.testimonial-quote {

    margin-top: 45px;

}


.testimonial-quote i {

    font-size: 42px;

    color: #b48b58;

}


.testimonial-text {

    max-width: 400px;

    margin: 5px 0 35px;

    color: #52616c;

    font-family: "Playfair Display", serif;

    font-size: 20px;

    line-height: 1.6;

}


.testimonial-featured .testimonial-text {

    color: rgba(255,255,255,.75);

}


.testimonial-author {

    display: flex;

    align-items: center;

    gap: 13px;

}


.author-avatar {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #145b91;

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

}


.testimonial-author h4 {

    margin: 0 0 3px;

    font-size: 13px;

}


.testimonial-author span {

    color: #929da5;

    font-size: 10px;

}


.testimonial-controls {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 35px;

}


.testimonial-controls button {

    width: 42px;

    height: 42px;

    border: 1px solid rgba(10,39,69,.15);

    background: transparent;

    color: #0a2745;

    border-radius: 50%;

    transition: .3s ease;

}


.testimonial-controls button:hover {

    background: #0a2745;

    color: #ffffff;

}


.testimonial-progress {

    width: 100px;

    height: 1px;

    background: #d6dadd;

}


.testimonial-progress span {

    display: block;

    width: 33%;

    height: 2px;

    background: #145b91;

}


@media (max-width: 991px) {

    .testimonial-header {

        display: block;

    }

    .testimonial-header > p {

        margin-top: 20px;

    }

    .testimonial-card {

        flex: 0 0 80%;

    }

}


@media (max-width: 575px) {

    .testimonial-card {

        flex: 0 0 90%;

        padding: 25px;

        min-height: 360px;

    }

    .testimonial-text {

        font-size: 18px;

    }

}

/* =====================================================
   FAQ
===================================================== */

.faq-section {

    background: #ffffff;

}


.faq-intro {

    max-width: 340px;

    margin-top: 25px;

    color: var(--gray);

    font-size: 14px;

    line-height: 1.8;

}


.faq-contact {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 35px;

    color: #0a2745;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    text-decoration: none;

    letter-spacing: .5px;

}


.faq-contact i {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #0a2745;

    border-radius: 50%;

    transition: .3s ease;

}


.faq-contact:hover i {

    background: #0a2745;

    color: #ffffff;

    transform: rotate(45deg);

}


/* =====================================================
   FAQ ITEM
===================================================== */

.faq-item {

    border-top: 1px solid rgba(10,39,69,.15);

}


.faq-item:last-child {

    border-bottom: 1px solid rgba(10,39,69,.15);

}


.faq-question {

    width: 100%;

    padding: 24px 0;

    border: 0;

    background: transparent;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    text-align: left;

    color: #0a2745;

}


.faq-question > span {

    display: flex;

    align-items: flex-start;

    gap: 25px;

    flex: 1;

}


.faq-question > span:first-child {

    color: #b48b58;

    font-size: 10px;

    letter-spacing: 1px;

}


.faq-question strong {

    display: block;

    color: #0a2745;

    font-size: 15px;

    font-weight: 500;

}


.faq-question > i {

    width: 34px;

    height: 34px;

    min-width: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(10,39,69,.15);

    border-radius: 50%;

    font-size: 14px;

    transition: .35s ease;

}


/* =====================================================
   ANSWER
===================================================== */

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .4s ease;

}


.faq-answer p {

    max-width: 650px;

    margin: 0;

    padding: 0 60px 25px 55px;

    color: #687680;

    font-size: 13px;

    line-height: 1.8;

}


/* =====================================================
   ACTIVE
===================================================== */

.faq-item.active
.faq-answer {

    max-height: 250px;

}


.faq-item.active
.faq-question > i {

    background: #0a2745;

    color: #ffffff;

    transform: rotate(45deg);

}


@media (max-width: 767px) {

    .faq-question {

        padding: 20px 0;

    }


    .faq-question > span {

        gap: 15px;

    }


    .faq-question strong {

        font-size: 13px;

        line-height: 1.5;

    }


    .faq-answer p {

        padding: 0 15px 20px 30px;

        font-size: 12px;

    }

}

/* =====================================================
   FOOTER CONTACT
===================================================== */

.footer-contact-list {

    list-style: none;

    padding: 0;

    margin: 0;

}


.footer-contact-list li {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 18px;

    color: rgba(255, 255, 255, .6);

    font-size: 13px;

    line-height: 1.7;

}


.footer-contact-list li:last-child {

    margin-bottom: 0;

}


/* ICON */

.footer-contact-icon {

    width: 34px;

    height: 34px;

    min-width: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .18);

    border-radius: 50%;

    color: #d8a24c;

    font-size: 13px;

    transition: all .3s ease;

}


.footer-contact-list li:hover
.footer-contact-icon {

    background: #d8a24c;

    border-color: #d8a24c;

    color: #ffffff;

    transform: translateY(-2px);

}


/* LINKS */

.footer-contact-list a {

    color: rgba(255, 255, 255, .65);

    text-decoration: none;

    transition: .3s ease;

    padding-top: 6px;

}


.footer-contact-list a:hover {

    color: #ffffff;

}


/* ADDRESS */

.footer-address {

    padding-top: 4px;

    max-width: 280px;

}


/* MOBILE */

@media (max-width: 575px) {

    .footer-contact-list li {

        gap: 12px;

        font-size: 12px;

    }


    .footer-contact-icon {

        width: 32px;

        height: 32px;

        min-width: 32px;

    }

}

/* =====================================================
   FLOATING ACTION BUTTONS
===================================================== */

.floating-actions {
    position: fixed;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;

    pointer-events: none;
}


/* =====================================================
   LEFT
===================================================== */

.floating-left {

    position: absolute;

    left: 0;

    top: 0;

    display: flex;
    flex-direction: column;

    gap: 8px;

    pointer-events: auto;

}


.float-btn {

    width: 48px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #145b91;

    text-decoration: none;

    border-radius: 0 7px 7px 0;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .12);

    font-size: 18px;

    transition: all .35s ease;

}


.float-btn:hover {

    width: 58px;

    color: #ffffff;

    transform: translateX(3px);

}


.whatsapp-btn:hover {

    background: #25D366;

}


.instagram-btn:hover {

    background: #E1306C;

}


/* =====================================================
   RIGHT
===================================================== */

.floating-right {

    position: absolute;

    right: 0;

    top: 0;

    display: flex;

    flex-direction: column;

    gap: 8px;

    pointer-events: auto;

}


/* =====================================================
   RIGHT BUTTON
===================================================== */

.float-wide {

    width: 145px;
    height: 46px;

    display: flex;

    align-items: center;

    text-decoration: none;

    overflow: hidden;

    border-radius: 7px 0 0 7px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .12);

    transition: all .35s ease;

}


/* Icon */

.float-icon {

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 16px;

}


/* Text */

.float-text {

    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    height: 100%;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .8px;

    white-space: nowrap;

}


/* =====================================================
   CALL
===================================================== */

.call-btn {

    background: #ffffff;

    color: #145b91;

}


.call-btn .float-icon {

    background: #ffffff;

    color: #145b91;

}


.call-btn:hover {

    width: 165px;

    background: #145b91;

    color: #ffffff;

}


.call-btn:hover .float-icon {

    background: #145b91;

    color: #ffffff;

}


/* =====================================================
   GOOGLE REVIEW
===================================================== */

.review-btn {

    background: #d9a14f;

    color: #ffffff;

}


.review-btn .float-icon {

    background: #d9a14f;

    color: #ffffff;

}


.review-btn:hover {

    width: 165px;

    background: #c58c3d;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .floating-actions {

        top: auto;

        bottom: 20px;

        transform: none;

    }


    .floating-left {

        left: 12px;

        top: auto;

        bottom: 0;

        flex-direction: row;

    }


    .floating-right {

        right: 12px;

        top: auto;

        bottom: 0;

    }


    .float-btn {

        width: 42px;
        height: 42px;

        border-radius: 50%;

    }


    .float-wide {

        width: 42px;
        height: 42px;

        border-radius: 50%;

    }


    .float-wide .float-icon {

        width: 42px;
        height: 42px;

    }


    .float-wide .float-text {

        display: none;

    }


    .float-wide:hover {

        width: 42px;

    }

}

/* =====================================================
   PREMIUM FLOATING CONTACT TABS
===================================================== */

.floating-contact {

    position: fixed;

    top: 50%;

    transform: translateY(-50%);

    z-index: 9999;

    display: flex;

    flex-direction: column;

    gap: 8px;

}


/* LEFT */

.floating-left {

    left: 0;

}


/* RIGHT */

.floating-right {

    right: 0;

}


/* =====================================================
   TAB
===================================================== */

.floating-tab {

    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;

    overflow: hidden;

    text-decoration: none;

    background: #ffffff;

    border: 1px solid rgba(10,39,69,.12);

    box-shadow:
        0 8px 30px rgba(10,39,69,.12);

    transition:
        width .4s ease,
        background .3s ease,
        color .3s ease;

}


/* LEFT RADIUS */

.floating-left .floating-tab {

    border-radius: 0 8px 8px 0;

}


/* RIGHT RADIUS */

.floating-right .floating-tab {

    border-radius: 8px 0 0 8px;

}


/* =====================================================
   ICON
===================================================== */

.floating-tab-icon {

    width: 48px;

    min-width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 17px;

    transition: .3s ease;

}


/* =====================================================
   TEXT
===================================================== */

.floating-tab-text {

    white-space: nowrap;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;

    opacity: 0;

    max-width: 0;

    overflow: hidden;

    transition:
        max-width .4s ease,
        opacity .3s ease;

}


/* =====================================================
   LEFT TEXT
===================================================== */

.floating-left .floating-tab-text {

    padding-left: 0;

}


/* =====================================================
   RIGHT TEXT
===================================================== */

.floating-right .floating-tab-text {

    padding-right: 0;

}


/* =====================================================
   HOVER EXPAND
===================================================== */

.floating-tab:hover {

    width: 150px;

}


.floating-tab:hover .floating-tab-text {

    max-width: 100px;

    opacity: 1;

}


/* =====================================================
   LEFT ORDER
===================================================== */

.floating-left .floating-tab {

    flex-direction: row;

}


/* =====================================================
   RIGHT ORDER
===================================================== */

.floating-right .floating-tab {

    flex-direction: row;

}


/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-tab {

    color: #20b85a;

}


.whatsapp-tab:hover {

    background: #20b85a;

    color: #ffffff;

}


.whatsapp-tab .floating-tab-icon {

    color: #20b85a;

}


.whatsapp-tab:hover .floating-tab-icon {

    color: #ffffff;

}


/* =====================================================
   INSTAGRAM
===================================================== */

.instagram-tab {

    color: #c13584;

}


.instagram-tab:hover {

    background: #c13584;

    color: #ffffff;

}


.instagram-tab .floating-tab-icon {

    color: #c13584;

}


.instagram-tab:hover .floating-tab-icon {

    color: #ffffff;

}


/* =====================================================
   PHONE
===================================================== */

.phone-tab {

    color: #145b91;

}


.phone-tab:hover {

    background: #145b91;

    color: #ffffff;

}


.phone-tab .floating-tab-icon {

    color: #145b91;

}


.phone-tab:hover .floating-tab-icon {

    color: #ffffff;

}


/* =====================================================
   GOOGLE REVIEW
===================================================== */

.review-tab {

    color: #c28d3f;

}


.review-tab:hover {

    background: #c28d3f;

    color: #ffffff;

}


.review-tab .floating-tab-icon {

    color: #c28d3f;

}


.review-tab:hover .floating-tab-icon {

    color: #ffffff;

}


/* =====================================================
   RIGHT SIDE ICON
===================================================== */

.floating-right .floating-tab-icon {

    order: 2;

}


.floating-right .floating-tab-text {

    order: 1;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .floating-contact {

        gap: 6px;

    }


    .floating-tab {

        width: 42px !important;

        height: 42px;

        min-width: 42px;

    }


    .floating-tab-icon {

        width: 42px;

        min-width: 42px;

        height: 42px;

        font-size: 15px;

    }


    .floating-tab-text {

        display: none;

    }


    .floating-left {

        left: 6px;

    }


    .floating-right {

        right: 6px;

    }

}

/* =====================================================
   BOTTOM FLOATING ACTIONS
===================================================== */

.bottom-floating-actions {

    position: fixed;

    left: 0;
    right: 0;
    bottom: 28px;

    z-index: 99999;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    padding: 0 24px;

    pointer-events: none;

}


/* =====================================================
   SIDE GROUP
===================================================== */

.floating-side {

    display: flex;

    flex-direction: column;

    gap: 12px;

    pointer-events: auto;

}


/* =====================================================
   BUTTON
===================================================== */

.bottom-float {

    position: relative;

    width: 52px;
    height: 52px;

    padding: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: #ffffff;

    text-decoration: none;

    cursor: pointer;

    box-shadow:
        0 10px 30px rgba(10,39,69,.18);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


/* =====================================================
   ICON
===================================================== */

.bottom-float-icon {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 17px;

}


/* =====================================================
   LABEL
===================================================== */

.bottom-float-label {

    position: absolute;

    bottom: 62px;

    left: 50%;

    transform:
        translateX(-50%)
        translateY(8px);

    padding: 8px 13px;

    background: #0a2745;

    color: #ffffff;

    border-radius: 5px;

    white-space: nowrap;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;

    opacity: 0;

    visibility: hidden;

    transition: .3s ease;

}


/* Label arrow */

.bottom-float-label::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -4px;

    width: 8px;
    height: 8px;

    background: #0a2745;

    transform: translateX(-50%) rotate(45deg);

}


/* =====================================================
   HOVER
===================================================== */

.bottom-float:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(10,39,69,.25);

}


.bottom-float:hover .bottom-float-label {

    opacity: 1;

    visibility: visible;

    transform:
        translateX(-50%)
        translateY(0);

}


/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-float {

    color: #ffffff;

}

.whatsapp-float .bottom-float-icon {

    background: #20b85a;

}


/* =====================================================
   PHONE
===================================================== */

.phone-float {

    color: #ffffff;

}

.phone-float .bottom-float-icon {

    background: #145b91;

}


/* =====================================================
   GOOGLE REVIEW
===================================================== */

.review-float {

    color: #ffffff;

}

.review-float .bottom-float-icon {

    background: #c28d3f;

}


/* =====================================================
   SECTION SCROLL
===================================================== */

.section-scroll-float {

    color: #ffffff;

    background: transparent;

}


/* Actual icon circle */

.section-scroll-float .bottom-float-icon {

    background: #0a2745;

    transition: transform .35s ease;

}


/* Arrow animation */

.section-scroll-float:hover
.bottom-float-icon {

    transform: translateY(-2px);

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .bottom-floating-actions {

        bottom: 16px;

        padding: 0 12px;

    }


    .floating-side {

        gap: 9px;

    }


    .bottom-float {

        width: 44px;

        height: 44px;

    }


    .bottom-float-icon {

        width: 44px;

        height: 44px;

        font-size: 14px;

    }


    .bottom-float-label {

        display: none;

    }


    .bottom-float:hover {

        transform: translateY(-3px);

    }

}


html,
body {

    width: 100%;

    max-width: 100%;

    margin: 0;

    padding: 0;

    overflow-x: hidden;

}