/****************************************************************************
	 LAYOUT
	****************************************************************************/

body {
    background-color: #f5f5f5;
    font-size: 14px;
    box-sizing: border-box;
}
p {
    text-align: justify;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    /* pour debug le layout */
    /* box-shadow: 0 0 0 3px red inset; */
}

span {
    color: #000;
    font-family: "Roboto", sans-serif;
}
h3 {
    color: #008397;
    font-family: "adam", sans-serif;
    text-transform: uppercase;
    text-align: center;
}
section p {
    color: #f5f5f5;
    font-family: "Open Sans", sans-serif;
    line-height: 2rem;
    padding: 2rem 3rem 0 1rem;
    font-size: 0.9rem;
    text-align: justify;
}
.ok {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ok span {
    display: block;
    text-align: center;
    padding-bottom: 4rem;
    color: #f5f5f5 !important;
}
a {
    color: #008397;
}
a:hover {
    color: #000103;
    text-decoration: none;
}

/****************************************************************************
	 HEADER MAN PAGE AND NAVIGATION
	****************************************************************************/
.banner-cta {
    position: fixed;
    display: inline-block;
    background-color: #008397;
    border: none;
    color: #ffffff;
    text-align: center;
    padding: 3px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 200;
}
.banner-cta span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
    font-family: "adam";
    font-size: 14px;
}
.banner-cta span:after {
    content: "»";
    position: absolute;
    opacity: 0;
    top: 0;
    right: -15px;
    transition: 0.5s;
}
.banner-cta:hover span {
    padding-right: 15px;
}
.banner-cta:hover span:after {
    opacity: 1;
    right: 0;
}
.pulsate {
    -webkit-animation: pulsate 1.5s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation: pulsate 1.5s ease-out;
    animation-iteration-count: infinite;
    opacity: 1;
    transform: scale(1);
    display: inline-block;
}
/* BANNER TEXT ANIMATION */
@keyframes pulsate {
    0% {
        opacity: 0.5;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        opacity: 0.5;
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
}
.header {
    display: flex;
    background-color: transparent;
    position: sticky;
    z-index: 200;
    top: 2.7rem;
    left: 0;
    transition: background-color 0.4s ease-in-out;
}
.scrolled {
    background: radial-gradient(circle at top, #028396, #4c4d52);
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 1);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 1);
}
.header .bloc-navigation {
    display: flex;
    align-items: center;
    width: 100%;
}
.header .buttons-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.logo_header {
    margin-top: 2rem;
}
.button_tarifs,
.button_contact {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    color: #f5f5f5;
    background-color: #008397;
    padding: 1rem 0 1rem 0;
    border-radius: 10rem;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.75);
}

/*********************************
	 HEADER  NAVIGATION
	*********************************/

.bloc_icon {
    padding-top: 0.9rem;
}
nav {
    display: block;
    margin-top: 1rem;
}
.menu {
    display: block;
    margin-bottom: 0 !important;
}
.menu li {
    display: inline-block;
    position: relative;
    z-index: 100;
}
.menu li:first-child {
    margin-left: 0;
}
.menu li a {
    font-weight: 600;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    color: #f5f5f5;
    transition: all 0.2s ease-in-out 0s;
}
.menu li a:hover,
.menu li:hover > a {
    color: #f5f5f5;
    background: #008397;
}
.menu ul {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
    width: 170px;
    position: absolute;
    left: 0px;
    background: #f5f5f5;
    z-index: 99;
    transform: translate(0, 20px);
    transition: all 0.2s ease-out;
}
.menu ul:after {
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #f5f5f5;
    border-width: 6px;
    margin-left: -6px;
}
.menu ul li {
    display: block;
    float: none;
    background: none;
    margin: 0;
    padding: 0;
}
.menu ul li a {
    font-size: 12px;
    font-weight: normal;
    display: block;
    color: #797979;
    background: #f5f5f5;
}
.menu ul li a:hover,
.menu ul li:hover > a {
    background: #008397;
    color: #f5f5f5;
}
.menu li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
}
.menu ul ul {
    left: 169px;
    top: 0px;
    visibility: hidden;
    opacity: 0;
    transform: translate(20px, 20px);
    transition: all 0.2s ease-out;
}
.menu ul ul:after {
    left: -6px;
    top: 10%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #f5f5f5;
    border-width: 6px;
    margin-top: -6px;
}
.menu li > ul ul:hover {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
}
.responsive-menu {
    display: none;
    width: 100%;
    padding: 20px 15px;
    background: #374147;
    color: #f5f5f5;
    text-transform: uppercase;
    font-weight: 600;
}
.responsive-menu:hover {
    background: #374147;
    color: #f5f5f5;
    text-decoration: none;
}
a.home {
    background: #008397;
}
#menu-accordeon {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
    width: 180px;
    display: none;
}
#menu-accordeon ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
#menu-accordeon li {
    margin-bottom: 2px;
}
#menu-accordeon li li {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s;
    border-radius: 0;
    background: #444;
    box-shadow: none;
    border: none;
    margin: 0;
}
#menu-accordeon a {
    display: block;
    text-decoration: none;
    color: #f5f5f5;
    padding: 8px 0;
    font-family: verdana;
    font-size: 1.2em;
}
#menu-accordeon ul li a,
#menu-accordeon li:hover li a {
    font-size: 1em;
}
#menu-accordeon li:hover {
    background: #008397;
}
#menu-accordeon li li:hover {
    background: #008397;
}
#menu-accordeon ul li:last-child {
    border-radius: 0 0 6px 6px;
    border: none;
}
#menu-accordeon li:hover li {
    max-height: 15em;
}

