/* *************** SURCOUCHE *****************/

i-footer footer {
    margin-top: 0 !important;
}

/*****************************************************/
.services {
    --FONT-CLARINS: "ClarinsRegular", "Clarins";
    --FONT-GOTHAM-LIGHT: "Gotham_Light", Helvetica, Arial, sans-serif;
    --FONT-GOTHAM-BOOK: "Gotham SSm book A", "Gotham SSm book B", Helvetica, Arial,
        sans-serif;
    --FONT-GOTHAM-MEDIUM: "Gotham SSm medium A", "Gotham SSm medium B", Helvetica,
        Arial, sans-serif;
    --FOCUS: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #6893D2;
    --HOVER: 0 0 7px 0 rgba(0, 0, 0, .15);
    --CHARCOAL: #333333;
    --BORDER-COLOR: #C4BEBA;
    --TEXT-COLOR: var(--CHARCOAL);
    --PADDING-HORIZONTAL: 20px;
    --PADDING-VERTICAL: 40px;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media(max-width: 1023px) {
    .services {
        --PADDING-HORIZONTAL: 16px;
        --PADDING-VERTICAL: 24px;
    }
}

/*
body,
html {
    scroll-behavior: smooth;
    margin: 0;
}
*/
.services * {
    box-sizing: border-box;
    font-family: var(--FONT-GOTHAM-BOOK);
}

.services button:focus-visible {
    box-shadow: var(--FOCUS);
}

/********************************************************/
.services .services-title {
    margin: 0;
    margin-bottom: 16px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-size: 42px;
    line-height: 46px;
    font-weight: normal;
    color: var(--TEXT-COLOR);
}

.services .services-subtitle {
    margin: 0;
    margin-bottom: 16px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-size: 35px;
    line-height: 40px;
    font-weight: normal;
    color: var(--TEXT-COLOR);
}

.services .services-bold {
    margin: 0;
    margin-bottom: 16px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-size: 20px;
    line-height: 26px;
    font-weight: normal;
    color: var(--TEXT-COLOR);
}

.services .services-text {
    margin: 0;
    font-family: var(--FONT-GOTHAM-BOOK);
    font-size: 14px;
    line-height: 1.25em;
    font-weight: normal;
    color: var(--TEXT-COLOR);
}

@media (max-width:761px) {
    .services .services-title {
        font-size: 35px;
        line-height: 40px;
    }

    .services .services-subtitle {
        font-size: 29px;
        line-height: 35px;
    }

    .services .services-bold {
        font-size: 20px;
        line-height: 26px;
    }

    .services .services-text {
        font-size: 14px;
        line-height: 1.25em;
    }
}

/********************************************************/


.services .services-cta {
    background-color: #fff;

    align-items: center;
    gap: 8px;
    padding: 0px 16px;
    margin-top: 24px;
    text-decoration: none;
    font-weight: normal;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    display: inline-flex;
    border-radius: 5px;
    border: 1px solid #B0A9A5 !important;
    color: var(--CHARCOAL) !important;
    transition: all 250ms;
    font-size: 14px;
    outline: 0 !important;
    height: 44px !important;
}

.services .services-cta:hover {
    box-shadow: var(--HOVER);
    border: 1px solid #797674 !important;
}

.services .services-cta:active {
    border: 1px solid var(--CHARCOAL) !important;
}

.services .services-cta:focus-visible {
    box-shadow: var(--FOCUS);
}

#services-find-store::after {
    content: " ";
    display: inline-block;
    background-image: url("../img/location.svg");
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center center;
    width: 24px;
    height: 24px;
}

/********************************************************/


.services .services-link {
    margin-top: 24px;
    text-decoration: underline !important;
    font-weight: normal;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    display: inline-block;
    color: var(--CHARCOAL) !important;
    font-size: 11px;
    outline: 0 !important;
    text-transform: uppercase;
}

