* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    overflow-x: hidden;
}

/* =========================
   PAGE LOADER
========================= */

.page-loader{
    position:fixed;

    inset:0;

    width:100%;
    height:100vh;

    background:#ffffff;

    z-index:999999;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

/* =========================
   LOGO
========================= */

.loader-logo{
    position:relative;

    width:95px;
    height:95px;

    border-radius:50%;

    background:#b46f57;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:5;
}

/* IMAGE */

.loader-logo img{
    width:48px;
    height:48px;

    object-fit:contain;
}

/* =========================
   RINGS
========================= */

.loader-ring{
    position:absolute;

    width:170px;
    height:170px;

    border-radius:50%;
}

/* RING 1 */

.ring-1{
    border-top:3px solid #d8d8d8;
    border-bottom:3px solid #d8d8d8;
    border-left:3px solid transparent;
    border-right:3px solid transparent;

    animation:rotateClock 2.5s linear infinite;
}

/* RING 2 */

.ring-2{
    width:210px;
    height:210px;

    border-left:3px solid #d8d8d8;
    border-right:3px solid #d8d8d8;
    border-top:3px solid transparent;
    border-bottom:3px solid transparent;

    animation:rotateAnti 3s linear infinite;
}

/* =========================
   ANIMATION
========================= */

@keyframes rotateClock{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

@keyframes rotateAnti{

    from{
        transform:rotate(360deg);
    }

    to{
        transform:rotate(0deg);
    }
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* VIDEO */

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

/* OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.68) 0%,
            rgba(0, 0, 0, 0.35) 40%,
            rgba(0, 0, 0, 0.50) 100%);
}

/* =========================
   CONTENT LAYER
========================= */

.custom-navbar,
.hero-content,
.social-sidebar,
.stats-box {
    position: relative;
    z-index: 5;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar {
    position: absolute;

    top: 24px;
    left: 50%;

    transform: translateX(-50%);

    width: 92%;
    height: 86px;

    background: #fff;

    border-radius: 80px;

    padding: 0 18px 0 26px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.18);
}

/* LOGO */

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b46f57;
}

.logo-icon img {
    width: 68%;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #111;
}

.logo-text span {
    color: #b46f57;
}

/* MENU */

.menu {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 48px;
}

.menu li {
    position: relative;

    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 17px;
    font-weight: 600;

    color: #111;

    cursor: pointer;

    transition: 0.3s;
}

.menu li:hover {
    color: #b46f57;
}

.menu li.active {
    color: #b46f57;
}

.menu li.active::after {
    content: '';

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;
    height: 2px;

    border-radius: 20px;

    background: #b46f57;
}

/* BUTTON */

.catalog-btn {
    height: 58px;

    background: #b46f57;

    padding: 0 10px 0 30px;

    border-radius: 60px;

    text-decoration: none;

    display: flex;
    align-items: center;
    gap: 18px;

    color: #fff;

    font-size: 18px;
    font-weight: 700;
}

.arrow-circle {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: rgb(255 255 255);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #b46f57;

    font-size: 18px;
}

/* =========================
   HERO CONTENT
========================= */

.hero-content {
    position: absolute;

    left: 80px;
    top: 210px;

    max-width: 760px;

    color: #fff;
}

/* BADGE */

.small-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 15px 24px;

    border-radius: 50px;

    background: rgba(130, 130, 130, 0.25);

    backdrop-filter: blur(10px);

    margin-bottom: 28px;
}

.small-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #c89c3f;
}

.small-badge span {
    font-size: 18px;
    font-weight: 600;
}

/* TITLE */

.hero-title {
    font-size: 74px;
    line-height: 0.95;

    letter-spacing: -5px;

    font-weight: 800;

    margin-bottom: 26px;
}

/* DESC */

.hero-desc {
    max-width: 520px;

    font-size: 20px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.92);

    margin-bottom: 36px;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* PRIMARY BTN */

.primary-btn {
    height: 62px;

    padding: 0 10px 0 28px;

    border-radius: 60px;

    background: #b46f57;

    color: #fff;

    text-decoration: none;

    display: flex;
    align-items: center;
    gap: 18px;

    font-size: 18px;
    font-weight: 700;
}