/***********************************************************************
		MOBILE & TABLET NAVIGATION
	************************************************************************/

.mobile-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    position: relative;
}
.logo-mobile img {
    width: 160px;
}
.icon-hamburger {
    color: #f5f5f5;
    display: flex;
    justify-content: right;
}
.navbar-expand {
    position: absolute;
    top: 100%;
    background-color: #f5f5f5;
    left: -2%;
    height: auto;
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100%);
    -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.75);
    padding: 2rem;
}
.navbar-expand .contact {
    padding: 4rem 2rem 2rem 0.3rem;
    color: #008397;
}
.navbar-expand-hidden {
    transform: translateX(0);
}
.main-title {
    margin-bottom: 0.5rem;
    text-align: center;
    font-family: "PhontPhreaks Handwriting";
    font-size: 2rem;
    color: #008397;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}
.main-title:before,
.main-title:after {
    content: "";
    display: block;
    margin: 0 0.2rem;
    flex: 1;
    border-bottom: 1px solid #008397;
}
input[type="radio"] {
    display: none;
    outline: none;
}
input[type="radio"]:checked + .item .title {
    color: #f5f5f5;
    border-color: #008397;
    background-color: #008397;
}
input[type="radio"]:checked + .item .title:after {
    transform: rotate(180deg);
}
input[type="radio"]:checked + .item .content {
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s, opacity 0.7s;
}
.item {
    display: block;
    margin-bottom: 0.1rem;
}
.title-menu {
    margin: 1rem;
    padding: 0.1rem 0.3rem;
    border-radius: 0.3rem;
    color: #008397;
    border: 1px solid;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.title-menu:after {
    content: "▼";
    display: inline-block;
    font-size: 12px;
}
.content {
    width: 95%;
    margin: 0 auto;
    padding: 0 0.3rem;
    line-height: 1.6;
    color: #008397;
    border: 1px solid;
    border-width: 0 1px;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}
.wrapper-menu .home-link {
    padding-bottom: 1rem;
}
.sub-menu {
    list-style-type: none;
}
.sub-menu li {
    padding: 0.5rem;
}
.sub-menu li a {
    text-decoration: none;
    color: #008397;
}

/***********************************************************************
		BLOC TITLE
	************************************************************************/

.title {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("../img/background/man_bust.jpg") no-repeat;
    background-position: top left;
    background-size: contain;
    background-color: rgba(0, 1, 3, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -69px;
}
.title h2 {
    text-align: center;
    font-family: "PhontPhreaks Handwriting";
    color: #f5f5f5;
    font-size: 8rem;
}
.title h3 {
    font-size: 3rem;
    font-family: "PhontPhreaks Handwriting";
    color: #008397;
    text-align: center;
}
.title .cta-link {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}
.title .cta-link .cta {
    padding: 1em 2em;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 5px;
    text-transform: uppercase;
    cursor: pointer;
    color: #008397;
    transition: all 1000ms;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    outline: 2px solid #008397;
}
.title .cta-link .cta:hover {
    color: #f5f5f5;
    transform: scale(1.1);
    outline: 2px solid #008397;
    box-shadow: 4px 5px 17px -4px #008397;
}
.title .cta-link .cta::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #008397;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
}
.title .cta-link .cta:hover::before {
    width: 250%;
}

/***********************************************************************
		BLOC PRESENTATION
	************************************************************************/

#presentation {
    height: auto;
    background: rgba(0, 1, 3, 0.5)
        url("../img/background/dr-durantet-bertrand.webp") no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem;
}
#presentation p {
    width: 50%;
    text-align: left;
    color: #000103;
    line-height: 24px;
    font-family: "Open Sans";
    padding-top: 0;
    font-size: 16px;
}
#presentation p span {
    padding-top: 2rem;
}
.text_presentation h3 {
    text-align: left;
}

