/* ************ MAIN STYLES *************** */
:root {
    --HEADER-HEIGHT: 147px;
}

@media(max-width:1023px) {
    :root {
        --HEADER-HEIGHT: 147px;
    }
}

div#wrapper {
    padding-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;
    overflow-x: hidden;

    padding-top: var(--HEADER-HEIGHT);
}

body,
html {
    scroll-behavior: smooth;
    margin: 0;
}

.services * {
    box-sizing: border-box;
    font-family: var(--FONT-GOTHAM-BOOK);
}

.services a:focus-visible,
.services button:focus-visible {
    box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #6893D2;
}

.services .hide {
    display: none !important;
}


.services .services-text-center {
    text-align: center;
}

.services .services__main-title {
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-size: 2.5rem;
    margin-bottom: 8px;
    font-weight: 500;
    margin-top: 80px;
    color: #333;
}

.services .services__main-title.services__main-title-benefit {
    margin-top: 85px;
}

.services .services__main-text {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 14px;
    color: #333;
}

.services .services__main-text-center {
    max-width: 831px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    color: #333;
}

@media(max-width:1023px) {
    .services .services__main-text-center {
        padding: 0;
    }
}

/******************************************** NAV ******************************************/

.services .services-nav {
    position: fixed;
    z-index: 1000;
    width: 100%;
    left: 0px;
    bottom: 0px;
    height: 0px;
    display: flex;
    justify-content: center;
}

.services .services-nav__wrapper {
    margin: 20px auto;
    background-color: #000;
    display: inline-flex;
    align-items: center;
    padding: 10px;
    gap: 70px;
    border-radius: 150px;
    position: absolute;
    bottom: -150px;
    transition: bottom 0.5s ease-in-out;
}

.services .services-nav__list {
    display: flex;
    gap: 20px;
}



.services .services-nav__link {
    color: #fff;
    font-family: var(--FONT-GOTHAM-BOOK);
    padding: 12px 10px;
    border-radius: 50px;
    font-size: 13px;
    line-height: 18px;
    white-space: nowrap;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}



.services .services-nav__link:hover {
    color: #fff;
}

.services .services-nav__link::after {
    display: block;
    position: absolute;
    content: " ";
    height: 14px;
    width: 1px;
    background-color: #fff;
    left: -10px;
    top: calc(50% - 7px)
}

.services .services-nav__link:first-child::after {
    display: none;
}

.services .services-nav__link[data-active="1"] {
    color: #fff;
    padding: 12px 10px;
    border-radius: 50px;
    background-color: #333;
}




.services .services-nav__current {
    display: none;
}

.services .services-nav__current .listOpenerMenu {
    display: none;
}



/* .services-anchor {
    margin-top: calc(-1 * var(--HEADER-HEIGHT));
    height: var(--HEADER-HEIGHT);
} */


@media(max-width:1023px) {
    .services .services-nav__wrapper {
        display: grid;
        width: calc(100% - 32px);
        grid-template-columns: 1fr auto;
        grid-template-rows: 42px 1fr;
        grid-column: span 2;
        gap: 0;
        border-radius: 32px;

    }


    .services .services-nav__list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        overflow: hidden;
        height: 42px;
        padding-left: 10px;
        position: relative;
        bottom: auto;
        left: auto;
        max-height: 0px;
        transition: max-height 0.2s ease-in-out;
        order: 3;
        height: auto;
        grid-column: span 2;
    }

    .services .services-nav__current {
        display: block;
        color: #fff;
        font-family: var(--FONT-GOTHAM-BOOK);
        padding: 12px 20px;
        padding-left: 30px;
        border-radius: 50px;
        font-size: 13px;
        line-height: 18px;
        white-space: nowrap;
        text-transform: uppercase;
        position: relative;
        cursor: pointer;
        text-decoration: none;
    }

    .services .services-nav__current::before {
        content: " ";
        display: block;
        background-image: url("../svg/nav-down.svg");
        height: 24px;
        width: 24px;
        position: absolute;
        left: 0;
        top: 10px;
    }

    .services .services-nav__list[data-open="1"]+.services-nav__current::before {
        background-image: url("../svg/nav-close.svg");
    }

    .services .services-nav__link {
        display: none;
        display: block;
    }

    .services .services-nav__link::after {
        display: none;
    }

    .services .services-nav__list {
        height: auto;
    }
}



