/****************************************************************************
	 LAYOUT
	****************************************************************************/

body {
    background-color: #f5f5f5;
}
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: #e71781;
    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: #e71781;
}
a:hover {
    color: #000103;
    text-decoration: none;
}

/****************************************************************************
	 HEADER Banner CTA WOMAN PAGE
	****************************************************************************/

/* BANNER */

.banner-cta {
    position: fixed;
    display: inline-block;
    background-color: #f5b3d0;
    border: none;
    color: #ffffff;
    text-align: center;
    padding: 3px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 200;
    width: 100vw;
}
.banner-cta span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
    font-family: "adam";
    font-size: 14px;
}
.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-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;
}

/* 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 */

.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-color: rgba(76, 77, 82, 1); */
    background: radial-gradient(circle at left bottom, #e71681, #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: #e71781;
    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: #e71781;
}
.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: #e71781;
    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: #e71781;
}
#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: #e71781;
}
#menu-accordeon li li:hover {
    background: #e71781;
}
#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;
    width: 100vw;
    top: 100%;
    background-color: #f5f5f5;
    left: -7%;
    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);
}
.navbar-expand-hidden {
    transform: translateX(0);
}
.main-title {
    margin-bottom: 0.5rem;
    text-align: center;
    font-family: "PhontPhreaks Handwriting";
    font-size: 2rem;
    color: #e71781;
    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 #e71781;
}
input[type="radio"] {
    display: none;
    outline: none;
}
input[type="radio"]:checked + .item .title {
    color: #f5f5f5;
    border-color: #e71781;
    background-color: #e71781;
}
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: #e71781;
    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: #e71781;
    border: 1px solid;
    border-width: 0 1px;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}
.wrapper-menu {
    padding: 2rem;
}
.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: #e71781;
}

/***********************************************************************
		BLOC TITLE
	************************************************************************/

.title {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("../img/background/woman.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: #e71781;
    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: #e71781;
    transition: all 1000ms;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    outline: 2px solid #e71781;
}
.title .cta-link .cta:hover {
    color: #f5f5f5;
    transform: scale(1.1);
    outline: 2px solid #f5b3d0;
    box-shadow: 4px 5px 17px -4px #f5b3d0;
}
.title .cta-link .cta::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #f5b3d0;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
}
.title .cta-link .cta:hover::before {
    width: 250%;
}

/****************************************************************************
	 BLOC VIDEO
	****************************************************************************/

.video-bg {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-player::-webkit-media-controls {
    display: none !important;
}

/***********************************************************************
		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;
    background-color: rgba(0, 1, 3, 0.9);
}
.soins-title h2 {
    position: absolute;
    top: 3rem;
    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 POINT G WOMAN PAGE
	****************************************************************************/

#pointg {
    width: 100%;
    height: auto;
    background: rgba(0, 1, 3, 0.9);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
}
#pointg h3 {
    font-size: 40px;
}
#pointg .link {
    color: #e71781;
}
#pointg img {
    padding-right: 0px;
    height: auto;
    border-radius: 40px;
}
#pointg p {
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans";
}

/****************************************************************************
	 SECTION LABIAPLASTIE WOMAN PAGE
	****************************************************************************/

#labiaplastie {
    width: 100%;
    height: auto;
    background: rgba(0, 1, 3, 0.9);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
}
#labiaplastie h3 {
    font-size: 40px;
}
#labiaplastie p {
    color: #f5f5f5;
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans";
}
#labiaplastie img {
    padding-right: 0px;
    height: auto;
    border-radius: 40px;
}

/****************************************************************************
	 SECTION REHYDRATATION VAGINALE WOMAN PAGE
	****************************************************************************/

#rehydratation {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
}
#rehydratation h3 {
    font-size: 40px;
}
#rehydratation p {
    color: #000103;
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans";
}
#rehydratation img {
    padding-right: 0px;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
}
#rehydratation span {
    color: #f5f5f5;
}

/****************************************************************************
	 SECTION VAGINISME WOMAN PAGE
	****************************************************************************/

#vaginisme {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
}
#vaginisme p,
#hidden_text4 {
    color: #000103;
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans";
}
#vaginisme h3 {
    font-size: 40px;
}
#vaginisme img {
    padding-right: 0px;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
}

/****************************************************************************
	 SECTION INCONTINENCE WOMAN PAGE
	****************************************************************************/
#incontinence {
    width: 100%;
    height: auto;
    background: rgba(0, 1, 3, 0.9);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5rem;
}
#incontinence p {
    color: #f5f5f5;
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Open Sans";
}
#incontinence img {
    padding-right: 0px;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
}
#incontinence h3 {
    font-size: 40px;
}

/****************************************************************************
	 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,
#hidden_text9 {
    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: #e71781;
    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: #e71781;
    font-family: "PhontPhreaks Handwriting";
    text-align: center;
    font-size: 80px;
    padding: 5rem 3rem;
}

/****************************************************************************
	 SECTION LIVRE D'OR WOMAN PAGE
	****************************************************************************/