/****************************************************************************
	 SECTION TITLE SOINS WOMAN PAGE
	****************************************************************************/

.soins-title {
    width: 100%;
    height: 280px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #008397;
}
.soins-title h2 {
    position: absolute;
    font-size: 13rem;
    font-family: "PhontPhreaks Handwriting";
    text-transform: uppercase;
    color: #f5f5f5;
}
/****************************************************************************
	 SECTION TITLE TECHNIQUES WOMAN PAGE
	****************************************************************************/

.title-techniques {
    width: 100%;
    height: 280px;
    background: rgba(0, 1, 3, 0.9);
    position: relative;
    display: flex;
    justify-content: center;
}
.title-techniques h2 {
    position: absolute;
    top: 3rem;
    font-size: 13rem;
    font-family: "PhontPhreaks Handwriting";
    text-transform: uppercase;
    color: #f5f5f5;
}
/****************************************************************************
	 SECTION PENOPLASTIE ELARGISSEMENT MAN PAGE
	****************************************************************************/

#penolargissement {
    width: 100%;
    height: auto;
    background: rgba(0, 1, 3, 0.9);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
}
#penolargissement h3 {
    font-size: 40px;
}
#penolargissement .link {
    color: #008397;
}
#penolargissement img {
    padding-right: 0px;
    height: auto;
    border-radius: 40px;
}
#penolargissement p {
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans";
}

/****************************************************************************
	 SECTION PENOPLASTIE DE RALLONGEMENT MAN PAGE
	****************************************************************************/

#penorallongement {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
}
#penorallongement h3 {
    font-size: 40px;
}
#penorallongement p {
    color: #000103;
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans";
}
#penorallongement img {
    padding-right: 0px;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
}
#penorallongement span {
    color: #f5f5f5;
}
#penorallongement .centimetre {
    text-align: center;
    font-size: 1.2em;
    font-weight: bolder;
    color: #000103;
    padding: 1rem;
}

/****************************************************************************
	 SECTION HARMONISATION MAN PAGE
	****************************************************************************/

#harmonisation {
    width: 100%;
    height: auto;
    background: rgba(0, 1, 3, 0.9);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
}
#harmonisation h3 {
    font-size: 40px;
}
#harmonisation p {
    color: #f5f5f5;
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans";
}
#harmonisation img {
    padding-right: 0px;
    height: auto;
    border-radius: 40px;
}

/****************************************************************************
	 SECTION EJACULATION PRECOCE MAN PAGE
	****************************************************************************/

#ejacprecoce {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
}
#ejacprecoce p {
    color: #000103;
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans";
}
#ejacprecoce h3 {
    font-size: 40px;
}
#ejacprecoce img {
    padding-right: 0px;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
}

/****************************************************************************
	 SECTION BIOREVITALISATION WOMAN PAGE
	****************************************************************************/
#biorevitalisation {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
}
#biorevitalisation p {
    color: #000103;
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans";
}
#biorevitalisation img {
    padding-right: 0px;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
}
#biorevitalisation h3 {
    font-size: 40px;
}
/****************************************************************************
	 SECTION rejuvenation WOMAN PAGE
	****************************************************************************/
#rejuvenation {
    width: 100%;
    height: auto;
    background: rgba(0, 1, 3, 0.9);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
}
#rejuvenation p {
    color: #f5f5f5;
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans";
}
#rejuvenation img {
    padding-right: 0px;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
}
#rejuvenation h3 {
    font-size: 40px;
}