.services .services-link:hover {
    text-decoration: none !important;
}

.services .services-link:active {
    color: #000 !important;
}

.services .services-link:focus-visible {
    box-shadow: var(--FOCUS);
}

/********************************************************/
.services .hide {
    display: none !important;
}


.services .services-text-center {
    text-align: center;
    max-width: 1082px;
    padding: 0 var(--PADDING-HORIZONTAL);
    margin: 0 auto;
}



/*********** bloc - Sticky *****************/
.services-sticky {
    z-index: 1000;
    width: 100%;
    height:0;
    display: flex;
    justify-content: center;
    --FONT-GOTHAM-BOOK: "Gotham SSm book A", "Gotham SSm book B", "Gotham Book", Helvetica, Arial, sans-serif;
}

.services-sticky__content {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
}

.services-sticky[data-loaded="1"] .services-sticky__content {
    transition: transform 0.3s ease-in-out;
}

.services-sticky__links {
    display: flex;
    background-color: #000;
    height: 60px;
    border-radius: 30px;
    max-width: 1520px;
    justify-content: center;
    margin: 30px;
    padding: 8px;
    box-sizing: border-box;
    gap: 8px;
    --X: 0;
    --WIDTH: 100px;
    --DURATION: 0.3s;
    position: relative;
}

.services-sticky__links::before {
    content: ' ';
    display: block;
    background-color: #fff;
    width: 100%;
    height: 44px;
    position: absolute;
    top: 8px;
    left: var(--X);
    width: var(--WIDTH);
    border-radius: 22px;
    z-index: 1;
    transition: width 0.5s ease-in-out, left 0.3s ease-in-out;
    transition-duration: var(--DURATION);
}

.services-sticky__link {
    display: flex;
    overflow: hidden;
    padding: 0 16px;
    position: relative;
    color: #fff !important;
    text-decoration: none !important;
    z-index: 1;
    height: 44px;
    text-decoration: none;
    font-family: var(--FONT-GOTHAM-BOOK);
    align-items: center;
    font-size: 14px;
    font-weight: normal;
    line-height: 1em;
    text-align: center;
    letter-spacing: 0;
    outline: 0;
    cursor: pointer;
}



.services-sticky__link::before {
    content: ' ';
    display: block;
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
}


.services-sticky__link:hover::before {
    opacity: 0.5;
}

.services-sticky__link:hover {
    color: #fff;
}

.services-sticky__link[data-active="1"]:hover::before,
.services-sticky__link[data-active="1"]::before {
    opacity: 0.5;
}

.services-sticky__link[data-active="1"]:hover::before,
.services-sticky__link[data-active="1"] {
    color: #000 !important;
}


.services-sticky[data-visible="0"] .services-sticky__content {
    transform: translateY(100%);
}

.services-sticky__current {
    display: none;
}

