<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.home-pic {
    background-image: url("../../../Design/img/home-picture.png");
    background-size: cover;
}

.home-pic-title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 62px;
    margin-bottom: 60px;
    gap: 33px;
}

    .home-pic-title h3 {
        margin: 0;
        color: #FFF;
        text-align: center;
        font-family: 'interSB';
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        text-transform: uppercase;
    }

.home-pic-mid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
}

}

.img-home-pic {
    width: 100%;
}

    .img-home-pic img {
        max-width: 100%;
        width: 100%;
        max-height: 100%;
        transition: all .3s;
    }

    .img-home-pic:hover img {
        transform: scale(1.02);
    }

.home-pic-mid &gt; :first-child {
    grid-column-start: 1;
    grid-row-start: 1;
    padding-top: 36px;
}

    .home-pic-mid &gt; :first-child img {
        height: 180px;
    }

.home-pic-mid &gt; :nth-child(2) {
    grid-row: span 2 / span 2;
    grid-column-start: 1;
    grid-row-start: 1;
    margin-top: 245px;
}

    .home-pic-mid &gt; :nth-child(2) img {
        height: 242px;
    }

.home-pic-mid &gt; :nth-child(3) {
    grid-row: span 3 / span 3;
    grid-column-start: 2;
    grid-row-start: 1;
}

    .home-pic-mid &gt; :nth-child(3) img {
        height: 295px;
    }

.home-pic-mid &gt; :nth-child(4) {
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 2;
    padding-top: 46px;
}

    .home-pic-mid &gt; :nth-child(4) img {
        height: 208px;
    }

.home-pic-mid &gt; :nth-child(5) {
    grid-row: span 3 / span 3;
    grid-column-start: 3;
    grid-row-start: 1;
    padding-top: 36px;
}

    .home-pic-mid &gt; :nth-child(5) img {
        height: 448px;
    }

.home-pic-mid &gt; :nth-child(6) {
    grid-row: span 3 / span 3;
    grid-column-start: 4;
    grid-row-start: 1;
}

    .home-pic-mid &gt; :nth-child(6) img {
        height: 197px;
    }

.home-pic-mid &gt; :nth-child(7) {
    grid-row: span 2 / span 2;
    grid-column-start: 4;
    grid-row-start: 1;
    padding-top: 220px;
}

    .home-pic-mid &gt; :nth-child(7) img {
        height: 304px;
    }

.home-pic-mid &gt; :nth-child(8) {
    grid-row: span 2 / span 2;
    grid-column-start: 5;
    grid-row-start: 1;
    margin-top: 36px;
}

    .home-pic-mid &gt; :nth-child(8) img {
        height: 242px;
    }

.home-pic-mid &gt; :nth-child(9) {
    grid-column-start: 5;
    grid-row-start: 2;
    padding-top: 42px;
}

    .home-pic-mid &gt; :nth-child(9) img {
        height: 179px;
    }

.home-button-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 45px;
    padding-bottom: 61px;
}

    .home-button-more .home-btn-more {
        color: #FFF;
        font-family: 'interSB';
        font-size: 21.28px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%; /* 31.92px */
    }

@media (max-width: 1023px) {
    .home-pic-mid {
        grid-auto-rows: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

        .home-pic-mid &gt; * {
            grid-column: auto !important;
            grid-row: auto !important;
            padding-top: 0 !important;
            margin-top: 0 !important;
            height: 188px;
        }

        .home-pic-mid img {
            height: 100% !important;
            object-fit: cover;
        }

    .home-pic-title {
        gap: 16px;
        padding-top: 45px;
        margin-bottom: 35px;
    }

        .home-pic-title h3 {
            font-size: 24px;
        }

    .home-button-more {
        padding-bottom: 40px;
        gap: 12px;
    }

        .home-button-more .home-btn-more {
            font-size: 18px;
        }
}

@media (max-width: 739px) {
    .home-pic-mid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .home-pic-mid &gt; :nth-child(n+7) {
            display: none
        }

    .home-pic-title h3 {
        font-size: 20px;
    }

    .home-button-more .home-btn-more {
        font-size: 16px;
    }

    .home-pic-title {
    }

    .home-pic-title-left {
        display: none;
    }

    .home-pic-title-right {
        display: none;
    }

    .home-pic-mid img {
        height: 128px !important;
    }

    .home-pic-mid &gt; * {
        height: 100%;
    }
}
</pre></body></html>