/****************************************************************************
	 SECTION TROUBLES WOMAN PAGE
	****************************************************************************/
#troubles p {
    color: #000103;
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans";
}
#troubles {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
}
#troubles h3 {
    font-size: 40px;
}
#troubles img {
    padding-right: 0px;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
}

/****************************************************************************
	 SECTION DEPIGMENTATION WOMAN PAGE
	****************************************************************************/
#depigmentation p {
    color: #f5f5f5;
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans";
}
#depigmentation {
    width: 100%;
    height: auto;
    background: rgba(0, 1, 3, 0.9);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
}
#depigmentation img {
    padding-right: 0px;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
}
#depigmentation h3 {
    font-size: 40px;
}

/****************************************************************************
	 SECTION SECHERESSE WOMAN PAGE
	****************************************************************************/
#secheresse p {
    color: #000103;
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans";
}
#secheresse {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
}
#secheresse img {
    padding-right: 0px;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
}
#secheresse h3 {
    font-size: 40px;
}

/****************************************************************************
	 SECTION LASER WOMAN PAGE
	****************************************************************************/
#laser {
    width: 100%;
    height: auto;
    background: rgba(0, 1, 3, 0.9);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
}
#laser p {
    color: #f5f5f5;
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans";
}
#laser img {
    padding-right: 0px;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
}
#laser h3 {
    font-size: 40px;
}

/****************************************************************************
	 SECTION LED WOMAN PAGE
	****************************************************************************/

#led {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
}
#led p {
    color: #000103;
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans";
}
#led img {
    padding-right: 0px;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
}
#led h3 {
    font-size: 40px;
}

/****************************************************************************
	 SECTION INJECTIONS WOMAN PAGE
	****************************************************************************/
#injections p {
    color: #f5f5f5;
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans";
}
#injections {
    width: 100%;
    height: auto;
    background: rgba(0, 1, 3, 0.9);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
}
#injections img {
    padding-right: 0px;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
}
#injections h3 {
    font-size: 40px;
}

/****************************************************************************
	 SECTION TARIFS WOMAN PAGE
	****************************************************************************/

.section-tarifs .contact {
    color: #000103;
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    font-family: "Open Sans";
    text-align: center;
    padding-bottom: 2rem;
}
.section-tarifs .contact a {
    padding-left: 5px;
    margin-right: 20px;
}

.tarifs {
    background: #f5f5f5;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-bottom: 5rem;
    gap: 20px;
}
.tarifs .card {
    width: 500px;
    height: 300px;
    background-color: #008397;
    border-radius: 8px;
    color: #f5f5f5;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.tarifs .card-content {
    padding: 20px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #f5f5f5;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}
.tarifs .card-content .card-title {
    font-size: 20px;
    font-weight: 400;
    font-family: "Open Sans";
    color: inherit;
    text-transform: uppercase;
}
.tarifs .card-content .card-para {
    color: inherit;
    opacity: 0.8;
    font-size: 14px;
}
.tarifs .card:hover {
    transform: rotateY(10deg) rotateX(10deg) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.tarifs .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}
.tarifs .card:hover:before {
    transform: translateX(-100%);
}
.tarifs .card:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}
.tarifs .card:hover:after {
    transform: translateX(100%);
}
.tile-tarifs {
    color: #008397;
    font-family: "PhontPhreaks Handwriting";
    text-align: center;
    font-size: 80px;
    padding: 5rem 3rem;
}

/****************************************************************************
	 SECTION LIVRE D'OR WOMAN PAGE
	****************************************************************************/

#livredor {
    background-color: #008397;
    padding: 5rem;
}
#livredor h2 {
    text-align: center;
    color: #f5f5f5;
    font-family: "PhontPhreaks Handwriting";
    font-size: 5rem;
    padding-top: 2rem;
    text-transform: uppercase;
}
#livredor p {
    text-align: center;
    color: #f5f5f5;
}
#livredor .signature {
    background: #f5f5f5;
    color: #008397;
    text-align: center;
    padding: 1rem;
    font-family: "dakota";
    font-size: 2rem;
    margin-top: 2rem;
    transition: all 0.5s ease;
}
#livredor .signature:hover {
    background-color: #008397;
    color: #f5f5f5;
}

