@font-face {
    font-family: 'extralight';
    src: url(./assets/fonts/Assistant-ExtraLight.ttf) format('truetype');
}

@font-face {
    font-family: 'light';
    src: url(./assets/fonts/Assistant-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'medium';
    src: url(./assets/fonts/Assistant-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'regular';
    src: url(./assets/fonts/Assistant-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'semibold';
    src: url(./assets/fonts/Assistant-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'bold';
    src: url(./assets/fonts/Assistant-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'extrabold';
    src: url(./assets/fonts/Assistant-ExtraBold.ttf) format('truetype');
}

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

body {
    font-family: 'regular', sans-serif;
    background-color: white;
    width: 100%;
    height: 100vh;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: absolute;
    top: 0;
    z-index: 9999;
}

.logo {
    width: 32.28vw;
}

.contact {
    width: fit-content;
    position: sticky;
    top: 17vw;
    left: 3vw;
    padding: 2vw;
    background-color: rgba(237, 28, 36, 1);
    font-family: 'bold';
    font-size: 4.45vw;
    color: white;
    direction: rtl;
    z-index: 1;
    text-decoration: none;
}

.phone { 
    width: 4vw;
    margin-right: 1vw;
}

.menu-toggle {
    display: none;
    position: absolute;
    opacity: 0;
}

.hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.42vw;
    width: 6.8vw;
    height: 6.8vw;
    margin: 5.22vw 0 0 5.83vw;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    transition: transform 0.3s ease;
}

.hamburger span {
    width: 6.8vw;
    height: 0.57vw;
    background-color: white;
    display: block;
    transition: 0.3s ease;
    transform-origin: center;
}
.menu-toggle:checked + .hamburger {
    position: fixed;
}

/* X animation */
.menu-toggle:checked+.hamburger span:nth-child(1) {
    transform: rotate(45deg) translateY(2.9vw);
}

.menu-toggle:checked+.hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked+.hamburger span:nth-child(3) {
    transform: rotate(-45deg) translateY(-2.9vw);
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-height: 0;
    overflow: hidden;
    background: black;
    z-index: 1000;
    transition: max-height 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.menu-toggle:checked+.hamburger+.menu {
    max-height: 100vh;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.menu li {
    width: 100vw;
    height: 18.45vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.83vw;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.box1 {
    position: relative;
    z-index: 0;
    background-image: url(./assets/images/hero1-mob.jpg);
    background-size: cover;
    background-position: center;
    aspect-ratio: 412 / 617;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin-top: -18.1vw;
}

.box1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--next-bg-image); 
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s linear;
}
.box1.is-fading::before {
    opacity: 1;
}

.box1 .content {
    
    height: 35vw;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-end;
    justify-content: center;
    margin-bottom: 8.74vw;
}

.box1 .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    width: 100%;
    height: 100%;
    padding-right: 4.85vw;
}

.box1 .title-container {
    position: relative;
    width: 100%;
    height: 12.5vw; 
    padding-left: 4vw;
}

.box1 .text-content p[class^="title"] {
    position: static;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    direction: rtl;
    display: flex;
    align-items: center;
    opacity: 0;
    display: none;
    transition: opacity 0.4s ease-in-out;
    font-family: 'extrabold';
    font-size: 5.83vw;
    color: white;
    padding-bottom: 4vw;
}

.box1 .text-content p.is-active {
    opacity: 1;
    display: flex;
}

.box1 .text-content .subtitle {
    font-family: 'semibold';
    font-size: 4.37vw;
    color: white;
    width: 100%;
    padding-left: 3vw;
}

.box1 .red-line {
    width: 100%;
    height: 1.46vw;
    background-color: rgba(237, 28, 36, 1);
}

.box2 {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5vw;
}

.box2 .title-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 42.23vw;
    margin-bottom: 6.8vw;
}

.box2 .title {
    font-family: 'bold';
    font-size: 7.77vw;
    direction: rtl;
}

.box2 .red-line {
    width: 100%;
    height: 0.97vw;
    background-color: rgba(237, 28, 36, 1);
}

.box2 .subtitle {
    font-family: 'regular';
    font-size: 4.61vw;
    direction: rtl;
}

.box3 {
    background-image: url(./assets/images/box3-bg-mob.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5vw;
}

.box3 .title-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 37.14vw;
    margin-bottom: 6.8vw;
}

.box3 .title {
    font-family: 'bold';
    font-size: 7.77vw;
    direction: rtl;
}

.box3 .red-line {
    width: 100%;
    height: 0.97vw;
    background-color: rgba(237, 28, 36, 1);
}

.box3 .subtitle {
    font-family: 'regular';
    font-size: 4.61vw;
    direction: rtl;
    margin-bottom: 6.8vw;
}

.video {
    width: 100%;
    height: 45vw;
}

.box4 {
    background-color: white;
    aspect-ratio: 412 / 1167;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.box4 .subtitle {
    font-family: 'regular';
    direction: rtl;
    font-size: 4.61vw;
}

.box4 .title-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 78.64vw;
    margin-top: 3.4vw;
}

.box4 .title {
    font-family: 'bold';
    font-size: 5.83vw;
    direction: rtl;
    padding: 2.7vw 0;
}

.box4 .red-line {
    width: 100%;
    height: 1.2vw;
    background-color: rgba(237, 28, 36, 1);
}

.clients-container {
    display: flex;
    flex-direction: column;
    margin-top: 9.71vw;
    gap: 3.88vw;
}

.private {
    background-image: url(./assets/images/private1-mob.jpg);
    background-size: cover;
    width: 79.61vw;
    height: 94.9vw;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.commercial {
    background-image: url(./assets/images/commercial1-mob.jpg);
    background-size: cover;
    width: 79.61vw;
    height: 94.9vw;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.box-content {
    min-width: 41.54vw;
    max-width: 77vw;
    display: flex;
    justify-content: space-between;;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    transition: background-color 0.3s ease;
    margin-bottom: 6vw;
    cursor: pointer;
    padding: 2vw 0;
    border-right: 1.46vw solid red;
}

.box-content:hover {
    background-color: black;
}

.box-content p {
    font-family: 'semibold';
    font-size: 4.85vw;
    color: white;
    text-align: center;
    direction: rtl;
    padding-left: 7vw;
}

.box-form {
    background-image: url(./assets/images/form-bg-mob.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    aspect-ratio: 412 / 596;
}

.box-form .title {
    font-family: 'bold';
    font-size: 5.83vw;
    color: white;
    direction: rtl;
    margin-bottom: 7.77vw;
}

.details-container {
    width: 41.75vw;
    height: 17.48vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(237, 28, 36, 1);
    cursor: pointer;
}

.details-container a {
    color: white;
    direction: rtl;
    font-size: 4.85vw;
    font-family: 'bold';
    text-decoration: none;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 79.61vw;
    gap: 2.18vw;
    margin-top: 10.92vw;
    margin-bottom: 5.83vw;
}

form input {
    width: 100%;
    height: 12.14vw;
    background-color: white;
    border: none;
    direction: rtl;
    padding-right: 4.85vw;
    font-family: 'regular';
}

form input::placeholder {
    font-family: 'regular';
    font-size: 4.85vw;
}

form button {
    width: 100%;
    height: 12.14vw;
    background-color: rgba(237, 28, 36, 1);
    color: white;
    font-family: 'bold';
    font-size: 4.85vw;
    border: none;
    cursor: pointer;
}

.form-status {
    margin-top: -0.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    display: none;
    transition: all 0.3s ease;
    direction: rtl;
}

.form-status.show {
    display: block;
}

.form-status.success {
    background-color: #e6f9ec;
    border: 1px solid #34a853;
    color: #0f5132;
}

.form-status.error {
    background-color: #fcebea;
    border: 1px solid #d93025;
    color: #842029;
}

.box-form .privacy-notice {
    font-family: 'regular';
    font-size: 3.4vw;
    color: white;
}

.privacy-notice a {
    color: inherit;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 412 / 136;
    background-color: black;
    padding-bottom: 4.85vw;
}

.footer .logo {
    width: 49.76vw;
    margin-bottom: -5vw;
}

.footer a {
    color: inherit;
}

.footer p {
    font-family: 'regular';
    font-size: 3.88vw;
    color: white;
}

#private-content {
    display: none;
    aspect-ratio: 412 / 1680;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(./assets/images/private-bg-mob.jpg);
    background-size: cover;
    gap: 3.88vw;
}

#private-content a {
    color: inherit;
    text-decoration: none;
}

#private-content .title-container {
    width: 31.55vw;
    height: 13.59vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 9.71vw;
}

#private-content .title {
    font-family: 'bold';
    font-size: 7.77vw;
    color: black;
    text-align: center;
    margin-bottom: 2vw;
}

#private-content .title-container .red-line {
    width: 100%;
    height: 1.1vw;
    background-color: rgba(237, 28, 36, 1);
}

#private-content .private1-title {
    background-image: url(./assets/images/private1-title-mob.jpg);
    background-size: cover;
    width: 79.61vw;
    height: 87.14vw;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 3.88vw;
}

