@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --white: #ffffff;
  --light: #fbf8f4;
  --black: #4e4e4e;
  --gray:#4E4E4E;
  --brown: #a8887e;
  --green: #647455;
  --green_2: #a19b88;
  --dark_green: #71776A;
  --cream: #F8F4ED;
  --grey: #EDE9E1;
  --pink_dark:#E9D3C8;
  --pink_light: #F4E8E3;
}
@media (min-width: 769px) {
  :root {
      --font-size: .0694444444vw
  }
}
@media screen and (max-width: 768px) {
  :root {
      --font-size: 0.22vw;
  }
}
input[type="text"] {
    font-size: inherit;
}
html{
  font-size: var(--font-size);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.15;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  margin:0;
  padding:0;
  background: var(--black);
  min-height: 100%;
  scroll-behavior: smooth;
  background-color: var(--pink_light);
}
body{
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18rem;
  font-weight: 500;
  line-height: 1.33;
  color: var(--black);
  position: relative;
  min-height: 100%;
  background-color: var(--pink_light);
}
.noScroll {
    overflow: hidden;
    cursor: default;
}
section{
    padding:140rem 0;
}
main{
    margin-top: 60rem;
}
@media screen and (max-width: 768px) {
    main {
        margin: 0;
    }
}

/*----- TEXTES ------*/
p{
    font-size: 15rem;
    line-height: 1.4;
    margin-bottom: 2vh;
    font-weight: 300;
}

a{
text-decoration: none;
}