.primary-btn span {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #fff;

    color: #b46f57;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* SECONDARY */

.secondary-btn {
    height: 62px;

    padding: 0 10px 0 28px;

    border-radius: 60px;

    border: 1px solid rgba(255, 255, 255, 0.55);

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(8px);

    color: #fff;

    text-decoration: none;

    display: flex;
    align-items: center;
    gap: 18px;

    font-size: 18px;
    font-weight: 600;
}

.secondary-btn span {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.4);

    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   SOCIAL
========================= */

.social-sidebar {
    position: absolute;

    right: 40px;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 16px;
}

.follow-text {
    writing-mode: vertical-rl;

    color: #fff;

    font-size: 18px;
    font-weight: 500;

    margin-bottom: 10px;
}

.social-sidebar a {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: rgb(180 111 87);

    color: #fff;

    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}

/* =========================
   STATS BOX
========================= */

.stats-box {
    position: absolute;

    right: 70px;
    bottom: 45px;

    width: 640px;
    height: 110px;

    border-radius: 28px;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.18);

    display: flex;
    align-items: center;
    justify-content: space-around;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;

    color: #fff;
}

.stat-icon {
    font-size: 34px;
}

.stat-item h3 {
    font-size: 38px;
    font-weight: 700;
}

.stat-item p {
    font-size: 15px;
    opacity: 0.9;
}

/* =========================
   FEATURES
========================= */

.feature-section {
    width: 100%;

    padding: 90px 80px;

    background: #f7f5f3;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 28px;
}

/* CARD */

.feature-card {
    position: relative;

    background: #fff;

    border-radius: 30px;

    padding: 34px;

    overflow: hidden;

    transition: 0.4s ease;

    border: 1px solid rgba(0, 0, 0, 0.04);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.04);
}

/* TOP BORDER EFFECT */

.feature-card::before {
    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(90deg,
            #b46f57,
            #d4ab4b);
}

/* HOVER */

.feature-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 50px rgba(134, 20, 54, 0.12);
}

/* TOP */

.feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}

/* ICON */