@media(max-width:1120px) {
    .services-sticky__content {
        width: 100%;
        flex-direction: column;
    }
    .services-sticky * { 
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
   
    .services-sticky__current {
        display: flex;
        height: 60px;
        margin: 30px 20px;
        background-color: #000;
        font-size: 14px;
        line-height: 20px;
        font-family: var(--FONT-GOTHAM-BOOK);
        font-weight: normal;
        color: #fff;
        text-align: center;
        text-decoration: none;
        align-items: center;
        justify-content: flex-start;
        border-radius: 60px;
        cursor: pointer;
    }

    .services-sticky__current::before {
        content: ' ';
        display: block;
        background-image: url(../img/arrow-down.svg);
        background-position: center;
        background-repeat: no-repeat;
        width: 15px;
        height: 8px;
        margin-right: 13px;
        margin-left: 21px;
    }

    .services-sticky__links {
        flex-direction: column;
        height: auto;
        margin: 0 20px;
        position: absolute;
        bottom: 30px;
        width: calc(100% - 40px);
        overflow: hidden;
        opacity: 1;
         gap:0;
    }

    .services-sticky__links::before {
        display: none;
    }

    .services-sticky[data-loaded="1"] .services-sticky__links {
        transition: max-height 0.1s ease-in-out;
    }

    .services-sticky[data-open="0"] .services-sticky__links {
        max-height: 60px !important;
        opacity: 0;
        z-index: 1;
        pointer-events: none;
    }

    .services-sticky__link[data-active="1"]:hover::before,
    .services-sticky__link[data-active="1"]::before {
        opacity: 1;
    }

}

/* **************** ARTICLES  ******************/


.services .services-articles {
    padding: 0 var(--PADDING-HORIZONTAL);
    margin-top: 24px;
    display: flex;
    gap: 40px;
    flex-direction: column;

}

@media(min-width:762px) {
    .services .services-articles {
        justify-content: center;
        align-items: flex-start;
        flex-direction: row;
        gap: 32px;
        padding-bottom: var(--PADDING-VERTICAL);
    }

    .services .services-articles__item {
        width: 50%;
    }
}

.services .services-articles__item {
    max-width: 615px;
    color: #333333 !important;
    text-decoration: none !important;
    outline: 0 !important;
    width: 100%;
}



.services .services-articles__item picture {
    display: block;
    width: 100%;
    margin-bottom: 24px;
}

.services .services-articles__item picture img {
    display: block;
    width: 100%;
    height: auto;
}


.services .services-articles__item:focus-visible picture {
    box-shadow: var(--FOCUS);
}

.services .services-articles__item:hover .services-link {
    text-decoration: none !important;
}

/****SWIPER*******************************/
.services .swiper {
    padding: 3px;
    margin: -3px;
    padding-bottom: 79px;
    width: 100%;
    --swiper-theme-color: var(--CHARCOAL);
    --swiper-pagination-bullet-horizontal-gap: 0;
    --swiper-pagination-bottom: 0px;
}

.services .swiper-pagination-bullets {
    display: flex;
    gap: 8px;
    margin: 0;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.services .swiper-wrapper {
    height: auto !important;
}

.services .swiper-pagination {
    /* text-align: left !important;*/
}

.services .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    opacity: 1 !important;
    border-radius: 50px !important;
    background-color: #D3CCC8 !important;
    outline: 0;
}

.services .swiper-pagination-bullet:focus-visible {
    box-shadow: var(--FOCUS);
}

.services .swiper-pagination-bullet-active {
    background-color: var(--CHARCOAL) !important;
}

.services .swiper-buttons-navigation {
    position: absolute;
    z-index: 11;
    bottom: 0;
    right: 0;
    width: 90px;
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    margin-right: 16px;
}

.services .swiper-button-next,
.services .swiper-button-prev {
    position: relative !important;
    color: #333 !important;
    top: auto !important;
    bottom: 3px !important;
    right: auto !important;
    left: auto !important;
    margin-top: 0 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 5px !important;
    background-color: #FFF !important;
    border: 1px solid #B0A9A5 !important;
    outline: 0;
}

.services .swiper-button-next:hover,
.services .swiper-button-prev:hover {
    box-shadow: var(--HOVER);
}

.services .swiper-button-next:focus-visible,
.services .swiper-button-prev:focus-visible {
    box-shadow: var(--FOCUS);
}

.services .swiper-button-next:after,
.services .swiper-button-prev:after {
    font-size: 0px !important;
    background-image: url("../img/arrow.svg") !important;
    background-size: 24px 24px !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    width: 24px !important;
    height: 24px !important;
}

.services .swiper-button-prev:after {
    transform: scaleX(-1);
}

@media (max-width: 761px) {
    .services .swiper-buttons-navigation {
        display: none !important;
    }
}

/* **************** TOOLS **************/

.services .services-tools {
    background-color: #F5EFEB;
    width: 100%;
    padding: 120px var(--PADDING-HORIZONTAL);
    display: flex;
    justify-content: center;
}

.services .services-tools__swiper {
    flex: 1;
    overflow: hidden;
}

.services .services-tools__container {
    display: flex;
    max-width: 1520px;
    width: 100%;
    gap: 60px;
}

.services .services-tools__intro {
    width: 260px;
}

.services .services-tools__title {
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-size: 1.875rem;
    margin-top: 0;
    font-weight: 500;
}

.services .services-tools__item {
    width: 300px;
    height: 375px;
}

.services .services-tools__item picture {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.services .services-tools__item a:focus-visible picture {
    box-shadow: var(--FOCUS);
}

.services .services-tools__item picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services .services-tools__item a {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    text-decoration: none !important;
    outline: 0;
}

.services .services-tools__text {
    margin: 0;
    color: #333333;
    font-size: 17px;
    line-height: 23px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-weight: normal;
}


.services .services-tools__item .services-tools__text span {
    display: inline-block;
}

.services .services-tools__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1330px) {
    .services .services-tools__container {
        flex-direction: column;
        gap: 24px;
        margin: 0;

    }

    .services .services-tools__intro {
        max-width: 100%;
    }
}

@media(max-width: 1023px) {
    .services .services-tools {
        padding: 40px var(--PADDING-HORIZONTAL);
        margin-top: 24px;
    }
}

/* ************** BANNER ************** */
.services .services-banner__bloc-picture {
    position: relative;
    margin: 40px auto;
    max-width: 1520px;
    width: 100%;
    margin-bottom: 16px;
}

.services .services-banner__bloc-picture-infos {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}



.services .services-banner__bloc-picture-img img {
    width: 100%;
    height: auto;
}

.services .services-banner__bloc-picture-title {
    font-weight: 500;
    font-size: 1.875rem;
    color: #fff;
    margin-top: 0;
    margin-bottom: 16px;
}

.services .services-banner__bloc-picture-text {
    color: #fff;
    margin-bottom: 16px;
}

@media(min-width: 762px) {
    .services .services-banner__bloc-picture {
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 40px;
    }

    #service-banner_club-clarins .services-banner__bloc-picture-infos-container {
        width: 33%;
        padding-right: var(--PADDING-HORIZONTAL);
    }

    #service-banner_skin-observer .services-banner__bloc-picture-infos-container {
        width: 42%;
        padding-right: var(--PADDING-HORIZONTAL);
    }

    #service-banner_vto .services-banner__bloc-picture-infos-container {
        padding-left: 128px;
        width: 484px;
    }

    #service-banner_skin-observer .services-banner__bloc-picture-infos {
        justify-content: end;
    }

    #service-banner_vto .services-banner__bloc-picture-infos {
        justify-content: start;
    }

    #service-banner_club-clarins .services-banner__bloc-picture-infos {
        justify-content: end;
        --TEXT-COLOR: #fff;
    }
}