/*----- ANIMATIONS KEEMO -----*/
@keyframes keemo_fadeInDown {
    0% {
        visibility: hidden;
       -webkit-transform: translate(-50%, -100%);
       transform: translate(-50%, -100%);
       opacity: 0;
   }
    100% {
        visibility: visible;
       -webkit-transform: translate(-50%, 0);
       transform: translate(-50%, 0);
       opacity: 1;
 }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes ciaoBello {
    0% {
        visibility: visible;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        opacity: 1;
   }
    100% {
        visibility: hidden;
       -webkit-transform: translate(-50%, -100%);
       transform: translate(-50%, -100%);
       opacity: 0;
 }
}


/*---- TOOLS ----*/
.noisy{
    background-image: url(../images/noise.png);
    z-index: 1999;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    position: absolute;
    top:0;
    left: 0;
}


/*----- MENU DESKTOP -----*/
.menu__desktop{
    display: flex;
    flex-direction: row;
    background-color: var(--light);
    padding: 14rem 20rem;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    opacity: 0;
    transition: opacity ease 1.4s;
}
.menu__desktop .left{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.logo__desktop{
    display: block;
    height: 30rem;
    margin-right: 20rem;
}
.menu__dektop-nav{
    display: flex;
    flex-direction: row;
    font-size: 14rem;
}
.menu__dektop-nav li a{
    display: block;
    color: #4E4E4E;
    margin: 0 20rem;
    letter-spacing: 4rem;
    font-size: 12rem;
    text-transform: uppercase;
    transition: opacity 800ms ease;
}
.menu__dektop-nav li a:hover {
    opacity: 0.5;
}
.menu__desktop .right{
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.menu__btnContact{
    display: block;
    font-size: 10rem;
    font-family: "Poppins", sans-serifs;
    letter-spacing: 2rem;
    text-transform: uppercase;
    padding: 10rem 20rem;
    background-color: #ece0d6;
    margin-right: 10rem;
    color: var(--black);
    transition: opacity ease 600ms;
}
.menu__btnContact:hover{
    opacity: 0.6;
}
.menu__insta{
    display: flex;
    margin-left: 10rem;
    color: #4E4E4E;
    transition: opacity ease 600ms;
}
.menu__insta:hover{
    opacity: 0.6;
}
.menu_show{
    opacity: 1;
}

@media (max-width:768px) {
    .menu__desktop{
        display: none;
    }
}

/*----- NAV MOBILE -----*/
.nav__mobile{
    width: 100%;
    display: flex;
    position: fixed;
    bottom: -260px;
    left: 0;
    z-index: 1000;
    border-top: 1px solid white;
    visibility: hidden;
    opacity: 0;
    transition: all 1s ease;
    background: var(--light);
    box-shadow: rgb(71 45 21 / 30%) 0px 0px 14px;
}
.nav__mobile a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 18rem 0;
    color: var(--black);
    font-size: 18rem;
    letter-spacing: 2rem;
    border-right: 1px solid #dfd4c9;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.6s ease;
    cursor: pointer;
}
@media (max-width:768px) {
    .nav__mobile{
        bottom: -1px;
        left: 0;
        width: 100%;
        visibility: visible;
        opacity: 1;
    }
}

/*----- MENU MOBILE -----*/
.menu_mobile {
    visibility: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    align-items: center;
    top: 0;
    padding: 50rem 20rem 20rem 20rem;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--light);
    background: #2b2b2bb3;
    opacity: 0;
    z-index: 1161;
    transition: 600ms;
    overflow-y: auto;
}
.logo__menuMobile{
    display: block;
    width: 30vw;
    height: 15vh;
}
.langue__menuMobile{
    display: flex;
    position: absolute;
    top: 20rem;
    right: 20rem;
    z-index: 99;
    font-size: 14rem;
    color:var(--light);
    font-weight: 400;
}
.menu_mobile ul{
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.menu_mobile ul li{
    text-align: center;
}
.menu_mobile ul a{
    display: flex;
    align-items: center;
    padding: 16px 10px;
    font-size: 22rem;
    font-weight: 300;
    letter-spacing: 4rem;
    text-align: center;
    align-content: center;
    text-decoration: none;
    justify-content: center;
    color: #FFF;
}
.menu_mobile ul a a:hover{
    color: var(--pink_dark);
    transition: 300ms linear;
}
.close_menu{
    display: block;
    bottom: 20rem;
    z-index: 1999;
    padding: 10px;
    width: 100%;
    text-align: center;
    color: var(--light);
    cursor: pointer;
}
.close_menu:hover{
    color: var(--pink_dark);
}
.close_menu svg{
    width: 40rem;
    height: 40rem;
}
@media (max-width: 900px) {
    .menu_mobile.active{
        display: flex;
        visibility: visible;
        position: fixed;
        left: 0;
        background: rgb(0 0 0 / 86%);
        backdrop-filter: blur(10px);
        opacity: 1;
        transition: opacity 1s;
    }
}




/*----- HEADER -----*/
header{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    align-items: center;
    align-self: center;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.header__txt{
    position: fixed;
    left: 50%;
    bottom: 90rem;
    z-index: 999;
    animation: 2s ease 1s normal forwards 1 keemo_fadeInDown;
    opacity: 0;
}
.header__txt-off{
    animation: 1s ease 0s normal forwards 1 ciaoBello;
}
header:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50vh;
    opacity: .85;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgb(28 29 35 / 80%) 0%, rgba(0, 0, 0, 0) 100%);
}
header h1{
    display: block;
    bottom: 110rem;
    line-height: 42rem;
    font-size: 40rem;
    font-weight: 400;
    text-align: center;
    font-family: "Playfair Display", serif;
    z-index: 3;
    margin-bottom: 40rem;
    color: #f7f0ea;
    filter: drop-shadow(0px 0px 30px rgba(0,0,0,0.6));
}
.logo__main {
    width: 170px;
    position: absolute;
    margin-top: 90rem;
    z-index: 999;
    background: transparent;
    filter: drop-shadow(0px 0px 30px rgba(0,0,0,0.6));
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.logo__main-active {
    width: 90px;
    position: fixed;
    top: 4%;
    z-index: 3;
}
header video{
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}
.video_background{
    object-fit: cover;
    width: 100%;
    max-height: 100%;
    filter: brightness(80%);
}
.video_overlay{
    display: flex;
    position: absolute;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 20%, rgba(0,0,0,0) 100%);
    width: 100%;
    height: 50vh;
    z-index: 2;
}
.scroll-down-cursor {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    z-index: 3;
}
.scroll-down-cursor .border {
    height: 42px;
    width: 24px;
    border: 1px solid var(--pink_light);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
}
.scroll-down-cursor .cursor {
    height: 22px;
    stroke: var(--pink_light);
    animation: arrow-scroll 3s infinite ease;
}
.scroll-down-text{
    display: block;
    font-size: 14rem;
    color: var(--pink_light);
    margin-bottom: 10rem;
}
@keyframes arrow-scroll {
    0% {
        transform: translateY(8px)
    }

    50% {
        transform: translateY(-9px)
    }

    55% {
        transform: translateY(-9px)
    }

    to {
        transform: translateY(8px)
    }
}

@media (max-width: 920px){
    header{
      height: 100vh;
      width: 100%;
    }
    .scroll-down-cursor {
      display: flex;
    }
    .logo__main{
        width: 120px;
        margin-top: 60rem;
    }
    header .content{
        width: 70vw;
        height: 76%;
    }
  }


/*----- BUTTONS -----*/
.button_pink{
    font-size: 12rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 20rem 30rem;
    background-color: #F0DED7;
    color: var(--black);
    transition: background-color ease 600ms;
}
.button_pink:hover{
    background-color: rgb(228, 203, 192);
    color: var(--black);
}
.button_brown{
    font-size: 12rem;
    font-family: "Poppins", sans-serifs;
    letter-spacing: 2rem;
    text-transform: uppercase;
    padding: 18rem 30rem;
    background-color: #dac3b1;
    color: var(--white);
    transition: background-color ease 600ms;
}
.button_brown:hover{
    background-color: #d6b8a1;
    color: var(--white);
}

/*----- TITLES -----*/
.title_46{
    font-size: 46rem;
    font-weight: 500;
    font-family: "Playfair Display", serif;
    margin-bottom: 10rem;
}
.title_section{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18rem;
    letter-spacing: 4rem;
    text-transform: uppercase;
    padding: 0rem 0 90rem 0;
}
.title_2636{
    font-size: 64rem;
    line-height: 70rem;
    color: var(--gray);
    font-family: 'Butler';
    font-weight: 300;
    margin-bottom: 18rem;
}


/*----- SECTION : PRESENTATION -----*/
.main_index{
    margin-top:0;
}
.presentation {
    position: relative;
    display: flex;
    flex-direction: row;
    height: 640rem;
    background-color: #ECE0D5;
    padding:0;
}
.presentation .left{
    width: 28vw;
    background-image: url(../images/bg_02.jpg);
    background-repeat: no-repeat;
    background-size: 100% 90%;
}
.presentation .content{
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 290rem;
    top: 50%;
    transform: translateY(-50%);
    width: 530rem;
    place-items: start;
}
.presentation > .content .text{
    display: flex;
    flex-direction: column;
    align-items: start;
}
.presentation .baseline{
    display: block;
    margin-bottom: 40rem;
    font-size: 13rem;
    text-align: center;
    letter-spacing: 2rem;
    font-weight: 300;
}
.welcome__text{
    font-size: 50rem;
    font-family: 'BonVivant';
    font-style: normal;
    right: 150rem;
    rotate: -9deg;
    color: #ece0d6;
    bottom: 0rem;
    position: absolute;
}
.HFD88J{
    display: flex;
    position: absolute;
    left: 256rem;
    top: 80rem;
    width: 260rem;
    height: 410rem;
    background-image: url(../images/aurelya_001.jpg);
    background-repeat: no-repeat;
    background-position: center 54%;
    background-size: 150%;
    border-top-left-radius: 300px;
    border-top-right-radius: 300px;
    z-index: 98;
}
@media (max-width: 768px){
    .presentation {
        flex-direction: column;
        height: 1030rem;
        background-color: #f8f7f3;
    }
    .presentation .left {
        width: 100%;
        background-size: 130% 100%;
        height: 80vh;
        background-position: right;
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }
    .presentation .content {
        position: absolute;
        display: flex;
        flex-direction: column;
        left: 50%;
        top: 49%;
        transform: translateX(-50%);
        width: 84vw;
        place-items: center;
        background: white;
        padding: 40rem 40rem;
        z-index: 99;
    }
    .HFD88J {
        left: -20px;
        width: 330rem;
        height: 480rem;
    }
    .welcome__text {
        right: 30rem;
        top: 0;
        font-size: 60rem;
        color: #ffffff;
    }
}


/*----- SECTION : WHAY I DO -----*/
.whatido{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items:center;
    justify-content: center;
    background-color: #ecddd2;
    padding: 200rem 0 140rem 0;
}
.whatido .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 820rem;
    width: 1200px;
}
.wid__list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    row-gap: 30rem;
}
.wid__list .wid__item {
    background: var(--white);
    grid-column: span 6;
    height: 500rem;
}
.wid__number{
    font-size: 40rem;
    color: var(--pink_dark);
    font-family: 'Butler';
    font-weight: 300;
}
.wid__title{
    font-size: 48rem;
    color: var(--gray);
    font-family: 'Butler';
    font-weight: 300;
    margin-bottom: 18rem;
}
.wid__todo{
    list-style: none;
    align-items: center;
    font-size: 14rem;
    text-align: center;
}
.wid__todo li{
    padding: 14rem 0;
    border-bottom: 1px solid #dfdede;
}
.wid__button{
    display: flex;
    margin-top: auto;
}
.wid__item-container{
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    padding: 50rem 20rem;
    position: relative;
}
.wid__list .wid__item:first-child{
    background-image: url(../images/aura_workout.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.wid__list .wid__item:nth-child(4){
    background-image: url(../images/aura_wellness.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.wid__list .wid__item:nth-child(5){
    background-image: url(../images/aura_beauty.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
@media (max-width: 768px){
    .whatido{
        padding: 300rem 0 140rem 0;
    }
    .whatido .container{
        padding: 0 30rem;
        width: 100%;
    }
    .wid__list {
        row-gap: 0;
    }
    .wid__list .wid__item{
        grid-column: span 12;
    }
    .wid__list .wid__item:first-child, .wid__list .wid__item:nth-child(4), .wid__list .wid__item:nth-child(5){
        order:1;
        height: 300rem;
        margin-top: 40rem;
    }
    .wid__list .wid__item:nth-child(2){
        order: 2;
    }
    .wid__list .wid__item:nth-child(3){
        order: 4;
    }
    .wid__list .wid__item:nth-child(4){
        order: 3;
    }
    .wid__list .wid__item:nth-child(5){
        order: 5;
    }
    .wid__list .wid__item:nth-child(6){
        order: 6;
    }
    
}

/*----- SECTION : CERTIFICATIONS -----*/
.main-certifications section{
    padding: 80rem 0 !important;
}
.main-certifications h2{
    margin-bottom: 60rem;
}
.certifications{
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
}
.certifications .container{
    display: grid;
    flex-direction: row;
    position: relative;
    width: 60%;
    margin: 20rem 0;
}
.certifications .content{
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    bottom: -50rem;
    align-items: center;
    justify-content: center;
    width: 500rem;
    padding:40rem;
    z-index: 2;
    background: #FFF;
}
.certifications_img{
    display: block;
    z-index: 1;
    width: 670rem;
    border: 10rem solid #FFF;
    top:20rem;
}
@media (max-width: 768px){
    .certifications{
        padding: 140rem 20rem 0 20rem;
        height: auto;
    }
    .certifications .container{
        width: 90%;
        flex-direction: column;
        margin: 0 0 0rem 0;
    }
    .certifications .content {
        position: relative;
        width: 100%;
        order: 2;
        bottom: -10rem;
        text-align: center;
    }
}


/*-- Certifications Yoga --*/
.certifications-yoga{
    background: var(--grey);
}
.certi_yoga{
    position: relative;
    height: 480rem;
    width: 100%;
}
.certi_yoga_01{
    display: flex;
    position: absolute;
    left: 0;
    width: 55%;
    top: 0;
    z-index: 2;
    border: 9px solid var(--light);
}
.certi_yoga_02{
    display: flex;
    position: absolute;
    right: 0;
    width: 55%;
    bottom: 0;
    z-index: 1;
    border: 9px solid var(--light);
}
@media (max-width: 768px){
    .certi_yoga{
        position: relative;
        height: auto;
        width: 100%;
    }
    .certi_yoga_01{
        width: 100%;
        position: relative;
        margin-bottom: 20rem;
    }
    .certi_yoga_02{
        width: 100%;
        position: relative;
    }
}

/*-- Certifications Reiki --*/
.certifications-reiki{
    background: var(--pink_dark);
}
.certi_reiki{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(100px, auto);
}
img.certi_reiki_01 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

img.certi_reiki_02 {
    grid-column: 2 / 2;
    grid-row: 1 / 2;
}

img.certi_reiki_03 {
    grid-column: 1/3;
    grid-row: 2;
}
@media (max-width: 768px){
    img.certi_reiki_01 {
        grid-column: 1/4;
        grid-row: 1;
    }
    
    img.certi_reiki_02 {
        grid-column: 1/4;
        grid-row: 2;
    }
    
    img.certi_reiki_03 {
        grid-column: 1/4;
        grid-row: 3;
    }
}

/*-- Certifications Lagree --*/
.certifications-reiki{
    background: var(--cream);
}
.certi_reiki{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(100px, auto);
}

/*--- GO UP BUTTON---*/
.goingup{
    visibility: hidden;
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 99;
    opacity: 0;
    -ms-transform-origin-y: 20px;
    -webkit-transition: all 800ms ease;
    -moz-transition: all 800ms ease;
    -ms-transition: all 800ms ease;
    transition: all 800ms ease;
    mix-blend-mode: exclusion;
}
.goingup-active{
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 800ms ease;
    -moz-transition: all 800ms ease;
    -ms-transition: all 800ms ease;
    transition: all 800ms ease;
}
.goingup a{
    display: block;
    height: auto;
    width: auto;
}
.goingup svg {
    width: 40rem;
    height: 40rem;
    stroke: #adadad;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }
@media (max-width: 1024px){
    .goingup{
        bottom: 70rem;
        right: 10rem;
    }
}

/*----- QUOTE -----*/
.quote{
    height: 400rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
}
.quote p{
    font-size: 44rem;
    line-height: 46rem;
    font-family: 'Butler';
    font-weight: 300;
    text-align: center;
}
.quote .content{
    display: flex;
    flex-direction: column;
    z-index: 2;
    width: 50%;
    text-align: center;
    mix-blend-mode: color-burn;
    color: var(--black);
}
.quote span{
    text-transform: uppercase;
    font-size: 14rem;
}
.quote_vidbg{
    /* display: block; */
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.quote_vidcontent{
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.quote_vidcontent video{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.se-icon svg {
    fill: #6e6363;
    width: 20rem;
    margin-bottom: 20rem;
}
@media (max-width: 768px){
    .quote{
        height: 560rem;
    }
}


/*----- INSTAGRAM -----*/
.instagram{
    display: flex;
    flex-direction: row;
    height: 360rem;
    position: relative;
    z-index: 2;
}
.insta__grid{
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    overflow: hidden;
}
.insta__grid > img{
    width: 360rem;
    height: 360rem;
}
.insta_content{
    display: flex;
    flex-direction: row;
    position: absolute;
    background-color: var(--white);
    padding: 40rem 40rem;
    left: 50%;
    align-items: center;
    width: 60%;
    bottom: -70rem;
    transform: translateX(-50%);
    z-index: 1200;
}
.insta_title{
    display: block;
    font-size: 46rem;
    color: var(--gray);
    font-family: 'Butler';
    margin-right: 40rem;
    padding-right: 40rem;
    font-weight: 300;
    border-right: 1px solid #d7d5d5;
}
.inta_link{
    font-size: 16rem;
    color: var(--pink_dark);
    text-transform: uppercase;
}
@media (max-width: 768px){
    .insta_content{
        width: 84%;
        bottom: -70rem;
        flex-direction: column;
    }
    .insta_title{
        margin-right: 0;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #d7d7d7;
        padding-bottom: 20rem;
        padding-top:20rem;
        margin-bottom: 40rem;
    }
    .insta__grid {
        flex-direction: row;
    }
    .insta__grid > img {
        width: 160rem;
        height: 160rem;
    }
    .insta_right{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
}


/*----- FOOTER -----*/
footer{
    display: flex;
    padding: 170rem 240rem 100rem 240rem;
    background-color: var(--pink_light);
    font-size: 12rem;
    font-weight: 400;
    justify-content: space-between;
}
.footer__logo{
    height: 100rem;
}
.footer__navigate li a{
    display: block;
    font-size: 12rem;
    margin-bottom: 10rem;
    letter-spacing: 2rem;
    text-transform: uppercase;
    color: #4E4E4E;
    transition: opacity 800ms ease;
}
.footer__navigate li a:hover {
    opacity: 0.5;
}
.footer__contact{
    display: flex;
    flex-direction: column;
}
.footer__contact h3{
    display: block;
    margin-bottom: 20rem;
}
.footer__contact .mail{
    display: block;
    margin-bottom: 4rem;
}
.footer__contact a{
    color: var(--black);
}
@media (max-width: 768px){
    footer{
        flex-direction: column;
        padding: 150rem 40rem 10rem 40rem;
    }
    .footer__logo {
        margin: 0;
        order: 3;
    }
    .footer__navigate {
        order:2;
        margin: 60rem 0;
    }
    .footer__navigate li a{
        text-align: center;
    }
    .footer__contact{
        order:1;
        text-align: center;
    }
}


/*----- COPYRIGHT -----*/
.copyright{
    display: flex;
    padding: 20rem;
    background-color: var(--pink_light);
    font-size: 10rem;
    font-weight: 400;
    color: #9d8d87;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 120rem;
}
.copyright a{
    color: #4E4E4E;
}


/*----- ANIMATE CSS -----*/
.animate__animated.animate__fadeInDown {
    --animate-duration: 2s;
  }


/*----- ABOUT HERO -----*/
.about__hero {
    display: flex;
    width: 100%;
    justify-content: center;
    background-color: #f3ede8;
    background-image: url(../images/about_bg.jpg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    padding: 90rem 0 0 0;
}
.about__hero .container {
    display: flex;
    max-width: 820rem;
    width: 1200px;
    position: relative;
}
.about__hero video{
    height: 590rem;
    object-fit: cover;
    width: 60%;
    max-height: 100%;
    filter: saturate(1.2) contrast(0.8);
    z-index: 1;
    border-top-left-radius: 1300px;
    border-top-right-radius: 1300px;
}
.about__desc{
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: var(--white);
    padding: 50rem 60rem 50rem 60rem;
    width: 400rem;
    right: 0;
    z-index: 2;
    top: 60rem;
    text-align: center;
}
.about__desc h2{
    font-size: 60rem;
    color:#dfae9f;
    font-family: 'BonVivant';
    font-style: normal;
    margin-bottom: 40rem;
    margin-top: -80rem;
}
.about__desc .HH786{
    font-size: 22rem;
    font-family: 'Butler';
    font-weight: 400;
    margin-bottom: 20rem;
    text-align: center;
}
.about__desc .HH786::after{
    display: block;
    content: "";
    height: 1px;
    width: 50%;
    background-color: #adadad;
    margin: 0 auto;
    margin-top: 20rem;
}
@media (max-width: 768px){
    .about__hero{
        height: 790rem;
    }
    .about__desc {
        padding: 90rem 60rem 60rem 60rem;
        width: 80vw;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        top: 260rem;
        border-top-left-radius: 400px;
        border-top-right-radius: 400px;
    }
    .about__desc h2 {
        font-size: 80rem;
        font-style: normal;
        margin-bottom: 50rem;
        margin-top: -110rem;
    }
    .about__desc .HH786 {
        margin-bottom: 50rem;
    }
    .about__hero video {
        height: 380rem;
        object-fit: cover;
        width: 100%;
        max-height: 100%;
        filter: saturate(1.2) contrast(0.8);
        z-index: 1;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    .about__hero{
        padding:0;
    }
    .about__hero .container{
        height: 100vh;
    }
}



/*----- SERVICES HERO -----*/
.services__hero{
    display: flex;
    width: 100%;
    height: 80vh;
    background-image: url(../images/services_bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.services__hero .title{
    position: absolute;
    display: flex;
    text-align: center;
    width: 430rem;
    flex-direction: column;
    left: 20vw;
    bottom: -70rem;
    z-index: 2;
    color: var(--white);
    padding: 70rem 50rem 40rem 50rem;
    background-color: var(--pink_dark);
}
.services__hero .title h1{
    font-size: 50rem;
    font-family: 'BonVivant';
    font-style: normal;
    position: absolute;
    top: -21rem;
    left: 50%;
    transform: translateX(-50%);
}
.services__hero .title span{
    font-size: 43rem;
    font-family: 'Butler';
    font-weight: 400;
    margin-bottom: 20rem;
    line-height: 36rem;
    text-align: left;
}
@media (max-width: 768px){
    .services__hero {
        height: 50vh;
    }
    .services__hero .title {
        width: 360rem;
        left: 50%;
        transform: translateX(-50%);
        bottom: -180rem;
        padding: 80rem 50rem 40rem 50rem;
    }
    .services__hero .title h1 {
        font-size: 70rem;
        top: -51rem;
    }
    .services__hero .title span{
        text-align: center;
    }
}

/*----- CERTIFICATIONS HERO -----*/
.certifications__hero{
    display: flex;
    width: 100%;
    height: 73vh;
    background-image: url(../images/certifications/certifications_bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 768px) {
    .certifications__hero {
        height: 55vh;
        background-position: right center;
    }
}
.certifications__hero .title{
    position: absolute;
    left: 20vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--white);
}
.certifications__hero .title h1{
    font-size: 50rem;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 300;
    opacity: 0.8;
    margin: 0;
    letter-spacing: -2.8px;
    padding: 0;
}



/*----- POST 01 > IMAGE LEFT-----*/
.post_01_imgLeft{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 40rem 0 40rem 0;
}
.post_01_imgLeft .container{
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
}
.post_01_imgLeft .content{
    display: flex;
    position: relative;
    background: white;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    grid-column-start: 4;
    grid-column-end: 11;
    padding: 90rem 60rem 90rem 300rem;
}
.post_01_imgLeft .post_01_image{
    position: absolute;
    left: -140rem;
    top: -30rem;
    display: flex;
    width: 410rem;
    height: 90%;
    z-index: 2;
    border-top-left-radius: 400px;
    border-top-right-radius: 400px;
    background-image: url(../images/services/yoga_lifestyle.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat:no-repeat;
}
.list_DJ89{
    list-style: none;
    align-items: center;
    font-size: 16rem;
    flex-direction: column;
    display: flex;
    text-align: center;
    margin-top: 40rem;
    width: 100%;
}
.list_DJ89 li{
    padding: 16rem 0;
    border-bottom: 1px solid #dfdede;
}

@media (max-width: 768px){
    .post_01_imgLeft .content {
        grid-column-start: 1;
        grid-column-end: 13;
        height: 610rem;
        background: none;
    }
    .post_01_imgLeft .post_01_image {
        position: absolute;
        left: -50rem;
        top: -40rem;
        width: 220rem;
        height: 370rem;
        z-index: 2;
        border-top-left-radius: 400px;
        border-top-right-radius: 400px;
    }
    .title_2636 {
        font-size: 52rem;
        position: absolute;
        z-index: 99;
        right: 30rem;
        width: 209rem;
        top: 78rem;
        line-height: 54rem;
        text-align: left;
        color: #727272;
    }
    .list_DJ89 {
        position: absolute;
        width: 80%;
        left: 50%;
        top: 240rem;
        transform: translateX(-50%);
        z-index: 99;
        background: var(--white);
        padding: 40rem 50rem;
        text-align: center;
    }
}


/*----- POST 01 > IMAGE RIGHT-----*/
.post_01_imgRight{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.post_01_imgRight .container{
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
}
.post_01_imgRight .container .title {
    font-size: 64rem;
    line-height: 70rem;
    color: var(--gray);
    font-family: 'Butler';
    font-weight: 300;
    margin-bottom: 30rem;
}
.post_01_imgRight .container .title::after{
    content: '';
    display: block;
    width: 30%;
    height: 1px;
    background-color: var(--gray);
    margin: 30rem 0;
}
.post_01_imgRight .content{
    display: flex;
    position: relative;
    background: white;
    flex-direction: column;
    place-items: start;
    grid-column-start: 3;
    grid-column-end: 10;
    padding: 90rem 300rem 90rem 60rem;
}
.post_01_imgRight .post_01_image{
    position: absolute;
    right: 240rem;
    top: 80rem;
    display: flex;
    width: 300rem;
    height: 400rem;
    z-index: 2;
    border-top-left-radius: 200rem;
    border-top-right-radius: 200rem;
}
@media (max-width: 768px) {
    .post_01_imgRight .post_01_image{
        grid-column-start: 1;
        grid-column-end: 10;
        right: 0;
        top: 0;
        width: 100%;
        height: auto;
        z-index: 1;
    }
    .post_01_imgRight .content{
        grid-column-start: 2;
        grid-column-end: 12;
        padding: 60rem 20rem;
        z-index: 2;
        margin-top: 260rem;
        align-items: center;
    }
    .post_01_imgRight .container .title {
        position: relative;
        font-size: 52rem;
        z-index: 99;
        line-height: 54rem;
        margin-bottom: 40rem;
    }
    .post_01_imgRight .content p{
        text-align: center;
    }
}


/*---- SECTION : WORKOUT ----*/

.workout{
    display: flex;
    flex-direction: column;
    background-color: #F8F7F3;
    padding: 200rem 0 160rem 0;
}
.logo_lagreefitness{
    display: flex;
    flex-direction: column;
    margin-top: 40rem;
    text-align: right;
}
.logo_lagreefitness img{
    width: 130rem;
    display: block;
    margin-bottom: 8rem;
}
.logo_lagreefitness span{
    font-size: 14rem;
    font-weight: 400;
}
@media (max-width: 768px){
    .workout{
        padding: 280rem 0 180rem 0;
    }
}

/*----- CONTACT MODAL -----*/
.contact__modal {
    visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    align-items: center;
    top: 0;
    padding: 50rem 20rem 20rem 20rem;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--peach-light);
    background: rgb(0 0 0 / 90%);
    opacity: 0;
    z-index: 1161;
    transition: 600ms;
    overflow-y: auto;
}
.logo__menuMobile{
    display: block;
    width: 220rem;
    margin-top: 20rem;
}
.menu_mobile ul a a:hover{
    color: var(--peach-dark);
    transition: 300ms linear;
}
.close_menu{
    display: block;
    bottom: 20rem;
    z-index: 1999;
    padding: 10px;
    width: 100%;
    text-align: center;
    color: var(--light);
    cursor: pointer;
}
.close_menu:hover{
    color: var(--brown);
}
.close_menu svg{
    width: 40rem;
    height: 40rem;
}
.menu__mobile_social{
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 10vh;
    z-index: 1200;
    width: 100%;
    bottom: 0;
  }
.menu__mobile_social a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: transparent;
    color: var(--light);
    margin: 6px;
    font-size: 24rem;
    width: 40rem;
    height: 40rem;
    transition: background-color 600ms ease;
    text-decoration: none;
}
.menu__mobile_social a:hover {
    background-color: var(--light);
    color: var(--black);
}
.contact__modal article ul, .contact__modal article ul a{
    text-align: center;
    color: var(--light);
}
@media (max-width: 900px) {
    .contact__modal.active{
        display: flex;
        visibility: visible;
        position: fixed;
        left: 0;
        backdrop-filter: blur(10px);
        opacity: 1;
        transition: opacity 600ms;
        font-weight: 400;
    }
}


/*----- SECTION : WELLNESS -----*/
section.wellness{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/*----- ARTICLE 01 -----*/
.article__01{
    position: relative;
    display: flex;
    flex-direction: row;
    width: 60%;
    margin: 40rem auto 120rem auto;
    overflow: hidden;
}

.article__01 .content{
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 50%;
}
.article__01 h3{
    font-size: 60rem;
    line-height: 54rem;
    color: var(--gray);
    font-family: 'Butler';
    font-weight: 300;
    margin-bottom: 20rem;
    padding: 0;
}
.article__01 h3::after{
    content: '';
    display: block;
    width: 30%;
    height: 1px;
    background-color: var(--gray);
    margin: 40rem 0;
}
.article__01 .image{
    display: flex;
    position: absolute;
    right: 0;
    width: 360rem;
    height: 530rem;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 200rem;
    border-top-right-radius: 200rem;
}

@media (max-width: 900px) {
    .article__01{
        width: 100%;
    }
    .article__01 .content{
        width: 90%;
        z-index: 2;
        background-color: var(--pink_dark);
        margin: 370px auto 0 auto;
        padding: 60rem 30rem;
    }
    .article__01 .image{
        z-index: 1;
        right: -40rem;
    }
}


/*----- ARTICLE 02 -----*/
.article__02{
    position: relative;
    display: flex;
    flex-direction: row;
    width: 60%;
}
.article__02 .content{
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-left: auto;
    width: 50%;
}
.article__02 h3{
    font-size: 60rem;
    line-height: 54rem;
    color: var(--gray);
    font-family: 'Butler';
    font-weight: 300;
    margin-bottom: 60rem;
    text-align: left;
    padding: 0;
}
.article__02 h3::after{
    content: '';
    display: block;
    width: 30%;
    height: 1px;
    background-color: var(--gray);
    margin: 40rem 0 0 0;
}
.article__02 .image{
    display: flex;
    position: absolute;
    left: 0;
    width: 360rem;
    height: 530rem;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 200rem;
    border-top-right-radius: 200rem;
}
@media (max-width: 900px) {
    .article__02{
        width: 100%;
        .content{
            width: 90%;
            z-index: 2;
            background-color: var(--pink_dark);
            margin: 370px auto 0 auto;
            padding: 60rem 30rem;
        }
        .image{
            z-index: 1;
            left: -40rem;
        }
    }
}


/*----- SECTION : WELLNESS -----*/
section.indiba{
    background-color: var(--cream);
}


@media (max-width: 900px) {
    .indiba{
        .title{
            font-size: 40rem!important;
            line-height: 34rem!important;
        }
    }
}

/*----- SECTION : CONTACT -----*/
.contact{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items:center;
    justify-content: center;
    background-color: #ecddd2;
    padding: 60rem 0 60rem 0;
}
.contact .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 820rem;
    width: 1200px;
}
.contactForm-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 50rem 20rem;
    position: relative;
}
@media (max-width: 768px) {
    .contact .container {
        padding: 0 30rem;
        width: 100%;
    }
}

/*contact-form*/
.contact-form{
    display: flex;
    flex-direction: column;
    padding: 10rem 20rem;
    width: 100%;
}
.contact-form input, .contact-form textarea {
    margin: 4rem 0;
    padding: 14rem;
    font-size: 14rem;
    border-radius: 10rem;
    border: 1px solid var(--pink_dark);
    color: var(--black);
}
.contact-card:first-child {
    background-image: url(../images/contact/contact_bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.contact-card {
    background: var(--white);
    grid-column: span 6;
}
@media (max-width: 768px) {
    .contact{
        padding: 0;
    }
    .contact .container{
        padding:0;
    }
    .contact-card:first-child {
        order: 1;
        height: 500rem;
    }
    .contact-card:last-child {
        order: 2;
        display: flex;
        justify-content: center;
    }
    .contact-card {
        grid-column: span 12;
    }
    .contactForm-container{
        width: 90%;
        margin-top: -70rem;
        background: var(--white);
    }
    .contact-form{
        padding:20rem 0;
    }
}
.contact-form textarea {
    height: 100rem;
    border-radius: 20rem;
}
.contact-form input:focus, .contact-form input:focus-visible, .contact-form textarea:focus-visible, .contact-form textarea:focus{
    border: 1px solid var(--brown);
    outline: none;
}
.contact-form button{
    margin-top: 30rem;
    border: none;
    cursor: pointer;
    text-align: center;
    align-items: center;
    justify-content: center;
}