/* MODAL LIVRE D'OR */

#form_livre {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* commentaires */

#livredor .show_commentaires {
    color: #f5f5f5;
    text-align: center;
    padding: 1.28rem;
    font-family: "dakota";
    font-size: 1.8rem;
    margin-top: 2rem;
    transition: all 0.5s ease;
    cursor: pointer;
    margin-left: 0.5rem;
}
#livredor .show_commentaires:hover {
    transform: translate(0, -15px);
}
#modalLivreDor .modal-body {
    height: 70vh;
}
#modalLivreDor label {
    padding-top: 1rem;
    text-align: center;
    font-size: 1.5rem;
}
#myModalLabel {
    text-align: center;
}
#pseudo {
    color: #008397;
    padding: 1.2rem;
}
#avatar {
    padding: 1.2rem;
}
#commentaire {
    color: #008397;
}
input[type="file" i] {
    border: none;
}

#container_comment {
    border: 1px solid #f5f5f5;
    margin-top: 4rem;
    background: #4c4d52;
    -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.75);
}
#container_comment img {
    background-color: #f5f5f5;
    padding: 1rem;
    margin-left: -5rem;
    margin-top: -4rem;
}
#container_comment h5 {
    text-align: left;
    padding-left: 2rem;
    color: #000;
}
#container_comment .infos_user {
    padding-top: 1rem;
}
#container_comment p {
    padding-top: 2rem;
    text-align: left;
}
#commentaires {
    display: none;
    justify-content: flex-start;
    padding: 2rem 5rem;
    gap: 2rem;
}
.testimonial-card {
    background-color: rgba(243, 244, 246, 1);
    padding: 2rem;
    max-width: 320px;
    border-radius: 10px;
    box-shadow: 0 20px 30px -20px rgba(5, 5, 5, 0.24);
}
.testimonial-card .header {
    display: flex;
    align-items: center;
    grid-gap: 1rem;
    gap: 1rem;
    z-index: 0 !important;
}
.testimonial-card .header .image {
    height: 4rem;
    width: 4rem;
    border-radius: 9999px;
    object-fit: cover;
    background-color: #008397;
}
.testimonial-card .header .name {
    font-size: 2rem;
    line-height: 1.75rem;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: #008397 !important;
    font-family: "PhontPhreaks Handwriting";
    padding-top: 1rem !important;
    text-transform: uppercase;
}
.testimonial-message {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-top: 1rem;
    color: #000103 !important;
}
.testimonial-date {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-top: 1rem;
    color: #008397 !important;
    text-transform: uppercase;
    text-align: left !important;
}
#no_comments {
    width: 100%;
    text-align: center;
    color: #f5f5f5;
    font-family: "Open Sans";
    font-size: 2rem;
}
/****************************************************************************
	 SECTION CONTACT WOMAN PAGE
	****************************************************************************/

#contact {
    background-color: #4c4d52;
    padding-bottom: 8rem;
    padding-top: 5rem;
}
#contact h2 {
    color: #008397;
    font-family: "PhontPhreaks Handwriting";
    font-size: 5rem;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 3rem;
}
#contact h2:before {
    content: "\f0e0";
    font-family: "Fontawesome";
    padding-right: 2rem;
}
#contact span {
    font-weight: bolder;
    color: #008397;
    text-transform: uppercase;
}
#form {
    margin-top: 2rem;
}
#form input {
    margin-top: 2rem;
    padding: 1.5rem 0 1.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    color: #4c4d52;
    font-family: "Open Sans", sans-serif;
    border: none !important;
}
#form input:nth-child(2) {
    margin-bottom: 2rem;
}
#form textarea {
    background-color: rgba(255, 255, 255, 0.8);
    color: #4c4d52;
    border: none !important;
}
input:focus,
textarea:focus {
    outline: none;
}
#contact p {
    padding-top: 6rem;
    color: #f5f5f5;
    line-height: 2.8rem;
    font-size: 12px;
}
#contact p a {
    color: #008397;
}
#form_button {
    background-color: #008397;
    color: #f5f5f5;
    margin-top: 2rem;
    padding: 1.5rem;
    border-width: 0px !important;
    border-radius: 10px;
}
#form_button:hover {
    background-color: #008397;
}
#message_form .error {
    text-align: center;
    color: #f5f5f5;
}
.loader {
    width: 50px;
    height: 50px;
    border-radius: 5rem;
    margin-top: 2rem;
    background-color: #008397;
}
#contact .maps h2 {
    text-align: center;
    padding-top: 10rem;
    padding-bottom: 5rem;
    color: #f5f5f5;
    font-family: "adam";
    font-size: 3rem;
}
#contact .maps iframe {
    width: 100%;
}

