.banner-slider {
    display: flex;
    gap: 16px;
    width: 100%;

    .slider-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: flex-start;
        padding: 48px 56px 48px 32px;
        gap: 32px 28px;
        width: 100%;
        min-width: 536px;
        height: 386px;
        border-radius: 40px;
    }

    .slider-item-1 {
        background: radial-gradient(49.18% 68.91% at 20.19% 31.09%, rgba(123, 165, 253, 0.7) 0%, rgba(112, 61, 220, 0.7) 48.56%, rgba(53, 4, 156, 0.7) 100%), #703DDC;

        .title {
            color: var(--white-color);
            margin-bottom: 8px;
        }
    }

    .block {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 32px;
        width: 100%;
    }

    .slider-item-2 {
        padding-left: 56px;
        background-color: var(--main-color);
    }

    .btn-booking {
        display: flex;
        align-content: center;
        gap: 12px;
    }

    ul {
        margin-top: 16px;
        list-style-type: disc;
        margin-left: 14px;

        li {
            font-size: 14px;
            line-height: 24px;
            font-weight: 300;
        }
    }
}

.section {
    padding: 44px 56px;
    border-radius: 40px;
    display: flex;
    gap: 24px;
}

.insurance {
    background-image: url(/assets/img/insurance-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 420px;
}

.block-list-track {
    display: flex;
    gap: 20px;
}

.block-list {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;

    .block-list-item {
        flex: 0 0 100%;
        max-width: 357px;
    }

    .content {
        padding: 48px 36px 64px;
        border-radius: 36px;
        background-color: var(--white-color);
        height: 250px;

        button {
            margin-top: 12px;
            float: right;
        }

        button::after {
            content: "";
            clear: both;
            display: table;
        }
    }

    img {
        margin-bottom: 12px;
    }

    h4 {
        margin-bottom: 4px;
        font-size: 24px;
        font-weight: 500;
        line-height: 36px;
        color: var(--gray-d10-color);
    }

    p {
        font-size: 14px;
        line-height: 22px;
        color: var(--text-color);

        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    /*.btn-open {
        transition: transform 0.5s ease;
    }
    .btn-open:hover {
        transform: rotate(45deg);
    }*/
}
.block-list::-webkit-scrollbar {
    display: none;
}

.block-list-client {
    .block-list-item {
        max-width: 247px;
    }

    .content {
        padding: 36px 48px 24px !important;
        min-width: 200px;
        height: 200px;
        min-height: 200px;
    }

    img {
        max-height: 40px;
    }
}

.block-list-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 0px;
    gap: 8px;

    button {
        padding: 0;
        border: none;
    }
}

.map-address,
.map-post {
    height: 386px;
}

.map-address {
    background-image: url(/assets/img/map.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    padding: 24px 24px 24px 48px;

    .address {
        background: rgba(24, 25, 31, 0.5);
        backdrop-filter: blur(25px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 48px;
        gap: 32px;
        width: 259px;
        height: 240px;
    }

    h3 {
        font-size: 24px;
        line-height: 32px;
        font-weight: 600;
    }
}
.map-post {
    background-color: var(--pink-d10-color);
    flex: 1 0 590px;

    h3 {
        font-size: 36px;
        line-height: 48px;
    }
}