.private-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.88vw;
}

#private-content .private-seats {
    background-image: url(./assets/images/private-seats-mob.jpg);
    background-size: cover;
    width: 79.61vw;
    height: 87.14vw;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

#private-content .private-mamad {
    background-image: url(./assets/images/private-mamad-mob.jpg);
    background-size: cover;
    width: 79.61vw;
    height: 87.14vw;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

#private-content .private-vase {
    background-image: url(./assets/images/private-vase-mob.jpg);
    background-size: cover;
    width: 79.61vw;
    height: 87.14vw;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.full-text {
    display: flex;
}

.short-text {
    display: none;
}

.commercial-customer {
    display: none;
}
#commercial-content {
    aspect-ratio: 412 / 2480;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(./assets/images/commercial-bg-mob.jpg);
    background-size: cover;
}

#commercial-content .title-container {
    width: 32.52vw;
    height: 13.59vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 9.71vw;
}

#commercial-content .title {
    font-family: 'bold';
    font-size: 7.77vw;
    color: black;
    text-align: center;
    margin-bottom: 2vw;
}

#commercial-content .title-container .red-line {
    width: 100%;
    height: 1.1vw;
    background-color: rgba(237, 28, 36, 1);
}

#commercial-content .commercial-buildings,
#commercial-content .commercial-tree-building,
#commercial-content .commercial-vshape-building,
#commercial-content .commercial-bricks,
#commercial-content .commercial-houses,
#commercial-content .commercial-tubes {
    background-size: cover;
    width: 79.61vw;
    height: 87.14vw;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