.feature-icon {
    width: 78px;
    height: 78px;

    border-radius: 24px;

    background:
        linear-gradient(135deg,
            #b46f57,
            #650f28);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 30px;

    box-shadow:
        0 15px 30px rgba(134, 20, 54, 0.25);
}

/* NUMBER */

.feature-number {
    font-size: 42px;
    font-weight: 800;

    color: rgba(134, 20, 54, 0.08);
}

/* TITLE */

.feature-card h3 {
    font-size: 23px;
    line-height: 1.15;

    margin-bottom: 18px;

    color: #121212;

    font-weight: 800;
}

/* DESC */

.feature-card p {
    font-size: 15px;
    line-height: 1.8;

    color: #666;
}

/* MOBILE */

@media(max-width:1200px) {

    .feature-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .feature-section {
        grid-template-columns: 1fr;

        padding: 60px 24px;
    }

    .feature-card {
        padding: 28px;
    }

    .feature-card h3 {
        font-size: 28px;
    }
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
    width: 100%;

    padding: 120px 90px;

    background: #ffffff;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

/* =========================
   IMAGE SIDE
========================= */

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    position: relative;

    width: 100%;
    height: 720px;

    border-radius: 40px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-image-main img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* FLOAT CARD */

.experience-card {
    position: absolute;

    left: -30px;
    bottom: 40px;

    width: 240px;

    padding: 34px 28px;

    border-radius: 30px;

    background:
        linear-gradient(135deg,
            #b46f57,
            #5f0d25);

    color: #fff;

    box-shadow:
        0 20px 50px rgba(134, 20, 54, 0.35);
}

.experience-card h2 {
    font-size: 72px;
    line-height: 1;

    font-weight: 800;

    margin-bottom: 12px;
}

.experience-card p {
    font-size: 20px;
    line-height: 1.5;

    opacity: 0.92;
}

/* =========================
   CONTENT
========================= */

.section-tag {
    display: inline-flex;

    padding: 14px 22px;

    border-radius: 50px;

    background: #f5ecef;

    color: #b46f57;

    font-size: 16px;
    font-weight: 700;

    margin-bottom: 28px;
}

.about-title {
    font-size: 40px;
    line-height: 1.05;

    font-weight: 800;

    color: #111;

    margin-bottom: 28px;
}

.about-text {
    font-size: 16px;
    line-height: 1.9;

    color: #666;

    margin-bottom: 24px;
}

/* =========================
   FEATURES
========================= */

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

    margin-top: 40px;
    margin-bottom: 45px;
}

.about-feature {
    display: flex;
    align-items: center;

    gap: 14px;
}

.about-feature-icon {
    min-width: 38px;
    height: 38px;

    border-radius: 50%;

    background: #b46f57;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 18px;
}

.about-feature span {
    font-size: 18px;
    font-weight: 600;

    color: #222;
}

/* =========================
   BUTTON
========================= */

.about-btn {
    display: inline-flex;
    align-items: center;

    gap: 18px;

    height: 66px;

    padding: 0 12px 0 32px;

    border-radius: 60px;

    text-decoration: none;

    background: #b46f57;

    color: #fff;

    font-size: 18px;
    font-weight: 700;

    transition: 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-4px);
}

.about-btn span {
    width: 46px;
    height: 46px;

    border-radius: 50%;

    background: #fff;

    color: #b46f57;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

    .about-section {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-title {
        font-size: 52px;
    }
}

@media(max-width:768px) {

    .about-section {
        padding: 70px 24px;
    }

    .about-image-main {
        height: 500px;
    }

    .experience-card {
        width: 190px;

        left: 15px;
        bottom: 15px;

        padding: 24px;
    }

    .experience-card h2 {
        font-size: 52px;
    }

    .about-title {
        font-size: 40px;

        letter-spacing: -2px;
    }

    .about-text {
        font-size: 16px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-btn {
        width: 100%;

        justify-content: center;
    }
}


/* =========================
   COLLECTION SECTION
========================= */

.collection-section {
    width: 100%;
    padding: 120px 80px;
    background: #f7f4f2;
    text-align: center;
    overflow: hidden;
}

/* =========================
   TAG
========================= */

.collection-tag {
    display: inline-block;

    color: rgb(180 111 87);

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

/* =========================
   TITLE
========================= */

.collection-title {
    font-size: 35px;
    line-height: 1.1;
    font-weight: 700;
    color: rgb(17, 17, 17);
    margin-bottom: 60px;
}

/* =========================
   TABS
========================= */

.collection-tabs {
    display: flex;
    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 44px;
}

.tab-btn {
    height: 50px;

    padding: 0 28px;

    border-radius: 40px;

    border: 1.5px solid rgb(180 111 87);

    background: transparent;

    color: rgb(180 111 87);

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.35s ease;
}

.tab-btn:hover {
    background: rgb(180 111 87);
    color: #fff;
}

.tab-btn.active {
    background: rgb(180 111 87);
    border-color: rgb(180 111 87);
    color: rgb(255, 255, 255);
}

/* =========================
   TAB CONTENT
========================= */

.tab-content {
    display: none;
    animation: fade 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fade {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   OWL CAROUSEL
========================= */

.collection-carousel .item {
    padding: 40px 12px;
    transition: 0.4s ease;
}

/* =========================
   CARD
========================= */


.lux-card {
    position: relative;
    width: 100%;
    aspect-ratio: 0.78 / 1;
    border-radius: 28px;
    overflow: hidden;
    background: #ebe7e2;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, .04);
    transition: transform .65s ease,
        box-shadow .65s ease,
        border-color .35s ease,
        border-radius .65s ease;
    transform-origin: center center;
}

/* IMAGE */

.collection-card img {
    width: 100%;
    height: 230px;

    object-fit: cover;

    border-radius: 30px;

    transition: 0.55s ease;

    filter: brightness(0.92);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06);
}

/* TITLE */


.collection-card h3 {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 600;
    color: #232323;
    letter-spacing: -0.02em;
    transition: color .35s ease, opacity .4s ease, transform .4s ease;
}

/* =========================
   CENTER ACTIVE ITEM
========================= */

.collection-carousel .center .collection-card {
    transform: scale(1.13);
    z-index: 20;
}

.collection-carousel .center .collection-card img {
    height: 250px;

    filter: brightness(1);
}

.collection-carousel .center .collection-card h3 {
    color: #111;
}

/* SIDE ITEMS */

.collection-carousel .owl-item {
    opacity: 0.75;
    transition: 0.4s ease;
}

.collection-carousel .owl-item.center {
    opacity: 1;
}

/* =========================
   NAVIGATION
========================= */

.collection-navigation {
    margin-top: 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 24px;
}

/* BUTTON */

.collection-prev,
.collection-next {
    width: 64px;
    height: 64px;

    border-radius: 50%;

    border: 1.5px solid #b46f57;

    background: #fff;

    color: #b46f57;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;

    cursor: pointer;

    transition: 0.35s ease;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.05);
}

.collection-prev:hover,
.collection-next:hover {
    background: #b46f57;
    color: #fff;

    transform: translateY(-5px);
}

/* =========================
   OWL DOTS HIDE
========================= */

.owl-dots {
    display: none;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px) {

    .collection-section {
        padding: 90px 40px;
    }

    .collection-title {
        font-size: 50px;
    }
}

@media(max-width:768px) {

    .collection-section {
        padding: 70px 24px;
    }

    .collection-title {
        font-size: 38px;
    }

    .collection-tabs {
        gap: 12px;
    }

    .tab-btn {
        padding: 0 20px;
        font-size: 14px;
        height: 46px;
    }

    .collection-card img {
        height: 320px;
    }

    .collection-carousel .center .collection-card img {
        height: 390px;
    }

    .collection-card h3 {
        font-size: 20px;
    }

    .collection-prev,
    .collection-next {
        width: 54px;
        height: 54px;

        font-size: 20px;
    }
}


/* =========================
   WHY SECTION
========================= */

.why-section {
    width: 100%;

    padding: 120px 80px;

    background: #ffffff;

    overflow: hidden;
}

/* =========================
   TOP
========================= */

.why-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 60px;

    margin-bottom: 80px;
}

/* LEFT */

.why-heading {
    max-width: 780px;
}

/* TAG */

.why-tag {
    display: inline-block;

    padding: 12px 22px;

    border-radius: 40px;

    background: #f5ecef;

    color: #b46f57;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 24px;
}

/* TITLE */

.why-title {
    font-size: 45px;
    line-height: 1.05;
    font-weight: 800;
    color: #111;
}

/* RIGHT TEXT */

.why-right-text {
    max-width: 420px;
    font-size: 17px;
    line-height: 1.6;
    color: #666;
}

/* =========================
   GRID
========================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 28px;
}

/* =========================
   CARD
========================= */

.why-card {
    position: relative;

    padding: 42px 34px;

    border-radius: 34px;

    background: #faf7f5;

    overflow: hidden;

    transition: 0.45s ease;

    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* HOVER */

.why-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.08);
}

/* ACTIVE */

.why-card.active-card {
    background:
        linear-gradient(135deg,
            #b46f57,
            #8c4d38);

    color: #fff;

    transform: translateY(-12px);

    box-shadow:
        0 30px 60px rgba(180, 111, 87, 0.25);
}

.why-card.active-card p {
    color: rgba(255, 255, 255, 0.85);
}

.why-card.active-card .why-number {
    color: rgba(255, 255, 255, 0.1);
}

/* =========================
   ICON
========================= */

.why-icon {
    width: 78px;
    height: 78px;

    border-radius: 24px;

    background: #fff;

    color: #b46f57;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    margin-bottom: 28px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.06);
}

.why-card.active-card .why-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* =========================
   TITLE
========================= */

.why-card h3 {
    font-size: 30px;
    line-height: 1.25;

    font-weight: 800;

    margin-bottom: 20px;
}

/* TEXT */

.why-card p {
    font-size: 17px;
    line-height: 1.9;

    color: #666;
}

/* NUMBER */

.why-number {
    position: absolute;

    right: 25px;
    bottom: -10px;

    font-size: 90px;
    font-weight: 800;

    color: rgba(180, 111, 87, 0.08);

    line-height: 1;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

    .why-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-title {
        font-size: 54px;
    }
}

@media(max-width:768px) {

    .why-section {
        padding: 80px 24px;
    }

    .why-title {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .why-right-text {
        font-size: 16px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 34px 28px;
    }

    .why-card h3 {
        font-size: 26px;
    }
}

/* =========================
   FEATURED SECTION
========================= */

.featured-section {
    width: 100%;

    padding: 120px 80px;

    background: #f8f5f2;

    overflow: hidden;
}

/* =========================
   TOP
========================= */

.featured-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 40px;

    margin-bottom: 70px;
}

/* HEADING */

.featured-heading {
    max-width: 760px;
}

/* TAG */

.featured-tag {
    display: inline-block;

    padding: 12px 22px;

    border-radius: 40px;

    background: #f1e5df;

    color: #b46f57;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 24px;
}

/* TITLE */

.featured-title {
    font-size: 40px;
    line-height: 1.05;
    font-weight: 800;
    color: #111;
}

/* BUTTON */

.featured-btn {
    min-width: 260px;

    height: 64px;

    padding: 0 10px 0 30px;

    border-radius: 60px;

    background: #b46f57;

    color: #fff;

    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 17px;
    font-weight: 700;

    transition: 0.35s ease;
}

.featured-btn:hover {
    transform: translateY(-5px);
}

.featured-btn span {
    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: #fff;

    color: #b46f57;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}

/* =========================
   GRID
========================= */

.featured-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}

/* LARGE CARD */

.featured-large {
    grid-column: span 2;
    min-height: 200px;
    height: 300px;
}

/* =========================
   CARD
========================= */

.featured-card {
    position: relative;

    border-radius: 34px;

    overflow: hidden;

    min-height: 80px;
    height: 300px;

    cursor: pointer;

    transition: 0.45s ease;
}

.featured-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */

.featured-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.6s ease;
}

.featured-card:hover img {
    transform: scale(1.08);
}

/* OVERLAY */

.featured-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.15),
            transparent);
}