#livredor {
    background-color: #e71781;
    padding: 5rem;
}
#livredor h2 {
    text-align: center;
    color: #f5f5f5;
    font-family: "PhontPhreaks Handwriting";
    font-size: 5rem;
    padding-top: 2rem;
    text-transform: uppercase;
}
#livredor .signature {
    background: #f5f5f5;
    color: #e71781;
    text-align: center;
    padding: 1rem;
    font-family: "dakota";
    font-size: 2rem;
    margin-top: 2rem;
    transition: all 0.5s ease;
}
#livredor .signature:hover {
    background-color: #e71781;
    color: #f5f5f5;
}
#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);
}

/* MODAL LIVRE D'OR */

#commentaire {
    color: rgba(0, 1, 3, 1);
}

#form_livre {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.modal {
    top: 50px;
}
#modalLivreDor .modal-body {
    display: flex;
    height: 70vh;
}
#modalLivreDor label {
    padding-top: 1rem;
    text-align: center;
    font-size: 1.5rem;
}
#myModalLabel {
    text-align: center;
}
#pseudo,
#modal-comment {
    color: #e71781;
    padding: 1.2rem;
}
#commentaires {
    display: none;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}
.testimonial-card {
    background-color: rgba(243, 244, 246, 1);
    padding: 2rem;
    width: 20%;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 30px -20px rgba(5, 5, 5, 0.24);
    z-index: 0;
}
.testimonial-card .header {
    display: flex;
    align-items: center;
    grid-gap: 1rem;
    gap: 1rem;
}
.testimonial-card .header .image {
    height: 4rem;
    width: 4rem;
    border-radius: 9999px;
    object-fit: cover;
    background-color: #e71781;
}
.testimonial-card .header .name {
    font-size: 2rem;
    line-height: 1.75rem;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: #f5b3d0;
    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;
}
.testimonial-date {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-top: 1rem;
    color: #e71781;
    text-transform: uppercase;
}
#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: #f5b3d0;
    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: #e71781;
    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: #e71781;
}
#form_button {
    background-color: #f5b3d0;
    color: #f5f5f5;
    margin-top: 2rem;
    padding: 1.5rem;
    border-width: 0px !important;
    border-radius: 10px;
}
#form_button:hover {
    background-color: #e71781;
}
#message_form .error {
    text-align: center;
    color: #f5f5f5;
}
.loader {
    width: 50px;
    height: 50px;
    border-radius: 5rem;
    margin-top: 2rem;
    background-color: #e71781;
}
#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: #e71781;
    top: 0;
    left: 0;
    max-width: 100vw;
}
#hidden_text7 {
    display: none;
    color: #353535;
}
#hidden_text,
#hidden_text3,
#hidden_text5,
#hidden_text6,
#hidden_text8,
#hidden_text9 {
    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,
