.service-description {
    position: relative;
    background: var(--color-light);
    max-width: 1280px;
    margin: 0 auto;
}

.service-description .main-header {
    position: absolute;
    width: 100%;
    max-width: 100%;
    padding-inline: 15px;
    z-index: 100;
}

.service-description .main-header .main-header__menu-button {
    background: var(--color-light);
}

.service-description__header {

}
.service-description__header-figure {

}

.service-description__header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-description__card {
    position: relative;
}
.mobile-title {
    margin-top: 50px;
}
.service-description__card:has(.service-description__header) .mobile-title {
    margin-top: 0;
}

.service-description__card .desktop-title {
    display: none;
}
.service-description__info-desktop {
    display: none;
    padding: 25px 20px;
    background: var(--color-light);
    border-radius: 16px;
    margin-bottom: 25px;
    width: calc(100% - 315px);
}
.service-description__card:has(.service-description__header) .service-description__info-desktop {
    margin-block: 25px;
}

.service-description__info {
    padding: 25px 20px;
    position: relative;
    background: var(--color-light);
}

.service-description__info::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 30px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    top: -25px;
    left: 0;
    background: var(--color-light);
}

.service-description__info .step-title,
.service-description__info .step-subtitle {
    margin-bottom: 20px;
    width: auto;
}
.service-description__price {
    margin-top: 10px;
}

.service-description__info .desktop-price {
    display: none;
    margin-bottom: 15px;
}

.service-description__duration,
.service-description__people {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.service-description__text {
    font-size: 16px;
    font-weight: var(--font-weight-normal);
    color: var(--color-dark);
    margin-block: 20px;
}

.service-description__text ol,
.service-description__text ul {
    margin-left: 20px;
    padding-left: 20px;
}
.service-description__text li {
    margin-bottom: 5px;
}
.service-description__text li:first-child {
    margin-top: 5px;
}
.service-description__text li:last-child {
    margin-bottom: 0;
}

.service-description__text p {
    white-space: normal;
}

.other-services {
    padding: 15px;
}
.other-services__header{
    display: flex;
    justify-content: space-between;
}
.other-services__title {
    font-size: 26px;
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    text-align: left;
    margin-top: 0;
}
.other-services__navigator {
    display: flex;
    flex-wrap: wrap;
}
.other-services__navigator-button {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--color-light);
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.other-services__navigator-button.next {
    transform: rotate(180deg);
}

.other-services__cards {
    margin: 15px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

a:-webkit-any-link {
    text-decoration: none!important;
}
.other-services__service-link * {
    text-decoration: none!important;
}

@media screen and (min-width: 768px) {
    .other-services__navigator {
        display: none;
    }

    .service-description {
        max-width: 1320px;
        background-color: transparent;
        padding-inline: 20px;
    }

    .service-description .main-header {
        position: static;
    }

    .service-description .main-header .main-header__menu-button {
        background: transparent;
    }

    .service-description__card {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 15px;
    }

    .service-description__card .desktop-title {
        display: block;
        width: 100%;
        margin-block: 25px 15px;
    }
    .service-description__card .mobile-title {
        display: none;
    }
    .service-description__header {
        width: calc(100% - 315px);
    }

    .service-description__header-image,
    .service-description__info {
        border-radius: 16px;
        overflow: hidden;
    }

    .service-description__info {
        width: 300px;
    }

    .service-description__info::before {
        display: none;
    }

    .mobile-price {
        display: none;
    }

    .mobile-description {
        display: none;
    }

    .service-description__duration.mobile-description {
        display: none;
    }

    .mobile-duration {
        display: none;
    }
    
    .service-description__people.mobile-people {
        display: none;
    }


    .service-description__info .desktop-price {
        display: block;
    }

    .service-description__info-desktop {
        display: block;
    }

    /* Scroll */
    .service-description__info.fixed {
        position: absolute;
        top: 30px;
        right: 0;
        z-index: 10;
    }
    
    .service-description__info.sticky-bottom {
        position: absolute;
        bottom: 25px;
        right: 0;
        top: auto;
    }
}


/* editor overrides */
.ql-size-large {
    font-size: 20px;
}
.ql-size-small {
    font-size: 12px;
}