@media(max-width: 1342px) and (min-width: 762px) {
    #service-banner_vto .services-banner__bloc-picture-infos-container {
        padding-left: 8%;
        width: 40%;
        max-width: 484px;
    }

    #service-banner_vto .services-banner__bloc-picture-img img {
        width: 120%;
        margin-right: -20%;
    }
}

@media(max-width: 761px) {

    .services .services-banner__bloc-picture-infos-container {
        width: 100%;
        margin: 0;
    }

    .services .services-banner__bloc-picture-infos {
        margin: 24px auto 0;
        position: relative;
        text-align: center;
        justify-content: center;
    }

    .services .services-banner__bloc-picture-img {
        width: calc(100% + 2*var(--PADDING-HORIZONTAL));
        margin-left: calc(-1*var(--PADDING-HORIZONTAL));
        display: block;
    }

    .services .services-banner__bloc-picture-title {
        color: #333;
    }

    .services .services-banner__bloc-picture-text {
        color: #333;
    }
}



/***************HEADER********************/
.services .services-header {
    display: flex;
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
    margin-bottom: var(--PADDING-VERTICAL);
}

.services .services-header__visual {
    display: block;
    flex: 1 1 50%;
    max-height: 536px;
}

.services .services-header__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.services .services-header__content {
    flex: 1 1 50%;
    background-color: #FBF6F3;
    display: flex;
    align-items: center;
}