/* CONTENT */

.featured-content {
    position: absolute;

    left: 34px;
    right: 34px;
    bottom: 34px;

    z-index: 5;

    color: #fff;
}

/* SUBTITLE */

.featured-subtitle {
    display: inline-block;

    padding: 10px 18px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(8px);

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 18px;
}

/* TITLE */

.featured-content h3 {
    font-size: 38px;
    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 16px;
}

/* TEXT */

.featured-content p {
    max-width: 520px;

    font-size: 17px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.85);

    margin-bottom: 24px;
}

/* LINK */

.featured-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: #fff;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-large {
        grid-column: span 2;
    }

    .featured-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-title {
        font-size: 54px;
    }
}

@media(max-width:768px) {

    .featured-section {
        padding: 80px 24px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-large {
        grid-column: span 1;
    }

    .featured-title {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .featured-card {
        min-height: 420px;
    }

    .featured-content {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .featured-content h3 {
        font-size: 30px;
    }

    .featured-btn {
        width: 100%;
    }
}

/* =========================
   APPLICATIONS SECTION
========================= */

.applications-section {
    width: 100%;

    padding: 120px 80px;

    background: #ffffff;

    overflow: hidden;
}

/* =========================
   TOP
========================= */

.applications-top {
    max-width: 900px;

    margin: 0 auto 80px;

    text-align: center;
}

/* TAG */

.applications-tag {
    display: inline-block;

    padding: 12px 24px;

    border-radius: 40px;

    background: #f4e8e2;

    color: #b46f57;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 24px;
}

/* TITLE */

.applications-title {
    font-size: 45px;
    line-height: 1.05;
    font-weight: 800;
    color: #111;
    margin-bottom: 28px;
}

/* TEXT */

.applications-text {
    font-size: 18px;
    line-height: 1.9;

    color: #666;
}

/* =========================
   GRID
========================= */

.applications-grid {
    display: grid;

    grid-template-columns: repeat(2, 3fr);

    gap: 28px;
}

/* LARGE CARD */

.large-card {
    grid-column: span 2;
    min-height: 620px;
}

/* WIDE CARD */


/* =========================
   CARD
========================= */

.application-card {
    position: relative;

    border-radius: 34px;

    overflow: hidden;

    min-height: 300px;
    height: 300px;

    cursor: pointer;

    transition: 0.45s ease;
}

/* HOVER */

.application-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */

.application-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.6s ease;
}

.application-card:hover img {
    transform: scale(1.08);
}

/* OVERLAY */

.application-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.15),
            transparent);
}

