﻿.home-picture {
}

    .home-picture .btn {
        text-align: center;
        color: #BBC8DE;
        font-size: 14px;
        text-transform: capitalize;
        line-height: 161%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 38px;
        width: fit-content;
        margin: 0 auto;
        margin-top: 38px;
        background-color: #fff;
        border-radius: 55px;
        color: var(--default-color-1);
        font-weight: bold;
        padding: 8px 20px;
        transition: all ease .3s;
    }

        .home-picture .btn:hover {
            opacity: .8;
        }

        .home-picture .btn span {
            margin-right: 12px;
            letter-spacing: 1.4px;
        }

.home-pic-grid {
    max-width: 1413px !important;
}

.home-picture .p-title-tops {
}

.home-picture .p-title {
    font-size: 48px;
    margin-top: 0;
    margin-top: 12px;
    text-transform: capitalize;
}

.home-picture-list {
    display: grid;
    grid-auto-rows: minmax(min-content,max-content);
    grid-template-columns: repeat(5,minmax(0,1fr));
    column-gap: 37px;
    row-gap: 20px;
    margin-top: 66px;
}

.home-picture-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .home-picture-item:nth-child(1) .img {
        display: none;
    }

    .home-picture-item .img {
        border-radius: 3px;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

        .home-picture-item .img::before {
            content: '';
            background: rgba(var(--villoz-white-rgb, 255, 255, 255), 0.3);
            bottom: 50%;
            content: "";
            left: 0;
            position: absolute;
            right: 0;
            top: 50%;
            opacity: 1;
            z-index: 3;
            pointer-events: none;
            transition: all 600ms linear;
        }

        .home-picture-item .img:hover::before {
            top: 0;
            bottom: 0;
            opacity: 0;
            transition: all 600ms linear;
        }

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

    .home-picture-item:nth-child(1) .img:nth-child(1) {
        height: 190px;
        display: block;
        margin-bottom: 30px;
    }

    .home-picture-item:nth-child(1) .img:nth-child(2) {
        height: 258px;
        display: block;
    }

    .home-picture-item .img img {
        transition: all linear .2s;
    }

    .home-picture-item:nth-child(2) .img:nth-child(1) {
        height: 321px;
        margin-bottom: 28px;
    }

    .home-picture-item:nth-child(2) .img:nth-child(2) {
        height: 215px;
    }

    .home-picture-item:nth-child(3) .img:nth-child(1) {
        height: 478px;
    }

    .home-picture-item:nth-child(4) .img:nth-child(1) {
        height: 215px;
        margin-bottom: 34px;
    }

    .home-picture-item:nth-child(4) .img:nth-child(2) {
        height: 321px;
    }

    .home-picture-item:nth-child(5) .img:nth-child(1) {
        height: 258px;
        margin-bottom: 30px;
    }

    .home-picture-item:nth-child(5) .img:nth-child(2) {
        height: 190px;
    }

    .home-picture-item .btn {
    }
/*RS*/
@media(max-width:1023px) {
    .home-picture {
        padding: 20px 0;
    }

    .home-picture-item {
        display: none;
    }

    .home-picture-list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .home-picture-item:nth-child(1) {
        display: block;
        display: grid;
        grid-auto-rows: minmax(min-content,max-content);
        grid-template-columns: repeat(3,minmax(0,1fr));
        column-gap: 20px;
        row-gap: 20px;
    }

        .home-picture-item:nth-child(1) .img {
            display: block !important;
            margin: 0 !important;
            height: 250px !important;
        }
}

@media(min-width:740px) and (max-width:1023px) {
}

@media(max-width:739px) {
    .home-picture-item:nth-child(1) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 10px;
        row-gap: 10px;
        margin-top: 0;
    }

    .home-picture-list {
        margin-top: 35px;
    }

    .home-picture-item:nth-child(1) .img {
        height: 150px !important;
    }

    .home-picture-item .img:nth-child(9) {
        display: none !important;
    }
}