#commercial-content .commercial-buildings {background-image: url(./assets/images/commercial-buildings-mob.jpg);}
#commercial-content .commercial-tree-building {background-image: url(./assets/images/commercial-tree-building-mob.jpg);}
#commercial-content .commercial-vshape-building {background-image: url(./assets/images/commercial-vshape-building-mob.jpg);}
#commercial-content .commercial-bricks {background-image: url(./assets/images/commercial-bricks-mob.jpg);}
#commercial-content .commercial-houses {background-image: url(./assets/images/commercial-houses-mob.jpg);}
#commercial-content .commercial-tubes {background-image: url(./assets/images/commercial-tubes-mob.jpg);}

.commercial-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.88vw;
}

.commercial-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.88vw;
}

#private-content > div:nth-child(n+2) .red-line,
#commercial-content > div:nth-child(n+2) .red-line {
    height: 100%;
    width: 1.25vw;
    background-color: rgba(237, 28, 36, 1);
}

#private-content > div:nth-child(n+2) p,
#commercial-content > div:nth-child(n+2) p {
    font-size: 4.13vw;
    padding: 0 4.95vw;
    text-align: right;
}

.commercial-column a {
    color: inherit;
    text-decoration: none;
}

.error {
    border: 2px solid #ff4444 !important;
    background-color: #ffebee !important;
    color: #d32f2f !important;
    box-shadow: 0 0 5px rgba(255, 68, 68, 0.3) !important;
}

.error::placeholder {
    color: #d32f2f !important;
    opacity: 1 !important;
    font-weight: 500 !important;
}