/* **************** ARTICLES / SWIPER ******************/

.services .services__container-articles {
    max-width: 1048px;
    margin: auto;
    margin-bottom: 65px;
}

.services .services__articles {
    max-width: 1048px;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
}

.services .services__article {
    max-width: 508px;
    color: #333333;
}

.services .services__article-title {
    font-size: 1rem;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    margin-bottom: 8px;
    font-weight: 500;
    margin-top: 16px;
}



.services .services__article-text {
    margin-bottom: 24px;
    font-weight: 400;
}

@media (max-width: 1070px) {
    .services .services__article-title {
        margin-top: 24px;
    }

    .services .services__article-text {
        margin-bottom: 24px;
    }
}



.services .services__article-link {
    font-size: 0.6875rem;
    color: #333;
    text-decoration: underline;
    font-weight: 400;
}

.services .services__swiper {
    padding-bottom: 60px;
    width: 100%;
}

.services .services__swiper-wrapper {
    height: auto !important;
}

.swiper-pagination {
    text-align: left !important;
    margin-left: 16px;
}

.swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background-color: #333333 !important;
    opacity: 1 !important;
    border-radius: 50px !important;
}

.swiper-buttons-pagination__bookevent .swiper-pagination-bullet {
    background-color: #D3CCC8 !important
}

.swiper-pagination-bullet-active {
    width: 32px !important;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px 8px 0 !important;
}

.swiper-buttons-navigation {
    position: absolute !important;
    z-index: 11 !important;

    bottom: 0 !important;
    right: 0 !important;

    width: 90px !important;
    display: flex !important;
    flex-direction: row-reverse !important;
    gap: 10px !important;
    margin-right: 16px !important;
}


.swiper-button-next,
.swiper-button-prev {
    position: relative !important;
    color: #333 !important;
    top: auto !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    margin-top: 0 !important;

    width: 40px !important;
    height: 40px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 25px !important;
}

.swiper-buttons-navigation__bookevent .swiper-button-next,
.swiper-buttons-navigation__bookevent .swiper-button-prev {
    color: #D3CCC8 !important;
}

.services__article-swiper-slide {
    max-width: 508px;

    img {
        width: 100%;
    }
}

.services-last-swiper-slide {
    margin-right: 0 !important;
}


@media (max-width: 1070px) {
    .services .services__swiper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .services .services__article-swiper-slide {
        max-width: 508px;
    }

    .services .services__main-title {
        font-size: 2.25rem;
        margin-top: 40px;
    }

    .services .services__article-text {
        margin-top: 8px;
    }

    .services .services__main-text {
        margin-top: 8px;
    }


}

@media (max-width: 576px) {
    .services .services__swiper {
        padding: 0 16px 75px;
    }

    .services .services__article-swiper-slide {
        max-width: 284px;
    }
}



/* ************** BANNER ************** */
.services .services-banner__bloc-picture {
    position: relative;
    margin: 40px auto 60px;
}

.services .services-banner__bloc-picture-infos {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.services .services-banner__left {
    justify-content: start;
    margin-left: 8%;
}

.services .services-banner__right {
    justify-content: end;
    margin-right: 8%;
}



.services .services-banner__right-black .services-banner__bloc-picture-title,
.services .services-banner__right-black .services__main-text {
    color: #333333;
}

.services .services-banner__bloc-picture-infos-container {
    width: 420px;
}

.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;
}

.services .services-banner__bloc-picture-link {
    background-color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    font-weight: normal;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    display: inline-block;
    border-radius: 5px;
    border: 1px solid #B0A9A5;
    color: #333;
    transition: all 250ms;
    font-size: 14px;
}

.services .services-banner__bloc-picture-link:hover {
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.15);
}