.services .services-header__bloc {
    max-width: 540px;
    min-width: 450px;
    margin: var(--PADDING-VERTICAL) 80px;

}

.services .services-header__title {

    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-weight: 500;
    color: #B40024;
    font-size: 50px;
    line-height: 1.2em;
    margin: 0;
    margin-bottom: 16px;
}

.services .services-header__text {
    margin: 0;
    font-family: var(--FONT-GOTHAM-BOOK);
    color: #333333;
    line-height: 1.45em;
    font-size: 16px;
}


@media (max-width: 1023px) {
    .services .services-header {
        flex-direction: column;
    }

    .services .services-header__bloc {
        text-align: center;
        width: 100%;
        max-width: 100%;
        min-width: unset;
        margin: 24px;
    }

    .services .services-header__title {
        max-width: 270px;
        margin: 0 auto 16px;
        font-size: 3.125rem;
    }

    .services .services-header__visual {
        flex: none;
        height: auto;
    }

    .services .services-header__visual img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: top right;
    }
}




/************** CONTAINER ******************/
.services .services-container {
    max-width: 1520px;
    margin: 40px var(--PADDING-HORIZONTAL);
    margin-bottom: 0px;
    width: calc(100% - 2 * var(--PADDING-HORIZONTAL));
    display: flex;
    flex-direction: column;
    align-items: center;

}

.services .services-container--gift {
    margin: 80px var(--PADDING-HORIZONTAL);
}
@media(max-width:761px) {
    .services .services-container--gift {
        margin-bottom: 0px;
    }
}

/*************** MEET OUR EXPERTS ********************/

.services .services-experts {
    max-width: 1262px;
    width: calc(100% - 2 * var(--PADDING-HORIZONTAL));
    margin: 40px var(--PADDING-HORIZONTAL);
    gap: var(--PADDING-VERTICAL);
    display: flex;
    flex-direction: row-reverse;
}


.services .services-experts__photo {
    display: block;
}


.services .services-experts__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.services .services-experts__content {
    display: flex;
    flex-direction: column;
    padding: var(--PADDING-VERTICAL) 0;
    gap: 32px;
}

.services .services-experts__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;

}

.services .services-experts__item {
    padding: 24px;
    border: 1px solid #C4BEBA;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services .services-experts__item .services-text {
    flex: 1;
}

@media(min-width: 762px) {
    .services .services-experts__list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 32px;
    }

    .services .services-experts__content {
        width: 50%;
        gap: 48px;
    }

    .services .services-experts__photo {
        width: 50%;
    }
}

@media(max-width:761px) {
    .services .services-experts {
        flex-direction: column;
        margin-bottom: 0;
        gap: 8px;
    }
}

/*************** BEAUTY EXPERT GUIDE ********************/

.services .services-beauty-expert-guide {
    max-width: 1262px;
    margin: var(--PADDING-VERTICAL) var(--PADDING-HORIZONTAL);
    width: calc(100% - 2 * var(--PADDING-HORIZONTAL));
    display: flex;
    flex-direction: row;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #C4BEBA;
}

.services .services-beauty-expert-guide__photo {
    display: block;
}

.services .services-beauty-expert-guide__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services .services-beauty-expert-guide__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--PADDING-VERTICAL) 40px;
}

@media (min-width:762px) {
    .services .services-beauty-expert-guide {
        text-align: left;
    }

    .services .services-beauty-expert-guide__photo {
        width: 50%;
    }

    .services .services-beauty-expert-guide__content {
        width: 50%;
        align-items: flex-start;

    }
}