/****************************************************************************
	 SECTION PARTNERS WOMAN PAGE
	****************************************************************************/

.partners-container {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.partners-container img {
    width: 150px;
}

/****************************************************************************
	 SECTION FOOTER WOMAN PAGE
	****************************************************************************/

.footer-container {
    padding-top: 3rem;
    padding-bottom: 5rem;
    background-color: #4c4d52;
}
.footer-infos {
    display: flex;
    flex-direction: column;
}
.footer-infos .copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15rem;
}
.footer-infos .copyright a {
    color: #f5f5f5;
    font-weight: bolder;
    text-decoration: underline;
}
.footer-infos .copyright span {
    color: #f5f5f5;
}
.footer-infos .footer_text {
    display: flex;
    justify-content: center;
    padding-top: 5rem;
    color: #f5f5f5;
}
.footer-infos .copyright .social-icons {
    transition: all 0.5s ease-out;
}
.footer-infos .copyright .social-icons a:hover {
    transform: translateY(-10px);
}
/**************************************************************
	 DIVERS
	***************************************************************/

.fixedTop {
    background-color: #353535;
    -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.75);
    position: fixed;
    z-index: 200;
    margin: 0 auto;
    padding: 1em;
    color: #008397;
    top: 0;
    left: 0;
    max-width: 100vw;
}
#hidden_text,
#hidden_text3,
#hidden_text5,
#hidden_text6,
#hidden_text7,
#hidden_text8 {
    display: none;
    /* padding:0 3rem 1rem 2rem; */
    color: #fff;
}
.hidden_text,
.hidden_text2,
.hidden_text3,
.hidden_text4,
.hidden_text5,
.hidden_text6,
.hidden_text7,
.hidden_text8 {
    cursor: pointer;
}
#hidden_text2,
#hidden_text4 {
    display: none;
    padding-top: 0;
}
.modal-header {
    background-color: #008397;
    color: #fff;
}