.services .services-banner__bloc-picture-img img {
    width: 100%;
    height: auto;
}

@media(max-width: 1024px) {
    .services .services-banner__bloc-picture {
        margin: 40px -20px 60px
    }
}


@media(max-width: 768px) {
    .services .services-banner__bloc-picture-infos-container {
        width: auto;
        margin: 0 20px;
    }

    .services .services-banner__bloc-picture-infos {
        margin: 16px auto 0;
        position: relative;
        text-align: center;
        justify-content: center;

    }

    .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;
}

.services .services-header__visual {
    flex: 1 1 50%;
    height: 536px;
    background-image: url('../img/header-desktop.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.services .services-header__content {
    flex: 1 1 50%;
    background-color: #FBF6F3;
    display: flex;
    align-items: center;
}

.services .services-header__bloc {
    max-width: 540px;
    margin-left: 80px;
}

.services .services-header__title {
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-weight: 500;
    color: #B40024;
    font-size: 3.75rem;
    line-height: 3.75rem;
    margin-top: 0;
    margin-bottom: 16px;
}

.services .services-header__text {
    font-family: var(--FONT-GOTHAM-BOOK);
    color: #333333;
    line-height: 1.4375rem;
    font-size: 1rem;
}


@media (max-width: 1024px) {
    .services .services-header {
        flex-direction: column;
    }

    .services .services-header__bloc {
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 24px 12px;
    }

    .services .services-header__title {
        max-width: 270px;
        margin: 0 auto 16px;
        font-size: 3.125rem;
    }

    .services .services-header__visual {
        flex: none;
        height: 362px;
    }
}




/* @media (max-width: 1024px){

    
    .services .services-nav{
        display: block;
    }
    .services .services-nav__btn{
        display: block;
        background-color: #333333;
        border-radius: 30px;
        border: 0;
        color: #fff;
        width: calc(100% - 40px);
        margin: 24px auto 0;
        padding: 20px 15px 20px 44px;
        text-align: left;
        background-image: url('../svg/nav-down.svg');
        background-repeat: no-repeat;
        background-position: 15px 14px;
        cursor: pointer;
        max-width: 350px;
    }

    .services .services-nav__btn.open{
        background-image: url('../svg/nav-close.svg');
        border-radius: 30px 30px 0 0;
    }

    .services .services-nav__list{
        width: calc(100% - 40px);
        margin: 0 auto;
        display: none;
        border-radius: 0 0 30px 30px;
        padding-bottom: 15px;
        max-width: 350px;
    }

    .services .services-nav__list.show{
        display: block;
    }

    .services .services-nav__item{
        padding: 5px 15px;
    }


} */


/************** CONTAINER ******************/
.services .services-container {
    max-width: 1264px;
    margin: 40px auto
}

@media (max-width: 1024px) {
    .services .services-container {
        margin: 40px 20px;
    }

}


/*************** EXPLORE YOUR SKIN ********************/

.services .services-explore__visual {
    display: none;
}

@media (max-width: 1024px) {
    .services .services-explore__visual {
        display: block;
    }
}

/*************** MEET OUR EXPERTS ********************/

.services .services-meet {
    max-width: 1048px;
    margin: auto;
}


.services .services-meet__header {
    text-align: center;
}

.services .services-meet__title {
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-size: 1.5rem;
    color: #B40024;
    margin-bottom: 8px;
    font-weight: 500;
}

.services .services-meet__text {
    max-width: 830px;
    margin: 0 auto;
    font-size: 0.875rem;
    line-height: 1.25rem;
}





@media (max-width: 1024px) {
    .services .service-meet {
        margin: 0;
    }

    .services .services-meet__title {
        margin-top: 64px;
        margin-bottom: 16px;
    }

}


/* ***************** BOOK EVENTS ******************/

.services .services-meet__bookevent {
    max-width: 1048px;
    margin: 64px auto 80px;
    display: flex;
    gap: 32px;
}

.services .services-meet__bookevent-blocs {
    flex: 1 1 50%;
}

.services .services-meet__bookevent-bloc {
    border-top: 1px solid #E9E3DE;
    padding: 40px 0;
    height: auto;
}

.services .services-meet__bookevent-title {
    color: #AD9483;
    font-size: 1rem;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 500;
}

.services .services-meet__bookevent-text {
    font-weight: 400;
    font-size: 0.875rem;
    margin-bottom: 10px;
    line-height: 1.25rem;
}

.services .services-meet__bookevent-link {
    font-size: 0.6875rem;
    color: #333;
    text-decoration: underline;
}

.services .services-meet__bookevent-picture img {
    display: block;
    height: auto;
    width: 100%;
    border-radius: 8px;
}


.services .services-meet__bookevent-swiper {
    display: none;
}

@media (max-width: 1100px) {
    .services .services-meet__bookevent-picture {
        padding: 0 16px 64px;
    }

    .services-meet__bookevent-blocs {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {

    .services .services-meet__bookevent {
        flex-direction: column;
        margin-bottom: 0;
    }

    .services .services-meet__bookevent-blocs {
        display: none;
    }

    .services .services-meet__bookevent-swiper {
        display: block;
    }

    .services .services-meet__bookevent-swiper-slide {
        max-width: 282px;
        padding-top: 40px;
        border-top: 1px solid #E9E3DE;
    }
}


/* **************** TOOLS **************/

.services .services-tools {
    background-color: #FBF6F3;
    padding: 120px 0;
}

.services .services-tools__container {
    display: flex;
    gap: 60px;
    margin-left: calc((100% - 1264px) / 2);
}

.services .services-tools__intro {
    max-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__text {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.services .services-tools__swiper {
    width: 100%;
    height: 100%;
}

.services .services-tools__swiper-slide {
    width: 285px;
    height: 356px;
    text-align: center;
    font-size: 18px;
    background: transparent;
    position: relative;
}

.services .services-tools__swiper-slide .swiper-slide-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.services .services-tools__swiper-slide .swiper-slide-text {
    display: none;
    color: #333333;
    font-size: 32px;
    font-family: var(--FONT-GOTHAM-LIGHT);
    font-weight: 300;
    line-height: 40px;
}

.services .services-tools__swiper-slide .swiper-slide-text.white {
    color: #fff;
}


.services .services-tools__swiper-slide .swiper-slide-text span {
    display: block;
    font-size: 25px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
}

.services .services-tools__swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services .swiper-buttons-navigation.swiper-buttons-navigation__tools {}

@media (max-width: 1330px) {

    .services .services-tools {
        padding: 40px 0;
    }

    .services .services-tools__container {
        flex-direction: column;
        gap: 15px;
        margin: 0;

    }

    .services .services-tools__intro {
        max-width: 312px;
        margin: 0 16px;
    }




    .services .swiper-buttons-navigation.swiper-buttons-navigation__tools {
        display: flex !important;
    }
}



/* *************** BENEFIT ******************* */

.services .services-banner-benefit {
    justify-content: flex-end;
}

.services .services-banner-benefit>div {
    margin-right: 5%;
}



/* ************** GIFTS ******************* */
.services .services-gift {
    background-color: #FBF6F3;
    padding: 80px 0;
}

.services .services-gift__intro {
    margin-left: 20px;
    margin-right: 20px;
}

.services .services-gift__container {
    max-width: 1164px;
    margin: 0 auto;
}

.services .services-gift__title {
    font-weight: normal;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-size: 2.25rem;
    color: #B40024;
    text-align: center;
    margin-top: 0;
    margin-bottom: 24;
}


.services .services-gift__swiper {
    margin-top: 40px;
}

.services .services-gift__swiper-slide {
    width: 285px;
    font-size: 18px;
}

.services .services-gift__swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.services .services__gift-title {
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-size: 1rem;
    margin-top: 16;
    margin-bottom: 8px;
    font-weight: 500;
}

@media(max-width: 1024px) {


    .services .services-gift {
        padding-top: 64px;
        padding-bottom: 40px;
    }
}



/* *************** SURCOUCHE *****************/

i-footer footer {
    margin-top: 0 !important;
}