.catalog-block {
    padding: 80px 0;
}

@media (max-width: 769px) {
    .catalog-block {
        padding: 40px 0;
    }
}

.catalog-block .block-holder {
    width: 100%;
}

.catalog-block .block-holder .block-top {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px 210px;
    margin-bottom: 40px;
}

.catalog-block .home-title {
    color: var(--head);
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 42px */
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.catalog-block .home-title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 70px;
    border-radius: 100px;
    background: var(--primary, #524489);
}

.catalog-block .homes {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.catalog-block .tab-btn {
    border-radius: 1000px;
    border: 1px solid var(--primary, #524489);
    background-color: var(--card, #FFF);
    color: var(--primary, #524489);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 18px */
    padding: 10px 25px;
    transition: background-color 0.3s ease-in, color 0.3s ease-in;
}

.catalog-block .tab-btn.active, .catalog-block .tab-btn:hover {
    color: var(--card, #FFF);
    background-color: var(--primary, #524489);
}

.catalog-block .tab {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.catalog-block .tab.active {
    display: block;
}

.catalog-block .tab__details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px 100px;
    margin-bottom: 30px;
}

.catalog-block .tab__desc {
    margin-bottom: 30px;
    width: 100%;
}

.catalog-block .tab__bot {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px 50px;
    min-width: 0;
}

.catalog-block .detail {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.catalog-block .detail__icon {
    margin-right: 15px;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.catalog-block .detail__value {
    color: var(--head, #1D1D1D);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
}

.catalog-block .detail__value b,
.catalog-block .detail__value strong {
    font-weight: 700;
    color: var(--primary, #524489);
}

.catalog-block .conditions {
    border-radius: 5px;
    background: var(--primary, #524489);
    padding: 30px;
    position: relative;
    height: fit-content;
    z-index: 1;
    max-width: 370px;

}

.catalog-block .conditions:after {
    content: "";
    /* background-image: url("images/bg.png"); */
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.3;
    z-index: -1;
}

.catalog-block .conditions__title {
    color: var(--stroke, #DCDCDC);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.catalog-block .conditions__desc p,
.catalog-block .conditions__desc li {
    color: var(--card, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.catalog-block .conditions__desc p strong,
.catalog-block .conditions__desc li strong {
    font-weight: 700;
    font-size: 24px;
}

.catalog-block .conditions .btn {
    margin-top: 10px;
}

.catalog-block .gallery {
    position: relative;
    padding: 0 30px;
    min-width: 0;
}

.catalog-block .gallery .gallery-holder {
    overflow: hidden;
}

.catalog-block .gallery .image {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 73/46;
    border-radius: 5px;
    box-sizing: border-box;
}

.catalog-block .gallery .gallery-button-prev,
.catalog-block .gallery .gallery-button-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #ECECEC;
    transition: background-color 0.3s ease-in;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    outline: none;
    border: none;
}

.catalog-block .gallery .gallery-button-prev.swiper-button-disabled,
.catalog-block .gallery .gallery-button-next.swiper-button-disabled {
    pointer-events: none;
    opacity: 0.5;
}

.catalog-block .gallery .gallery-button-prev svg path,
.catalog-block .gallery .gallery-button-next svg path {
    transition: stroke 0.3s ease-in;
}

.catalog-block .gallery .gallery-button-prev:hover,
.catalog-block .gallery .gallery-button-next:hover {
    background-color: #524489;
}

.catalog-block .gallery .gallery-button-prev:hover svg path,
.catalog-block .gallery .gallery-button-next:hover svg path {
    stroke: #fff;
}

.catalog-block .gallery .gallery-button-prev {
    left: 0;
}

.catalog-block .gallery .gallery-button-next {
    right: 0;
}

@media (max-width: 1240px) {
    .catalog-block .block-holder .block-top {
        gap: 10px 100px;
    }
}

@media (max-width: 1025px) {
    .catalog-block .block-holder .block-top {
        gap: 10px 40px;
    }

    .catalog-block .tab__details {
        grid-gap: 25px 30px;
    }

    .catalog-block .tab__bot {
        gap: 30px;
    }
}

@media (max-width: 769px) {
    .catalog-block {
        padding: 60px 0;
    }

    .catalog-block .block-holder .block-top {
        flex-direction: column;
        gap: 20px;
    }

    .catalog-block .homes {
        justify-content: center;
    }

    .catalog-block .tab__details {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-block .tab__bot {
        gap: 30px;
        flex-direction: column;
    }
}

@media (max-width: 769px) {
    .catalog-block {
        padding: 40px 0;
    }

    .catalog-block .home-title {
        font-size: 30px;
    }

    .catalog-block .tab__details {
        grid-template-columns: 1fr;
    }

    .catalog-block .tab__bot {
        gap: 30px;
        flex-direction: column;
    }

    .catalog-block .conditions {
        max-width: 100%;
    }
}

/*# sourceMappingURL=block.css.map */