/* CONTENT */

.application-content {
    position: absolute;

    left: 34px;
    right: 34px;
    bottom: 34px;

    z-index: 5;

    color: #fff;
}

/* SMALL TAG */

.application-content span {
    display: inline-block;

    padding: 10px 18px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.14);

    backdrop-filter: blur(10px);

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 18px;
}

/* TITLE */

.application-content h3 {
    font-size: 40px;
    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 22px;
}

/* LINK */

.application-content a {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: #fff;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .large-card,
    .wide-card {
        grid-column: span 2;
    }

    .applications-title {
        font-size: 56px;
    }
}

@media(max-width:768px) {

    .applications-section {
        padding: 80px 24px;
    }

    .applications-grid {
        grid-template-columns: 1fr;
    }

    .large-card,
    .wide-card {
        grid-column: span 1;
    }

    .applications-title {
        font-size: 40px;

        letter-spacing: -1px;
    }

    .applications-text {
        font-size: 16px;
    }

    .application-card {
        min-height: 420px;
    }

    .application-content {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .application-content h3 {
        font-size: 30px;
    }
}


/* =========================
   PROJECTS SECTION
========================= */

.projects-section {
    width: 100%;

    padding: 120px 80px;

    background: #f8f5f2;

    overflow: hidden;
}

/* =========================
   TOP
========================= */

.projects-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 40px;

    margin-bottom: 70px;
}

/* TAG */

.projects-tag {
    display: inline-block;

    padding: 12px 22px;

    border-radius: 40px;

    background: #efe1da;

    color: #b46f57;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 24px;
}