@media (max-width:761px) {
    .services .services-beauty-expert-guide__content {
        padding: 24px;
        padding-bottom: 40px;
    }

    .services .services-beauty-expert-guide {
        flex-direction: column;
        text-align: center;
        margin-bottom: 0;
        margin-top: 16px;
    }
}

/* ************** GIFTS ******************* */


.services .services-gift__swiper {
    margin: calc(var(--PADDING-VERTICAL) - 3px) -3px;
    width: 100%;
    padding: 3px;
    padding-bottom: 79px;
}

.services .services-gift__item {
    max-width: 356px;
    width: 100%;
    font-size: 18px;
    text-decoration: none !important;
    color: var(--CHARCOAL) !important;
}

.services .services-gift__item:hover .services-link {
    text-decoration: none !important;
}

.services .services-gift__item:focus-visible picture,
.services .services-gift__item:focus-visible .services-link {
    box-shadow: var(--FOCUS);
}

.services .services-gift__item picture {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 16px;
}

.services .services-gift__item img {
    display: block;
    width: 100%;
    height: auto;
}

@media(min-width: 1024px) {
    .services .services-gift__swiper {
        padding-bottom: 3px;
    }

    .services .swiper-pagination {
        display: flex !important;
        justify-content: flex-start !important;
    }
}

@media(max-width: 1023px) {
    .services .services-gift__swiper {
        overflow: visible;
    }
}

/* ************** BOUTIQUES ******************* */


.services .services-boutique__swiper {
    margin: var(--PADDING-VERTICAL) 0px;
    width: 100%;
    padding: 0;
    max-width: 1048px;
}

.services .services-boutique__item {
    max-width: 356px;
    width: 100%;
    font-size: 18px;
    text-decoration: none !important;
    color: var(--CHARCOAL) !important;
}

.services .services-boutique__item .services-bold {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 8px;
}

.services .services-boutique__item picture {
    display: block;
    width: 100%;
    margin-bottom: 16px;
}

.services .services-boutique__item img {
    display: block;
    width: 100%;
    height: auto;
}

@media(max-width: 1023px) {
    .services .services-boutique__swiper {
        overflow: visible;
        padding-bottom: 64px;
        margin-bottom: 0;
    }

    .services .services-boutique__swiper .swiper-pagination {
        justify-content: flex-start;
    }

    .services .services-boutique__swiper .swiper-pagination-bullet {
        background-color: #333 !important;
        transition: width 0.3s ease-in-out;
    }

    .services .services-boutique__swiper .swiper-pagination-bullet-active {
        width: 32px !important;

    }

    .services .services-boutique__swiper .swiper-buttons-navigation {
        display: flex !important;
        gap: 0;
        margin: 0;
    }

    .services .services-boutique__swiper .swiper-button-next,
    .services .services-boutique__swiper .swiper-button-prev {
        position: relative !important;
        color: #333 !important;
        top: auto !important;
        bottom: 3px !important;
        right: auto !important;
        left: auto !important;
        margin-top: 0 !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 5px !important;
        background-color: #FFF !important;
        border: 0px solid #B0A9A5 !important;
        outline: 0;
    }

    .services .services-boutique__swiper .swiper-button-next:hover,
    .services .services-boutique__swiper .swiper-button-prev:hover {
        box-shadow: none !important;
    }

    .services .services-boutique__swiper .swiper-button-next:focus-visible,
    .services .services-boutique__swiper .swiper-button-prev:focus-visible {
        box-shadow: none !important;
    }

    .services .services-boutique__swiper .swiper-button-next:after,
    .services .services-boutique__swiper .swiper-button-prev:after {
        font-size: 0px !important;
        background-image: url("../img/arrow.svg") !important;
        background-size: 24px 24px !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        width: 24px !important;
        height: 24px !important;
    }

    .services .services-boutique__item {
        max-width: unset;
    }
}