*{
    margin: 0;
    padding: 0;
}

a{
    color: #000;
    text-decoration: none;
}

/* ========== MOBILE ========== */
/* =========================== */

/* ========== SETUP ========== */

body{
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    line-height: 1.55;
    background-color: #f1f2f2;
    color: #2c0001; 
}

p{
    margin: 18px 0;
}

a{
    text-decoration: none;
}

small{
    margin: 9px 0;
}

/* ========== UTILITY ========== */

.container{
    padding: 36px 18px;
}

.flex-container{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.flex-container--column{
    flex-direction: column;
}

.bold{
    font-weight: 700;
}


/* ========== FONTS ========== */

.title{
    font-family: 'Montserrat', sans-serif;
}

.title-1{
    font-size: 25.92px;
    font-weight: 700;
    margin-bottom: 18px;
}

.title-2{
    font-size: 21.6px;
    font-weight: 400;
    width: min-content;
}

.txt{
    font-size: 18px;
}

.txt__no-margin{
    margin: 0;
}

.txt__white{
    color: #f1f2f2;
}

.txt__small--1{
    font-size: 15px;
}

.txt__small--2{
    font-size: 12.5px;
}

/* ========== LINKS ========== */
.links__page{
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
}
.links__page::after{
    content:'';
    position: absolute;
    width: 100%;
    transform:scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color:#E0526A;
    transform-origin: bottom right;
    transition: transform .25s ease-out;
}

.links__page:hover::after{
   transform:scaleX(1);
   transform-origin: bottom left;
}

/* ========== DECO ========== */

.little-arrow{
    width: 15px;
    height: 15px;
}

.big-arrow{
    width: 37.32px;
    margin-left: 18px;
    transition: 0.3s ease-in-out;
}

.filtre-rose--70{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #E0526AB3;
    height: 100%;
    width: 100%;    
}

.filtre-rose--50{
    background-color: #E0526A80;
    height: 100%;
    width: 100%;    
}

/* ========== BTN ========== */

.btn__rdv{
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    width: 216px;
    height: 38px;
    background-color: #E0526A;
    color: #f1f2f2;
    border: none;
    z-index: 2;
    margin: 18px auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.btn__rdv:hover .links__menu::after{
    transform:scaleX(1);
    transform-origin: bottom left
}

/* ========== HEADER ========== */

header{
    position: fixed;
    top: 0;
    display: flex;
    padding: 24px 18px;
    align-items: flex-end;
    z-index: 100;
    background-color: #f1f2f2;
    width: calc(100vw - 36px);
    transition: 0.5s ease-in-out;
}

.links__header{
    display: flex;
    align-items: flex-end;
    color: #000;
    z-index: 20;
}

.logo{
    width: 65px;
}

.logo-name{
    font-size: 18px;
    line-height: 0;
    margin-bottom: 2px;
    color: #E0526A;
}

.logo-function{
    line-height: 0;
    font-size: 18px;
}

.header--hidden{
    transform: translateY(-100%);   
}


/* ========== BURGER MENU ========== */

.burgermenu{
    position: fixed;
    right: 36px;
    top: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 29px;
    cursor: pointer;
    z-index: 25;
}

.menu{
    background-color: #E0526A;
    position: fixed;
    left: 0;
    color: #f1f2f2;
    text-decoration: none;
    list-style: none;
    height: 100vh;
    width: 100%;
    z-index: 10;
    overflow: scroll;
    transform: translateY(-23px);
}

.menu__el{
    margin: 18px 0;
}

.titles__menu--sub{
    margin-left: 18px;
}

.links__menu{
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #f1f2f2;
}

.links__menu::after{
    content:'';
    position: absolute;
    width: 100%;
    transform:scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color:#D2E088;
    transform-origin: bottom right;
    transition: transform .25s ease-out;
}

.links__menu:hover::after{
   transform:scaleX(1);
   transform-origin: bottom left;
}

.burgermenu__el,
.burgermenu__el::before,
.burgermenu__el::after {
    width: 42px;
    height: 5px;
    background: #E0526A;
    border-radius: 10px;
    transition: all .5s ease-in-out;
}

.burgermenu__el::before,
.burgermenu__el::after {
  content: '';
  position: absolute;
}

.burgermenu__el::before {
    transform: translateY(-11px);
}

.burgermenu__el::after {
    transform: translateY(11px);
}


.burgermenu.open .burgermenu__el {
    background: transparent;
}

.burgermenu.open .burgermenu__el::before {
    transform: rotate(-45deg);
}

.burgermenu.open .burgermenu__el::after {
    transform: rotate(45deg);
}

.menu__hide{
    display: none;
}




/* ========== INTRO ========== */

.bg__baseline{
    position: relative;
    margin-top: 113px;
    background-image: url(img/img_baseline.jpg);
    background-size: cover;
    background-position: center;
    height: 50vh;
}

.baseline{
    font-size: 31.1px;
    line-height: 1.2;
    text-align: center;
    padding: 18px 36px 18px 36px;
    z-index: 2;
    color: #f1f2f2;
}

/* ========== SPECIALITIES ========== */

.bg__specialities{
    position: relative;
    background-image: url(img/img_specialitie.jpg);
    background-size: cover;
    background-position: center;
}

.specialities__list{
    list-style: none;
    position: relative;
}

.specialities__list--desc{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #E0526A;
    margin: 18px 0;
    padding: 9px 18px 9px 18px;
}

.specialities__list--desc:hover .links__menu::after{
    transform:scaleX(1);
    transform-origin: bottom left
}

.specialities__txt{
    display: flex;
    flex-direction: column;
    width: 75%;
}

.specialities__list--details{
    font-size: 15px;
    color: black;
    background-color: #f1f2f2;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.specialities__details{
    list-style: none;
}

.specialities__details--el{
    margin: 18px 0;
}

.small-desc{
    margin-top: 9px;
}

@keyframes rotate-arrow{
    0%{
        transform: rotate(0deg);
    }100%{
        transform: rotate(90deg);
    }
}


/* ========== TARIFS ========== */

.tarifs{
    padding: 18px;
}

.bg__tarifs{
    margin-top: 113px;
    position: relative;
    background-image: url(img/img_tarifs.jpg);
    background-size: cover;
    background-position: center;
}

.tarifs__details{
    margin-bottom: 18px;
    margin-left: 18px;
}



/* ========== CONTACT ========== */

.contact__container{
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-evenly;
}

.contact__container--column{
    flex-direction: column;
    justify-content: start;
}

.contact__info{
    margin: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact__info--logo{
    margin-bottom: 18px;
    height: 28px;
    width: 28px;
}

.contact__info--txt{
    text-align: center;
}

.map{
    width: 100%;
    height: 25vh;
    margin: 18px 0;
}

.img--house{
    margin-right: 18px;
    width: 100%;
    max-width: 250px;
}


/* ========== FOOTER ========== */

.footer{
    background-color: #E0526A;
    color: #f1f2f2;
}

.footer__summary{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin-bottom: 18px;
}

.footer__summary--el{
    margin: 0 9px;
}

.footer__contact{
    margin-top: 18px;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
}

/* ========== TABLET ========== */
/* =========================== */
@media (min-width: 550px){

    .element-left{
        width: 60%;
    }

    .element-right{
        margin-left: 40%;
    }
    
}


/* ========== DESKTOP ========== */
/* =========================== */
@media (min-width: 1000px){

    .container{
        padding: 36px;
    }

    .filtre-rose--50{
        padding: 113px 0;
    }
    
    .specialities__list--details{
        position: absolute;
        right: 0;
        width: 50%;
        top: 0;
    }

    .specialities__list--desc{
        width: 40%;
    }

    .contact__container{
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .contact__container--reverse{
        flex-direction: row-reverse;
    }

    .contact__info{
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-bottom: 18px;
    }

    .contact__info--logo{
        margin-bottom: 0;
        margin-right: 18px;
        height: 28px;
        width: 28px;
    }

    .map{
        width: 60%;   
    }

    .btn__big{
        font-size: 21.1px;
        width: 432px;
        height: 76px;
        margin: 18px 0;
    }

    .medium-arrow{
        width: 21.1px;
        height: 21.1px;
    }

    .contact__container--column{
        flex-direction: column;
        justify-content: start;
    }

    .tarifs__details{
        margin-bottom: 0;
    }
    
    .big-arrow{
        transform: rotate(90deg);
    }

    @keyframes rotate-arrow{
        0%{
            transform: rotate(90deg);
        }100%{
            transform: rotate(0deg);
        }
    }

}

/* ========== LAST LAYER ========== */
@keyframes hidden-anim{
    0%{
        height: 0;
        padding: 0;
        opacity: 0;
        overflow: hidden;      
    }100%{
        padding: 18px;
        opacity: 1;
        overflow: visible;
    }
}

@keyframes anim-delay{
    0%{  
        opacity: 0;       
    }100%{
        opacity: 1; 
    }
}

.anim-delay{
    opacity: 0;
    max-width: 600px;
}

.hidden{
   display: none;
}

.lock-body{
    overflow: hidden;
}







