.header__top,
.breadcrumbs .breadcrumbs-list-item:not(:last-child) .breadcrumbs-item,
.breadcrumbs .breadcrumbs-list-item:not(:last-child) .breadcrumbs-item{
    color: var(--dark-10);
}
.breadcrumbs .breadcrumbs-list-item:not(:last-child) .breadcrumbs-item:after {
    content: ">";
    color: var(--dark-10);
}
.service-detail .container{
    width: 100%;
}
.top-banner {
    --banner--desktop-bg: none;
    --banner--tablet-bg: var(--banner--desktop-bg);
    --banner--mobile-bg: var(--banner--tablet-bg);

    /*--banner--global-aspect-ratio: auto;*/
    /*--banner--global-bg-size: cover;*/

    --banner--desktop-aspect-ratio: var(--banner--global-aspect-ratio, 1764 / 586);
    --banner--desktop-bg-size: var(--banner--global-bg-size, cover);

    --banner--tablet-aspect-ratio: var(--banner--global-aspect-ratio, 964 / 516);
    --banner--tablet-bg-size: var(--banner--global-bg-size, cover);

    --banner--mobile-aspect-ratio: var(--banner--global-aspect-ratio, 708 / 640);
    --banner--mobile-bg-size: var(--banner--global-bg-size, cover);

    position: relative;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
.top-banner__inner{
    padding: 24px 16px;
}
.top-banner:not(.top-banner_is-with-custom-image){
    background: linear-gradient(314deg, #49b1df 0%, #1b3550 100%);
}

.top-banner__image{
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}
@media (min-width: 1024px) {
    .top-banner__image{
        background-image: var(--banner--desktop-bg);
        background-size: var(--banner--desktop-bg-size);
        aspect-ratio: var(--banner--desktop-aspect-ratio);
    }
    .top-banner__inner{
        aspect-ratio: var(--banner--desktop-aspect-ratio);
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .top-banner__image{
        background-image: var(--banner--tablet-bg);
        background-size: var(--banner--tablet-bg-size);
        aspect-ratio: var(--banner--tablet-aspect-ratio);
    }
    .top-banner__inner{
        aspect-ratio: var(--banner--tablet-aspect-ratio);
    }
}
@media (max-width: 768px) {
    .top-banner__image{
        background-image: var(--banner--mobile-bg);
        background-size: var(--banner--mobile-bg-size);
        aspect-ratio: var(--banner--mobile-aspect-ratio);
    }
    .top-banner__inner{
        aspect-ratio: var(--banner--mobile-aspect-ratio);
    }
}
.top-banner_is-with-custom-image .breadcrumbs-item:not(:last-child),
.top-banner_is-with-custom-image .breadcrumbs-item:not(:last-child):after{
    color: var(--white);
}

.top-banner__mask{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
}
@media (max-width: 600px) {
    .top-banner{
        padding-bottom: 10px;
    }
}

.top-banner__image {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden
}

.top-banner__image img, .top-banner__image video {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*.top-banner__image:before {
    display: block;
    content: "";
    position: absolute;
    top: -7%;
    left: 0;
    right: 0;
    height: 22%;
    background: linear-gradient(180deg, #2d2c38b3, #2d2c3800);
}

.top-banner__image:after {
    display: block;
    content: "";
    position: absolute;
    bottom: 0%;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(0deg, #2d2c38b3, #2d2c3800);
}*/

.top-banner__inner{
    position: relative;
    z-index: 1;
}
.top-banner__content{
    /*margin-bottom: 40px;
    padding-top: 50px;*/
}

.service-detail .top-banner h1{
    color: #fff;
    margin-bottom: 24px;
}

.top-banner__description {
    font-weight: 400;
    font-size: 18px;
    line-height: 144%;
    color: #f5f8fa;
    margin-bottom: 24px;
}
.service-detail .top-banner_is-hide-title h1{
    /*opacity: 0;*/
    display: none;
}
@media (min-width: 768px) {

}
@media (min-width: 991px) {
    .service-detail .top-banner h1{
        font-size: 80px;
        margin-bottom: 32px;
    }
    .top-banner__inner {
        padding:50px;
    }
    .top-banner__description{
        margin-bottom: 32px;
    }
}
.top-banner__content__extra{
    margin-top: 75px;
    flex: none;
    width: 424px;
    max-width: 100%;
}
.top-banner__inner{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: end;
    gap: 50px;
    width: 100%;
}
.top-banner .breadcrumbs{
    width: 100%;
}
.top-banner__content{
    /*margin-bottom: 0;*/
    width: 100%;
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*align-items: flex-end;*/
    /*gap: 50px;*/
}
@media (min-width: 900px) {
    .top-banner__content__extra{
        margin-top: 0;
    }

    .top-banner__content .btn{
        display: inline-flex;
        width: auto;
    }
    .top-banner h1{
        font-size: 45px;
        margin-bottom: 24px;
    }
    .top-banner__description {
        font-size: 20px;
        margin-bottom: 29px;
    }
}

@media (min-width: 1200px) {
   /* .top-banner__inner{
        gap: 170px;
    }*/
    .top-banner h1{
        font-size: 65px;
    }
    /*.top-banner__content{
        gap: 100px;
    }*/
}

@media (min-width: 1550px) {
    /*.top-banner__inner{
        gap: 170px;
    }*/
    .top-banner h1{
        font-size: 105px;
        line-height: 109%;
        margin-bottom: 29px;
    }
}

.top-banner__patten-left {
    display: block;
    content: "";
    width: 328px;
    height: 269px;
    background: url(/local/templates/appsweb/img/pattern_left.svg) 50% 50% no-repeat;
    background-size: contain;
    position: absolute;
    pointer-events: none;
    top: 45px;
    right: 50%;
    margin-right: -164px;
    opacity: 0.1;
}

@media (max-width: 1439px) {
    .top-banner__patten-right,.top-banner__patten-left {
        background-size:contain
    }
    /*.top-banner__content{
        gap: 170px;
    }*/
}

.top-banner__patten-left {
    right: 274px;
    bottom: -210px
}

@media (min-width: 992px) {
    .top-banner__patten-left {
        width:626px;
        height: 512px;
        right: 425px;
        bottom: -220px
    }
}

@media (min-width: 1400px) {
    .top-banner__patten-left {
        width:825px;
        height: 676px;
        right: 425px;
        bottom: -220px
    }
}

@media (max-width: 767px) {
    .top-banner__patten-left {
        right: 0;
        top: 62px;
        width: 412px;
        height: 337px
    }
}

.top-banner__patten-right {
    right: -410px;
    top: -60px
}

@media (max-width: 1439px) {
    .top-banner__patten-right {
        right:-430px;
        top: -40px;
        width: 550px;
        height: 450px
    }
}

@media (max-width: 767px) {
    .top-banner__patten-right {
        right:-450px;
        top: 320px;
        width: 530px;
        height: 430px
    }
}

.service-detail__toscroll__box{
    display: flex;
    flex-direction: column-reverse;
}
.main__hero-sale {
    flex: 0 0 424px;
    padding: 28px;
    position: relative;
    background: var(--color-100);
    border-radius: var(--bdrs);
    color: var(--dark-10);
    max-width: 424px;
}

.main__hero-sale:before {
    display: block;
    content: "";
    width: 140px;
    height: auto;
    aspect-ratio: 1;
    background: url(/makeup/assets/png/hero-sale.png) 0 0 no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(.078%, -40%) rotate(10.25deg)
}

.main__hero-sale-tag {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 0 32px;
    padding: 4px 12px;
    background: var(--dark-10);
    border-radius: 32px;
    color: var(--dark-100);
    font-weight: 600
}

.main__hero-sale-heading {
    margin: 0;
    padding: 0;
    font: 400 20px/24px var(--ff)
}

@media (max-width: 1439px) {
    .main__hero-sale-heading {
        font-size: 18px;
        line-height: 24px
    }
}

.main__hero-sale-heading {
    font-weight: 600;
    margin: 0 0 12px
}

.main__hero-sale-copy {
    margin: 0;
    color: var(--dark-20)
}

@media (max-width: 1200px) {
    .main__hero-heading {
        font-size: 50px
    }
}

@media (max-width: 1024px) {
    .main__hero {
        padding-bottom: 50px
    }

    .main__hero-content {
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch
    }

    .main__hero-heading {
        font-size: 60px
    }

    .main__hero-sale {
        flex: 0 0 auto
    }
}

@media (max-width: 760px) {
    .main__hero {
        padding-bottom: 40px
    }

    .main__hero-image:before {
        height: 50%
    }

    .main__hero-heading {
        margin-bottom: 24px;
        font-size: 38px;
        line-height: 40px;
        text-wrap: balance
    }

    .main__hero-sale {
        padding: 16px
    }

    .main__hero-sale:before {
        width: 103px;
        height: 103px;
        transform: translate(-20%, -46%) rotate(10.25deg)
    }

    .main__hero-sale-tag {
        margin-bottom: 16px
    }

    .main__hero-sale-heading {
        margin-bottom: 8px;
        font-weight: 700
    }
}


.service-detail__children{

}

.service-detail__children__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
@media (min-width: 992px) {
    .service-detail__children__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1400px) {
    .service-detail__children__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.service-detail__children__item{
    border-radius: 32px;
    padding: 16px;
    background: #f5f8fa;
}
.service-detail__children__item__content {
    position: relative;
}
.service-detail__children__item__name{
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: #1b3550;
    min-height: 40px;
    margin-bottom: 10px;
}
.service-detail__children__item__text{
    font-weight: 400;
    font-size: 16px;
    line-height: 156%;
    color: #2d2c38;
    opacity: 0.7;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    box-orient: vertical;
}
.service-detail__children__item__readmore{
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: -45px;
}
.service-detail__children__item__readmore__link{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 44px;
    height: 44px;
    background: var(--dark-10);
    border-radius: 44px;
    box-shadow: 0 0 30px #2a30471a;
    transition: background-color var(--trs-out);
}
.service-detail__children__item:hover .service-detail__children__item__readmore__link{
    background: var(--color-100);
    transition: background-color var(--trs-in);
}
.service-detail__children__item:hover .service-detail__children__item__readmore__link path {
    stroke: var(--dark-10);
    transition: stroke var(--trs-in);
}

@media (min-width: 992px) {
    .service-detail__children__item{
        padding: 58px 98px 58px 58px;
    }
    .service-detail__children__item__readmore{
        top: 100%;
        margin-left: 20px;
        margin-top: -45px;
    }
}
.service-detail__scroll-menu{
    position: relative;
    border: 1px solid #e2e3e7;
    padding: 4px;
    margin-bottom: 60px;
    overflow: hidden;
}

.service-detail__scroll-menu, .service-detail__scroll-menu__inner{
    border-radius: 999px;
}
.service-detail__scroll-menu__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1000px) {
    .service-detail__scroll-menu{
        overflow: hidden;
    }
    .service-detail__scroll-menu:after {
        display: block;
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, #fff0 0% 70%, #fff);
        pointer-events: none;
    }
    .service-detail__scroll-menu__inner{
        overflow: auto;
    }
}
.service-detail__scroll-menu__item{
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #2d2c38;
    padding: 12px 40px;
    border-radius: 999px;
    text-align: center;
    white-space: nowrap;
}
.service-detail__scroll-menu__item:not(.is-active){
    cursor: pointer;
}
.service-detail__scroll-menu__item.is-active{
    background: #00b0e9;
    color: #fff;
}

.ads-banner{
    position: relative;
    aspect-ratio: 1567/527;
    padding: 28px;
}
.ads-banner__image{
    border-radius: 32px;

}
.ads-banner__title{
    font-weight: 600;
    font-size: 16px;
    line-height: 113%;
    color: #2d2c38;
}
.ads-banner__description{
    font-weight: 400;
    font-size: 15px;
    line-height: 156%;
    color: #2d2c38;
    opacity: 0.7;
}
.ads-banner__inner{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.ads-banner__sale {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 10px;
    border-radius: 999px;
    padding: 8px;
    width: 64px;
    height: 64px;
    font-weight: 600;
    font-size: 20px;
    line-height: 108%;
    text-align: center;
    background: #00b0e9;
    color: #fff;
}
.ads-banner__image {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden
}

.ads-banner__image img, .ads-banner__image video {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.ads-banner__image:before {
    display: block;
    content: "";
    position: absolute;
    top: -7%;
    left: 0;
    right: 0;
    height: 22%;
    background: linear-gradient(180deg, #2d2c38b3, #2d2c3800);
}

.ads-banner__image:after {
    display: block;
    content: "";
    position: absolute;
    bottom: 0%;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(0deg, #f5f5f7, #2d2c3800);
}

@media (min-width: 769px) {
    .ads-banner{
        padding: 64px;
    }

    .ads-banner__inner{
        flex-direction: row;
        height: 100%;
        align-items: end;
        gap: 100px;
    }
    .ads-banner__title{
        font-size: 32px;
        line-height: 113%;
    }
    .ads-banner__description{
        margin-top: 20px;
        font-size: 16px;
        line-height: 156%;
    }
}

@media (min-width: 1169px) {
    .ads-banner__sale {
        top: 64px;
        left: 64px;
        width: 100px;
        height: 100px;
        font-size: 24px;
    }
}
@media (max-width: 768px) {
    .ads-banner__sale {
        right: 10px;
    }
    .ads-banner__inner{
        justify-content: end;
        aspect-ratio: 373/420;
    }
    .ads-banner__title{
        margin-bottom: 4px;
    }
    .ads-banner__description{
        margin-bottom: 10px;
    }
    .service-detail__children__list .service-detail__children__item__content{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
    .service-detail__children__list .service-detail__children__item__name {
        min-height: 10px;
        margin-bottom: 0;
    }
    .service-detail__children__list .service-detail__children__item__readmore{
        position: static;
        margin: 0;
    }
    .service-detail__children__list .service-detail__children__item__text{
        display: none;
    }
}