/* TITLE */

.projects-title {
    max-width: 760px;
    font-size: 40px;
    line-height: 1.05;
    font-weight: 800;
    color: #111;
}

/* BUTTON */

.projects-btn {
    min-width: 240px;

    height: 64px;

    padding: 0 10px 0 30px;

    border-radius: 60px;

    background: #b46f57;

    color: #fff;

    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 16px;
    font-weight: 700;

    transition: 0.35s ease;
}

.projects-btn:hover {
    transform: translateY(-5px);
}

.projects-btn span {
    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: #fff;

    color: #b46f57;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}

/* =========================
   GRID
========================= */

.projects-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}

/* LARGE */

.large-project {
    grid-column: span 2;

    min-height: 620px;
}

/* WIDE */

.wide-project {
    grid-column: span 2;
}

/* =========================
   CARD
========================= */

.project-card {
    position: relative;

    min-height: 300px;

    border-radius: 34px;
    height: 300px;

    overflow: hidden;

    cursor: pointer;

    transition: 0.45s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */

.project-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

/* OVERLAY */

.project-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.18),
            transparent);
}

/* CONTENT */

.project-content {
    position: absolute;

    left: 34px;
    right: 34px;
    bottom: 34px;

    z-index: 5;

    color: #fff;
}

/* CATEGORY */

.project-category {
    display: inline-block;

    padding: 10px 18px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.14);

    backdrop-filter: blur(10px);

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 20px;
}

/* TITLE */

.project-content h3 {
    font-size: 38px;
    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 28px;
}

/* BOTTOM */

.project-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOCATION */

.project-location {
    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 15px;
    font-weight: 500;

    color: rgba(255, 255, 255, 0.88);
}

/* LINK */

.project-link {
    width: 54px;
    height: 54px;

    border-radius: 50%;

    background: #fff;

    color: #111;

    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;

    transition: 0.35s ease;
}

.project-link:hover {
    background: #b46f57;
    color: #fff;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .large-project,
    .wide-project {
        grid-column: span 2;
    }

    .projects-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .projects-title {
        font-size: 54px;
    }
}

@media(max-width:768px) {

    .projects-section {
        padding: 80px 24px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .large-project,
    .wide-project {
        grid-column: span 1;
    }

    .projects-title {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .project-card {
        min-height: 420px;
    }

    .project-content {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .project-content h3 {
        font-size: 30px;
    }

    .projects-btn {
        width: 100%;
    }
}

/* =========================
   FAQ SECTION
========================= */

.faq-section {
    width: 100%;

    padding: 120px 80px;

    background: #f8f5f2;

    overflow: hidden;
}

/* =========================
   TOP
========================= */

.faq-top {
    max-width: 900px;

    margin: 0 auto 80px;

    text-align: center;
}

/* TAG */

.faq-tag {
    display: inline-block;

    padding: 12px 22px;

    border-radius: 40px;

    background: #efe2db;

    color: #b46f57;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 24px;
}

/* TITLE */

.faq-title {
    font-size: 40px;
    line-height: 1.05;
    font-weight: 800;
    /* letter-spacing: -3px; */
    color: #111;
    margin-bottom: 28px;
}

/* TEXT */

.faq-text {
    font-size: 18px;
    line-height: 1.9;

    color: #666;
}

/* =========================
   WRAPPER
========================= */

.faq-wrapper {
    display: grid;

    grid-template-columns: 420px 1fr;

    gap: 50px;

    align-items: start;
}

/* =========================
   LEFT
========================= */

.faq-left {
    position: sticky;
    top: 30px;
}

/* IMAGE */

.faq-image {
    border-radius: 34px;

    overflow: hidden;

    margin-bottom: 28px;
}

.faq-image img {
    width: 100%;
    height: 580px;

    object-fit: cover;
}

/* CONTACT CARD */

.faq-contact-card {
    background: #b46f57;

    border-radius: 30px;

    padding: 34px;

    display: flex;
    gap: 22px;

    color: #fff;
}

/* ICON */

.faq-contact-icon {
    min-width: 72px;
    height: 72px;

    border-radius: 22px;

    background: rgba(255, 255, 255, 0.15);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
}

/* TEXT */

.faq-contact-card span {
    display: block;

    font-size: 15px;
    opacity: 0.85;

    margin-bottom: 10px;
}

.faq-contact-card h3 {
    font-size: 28px;
    line-height: 1.25;

    margin-bottom: 18px;
}

/* LINK */

.faq-contact-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 140px;
    height: 50px;

    border-radius: 40px;

    background: #fff;

    color: #111;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;
}

/* =========================
   FAQ ITEM
========================= */

.faq-item {
    background: #fff;

    border-radius: 26px;

    margin-bottom: 20px;

    overflow: hidden;

    border: 1px solid rgba(0, 0, 0, 0.04);

    transition: 0.35s ease;
}

/* ACTIVE */

.faq-item.active {
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.06);
}

/* QUESTION */

.faq-question {
    padding: 30px 34px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 25px;

    cursor: pointer;
}

/* TITLE */

.faq-question h3 {
    font-size: 20px;
    line-height: 1.5;
    color: #111;
    font-weight: 700;
}

/* ICON */

.faq-icon {
    min-width: 54px;
    height: 54px;

    border-radius: 50%;

    background: #f5ece7;

    color: #b46f57;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    transition: 0.35s ease;
}

/* ACTIVE ICON */

.faq-item.active .faq-icon {
    background: #b46f57;
    color: #fff;

    transform: rotate(45deg);
}

/* ANSWER */

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 34px 32px;

    font-size: 16px;
    line-height: 1.9;

    color: #666;
}