.error {
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

/* Focus state for error fields */
.error:focus {
    outline: none !important;
    border-color: #ff4444 !important;
    box-shadow: 0 0 8px rgba(255, 68, 68, 0.4) !important;
}

.mobile {
    display: flex;
}

.desktop {
    display: none;
}

@media (min-width: 768px) {
    .header {
        position: sticky;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 2.4%, rgba(0, 0, 0, 0) 100%);
    }

    .header .menu-desktop {
        width: 60.05vw;
        height: 3.87vw;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        align-self: center;
    }

    .header .menu-desktop p {
        font-family: 'bold';
        color: white;
        cursor: pointer;
        direction: rtl;
        font-size: 1.45vw;
    }

    .links {
        display: flex;
        flex-direction: row-reverse;
        gap: 1.67vw;
    }

    .links p {
        font-family: 'bold';
        font-size: 1.25vw;
        color: white;
        cursor: pointer;
    }

    .logo {
        width: 15.89vw;
        margin-right: 3.13vw;
    }

    .contact {
        width: 13.46vw;
        height: 3.87vw;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(237, 28, 36, 1);
        margin-left: 6.25vw;
    }

    .contact p {
        font-family: 'bold';
        font-size: 1.45vw;
        color: white;
        direction: rtl;
    }

    .box1 {
        aspect-ratio: 1920 / 938;
        background-image: url(./assets/images/hero1-desk.jpg);
        margin-top: -9vw;
    }

    .box1 .content {
        height: 14.45vw;
        overflow-x: hidden;
        margin-bottom: 5.21vw;
    }

    .box1 .text-content {
        padding-right: 2vw;
    }

    .box1 .title-container {
        height: 9vw;
        margin-top: -1vw;
    }

    .box1 .text-content p[class^="title"] {
        font-size: 3.13vw;
        padding-bottom: unset;
    }

    .box1 .text-content .subtitle {
        font-size: 1.04vw;
    }

    .box1 .red-line {
        width: 100%;
        height: 0.9vw;
        background-color: rgba(237, 28, 36, 1);
    }

    .box2 {
        padding: 3vw;
    }

    .box2 .title-container {
        width: 11.35vw;
        margin-bottom: 2.08vw;
    }

    .box2 .title {
        font-size: 2.08vw;
    }

    .box2 .red-line {
        height: 0.25vw;
        margin-top: 0.4vw;
    }

    .box2 .subtitle {
        font-size: 1.56vw;
    }

    .box3 {
        background-image: url(./assets/images/box3-bg-desk.jpg);
        justify-content: center;
        align-items: center;
        padding: 2vw;
    }

    .box3 .title-container {
        width: 9.95vw;
        margin-bottom: 2.08vw;
    }

    .box3 .title {
        font-size: 2.08vw;
    }

    .box3 .red-line {
        height: 0.25vw;
        margin-top: 0.4vw;
    }

    .box3 .subtitle {
        font-size: 1.56vw;
        margin-bottom: 2.08vw;
    }

    .video { 
        width: 100%;
        height: 45vw;
    }

    .box4 {
        aspect-ratio: 1920 / 818;
    }

    .box4 .subtitle {
        font-size: 1.56vw;
        direction: rtl;
    }

    .box4 .title-container {
        width: 32.34vw;
    }

    .box4 .title {
        font-size: 1.56vw;
        direction: rtl;
        padding: unset;
    }

    .box4 .red-line {
        height: 0.25vw;
    }

    .clients-container {
        flex-direction: row-reverse;
        margin-top: 4.17vw;
        gap: 1.25vw;
    }

    .private {
        background-image: url(./assets/images/private-hero1-desk.jpg);
        background-size: cover;
        width: 38.44vw;
        height: 20.36vw;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .commercial {
        background-image: url(./assets/images/commercial-hero1-desk.jpg);
        background-size: cover;
        width: 38.44vw;
        height: 20.36vw;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .box-content {
        min-width: 8.5vw;
        display: flex;
        margin-bottom: 1.04vw;
        justify-content: flex-end;
        border-right: 0.42vw solid red;
        padding: 1vw 0;
    }

    .box-content p {
        font-size: 1.15vw;
        padding-right: 1vw;
        padding-left: unset;
    }

    .box-form {
        background-image: url(./assets/images/form-bg-desk.jpg);
        aspect-ratio: 1920 / 481;
    }

    .box-form .title {
        font-family: 'bold';
        font-size: 2.08vw;
        margin-bottom: 1.67vw;
    }

    .details-container {
        width: 22.58vw;
        height: 3.85vw;
    }

    .details-container a {
        text-decoration: none;
        font-size: 1.57vw;
    }

    form {
        flex-direction: row-reverse;
        width: unset;
        height: 2.86vw;
        gap: 0.47vw;
        margin-top: 3.65vw;
        margin-bottom: 1.46vw;
    }

    form input {
        height: 100%;
        width: 13.75vw;
        padding-right: 1.04vw;
    }

    form input::placeholder {
        font-family: 'regular';
        font-size: 1.25vw;
    }

    form button {
        width: 7.4vw;
        height: 100%;
        font-size: 1.25vw;
    }

    .box-form .privacy-notice {
        font-size: 1.04vw;
    }

    .footer {
        flex-direction: row-reverse;
        justify-content: space-between;
        aspect-ratio: 1920 / 95;
        background-color: black;
        padding-bottom: unset;
        padding: 0 10.63vw;
    }

    .footer .logo {
        width: 10.68vw;
        margin-bottom: unset;
    }

    .footer p {
        font-size: 1.35vw;
    }


    #private-content {
        aspect-ratio: 1920 / 1462;
        background-image: url(./assets/images/private-bg-desk.jpg);
        background-size: cover;
        gap: 1.35vw;
    }

    #private-content .title-container {
        width: 8.44vw;
        height: 4.17vw;
        margin-bottom: 3.39vw;
    }

    #private-content .title {
        font-family: 'bold';
        font-size: 2.08vw;
        margin-bottom: 1.2vw;
    }

    #private-content .title-container .red-line {
        width: 100%;
        height: 1.1vw;
        background-color: rgba(237, 28, 36, 1);
    }

    #private-content .private1-title {
        background-image: url(./assets/images/private1-title-desk.jpg);
        background-size: cover;
        width: 39.43vw;
        height: 59.22vw;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        margin-bottom: unset;
    }

    .private-images {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.35vw
    }

    #private-content .private-seats {
        background-image: url(./assets/images/private-seats-desk.jpg);
        background-size: cover;
        width: 37.29vw;
        height: 18.85vw;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
    }

    #private-content .private-mamad {
        background-image: url(./assets/images/private-mamad-desk.jpg);
        background-size: cover;
        width: 37.29vw;
        height: 18.85vw;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
    }

    #private-content .private-vase {
        background-image: url(./assets/images/private-vase-desk.jpg);
        background-size: cover;
        width: 37.29vw;
        height: 18.85vw;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .full-text {
        display: none;
    }

    .short-text {
        display: flex;
    }

    .zoom-box:hover .short-text {
        display: none;
    }

    .zoom-box:hover .full-text {
        display: flex;
    }

    .private-desktop {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
        gap: 1.35vw;
    }

    #commercial-content {
        aspect-ratio: 1920 / 1852;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-image: url(./assets/images/commercial-bg-desk.jpg);
        background-size: cover;
        gap: unset;
    }

    #commercial-content .title-container {
        width: 8.7vw;
        height: 4.17vw;
        margin-bottom: 3.44vw;
    }

    #commercial-content .title {
        font-size: 2.08vw;
        margin-bottom: 1.2vw;
    }

    #commercial-content .title-container .red-line {
        width: 100%;
        height: 1.1vw;
        background-color: rgba(237, 28, 36, 1);
    }

    #commercial-content .commercial-bricks,
    #commercial-content .commercial-houses {
        width: 37.29vw;
        height: 18.85vw;
    }

    #commercial-content .commercial-buildings {
       width: 39.43vw;
       height: 39.06vw;
    }

    #commercial-content .commercial-tubes  {
        width: 37.29vw;
        height: 39.06vw;
    }

    #commercial-content .commercial-tree-building,
    #commercial-content .commercial-vshape-building {
        width: 39.43vw;
        height: 18.85vw;
    }

    #commercial-content .commercial-buildings,
    #commercial-content .commercial-tree-building,
    #commercial-content .commercial-vshape-building,
    #commercial-content .commercial-bricks,
    #commercial-content .commercial-houses,
    #commercial-content .commercial-tubes {
        background-size: cover;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
    }
    #commercial-content .commercial-buildings {background-image: url(./assets/images/commercial-buildings-desk.jpg);}
    #commercial-content .commercial-tree-building {background-image: url(./assets/images/commercial-tree-building-desk.jpg);}
    #commercial-content .commercial-vshape-building {background-image: url(./assets/images/commercial-vshape-building-desk.jpg);}
    #commercial-content .commercial-bricks {background-image: url(./assets/images/commercial-bricks-desk.jpg);}
    #commercial-content .commercial-houses {background-image: url(./assets/images/commercial-houses-desk.jpg);}
    #commercial-content .commercial-tubes {background-image: url(./assets/images/commercial-tubes-desk.jpg);}

    .commercial-row {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
        gap: 1.35vw;
    }

    .commercial-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.35vw;
    }

    #private-content > div:nth-child(n+2) p,
    #commercial-content > div:nth-child(n+2) p {
        font-size: 1.15vw;
        padding: 0 1.95vw;
    }

    .zoom-box {
        background-size: 100% !important;
        background-position: center center;
        transition: background-size 0.4s ease-out;
    }
        
    .zoom-box:hover {
        background-size: 110% !important;
    }
        
    .image-slider-container {
        position: relative;
        isolation: isolate;
        cursor: pointer;
    }
        
    .image-slider-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: var(--next-bg-image);
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: -1;
    }
        
    .image-slider-container.is-fading::before {
        opacity: 1;
    }

    .desktop {
        display: flex;
    }

    .mobile {
        display: none;
    }
}