.hidden_text9 {
    cursor: pointer;
}
#hidden_text2,
#hidden_text4 {
    display: none;
    padding-top: 0;
}
.modal-header {
    background-color: #e71781;
    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: #e71781 !important;
}
.icon_plus {
    padding-left: 1rem;
    font-size: 1.3rem;
    color: #e71781;
}
.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%;
    }
    #incontinence h3,
    #biorevitalisation h3,
    #vaginisme h3,
    #labiaplastie h3,
    #rehydratation h3,
    #pointg h3,
    #rejuvenation h3,
    #troubles h3,
    #depigmentation h3,
    #secheresse h3,
    #laser h3,
    #led h3,
    #injections h3 {
        font-size: 35px;
    }
    .modal {
        top: 48px;
    }
}
@media only screen and (max-width: 1256px) {
    .menu li a {
        font-size: 12px;
        padding: 15px 11px;
    }
}
@media only screen and (max-width: 1225px) {
    .testimonial-card {
        width: 30%;
    }
}
@media only screen and (max-width: 1068px) {
    .menu li a {
        font-size: 11px;
        padding: 15px 11px;
    }
}
@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;
    }
    #incontinence h3,
    #biorevitalisation h3,
    #vaginisme h3,
    #labiaplastie h3,
    #rehydratation h3,
    #pointg h3,
    #rejuvenation h3,
    #troubles h3,
    #depigmentation h3,
    #secheresse h3,
    #laser h3,
    #led h3,
    #injections h3 {
        font-size: 45px;
        padding: 3rem;
    }
    .bloc-pointg p {
        padding-top: 2rem;
    }
    .footer-infos .copyright {
        gap: 9rem;
    }
    section p {
        font-size: 1.3rem;
    }
    .title-techniques {
        height: 200px;
    }
    .modal {
        top: 42px;
    }
    .title {
        background-size: cover;
    }
}
@media only screen and (max-width: 875px) {
    .testimonial-card {
        width: 40%;
    }
    .title {
        margin-top: -73px;
    }
}
@media only screen and (max-width: 768px) {
    .title {
        margin-top: -72px;
    }
    .soins-title {
        height: 155px;
    }
    #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;
    }
    .title-techniques h2,
    .soins-title h2 {
        font-size: 7rem;
    }
    .title h2 {
        font-size: 6rem;
    }
    #incontinence h3,
    #biorevitalisation h3,
    #vaginisme h3,
    #labiaplastie h3,
    #rehydratation h3,
    #pointg h3,
    #rejuvenation h3,
    #troubles h3,
    #depigmentation h3,
    #secheresse h3,
    #laser h3,
    #led h3,
    #injections h3 {
        font-size: 35px;
    }
    .bloc-navigation .bloc_icon {
        display: none;
    }
    #pointg {
        padding: 0 5rem;
    }
    .modal-body {
        line-height: 2rem;
        font-size: 13px;
    }
    .modal {
        top: 61px;
    }
    .navbar-expand {
        left: -7%;
    }
}
@media only screen and (max-width: 685px) {
    .testimonial-card {
        width: 100%;
    }
    #commentaires {
        flex-direction: column;
    }
    .title {
        margin-top: -73px;
    }
    #incontinence h3,
    #biorevitalisation h3,
    #vaginisme h3,
    #labiaplastie h3,
    #rehydratation h3,
    #pointg h3,
    #rejuvenation h3,
    #troubles h3,
    #depigmentation h3,
    #secheresse h3,
    #laser h3,
    #led h3,
    #injections h3 {
        font-size: 30px;
    }
}
@media only screen and (max-width: 480px) {
    .footer-container {
        padding: 3rem;
    }
    .tile-tarifs {
        font-size: 60px;
    }
    #livredor h2 {
        font-size: 3rem;
    }
    #presentation p {
        width: 70%;
    }
    .title {
        margin-top: -72px;
        background-size: cover;
    }
    #incontinence,
    #biorevitalisation,
    #vaginisme,
    #labiaplastie,
    #rehydratation,
    #pointg,
    #rejuvenation,
    #troubles,
    #depigmentation,
    #secheresse,
    #laser,
    #led,
    #injections {
        padding: 2rem;
    }
    .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;
    }
    .title-techniques h2,
    .soins-title h2 {
        font-size: 5rem;
    }
    .tile-tarifs {
        font-size: 4.125rem;
    }
    #contact .maps h2 {
        font-size: 2rem;
    }
    .title {
        margin-top: -45px;
    }
    .partners-container img {
        width: 100px;
    }
    .responsive-menu span {
        display: none;
    }
    #menu-accordeon {
        display: none;
    }
    #presentation {
        padding: 1rem;
    }
    .soins-title,
    .title-techniques {
        height: 100px;
    }
    #incontinence h3,
    #biorevitalisation h3,
    #vaginisme h3,
    #labiaplastie h3,
    #rehydratation h3,
    #pointg h3,
    #rejuvenation h3,
    #troubles h3,
    #depigmentation h3,
    #secheresse h3,
    #laser h3,
    #led h3,
    #injections h3 {
        font-size: 30px;
    }
    #incontinence,
    #biorevitalisation,
    #vaginisme,
    #labiaplastie,
    #rehydratation,
    #pointg,
    #rejuvenation,
    #troubles,
    #depigmentation,
    #secheresse,
    #laser,
    #led,
    #injections {
        padding: 0;
    }
    .tarifs .card-content .card-title {
        font-size: 16px;
    }
    .section-tarifs .contact {
        font-size: 15px;
    }
    #livredor {
        padding: 2rem;
    }
    #livredor h2 {
        font-size: 4.125rem;
    }
    .footer-infos .copyright {
        gap: 4rem;
    }
    .copyright,
    .footer_text p {
        padding: 1.5rem;
    }
    .footer-infos .footer_text {
        padding-top: 0rem;
    }
    #modalLivreDor .modal-body {
        height: 80vh;
    }
    .modal {
        top: 45px;
    }
    .testimonial-card {
        width: 100%;
    }
    .logo-mobile img {
        width: 87px;
    }
    /* .video-bg {
        height: 250px;
    } */
}
@media screen and (max-width: 375px) {
    p {
        margin: 0 0 40px;
    }
}
@media screen and (max-width: 320px) {
    .header h1 {
        padding-left: 10px;
    }
    .header a img {
        width: 115px;
    }
    .banner-cta {
        width: 100%;
    }
    .title {
        width: 100%;
    }
    #presentation {
        background-position: 56% 0%;
    }
    #incontinence h3,
    #biorevitalisation h3,
    #vaginisme h3,
    #labiaplastie h3,
    #rehydratation h3,
    #pointg h3,
    #rejuvenation h3,
    #troubles h3,
    #depigmentation h3,
    #secheresse h3,
    #laser h3,
    #led h3,
    #injections h3 {
        font-size: 25px;
    }
    .title {
        background-size: cover;
    }
    .tarifs .card-content .card-title {
        font-size: 14px;
    }
    .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;
    }
    .mobile-navigation {
        padding: 1rem;
    }
}
