

/* Start:/local/components/componentsTheme/block.banner/templates/.default/style.css?17703802432207*/
.banner__wrapper {
    position: relative;
    width: 100%;
    height: fit-content;

    padding: 20px;
}

.banner__background {
    position: absolute;
    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    & img {
        position: absolute;
        top: 0px;
        left: 0px;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        border-radius: 20px;
    }
}

.banner__content {
    position: relative;
    width: 100%;
    max-width: 540px;
    min-height: clamp(360px, 6.472vw + 335.728px, 460px);
    height: fit-content;

    padding: clamp(15px, 0.324vw + 13.786px, 20px);
    
    border: solid 1px var(--bg-primary-stroke);
    border-radius: 15px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    gap: 20px;

    &::before {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;

        width: 100%;
        height: 100%;
        object-fit: cover;
        
        background: #FFFFFFB2;
        backdrop-filter: blur(10px)
    }
}
.banner__content-top {
    position: relative;
    width: 100%;
    height: fit-content;

    display: flex;
    flex-direction: column;
    gap: 15px;
}
.banner__title.block-title {
    margin-bottom: 0px;
}


.banner__link {
    position: relative;
    margin-top: auto;
}




@media(max-width: 800px) {
    .banner__wrapper {
        padding: 0px;
    }
    .banner__background {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 375 / 182;
    }
    .banner__content {
        position: relative;
        width: 100%;
        max-width: 100%;
        min-height: 0px;

        background: var(--bg-primary-second);
        border: none;

        &::before {
            display: none;
        }
    }
    .banner__content-top {
        gap: 30px;
    }
    .banner__link.btn {
        width: 100%;
    }
}
@media(max-width: 500px) {
    .block-banner {
        margin-left: calc(-100vw / 2 + 100% / 2);
        margin-right: calc(-100vw / 2 + 100% / 2);
    }
}
/* End */


/* Start:/local/components/componentsTheme/block.service-price/templates/.default/style.css?17719249611723*/
.service-price__table-wrapper {
    position: relative;
    width: 100%;
    height: fit-content;
}

.service-price__table {
    position: relative;
    width: 100%;
    height: fit-content;

    display: grid;
    grid-template-columns: 1fr min-content 1fr;
    row-gap: 10px;
    column-gap: 20px;
}

.service-price__table-item {
    position: relative;
    padding: 20px;

    border: solid 1px var(--bg-primary-stroke);
    border-radius: 10px;

    &.head {
        white-space: nowrap;
        color: var(--text-primary-head);
    }

    &:not(.head, .btn) {
        font-weight: 400;
        font-size: 16px;
        line-height: 130%;
        color: var(--text-primary-head);

        & b {
            font-weight: 600;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
        }
    }

    &.price {
        font-weight: 700;
        font-size: 20px;
        line-height: 120%;

        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: var(--bg-primary-second);
        border-color: var(--bg-primary-second);
    }

    &.btn {
        width: 100%;
        height: 100%;
    }
}


@media(max-width: 950px) {
    .service-price__table {
        grid-template-columns: 1fr;
        gap: 5px;

        & .service-price__table-item:nth-child(4) {
            margin-top: 0px;
        }
    }

    .service-price__table-item {
        &.head {
            display: none;
        }

        &.name {
            margin-top: 25px;
        }

        &.price {
            justify-content: start;
        }
    }
}
/* End */
/* /local/components/componentsTheme/block.banner/templates/.default/style.css?17703802432207 */
/* /local/components/componentsTheme/block.service-price/templates/.default/style.css?17719249611723 */