/* ACTIVE ANSWER */

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

    .faq-wrapper {
        grid-template-columns: 1fr;
    }

    .faq-left {
        position: relative;
        top: 0;
    }

    .faq-title {
        font-size: 54px;
    }
}

@media(max-width:768px) {

    .faq-section {
        padding: 80px 24px;
    }

    .faq-title {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .faq-text {
        font-size: 16px;
    }

    .faq-image img {
        height: 420px;
    }

    .faq-contact-card {
        flex-direction: column;
    }

    .faq-question {
        padding: 24px;
    }

    .faq-question h3 {
        font-size: 19px;
    }

    .faq-answer p {
        padding: 0 24px 24px;

        font-size: 15px;
    }

    .faq-icon {
        min-width: 46px;
        height: 46px;
    }
}

/* =========================
   VISIT SHOWROOM
========================= */

.visit-showroom-section {
    width: 100%;

    padding: 120px 80px;

    background: #f7f5f2;
}

/* =========================
   TOP
========================= */

.visit-top {
    max-width: 1050px;

    margin: 0 auto 70px;

    text-align: center;
}

/* TAG */

.visit-small-tag {
    display: inline-block;

    color: #b46f57;

    font-size: 16px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 20px;
}

/* TITLE */

.visit-main-title {
    font-size: 40px;
    line-height: 1.08;
    font-weight: 700;
    color: #222;
    margin-bottom: 28px;
}

/* TEXT */

.visit-main-text {
    max-width: 900px;

    margin: auto;

    font-size: 18px;
    line-height: 1.9;

    color: #666;
}

/* =========================
   WRAPPER
========================= */

.visit-wrapper {
    display: grid;

    grid-template-columns: 520px 1fr;

    gap: 24px;

    align-items: stretch;
}

/* =========================
   LEFT
========================= */

.visit-left {
    background: #f4f1ee;

    border-radius: 24px;

    padding: 40px;

    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* TITLE */

.showroom-title {
    font-size: 20px;
    line-height: 1.3;
    color: #b46f57;
    margin-bottom: 22px;
}

/* TEXT */

.showroom-text {
    font-size: 18px;
    line-height: 1.9;

    color: #666;

    margin-bottom: 35px;
}

/* =========================
   BUTTONS
========================= */

.visit-action-buttons {
    display: flex;
    gap: 16px;

    margin-bottom: 42px;

    flex-wrap: wrap;
}

/* BTN */

.visit-showroom-btn,
.visit-call-btn {
    height: 56px;

    padding: 0 24px;

    border-radius: 14px;

    text-decoration: none;

    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 16px;
    font-weight: 700;

    transition: 0.35s ease;
}

/* PRIMARY */

.visit-showroom-btn {
    background: #b46f57;

    color: #fff;
}

/* SECONDARY */

.visit-call-btn {
    border: 1.5px solid #b46f57;

    color: #b46f57;

    background: #fff;
}

/* HOVER */

.visit-showroom-btn:hover,
.visit-call-btn:hover {
    transform: translateY(-4px);
}

/* =========================
   INFO LIST
========================= */

.visit-info-list {
    display: flex;
    flex-direction: column;

    gap: 30px;

    margin-bottom: 45px;
}

/* ITEM */

.visit-info-item {
    display: flex;
    align-items: flex-start;

    gap: 18px;
}

/* ICON */

.visit-info-icon {
    width: 52px;
    height: 52px;

    border-radius: 14px;

    background: #fff;

    color: #b46f57;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.05);
}

/* TEXT */

.visit-info-item h4 {
    font-size: 15px;
    font-weight: 800;

    color: #444;

    margin-bottom: 8px;
}

.visit-info-item p {
    font-size: 16px;
    line-height: 1.8;

    color: #777;
}

/* =========================
   STATS
========================= */

.visit-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    background: #fff;

    border-radius: 20px;

    padding: 24px;
}

/* ITEM */

.visit-stat-item {
    display: flex;
    align-items: center;

    gap: 12px;
}

/* ICON */

.visit-stat-item i {
    font-size: 26px;

    color: #b46f57;
}

/* TITLE */

.visit-stat-item h3 {
    font-size: 22px;

    color: #b46f57;

    margin-bottom: 4px;
}

/* TEXT */

.visit-stat-item p {
    font-size: 13px;

    color: #777;
}

/* =========================
   RIGHT
========================= */

.visit-right {
    border-radius: 24px;

    overflow: hidden;

    min-height: 760px;
}

.visit-right iframe {
    width: 100%;
    height: 100%;

    border: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

    .visit-wrapper {
        grid-template-columns: 1fr;
    }

    .visit-main-title {
        font-size: 52px;
    }

    .visit-right {
        min-height: 500px;
    }
}

@media(max-width:768px) {

    .visit-showroom-section {
        padding: 80px 24px;
    }

    .visit-main-title {
        font-size: 38px;
    }

    .visit-main-text {
        font-size: 16px;
    }

    .visit-left {
        padding: 28px;
    }

    .showroom-title {
        font-size: 28px;
    }

    .showroom-text {
        font-size: 16px;
    }

    .visit-action-buttons {
        flex-direction: column;
    }

    .visit-showroom-btn,
    .visit-call-btn {
        width: 100%;
        justify-content: center;
    }

    .visit-stats {
        grid-template-columns: 1fr;
    }

    .visit-right {
        min-height: 400px;
    }
}

/* =========================
   FOOTER
========================= */

.footer-section {
    width: 100%;

    background: #111111;

    padding: 100px 80px 35px;

    overflow: hidden;
}

/* =========================
   TOP
========================= */

.footer-top {
    display: grid;

    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;

    gap: 60px;

    padding-bottom: 70px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================
   LOGO
========================= */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 9px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background-color: #b46f57;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo h2 {
    font-size: 34px;
    font-weight: 800;

    color: #fff;
}

.footer-logo span {
    color: #b46f57;
}

/* =========================
   ABOUT
========================= */

.footer-about-text {
    font-size: 17px;
    line-height: 1.9;

    color: rgba(255, 255, 255, 0.68);

    margin-bottom: 30px;
}

/* =========================
   SOCIALS
========================= */

.footer-socials {
    display: flex;
    align-items: center;

    gap: 16px;
}

.footer-socials a {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

    color: #fff;

    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    transition: 0.35s ease;
}

.footer-socials a:hover {
    background: #b46f57;

    transform: translateY(-5px);
}

/* =========================
   TITLE
========================= */

.footer-title {
    font-size: 26px;
    font-weight: 700;

    color: #fff;

    margin-bottom: 32px;
}

/* =========================
   LINKS
========================= */

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);

    text-decoration: none;

    font-size: 17px;

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #b46f57;

    padding-left: 6px;
}

/* =========================
   CONTACT
========================= */

.footer-contact {
    display: flex;
    flex-direction: column;

    gap: 24px;
}

/* ITEM */

.footer-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 16px;
}

/* ICON */

.footer-contact-item i {
    width: 44px;
    height: 44px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.06);

    color: #b46f57;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}

/* TEXT */

.footer-contact-item p {
    font-size: 16px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.7);
}

/* =========================
   BOTTOM
========================= */

.footer-bottom {
    padding-top: 28px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}

/* TEXT */

.footer-bottom p {
    font-size: 15px;

    color: rgba(255, 255, 255, 0.6);
}

/* LINKS */

.footer-bottom-links {
    display: flex;
    align-items: center;

    gap: 26px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.65);

    text-decoration: none;

    font-size: 15px;

    transition: 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #b46f57;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .footer-section {
        padding: 80px 24px 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .footer-logo h2 {
        font-size: 28px;
    }

    .footer-title {
        font-size: 24px;
    }

    .footer-about-text,
    .footer-links a,
    .footer-contact-item p {
        font-size: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        gap: 18px;

        flex-wrap: wrap;
    }
}