.modal-body {
    background-color: #353535;
    color: #fff;
    font-family: "roboto";
    line-height: 2rem;
}
.modal-title {
    text-align: center;
    font-family: "adam";
}
.color_span {
    padding-right: 0.3rem;
    color: #008397 !important;
}
.icon_plus {
    padding-left: 1rem;
    font-size: 1.3rem;
    color: #008397;
}
.icon_presentation {
    padding-left: 1rem;
    font-size: 1.3rem;
    color: #000;
}
.transform {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/**************************************************************
	 RESPONSIVE - MEDIA
	***************************************************************/

@media only screen and (max-width: 1440px) {
    #header {
        top: 5.9rem;
    }
    #header .buttons-container {
        width: 15%;
    }
    #ejacprecoce h3,
    #harmonisation h3,
    #penorallongement h3,
    #penolargissement h3 {
        font-size: 35px;
    }
}
@media only screen and (max-width: 1024px) {
    #header {
        top: 8rem;
    }
    .menu li a {
        font-size: 10px;
        padding: 15px 11px;
    }
    .button_tarifs,
    .button_contact {
        width: 40px;
        height: 40px;
    }
    .bloc-navigation img {
        width: 50px;
    }
    #header .bloc-navigation {
        gap: 10px;
    }
    .soins-title {
        height: 200px;
    }
    .soins-title h2 {
        font-size: 9rem;
    }
    #ejacprecoce h3,
    #harmonisation h3,
    #penorallongement h3,
    #penolargissement h3 {
        font-size: 45px;
        padding: 3rem;
    }
    .bloc-peno p {
        padding-top: 2rem;
    }
    .footer-infos .copyright {
        gap: 9rem;
    }
    section p {
        font-size: 1.3rem;
    }
    .title-techniques {
        height: 200px;
    }
    .title {
        background-size: cover;
    }
}
@media only screen and (max-width: 768px) {
    #menu-accordeon {
        display: block;
    }
    #resp-menu {
        display: block;
        background: transparent;
        text-align: center;
    }
    #resp-menu span {
        padding-left: 0.5rem;
        color: #f5f5f5;
    }
    #resp-menu .bar {
        font-size: 22px;
    }
    .menu {
        display: none;
    }
    .footer-infos .copyright {
        flex-direction: column;
        gap: 2rem;
    }
    .soins-title h2 {
        font-size: 7rem;
    }
    .title h2 {
        font-size: 6rem;
    }
    #ejacprecoce h3,
    #harmonisation h3,
    #penorallongement h3,
    #penolargissement h3 {
        font-size: 35px;
    }
    .bloc-navigation .bloc_icon {
        display: none;
    }
    #penolargissement {
        padding: 0 5rem;
    }
    .modal-body {
        line-height: 3rem;
    }
    .title {
        margin-top: -72px;
    }
    .navbar-expand {
        left: -4%;
    }
    .footer-infos .copyright .social-icons {
        padding-top: 2rem;
    }
}
@media only screen and (max-width: 685px) {
    .testimonial-card {
        width: 100%;
    }
    #commentaires {
        flex-direction: column;
        align-items: center;
    }
}
@media only screen and (max-width: 480px) {
    .footer-container {
        padding: 1rem;
    }
    .soins-title h2 {
        font-size: 5rem;
    }
    .partners-container {
        flex-direction: column;
        height: auto;
        gap: 2rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .partners-container img {
        width: 115px;
    }
}
@media screen and (max-width: 425px) {
    .header {
        align-items: center;
    }
    .soins-title h2 {
        font-size: 4rem;
    }
    .tile-tarifs {
        font-size: 4.125rem;
    }
    #contact .maps h2 {
        font-size: 2rem;
    }
    .title {
        margin-top: -73px;
    }
    .partners-container img {
        width: 80px;
    }
    .responsive-menu span {
        display: none;
    }
    #menu-accordeon {
        display: none;
    }
    #presentation {
        padding: 1rem;
    }
    .soins-title,
    .title-techniques {
        height: 100px;
    }
    #ejacprecoce h3,
    #harmonisation h3,
    #penorallongement h3,
    #penolargissement h3 {
        font-size: 30px;
    }
    #ejacprecoce,
    #harmonisation,
    #penorallongement,
    #penolargissement {
        padding: 0;
    }
    .tarifs .card-content .card-title {
        font-size: 16px;
    }
    .section-tarifs .contact {
        font-size: 13px;
    }
    #livredor h2 {
        font-size: 4.125rem;
    }
    .footer-infos .copyright {
        gap: 4rem;
    }
    .copyright,
    .footer_text p {
        padding: 3.5rem;
    }
    .footer-infos .footer_text {
        padding-top: 0rem;
    }
    .navbar-expand {
        left: -5%;
    }
    #commentaires {
        padding: 0;
    }
    .testimonial-card {
        padding: 1rem;
    }
}

@media screen and (max-width: 320px) {
    .header h1 {
        padding-left: 10px;
    }
    .header a img {
        width: 115px;
    }
    .banner-cta {
        width: 100%;
    }
    .title {
        width: 100%;
        background-size: cover;
    }
    #presentation {
        background-position: 56% 0%;
    }
    #ejacprecoce h3,
    #harmonisation h3,
    #penorallongement h3,
    #penolargissement h3 {
        font-size: 25px;
    }
    .tarifs .card-content .card-title {
        font-size: 20px;
    }
    .tile-tarifs {
        padding: 2rem 3rem;
    }
    .tile-tarifs,
    #livredor h2 {
        font-size: 3.5rem;
    }
    #livredor h2 {
        padding-top: 0rem;
    }
    #contact h2 {
        font-size: 4rem;
    }
    .maps {
        padding: 0;
    }
    #contact .maps h2 {
        font-size: 1.8rem;
        line-height: 30px;
    }
    .footer-infos .footer_text {
        padding-top: 1rem;
    }
    .logo-mobile img {
        width: 120px;
    }
    .mobile-navigation {
        padding: 1rem;
    }
    .navbar-expand {
        left: -6%;
    }
    .soins-title h2 {
        font-size: 3rem;
    }
}
