body {
    margin: 0 auto;
    min-width: 320px;
    font-size: 14px;
    background-color: #fff;
    color: #000;
    font-weight: normal;
    font-family: 'GothamExLight';
    position: relative;
}

body.home {
    height: 100vh;
}

.box {
    max-width: 1635px;
    width: 100%;
    margin: 0 auto;
}

a {
    text-decoration: none;
    outline: none;
    color: inherit;
}

a:hover {
    opacity: 0.95;
    text-decoration: none;
    color: inherit;
    outline: none;
}

a:active {
    opacity: 0.65;
    outline: none;
    color: inherit;
    text-decoration: none;
}

a:focus,
a:visited {
    outline: none;
    color: inherit;
    text-decoration: none;
}

button:hover,
input:hover,
select:hover {
    opacity: 0.8;
}

strong {
    font-weight: 500;
}

em {
    font-style: italic;
}

img {
    max-width: 100%;
    height: auto;
}

.card {
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.clear:before,
.clear:after {
    content: "";
    display: block;
    clear: both;
}

/*header begin*/
.sticker {
    transition: 0.8s;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 105px;
    z-index: 500000;
}

.sticker.sticky {
    background: white;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
    max-height: 80px;
    min-height: 70px;
    z-index: 500;
}

.sticker.sticky .box {
    transition: 1s;
    min-height: 70px;
}

.sticker.sticky .logo {
    top: -15px;
    transition: 0.5s;
    opacity: 0;
}

.sticker.sticky .logo_small {
    top: 0;
    transition: 0.5s;
    width: 17%;
    right: 60px;
    opacity: 1;
    display: block;
}

header .logo_small img {
    max-width: 100%;
    max-height: 95px;
}

header .logo_small {
    position: absolute;
    width: 30%;
    z-index: 300;
    transition: 1s;
    opacity: 0;
    display: none;
}

.sticker.sticky .navbar-collapse {
    padding-top: 15px;
    transition: 0.5s;
}

.sticker.sticky .navbar-collapse.show {
    opacity: 1;
    height: 70px;
}

.content_main {
    padding-top: 105px;
    position: relative;
}

.modal-window {
    width: 100%;
    height: 100%;
    background-color: rgba(93, 191, 194, .83);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 400;
    transition: .5s all ease;
    max-width: 100vw;
}

.modal__wrapper {
    background-color: white;
    background-image: url("../img/modal-back.png");
    background-position: left bottom;
    background-size: initial;
    background-repeat: no-repeat;
    max-width: 626px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 67px 15px 71px;
    position: relative;
    z-index: 401;
}

.modal__text {
    max-width: 400px;
    width: 100%;
    font-weight: normal;
    font-size: 20px;
    line-height: 28px;
    font-family: 'GothamBook';
    font-weight: normal;
    text-align: justify;
}

.modal__text .modal-red {
    font-weight: 700;
    font-family: 'Gotham Bold';
    font-weight: bold;
    color: #E24977;
    margin-top: 35px;
    display: flex;
}

.modal__close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 34px;
    right: 32px;
    cursor: pointer;
}

.sticky + .content_main {
    padding-top: 100px;
    overflow: hidden;
}

.navbar-collapse {
    position: absolute;
    /*top: 0px;*/
    right: 0;
    background: white;
    left: 250px;
    height: 0px;
    padding-top: 30px;
    z-index: 200;
    opacity: 0;
    transition: 0.3s;
}

.navbar-collapse.show {
    opacity: 1;
    height: 105px;
}

.navbar-collapse .address {
    height: 100%;
    transition: 0.3s;
    opacity: 1;
}

.navbar-collapse .phone {
    height: 100%;
    transition: 0.3s;
    opacity: 1;
}

.navbar-collapse .address.none {
    height: 0;
    opacity: 0;
}

.navbar-collapse .phone.none {
    height: 0;
    opacity: 0;
}

ul.nav {
    font-family: 'GothamBook';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 19px;
    color: #000000;
    text-transform: capitalize;

}

ul.nav li {
    padding: 0 15px;

}

ul.nav li a {
    display: block;
    padding: .5rem 0rem !important;
    text-transform: uppercase;
    position: relative;
}

ul.nav li a:hover {
    text-transform: uppercase;
}

ul.nav li a:hover::after {
    content: '';
    position: absolute;
    height: 17px;
    left: -8px;
    z-index: -1;
    top: 17px;
    background: #5BBFC5;
    animation: width .3s ease-in-out;
}

ul.nav li:nth-child(1) a:hover::after {
    width: 95px;
}

ul.nav li:nth-child(2) a:hover::after {
    width: 70px;
}

ul.nav li:nth-child(3) a:hover::after {
    width: 80px;
}

ul.nav li:nth-child(4) a:hover::after {
    width: 100px;
}

ul.nav li:nth-child(5) a:hover::after {
    width: 160px;
}

ul.nav li:nth-child(6) a:hover::after {
    width: 140px;
}

ul.nav li:nth-child(7) a:hover::after {
    width: 100px;
}

@keyframes width {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

header .box {
    min-height: 105px;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 100;
    width: 100%;
    transition: 0.8s;
}

header .navbar {
    padding: 0;
    width: 15%;
}

header .logo {
    position: absolute;
    top: -10px;
    right: 60px;
    width: 30%;
    z-index: 300;
    transition: 0.8s;
}

header .phone {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: 'GothamBook';
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 24px;
    color: #000000;
    width: 15%;
}

header .address {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: 'GothamBook';
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 24px;
    color: #000000;
    width: 45%;
    padding-left: 80px;
}

header .icon {
    padding-right: 10px;
}

/*animate cross*/

.nav-icon {
    margin: 1em;
    width: 40px;
}

.nav-icon:after,
.nav-icon:before,
.nav-icon div {
    background-color: #5BBFC5;
    border-radius: 3px;
    content: '';
    display: block;
    height: 5px;
    margin: 7px 0;
    transition: all .2s ease-in-out;
}

.nav-icon.cross:before {
    transform: translateY(12px) rotate(135deg);
}

.nav-icon.cross:after {
    transform: translateY(-12px) rotate(-135deg);
}

.nav-icon.cross div {
    transform: scale(0);
}

/*buton mobile*/
#nav-icon {
    width: 45px;
    height: 35px;
    position: relative;
    margin: 5px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon span {
    display: block;
    position: absolute;
    height: 6px;
    width: 100%;
    background: #5BBFC5;
    border-radius: 5px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
    top: 0px;
}

#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
    top: 12px;
}

#nav-icon span:nth-child(4) {
    top: 24px;
}

/*buton mobile end*/

/*header end*/

/*______CONTENT______*/

/*main title*/
.main_title {
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 100;
    position: relative;
}

.word {
    font-family: 'GothamLight';
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 38px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
}

.underline-magical {
    background-image: linear-gradient(120deg, #5BBFC5 0%, #5BBFC5 100%);
    /*background-color: #5BBFC5;*/
    background-repeat: no-repeat;
    background-size: 100% 5px;
    background-position: 0 83%;
    font-family: 'GothamLight';
}

.line {
    background-color: #E24978;
    height: 17px;
    margin-left: -20px;
    margin-top: -13px;
    /*width: 210px;*/
}

/*button*/
.bouton {
    display: flex;
    align-items: center;
    text-align: center;
    height: 60px;
    width: 305px;
    border: 5px solid #5BBFC5;
    transition: 0.8s;
    color: #5BBFC5;
    cursor: pointer;
    margin-top: 25px;
}

.bouton a {
    font-family: 'Gotham Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 17px;
    margin: 0 auto;
    padding: 20px 60px;
}

.bouton:hover {
    background-color: #5BBFC5;
    color: white !important;
    border: 5px solid #5BBFC5;
}

/*slider*/
.slide_title {
    position: absolute;
    top: 260px;
    left: 155px;
    max-width: 485px;

    font-family: 'GothamExLight';
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 53px;
    text-transform: uppercase;
    color: #000000;
}

.slide_title span {
    position: relative;
    z-index: 50;
    font-family: 'GothamExLight';
}

.slide_title span p {
    position: relative;
    z-index: 50;
    font-family: 'GothamExLight';
}

.box-title {
    position: relative;
    min-height: 100px;
}

.slide_title .bold_title {
    font-family: 'Gotham Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 48px;
    text-transform: uppercase;
    color: #000000;
    position: absolute;
    top: 0;
    z-index: 20;
}

.slide_title .line_title {
    background-color: #E24978;
    height: 17px;
    margin-left: -20px;
    width: 600px;
    position: absolute;
    top: 28px;
    z-index: 5;

}

.slider .bg-picture {
    height: 1255px;
    background-position: right;
    background-repeat: no-repeat;
    margin-left: 600px;
    max-width: 1323px;
    margin-top: -195px;
    position: relative;
    z-index: 5;
}

.slider .card-img-overlay {
    padding: 0;
    top: -100px;
    width: 100%;
}

.slider .center_slider {
    margin-top: 100px;
    margin-left: -3px;
    position: relative;
    z-index: 10;
}

.slider .slide {
    height: 860px;
    background-position: right;
    background-repeat: no-repeat;
    position: relative;
    z-index: 10;
}

/*welcome begin*/

.welcome {
    margin-top: -190px;
}

/*accuel begin*/
.accuel {
    margin-top: 80px;
}

.accuel .content {
    max-width: 465px;
    margin-left: 190px;
    /*margin-top: -25px;*/
    padding-top: 0;
}

.accuel .content .title {
    font-family: 'Gotham Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 34px;
    color: #000000;
}

.accuel .content .text {
    font-family: 'GothamBook';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    text-align: justify;
    color: #000000;
    position: relative;
    padding: 30px 0 60px 0;
}

.accuel .content .line {
    width: 210px;
}

.accuel .box-img {
    padding: 0;
    margin: 0;
    max-width: 770px;
}

.accuel .box-img .row {
    border: 5px solid #000;
    padding: 0;
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.accuel .box-img .img-border {
    width: 250px;
    height: 250px;
    border: 5px solid #000;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.accuel .box-img .img-lips {
    height: 250px;
    padding: 0;
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    /*background-size: cover;*/
    margin-top: -5px;
}

.accuel .box-img .img-photo {
    height: 250px;
    padding: 0;
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    /*background-size: cover;*/
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;

}

.accuel .box-img .img-border:nth-child(1) .img-photo {
    animation-duration: 10s;
    animation-name: fade;
    animation-delay: 4s;

}

.accuel .box-img .img-border:nth-child(2) .img-photo {
    animation-duration: 10s;
    animation-name: fade;
    animation-delay: 6s;
}

.accuel .box-img .img-border:nth-child(3) .img-photo {
    animation-duration: 15s;
    animation-name: fade;
    animation-delay: 5s;
}

.accuel .box-img .img-border:nth-child(4) .img-photo {
    animation-duration: 10s;
    animation-name: fade;
    animation-delay: 4s;
}

.accuel .box-img .img-border:nth-child(5) .img-photo {
    animation-duration: 15s;
    animation-name: fade;
    animation-delay: 5s;
}

.accuel .box-img .img-border:nth-child(6) .img-photo {
    animation-duration: 10s;
    animation-name: fade;
    animation-delay: 6s;
}

.accuel .box-img .img-border:nth-child(7) .img-photo {
    animation-duration: 15s;
    animation-name: fade;
    animation-delay: 5s;
}

.accuel .box-img .img-border:nth-child(8) .img-photo {
    animation-duration: 10s;
    animation-name: fade;
    animation-delay: 4s;
}

.accuel .box-img .img-border:nth-child(9) .img-photo {
    animation-duration: 15s;
    animation-name: fade;
    animation-delay: 5s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*welcome end*/

/*NEWS begin*/

.news {
    margin-top: 100px;
}

.news .instagram {
    margin-top: 60px;
    overflow: hidden;
}

.news .instagram .row {
    margin: 0 -10px;
    padding: 20px 0;
}

.news .instagram .insta_img {
    width: 12.5%;
    height: 230px;
    border: 5px solid #fff;
    position: relative;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}

#sb_instagram.sbi_col_4 #sbi_images .sbi_item {
/*     width: 12.5%; */
/*     height: 230px; */
    border: 5px solid #fff;
    position: relative;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}

#sb_instagram .sbi_photo {
    pointer-events: none;

/*     height: 230px !important; */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}

#sb_instagram #sbi_images {
    padding: 0px !important;
}

.news .instagram .insta_img_hover {
/*     width: 253px;
    height: 240px; */
    border: 12px solid #E24978;
    transition: 0.8s;
    position: absolute;
    z-index: 100;
    left: -11px;
    top: -12px;
    opacity: 0;
    transition: 0.8s;
}

#sb_instagram .sbi_photo_wrap {
    padding: 5px;
    transition: 0.5s;
}

#sb_instagram .sbi_link {
    display: flex !important;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
}

#sb_instagram .sbi_hover_top, #sb_instagram .sbi_hover_bottom {
    position: static;
}

.sbi_comments {
    display: none !important;
}

#sb_instagram .sbi_link .sbi_caption {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

#sb_instagram .sbi_meta .sbi_likes {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    color: #FFFFFF;
}

#sb_instagram .sbi_meta .sbi_likes svg {
/*     width: auto;
    height: 50px;
    margin: 0 0 10px 0 !important; */
}

#sb_instagram .sbi_photo_wrap:hover {
    background-color: #E24978;
}

.news .instagram .insta_img:hover .insta_img_hover {
    opacity: 1;
}

/*NEWS end*/

/*EQUPE begin*/

.equipe {
    margin-top: 60px;
}

.equipe .box-content {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.equipe .box-text {
    height: 100%;
    max-width: 666px;
    margin-left: 50px;
    margin-top: -40px;
}

.equipe .box-text .title {
    color: #E24978;
    font-family: 'Gotham Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 31px;
    z-index: 1500;
    position: relative;
}

.equipe .box-text .text {
    font-family: 'GothamBook';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #000000;
    margin: 30px 0px;
    text-align: justify;
}

.equipe_cards {
    width: 100%;
    margin-top: -150px;
}

/*.team_box */

.team_box .doctor {
    position: relative;
    max-width: 335px;
    margin: 0 auto;
}

.team_box .doctor .team_box_content {
    margin-left: 28px;
    position: relative;
    margin-top: 20px;
}

.team_box .doctor .line {
    width: 20px;
    margin-left: 0px;
    transition: 0.8s;
}

.team_box .doctor .plus {
    height: 50px;
    width: 50px;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
    position: absolute;
    left: -65px;
    top: 0px;
    /*display: none;*/
    transition: 0.8s;
    opacity: 0;
    cursor: pointer;

}

.team_box .doctor_photo {
    height: 304px;
    width: 300px;
    /*margin: 0 auto;*/
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/
}

.team_box .title {
    font-family: 'Gotham Black';
    font-style: normal;
    font-weight: 900;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
    position: relative;
    margin-left: 15px;
}

.team_box .sub_title {
    font-family: 'GothamBook';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin-top: 10px;
}

.team_box .doctor:hover .plus {
    /*display: block;*/
    opacity: 1;
    cursor: pointer;
}

/*.team_box .doctor:hover .line {*/
/*width: 310px;*/
/*}*/
.doctor_box:nth-child(1) .doctor:hover .line {
    width: 310px;
}

.doctor_box:nth-child(2) .doctor:hover .line {
    width: 206px;
}

.doctor_box:nth-child(3) .doctor:hover .line {
    width: 240px;
}

.team_box .doctor .modal-content {
    min-height: 476px;
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
    border: 0px solid rgba(0, 0, 0, 0);
    border-radius: 0;
}

.team_box .doctor .modal-dialog .close {
    padding: 25px 25px 0 0;
    opacity: 1;
    cursor: pointer;
}

.team_box .doctor .modal-dialog {
    max-width: 1274px;
    margin: 0 auto;
}

.team_box .doctor .modal-dialog .img_doctor {
    width: 246px;
    margin: 0 auto;
    height: 300px; /* You must set a specified height */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}

.team_box .doctor .modal-dialog .modal_title {
    font-family: 'Gotham Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 23px;
    color: #000000;
}

.team_box .doctor .modal-dialog .modal_text {
    font-family: 'GothamBook';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
    mix-blend-mode: normal;
    margin-top: 46px;
}

.team_box .doctor .modal-dialog .line_modal {
    margin-left: -20px;
    margin-top: -10px;

    background-color: #E24978;
    height: 17px;
}

.doctor_box:nth-child(1) .modal-dialog .line_modal {
    width: 410px;
}

.doctor_box:nth-child(2) .modal-dialog .line_modal {
    width: 210px;
}

.doctor_box:nth-child(3) .modal-dialog .line_modal {
    width: 320px;
}

/*assistante*/

.team_box .assistante {
    margin-top: 30px;
}

.team_box .doctor.assistante .plus {
    display: none;
    cursor: pointer;
}

.team_box .assistante .line {
    width: 20px;
    background-color: #5BBFC5;
    transition: 0.8s;
}

.assistante_box:nth-child(1) .assistante:hover .line {
    /*display: block;*/
    opacity: 1;
    width: 105px;
}

.assistante_box:nth-child(2) .assistante:hover .line {
    /*display: block;*/
    opacity: 1;
    width: 75px;
}

/*EQUPE end*/

/*VALERUS begin*/

.valeurs {
    position: relative;
    width: 100%;
    margin-top: 50px;
    padding-top: 60px;
}

.valeurs .shape {
    position: absolute;
    top: 0;
    left: 0;
    height: 1220px;
    width: 1320px;
    background-position: left;
    background-repeat: no-repeat;
}

.valeurs-box .row {
    margin: 100px 0 0;
}

.box-photo {
    position: relative;
}

.box-photo .photo {
    position: absolute;
}

.box-photo .photo:nth-child(1) {
    left: 0;
    top: 40px;
    width: 525px;
    height: 450px;
    z-index: 10;
    visibility: visible;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-name: fadeIn;
}

.box-photo .photo:nth-child(2) {
    left: 475px;
    top: 180px;
    width: 530px;
    height: 400px;
    z-index: 30;
    visibility: visible;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-name: fadeIn;
}

.box-photo .photo:nth-child(3) {
    left: 85px;
    top: 370px;
    width: 585px;
    height: 385px;
    z-index: 20;
    visibility: visible;
    animation-duration: 1s;
    animation-delay: 1.5s;
    animation-name: fadeIn;
}

.valeurs .content {
    display: flex;
    position: relative;
    z-index: 50;
}

.valeurs .content:nth-child(1) {
    justify-content: flex-end;
}

.valeurs .content:nth-child(2) {
    justify-content: center;
}

.valeurs .content:nth-child(3) {
    justify-content: flex-start;
}

.valeurs .content .valeur-text {
    max-width: 465px;
}

/*animate text*/
.valeurs .content:nth-child(1) .valeur-text {
    visibility: visible;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-name: slideInRight;
}

.valeurs .content:nth-child(1) .valeur-text .text {
    visibility: visible;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-name: fadeInUp;
}

.valeurs .content:nth-child(2) .valeur-text {
    visibility: visible;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-name: slideInRight;
}

.valeurs .content:nth-child(2) .valeur-text .text {
    visibility: visible;
    animation-duration: 1s;
    animation-delay: 1.5s;
    animation-name: fadeInUp;
}

.valeurs .content:nth-child(3) .valeur-text {
    visibility: visible;
    animation-duration: 1s;
    animation-delay: 1.5s;
    animation-name: slideInRight;
}

.valeurs .content:nth-child(3) .valeur-text .text {
    visibility: visible;
    animation-duration: 1s;
    animation-delay: 2s;
    animation-name: fadeInUp;
}

.valeurs .content .title {
    font-family: 'Gotham Black';
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
    line-height: 38px;

    color: #000000;
}

.valeurs .content .text {
    font-family: 'GothamBook';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    text-align: justify;
    color: #000000;
    padding: 50px 0 100px 0;
}

/*philosophie begin*/
.philosophie {
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
}

.philosophie strong {
    font-weight: 700;
}

.philosophie .philosophie_photo {
    min-height: 537px;
    width: 50%;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}

.content_box {
    max-width: 643px;
}

.philosophie .philosophie_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #5BBFC5;
    width: 50%;
}

.philosophie .philosophie_content .title {
    font-family: 'Gotham Black';
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    /*line-height: 38px;*/

    color: #000000;
}

.philosophie .philosophie_content .sub_title {
    font-family: 'Gotham Bold';
    font-style: normal;
    font-size: 18px;
    line-height: 21px;
    padding: 25px 0;
    color: #000000;
}

.philosophie .philosophie_content .title .line {
    background-color: white;
    width: 240px;
}

.philosophie .philosophie_content .text {
    font-family: 'GothamBook';
    font-style: normal;
    font-size: 18px;
    line-height: 21px;

    color: #000000;
}

@media (min-width: 992px) and (max-width: 1200px) {

    .philosophie .philosophie_content .content_box {
        padding: 20px !important;
    }

    .philosophie .philosophie_content .text {
        font-size: 14px;
    }

}

@media (min-width: 320px) and (max-width: 991px) {

    .philosophie {
        flex-direction: column;
    }

    .philosophie .philosophie_photo {
        min-height: 300px;
        width: 100%;
    }

    .philosophie .philosophie_content {
        width: 100%;
    }

    .philosophie .philosophie_content .content_box {
        padding: 20px !important;
    }

    .philosophie .philosophie_content .text {
        font-size: 14px;
    }

}

/*philosophie end*/

/*VALERUS end*/

/*TECHNOLOGIES begin*/
.technologies {
    margin: 0 0 100px 0;
}

.technologies_group {
    margin-top: 60px;
}

.technologies_group .row {
    margin: 0;
    padding: 0;
}

.technologies_group .technologie_card {
    margin: 0;
    padding: 0;
    width: 25%;
}

@media (min-width: 768px) and (max-width: 1700px) {
    .technologies_group .technologie_card {
        width: 50%;
        margin-bottom: 20px;
    }

}

@media (min-width: 320px) and (max-width: 576px) {

    .navbar-brand {
        width: 80%;
    }

    .modal__text {
        font-size: 18px;
        line-height: 26px;
    }

    .modal__wrapper {
        padding: 47px 15px;
        background-size: 190px;
    }

    .modal__close {
        top: 7px;
        right: 15px;
    }

}

@media (min-width: 320px) and (max-width: 767px) {
    .technologies_group .technologie_card {
        width: 100%;
        margin-bottom: 10px;
    }

}

.technologies_group .technologie_card .content-box {
    display: flex;
    justify-content: center;
    padding-right: 20px;
}

/*.technologies_group .technologie_card:nth-child(2) .content-box {*/
/*display: flex;*/
/*justify-content: center;*/
/*margin: 0 auto;*/
/*max-width: 350px;*/
/*}*/

/*.technologies_group .technologie_card:nth-child(3) .content-box {*/
/*display: flex;*/
/*justify-content: flex-start;*/
/*padding-left: 20px;*/
/*}*/

.technologies_group .technologie_card .box-img {
    max-height: 340px;
    overflow: hidden;
    transition: 1s;
}

.technologies_group .technologie_card .box-img:hover .img {
    transform: scale(1.2);
}

.technologies_group .technologie_card .img {
    height: 340px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 1s;
}

.technologies_group .technologie_card .content {
    max-width: 319px;
    padding-top: 45px;
    position: relative;
}

.technologies_group .technologie_card .title {
    font-family: 'Gotham Black';
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 23px;
    color: #000000;
    min-height: 80px;
    max-width: 250px;
}

.technologies_group .technologie_card .text {
    font-family: 'GothamBook';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #000000;
    text-align: justify;
    min-height: 175px;
}

@media (min-width: 1281px) {

    .technologies_group .technologie_card .text {
        min-height: 240px;
    }

}

.technologies_group .line {
    position: absolute;
    z-index: -1;
    top: 70px;
    left: -7px;
    height: 17px;
    width: 0px;
    background-color: #5BBFC5;
    transition: 0.8s;
}

.technologies_group .technologie_card:hover .line {
    width: 80%;
}

.technologies_group .technologie_card:last-child:hover .line {
    width: 81%;
}

/*TECHNOLOGIES end*/

/*TRAITEMENTS begin*/

.traitments {
    position: relative;
    width: 100%;
    margin-top: 200px;
    padding-top: 55px;
    /*height: 998px;*/
    max-height: 100%;
    background-color: #F2F2F2;
}

.traitments_text {
    padding-top: 50px;
    padding-left: 60px;
    font-family: 'GothamLight';
    font-size: 18px;
    line-height: 26px;
    position: relative;
    z-index: 100;
    text-align: justify;
}

@media (min-width: 1440px) {

    .traitments_text {
        padding-left: 220px;
    }

}

@media (min-width: 320px) and (max-width: 480px) {

    .traitments_text {
        padding-left: 20px;
        font-size: 14px;
    }

}

.traitments .shape {
    position: absolute;
    z-index: 50;
    top: -90px;
    right: 0;
    height: 1247px;
    width: 1347px;
    background-position: right;
    background-repeat: no-repeat;

}

.traitments .photo {
    position: absolute;
    z-index: 100;
    top: 154px;
    right: 0;
    width: 963px;
    background-size: cover;
    height: 889.53px;
    background-position: right;
    background-repeat: no-repeat;
    -webkit-mask-image: url('https://dentistes-dedieu-coll.fr/wp-content/themes/Dedieu/img/mask_t.svg');
    mask-image: url('https://dentistes-dedieu-coll.fr/wp-content/themes/Dedieu/img/mask_t.svg');
}

.traitments .box_line {
    position: absolute;
    z-index: 150;
    top: 330px;
    border: 17px solid #E24978;
    left: 780px;
    width: 990px;
    background-position: right;
    transition: all .5s;
    background-repeat: no-repeat;
}

.traitments .box_line.open {
    border: 17px solid #5BBFC5;
}

/*accordeon*/
/*arrows*/
.panel-heading .accordion-toggle:after {
    /* symbol for "opening" panels */
    font-family: 'Glyphicons Halflings';
    content: "\e080";
    float: right;
    color: #5BBFC5;
}

.panel-heading.open .accordion-toggle:after {
    content: "\e114";
}

.traitments_accordion {
    position: relative;
    z-index: 200;
    width: 587px;
    padding: 67px 90px 35px 80px;
    background-color: white;
    margin-left: 221px;
    margin-top: 90px;
}

.traitments_accordion .panel-title {
    font-family: 'GothamLight';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
    color: #000000;
    margin-bottom: 45px;
    height: 37px;
    padding-left: 20px;
    cursor: pointer;
}

.traitments_accordion .panel-title .title {
    font-family: 'GothamLight';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
    color: #000000;
    margin-bottom: 45px;
    height: 35px;
    padding-left: 20px;
    position: absolute;
    left: -10px;
    transition: 0.8s;
}

.traitments_accordion .panel-heading.open .panel-title .title {
    font-family: 'Gotham Black';
}

.traitments_accordion .panel-heading .panel-title .title:after {
    content: '';
    transition: width .9s;
    width: 0%;
}

.traitments_accordion .panel-heading.open .panel-title .title:after {
    content: '';
    height: 16px;
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: -1;
    width: 100%;
    background: #5BBFC5;
}

.traitments_accordion .panel-body {
    padding-bottom: 40px;
}

.traitments_accordion .text {
    font-family: 'GothamBook';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    padding-bottom: 40px;
}

.traitments_accordion .panel-title {
    position: relative;
}

.traitments_accordion .panel-title.active .title {
    border-bottom: 16px inset #5BBFC5;
    font-family: 'Gotham Bold';
    font-weight: 900;
    font-size: 24px;
    line-height: 23px;

}

.arrowed[aria-expanded="true"]:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

/*TRAITEMENTS olld*/
.traitments .traitments_group {
    position: absolute;
    top: 155px;
    left: 221px;
    right: 0;
}

.traitments .traitments_group .nav {
    margin-top: 55px;
    max-width: 587px;
    min-height: 612px;
    max-height: 100%;
    padding: 67px 100px;
    background-color: white;
    font-family: 'GothamLight';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
    font-feature-settings: 'tnum' on, 'onum' on;
    color: #000000;
    z-index: 10;
    position: relative;
}

.traitments .tab-content .img {
    margin-top: -40px;
    height: 890px;
    background-position: right;
    background-repeat: no-repeat;
}

.traitments .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #000;
    background-color: #fff;
}

.traitments .nav-pills .nav-link {
    border-radius: 0rem;
}

.traitments .nav-link {
    padding: 0 !important;
    min-height: 60px;
}

.traitments .square_line {
    position: absolute;
    top: 135px;
    left: -135px;
    bottom: 0;
    right: 0;
    max-width: 999px;
    height: 440px;
    border: 17px solid #E24978;

}

/*.traitments  .tab-pane.active .square_line {*/
/*border: 17px solid #5BBFC5;*/
/*}*/
.rectangle {
    background: none;
    border: 0;
    box-sizing: border-box;
    max-width: 999px;
    height: 440px;
    box-shadow: inset 0 0 0 17px #E24978;
    color: #f45e61;
    font-size: inherit;
    font-weight: 700;
    position: absolute;
    top: 135px;
    /*left: -135px;*/
    bottom: 0;
    right: -500px;
    vertical-align: middle;
}

.rectangle::before, .rectangle::after {
    box-sizing: inherit;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.draw {
    transition: color 0.5s;
}

.draw::before, .draw::after {
    border: 17px solid transparent;
    width: 0;
    height: 0;
}

.draw::before {
    top: 0;
    left: 0;
}

.draw::after {
    bottom: 0;
    right: 0;
}

.draw:hover {
    color: #5BBFC5;
}

.draw:hover::before, .draw:hover::after {
    width: 100%;
    height: 100%;
}

.draw:hover::before {
    border-top-color: #5BBFC5;
    border-right-color: #5BBFC5;
    transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.draw:hover::after {
    border-bottom-color: #5BBFC5;
    border-left-color: #5BBFC5;
    transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}

/*TRAITEMENTS end*/

/*URGENCES begin*/
.urgences {
    margin-top: 100px;
}

.urgences_contet {
    padding: 50px 250px 0 250px;

}

.urgences_contet .urgences_title {
    font-family: 'Gotham Black';
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 23px;
    color: #000000;
}

.urgences_contet .urgences_text {
    font-family: 'GothamBook';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #000000;
    padding: 15px 0px;
}

@media (min-width: 481px) and (max-width: 990px) {

    .urgences_contet {
        padding: 50px 150px 0 150px;
    }

}

@media (min-width: 320px) and (max-width: 480px) {

    .urgences_contet {
        padding: 50px 50px 0 50px;
    }

}

.urgences_group {
    margin-top: 80px;
}

.urgences_card {
    max-width: 306px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.urgences_card .square {
    position: absolute;
    z-index: -1;
    top: 12px;
    left: -7px;
    height: 17px;
    width: 17px;
    background-color: #5BBFC5;
    transition: 0.8s;
}

.urgences_card .title {
    font-family: 'Gotham Black';
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 23px;
    text-transform: lowercase;
    color: #000000;
    min-height: 80px;
}

.urgences_card .title:first-letter {
    text-transform: uppercase;
}

.urgences_card .text {
    font-family: 'GothamBook';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    text-align: justify;
    color: #000000;
    min-height: 100px;
}

.urgences_card:hover .square {
    width: 100%;
}

.urgences_card:first-child:hover .square {
    width: 60%;
}

.urgences_card {

}

/*URGENCES end*/

/*CONTACT begin*/
.contact {
    position: relative;
    width: 100%;
    /*margin-top: 100px;*/
    /*padding-top: 150px;*/
    margin-top: -30px;
    padding-top: 120px;
}

.contact .shape {
    position: absolute;
    top: 0;
    left: 0;
    height: 1220px;
    width: 1320px;
    background-position: left;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.contact-box {
    position: relative;
    z-index: 10;
    margin-top: 90px;
    margin-left: 162px;
    padding: 0;
}

.contact-box .row {
    margin: 0;
}

.contact-box .map {
    max-height: 620px;
    max-width: 788px;
    background-color: #767676;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.box_overflow_map {
    max-height: 620px;
    max-width: 788px;
    overflow: hidden;
}

.border_map {
    position: absolute;
    right: -18px;
    bottom: -17px;
    height: 75px;
    width: 627px;
    border-right: 17px solid #E24978;
    border-bottom: 17px solid #E24978;
    z-index: 5;
    overflow: hidden;
}

#map {
    height: 650px;
    width: 100%;
}

.box_overflow_map .bouton {
    position: absolute;
    right: 20px;
    bottom: 16px;
    background: #fff;
    z-index: 10;
}

.box_overflow_map .bouton:hover {
    background: #5BBFC5;
    color: #ffffff;
}

.address {
    max-height: 546px;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 10;
}

.address .row.active {
    background-image: linear-gradient(120deg, #5BBFC5 0%, #5BBFC5 100%);
    background-size: 100% 5px;
    background-position: 0 81%;
}

.border_address {
    position: absolute;
    left: 1px;
    top: 0;
    width: 478px;
    height: 155px;
    border-left: 17px solid #E24978;
    border-bottom: 17px solid #E24978;
}

.address .img {
    padding: 0;
    height: 430px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.address .phone, .address .days {
    min-height: 150px;
}

.address .road:hover span, .address .tel:hover span, .single_title span {
    display: inline;
    background-size: 100% 5px;
    background-position: 0 80%;
    background-image: linear-gradient(to right, #5BBFC5 100%, #5BBFC5 100%);
    background-repeat: repeat-x;
}

.address .road {
    font-family: 'Gotham Black';
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 23px;
    letter-spacing: 0.04em;
    color: #000000;
    padding-left: 74px;

}

.address .tel {
    font-family: 'GothamLight';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
	display: flex;
	gap: 5px;
    padding: 30px 0 48px 74px;
}

.address .tel a, .address .tel strong {
    font-family: 'Gotham Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 19px;
    color: #000000;
    display: inline-block;
}

.address .days {
    display: flex;
    flex-direction: column;
    font-family: 'GothamBook';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #000000;
    margin-left: -50px;
}

.address .days .day {
    width: 100px;
}

.address .days .hour {
    width: 80px;
}

.contact_form {
    -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 10;
    background-color: white;
    max-width: 1273px;
    min-height: 450px;
    max-height: 100%;
    margin: 110px auto;
    padding: 25px 170px 60px 165px;
}

.contact_form .title {
    font-family: 'Gotham Black';
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
    line-height: 38px;
    letter-spacing: 0.02em;

    color: rgba(226, 73, 120, 0.26);
}

.contact_form form {
    display: flex;
    flex-direction: row;
    margin-top: 48px;
}

.contact_form form .form-control {
    display: block;
    width: 100%;
    height: 60px;
    padding: .375rem .75rem;

    font-family: 'GothamLight';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 19px;
    font-feature-settings: 'tnum' on, 'onum' on;
    color: #000000;

    background-color: #fff;
    background-clip: padding-box;
    border: 5px solid #F2F2F2;
    box-sizing: border-box;
    border-radius: 0rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
    background-color: #fff;
    border-color: #F2F2F2;
    outline: 0;
    box-shadow: 0 0 0 0rem;
}

.contact_form form label {
    font-family: 'GothamLight';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 19px;
    font-feature-settings: 'tnum' on, 'onum' on;
    color: #000000;
    padding-bottom: 10px;
}

.contact_form textarea {
    min-height: 175px !important;
}

[type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
    font-family: 'Gotham Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 17px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    text-align: center;
    height: 60px;
    width: 305px;
    padding: 10px 110px;
    border: 5px solid #5BBFC5;
    background-color: white;
    transition: 0.8s;
    color: #5BBFC5;
    position: absolute;
    right: 13px;
    bottom: 20px;
    transition: 0.8s;
    outline: -webkit-focus-ring-color auto 0px;
}

[type=submit]:hover {
    background-color: #5BBFC5;
    color: white;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
    border: 2px solid #f7e700;
    display: none !important;
}

div.wpcf7-mail-sent-ok {
    border: 5px solid #F2F2F2;
    position: absolute;
    bottom: 20px;
    left: 173px;
    font-family: 'GothamLight';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 12px;
}

span.wpcf7-not-valid-tip {
    color: #f00;
    font-size: 1em;
    font-weight: normal;
    font-family: 'GothamLight';
    padding-top: 10px;
}

/*CONTACT end*/

/*FOOTER begin*/

footer {
    display: flex;
    flex-direction: row;
    max-width: 691px;
    margin: 0 auto;
    min-height: 190px;
}

footer .logo_footer {
    padding: 0;
}

footer .links-box {
    font-family: 'GothamLight';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    font-feature-settings: 'tnum' on, 'onum' on;

    color: #000000;
    border-left: 17px solid #E24978;
    display: flex;
    flex-direction: column;
    padding-left: 22px;
}

footer .links-box .link a {
    transition: 0.8s;
}

footer .links-box .link a:hover {
    text-decoration: underline;
}

/*FOOTER end*/

/*SINGLE POST PAGE begin*/

.sinle_img {
    margin-top: 100px;

    height: 240px;
    /*overflow: hidden;*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.head_single {
    display: flex;
    flex-direction: row;
    position: relative;
}

.head_single .line_title {
    background-color: #5BBFC5;
    height: 5px;
    margin-left: -20px;
    width: 590px;
    position: absolute;
    top: 38px;
    z-index: -1;
}

@media (min-width: 1900px) {

    .head_single .line_title {
        width: 100%;
    }

}

.single_post .bouton {
    margin-top: 10px;
}

.single_title {
    font-family: 'GothamLight';
    font-style: normal;
    font-weight: 500;
    font-size: 48px;
    line-height: 51px;
    text-transform: uppercase;
    color: #000000;
    padding-bottom: 60px;
}

.single_title h1 {
    font-family: 'GothamLight';
    font-style: normal;
    font-weight: 500;
    font-size: 48px;
    line-height: 51px;
    text-transform: uppercase;
    color: #000000;
    margin-right: 45px;
}

.single_post {
    max-width: 960px;
    margin: 90px auto;
    padding-bottom: 200px;
}

.single_post .after_title {
    font-family: 'GothamBook';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #000000;
}

.single_content {
    font-family: 'GothamBook';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #000000;
}

.single_content h2 {
    font-family: 'GothamLight';
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 34px;
    color: #000000;
    padding: 30px 0;
    margin-left: -20px;
}

.underline {
    border-bottom: 17px solid #5BBFC5;
    display: inline-block;
    padding-left: 20px;
    line-height: 24px;
}

.single_content h3 {
    font-family: 'Gotham Bold';
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 23px;
    color: #000000;
    padding: 40px 0;

}

.single_content ul {
    font-family: 'GothamBook';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 50px;
    color: #000000;
    margin-left: -20px;
}

.single_content ol {
    font-family: 'GothamBook';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 60px;
    color: #000000;
    margin-left: -20px;
}

.single_content ul li {
    list-style: none;
}

.single_content ul li:before { /* the custom styled bullets */
    background-color: #5BBFC5;
    content: "";
    display: inline-block;
    margin-right: 30px;
    margin-bottom: -4px;
    height: 17px;
    width: 17px;
}

.single_post strong {
    font-weight: 600;
}

.single_post em {
    font-style: italic;
}

.single_post i {
    font-style: italic;
}

/*SINGLE POST PAGE end*/
/*.fees*/
.fees {
    min-height: 340px;
    padding-top: 112px;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.fees .fees_content .bouton {
    border: 5px solid #ffffff;
    color: white;
}

.fees .fees_content {
    background-color: #5BBFC5;
    padding-left: 250px;
    display: flex;
    flex-direction: row;
    align-items: center;

}

.content_box {
    position: relative;
    padding: 20px 0;
}

.fees_content .title {
    font-family: "Gotham Black";
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 23px;
    color: #000000;
    position: relative;
    z-index: 2;
}

.fees .fees_content .line {
    position: absolute;
    z-index: -1;
    top: 45px;
    left: 0px;
    height: 17px;
    width: 0px;
    background-color: #fff;
    transition: 0.8s;
}

.fees .fees_content:hover .line {
    width: 61%;
    z-index: 1;
}

.fees_content .text {
    font-family: "GothamBook";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    text-align: justify;
    color: #000000;
    padding: 25px 0;

}

@media (max-width: 1600px) {
    .content_box {
        max-width: 500px;
        margin: 0 auto;
    }

}

@media (min-width: 1600px) {

    .fees_content .text {
        padding: 25px 162px 20px 0;

    }

}

.fees .img {
    height: 360px;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}

@media only screen and (max-width: 1660px) {
    .single_post {
        padding: 0 20px 150px 20px;
    }

    header .navbar {
        margin-left: 20px;
        width: 15%;
    }

    .navbar-collapse {
        left: 80px;
    }

    .traitments .box_line {
        width: 60%;
        left: 30%;
    }

    .accuel .content {
        max-width: 47%;
        margin-left: 3%;
    }

    .accuel .box-img {
        padding: 20px;
    }

    .slide_title {
        left: 5%;
        z-index: 11;
    }

    .welcome .main_title, .news, .equipe, .valeurs, .technologies .main_title, .traitments .main_title, urgences, .contact {
        padding: 0 20px;
    }

    .content .shape {
        width: 100%;
    }

    .contact-box .row {
        overflow: hidden;
    }

    .contact .shape {
        width: 100%;
    }
}

@media only screen and (max-width: 1440px) {
    .address .road {
        padding-left: 25px;
    }

    .text_box {
        margin-top: 500px;
    }

    .address .tel {
        padding: 25px 0 25px 25px;
    }

    .contact-box {
        margin-top: 30px;
        margin-left: 0;
    }

    header .phone {
        width: 17%;
        font-size: 16px;
    }

    header .address {
        font-size: 16px;
        width: 45%;
        padding-left: 45px;
    }

    ul.nav li {
        padding: 0 5px;
    }

    header .logo {
        right: 0;
        width: 25%;
    }

    .traitments_accordion {
        margin-left: 5%;
    }
}

@media only screen and (max-width: 1200px) {
    ul.nav li a {
        padding: .5rem .6rem;
    }

    .slide_title .bold_title {
        font-size: 25px;
        line-height: 30px;
    }

    .slide_title .line_title {
        width: 310px;
        top: 17px;
    }

    .slide_title {
        width: 100%;
        font-size: 25px;
        line-height: 30px;
    }

    .box-title {
        min-height: 70px;
    }

    .accuel {
        margin-top: 30px;
    }

    .accuel .box-img {
        margin: 0 auto;
    }

    .accuel .content {
        margin-top: 0;
        max-width: 100%;
    }

    .news .instagram {
        margin-top: 10px;
        overflow: hidden;
    }

    .equipe_cards .equipe_card {
        width: 33%;
        margin-top: 70px;
    }

    .valeurs-box .row, .technologies {
        margin: 30px 0;
    }

    .technologies_group .technologie_card .content {
        padding-top: 45px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .traitments {
        margin-top: 90px;
    }

    .address .days {
        margin-left: 0;
        margin-top: 20px;
    }

    .contact_form {
        padding: 30px;
    }

    .traitments_accordion {
        padding: 30px 30px 5px 30px;
    }

    .news .instagram .insta_img {
        width: 20%;
    }
}

@media only screen and (max-width: 992px) {
    header .phone, header .address {
        font-size: 14px;
    }

    header .phone {
        width: 25%;
    }

    header .address {
        width: 55%;
    }

    header .logo {
        display: none;
    }

    .slider .slide {
        height: 100vh;
        background-size: 100%;
    }

    .news .instagram .insta_img {
        width: 25%;
    }

    .slider .bg-picture {
        display: none;
    }

    .slide_title {
        top: 30px;
    }

    .card-img-overlay {
        position: relative;
    }

    .slider .card-img-overlay {
        top: 0;
        overflow: hidden;
        height: 100vh;
    }

    .welcome {
        margin-top: 20px;
    }

    .news {
        margin-top: 0;
    }
}

@media only screen and (max-width: 768px) {
    .urgences_card {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .address .road {
        margin-top: 15px;
        font-size: 16px;
        line-height: 18px;
    }

    .word {
        font-size: 18px;
    }

    header .navbar {
        margin-left: 20px;
        width: 8%;
    }

    header .phone {
        display: none;
    }

    .traitments_accordion {
        padding: 5px;
        margin-left: 0;
        width: 100%;
        margin-top: 20px;
    }

    header .address {
        display: none;
    }

    header .logo {
        display: block;
        width: 70%;
        top: 0;
        max-width: 360px;
    }

    .accuel .box-img .img-border {
        width: 100%;
    }

    .bouton {
        width: 100%;
    }

    .news .instagram .insta_img {
        width: 50%;
    }

    .equipe {
        margin-top: 0;
    }

    .equipe .box-text {
        margin-right: 0;
        margin-top: 0;
    }

    .equipe_cards .equipe_card {
        width: 100%;
        margin-top: 30px;
    }

    .main_title .letter {
        width: 10%;
    }

    .traitments_accordion .panel-title .title {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .traitments_accordion .panel-title {
        margin-bottom: 15px;
    }

    .urgences_group {
        margin-top: 20px;
    }

    .address .days .day {
        width: 33.3%;
    }

    .contact_form form {
        flex-wrap: wrap;
    }

    [type=submit]:not(:disabled), button:not(:disabled) {
        position: relative;
        width: 100%;
        justify-content: center;
        padding: 0;
        right: 0;
        bottom: 0;
        margin-top: 10px;
    }

    .contact_form {
        padding: 20px 5px;
    }

    .valeurs {
        margin-top: 30px;
    }

    ul.nav {
        flex-direction: column;
        background: #ffffff;
        padding-left: 10px;
    }

    .sticker.sticky .navbar-collapse {
        top: 70px;
        left: 0;
        padding: 0;
    }

    .valeurs-box .box-photo .photo {
        width: 50%;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .box-photo .photo:nth-child(2) {
        left: 45%;
    }

    .box-photo .photo:nth-child(3) {
        top: 330px;
    }
}

@media (min-width: 768px) and (max-width: 1600px) {
    .accuel .box-img {
        /*max-width: 310px;*/
    }

    .contact {
        padding-top: 120px;
    }

    .fees .fees_content {

        padding-left: 35px;
    }

    .content_main {
        overflow: hidden;
    }

    .sinle_img {
        height: 180px;
        margin-top: 90px;
    }

    .single_title {
        padding-bottom: 40px;
    }

    .single_title h1 {
        font-size: 32px;
        line-height: 38px;
        margin-right: 0px;
    }

    .head_single .line_title {
        margin-left: 0px;
        /*width: 100%;*/
        top: 25px;
    }

    .single_post .after_title {
        font-size: 18px;
        line-height: 28px;
    }

    .single_post {
        padding: 0 20px 0px 20px;
        max-width: 1000px;
    }

}

@media (min-width: 320px) and (max-width: 767px) {
    .accuel .box-img {
        max-width: 310px;
    }

    .sinle_img {
        height: 140px;
        margin-top: 90px;
    }

    .single_title {
        padding-bottom: 30px;
    }

    .single_title h1 {
        font-size: 28px;
        line-height: 31px;
        margin-right: 0px;
    }

    .head_single .line_title {
        margin-left: 0px;
        width: 100%;
        top: 25px;
    }

    .single_post .after_title {
        font-size: 16px;
        line-height: 24px;
    }

    .single_post {
        padding: 0 20px 0px 20px;
        max-width: 500px;
    }

}

.box_modal_valerus {
    margin-left: -60px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .team_box .doctor .modal-content {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .slider .bg-picture {
        margin-top: -294px;
        margin-left: 0px;
    }

    .content_main {
        padding-top: 50px;
    }

    .slider .center_slider {
        margin-top: 0px;
    }

    .accuel .box-img {
        padding: 20px 10px;
    }

    .accuel .box-img .img-border {
        height: 250px;
    }

    .accuel .box-img {
        max-width: 785px;
    }

    .accuel .box-img .img-photo {
        height: 250px;
    }

    .accuel .box-img .img-lips {
        height: 250px;
    }

    .accuel .box-img .row {
        max-height: 760px;
    }

    .news .instagram .insta_img {
        width: 250px;
    }

    .news .instagram .row {
        margin: auto;
        padding: 20px 0;
        max-width: 510px;
    }

    .team_box .doctor .modal-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .team_box.box {
        padding: 0 40px;
    }

    .box_modal_valerus {
        margin-left: 0px;
        padding: 20px 40px;
    }

    .text_box {
        margin-top: 550px;
    }

    .box-photo .photo:nth-child(1) {

    }

    .box-photo .photo:nth-child(2) {
        left: 275px;
    }

    .box-photo .photo:nth-child(3) {
        left: 0px;
    }

    .valeurs .shape {
        width: 100%;
        max-width: 1024px;
    }

    .technologies_group .technologie_card .content-box {
        justify-content: center !important;
    }

    .technologies_group .technologie_card .text {
        padding-bottom: 40px;
    }

    .traitments_text {
        padding-top: 0px;
        padding-left: 0px;
        float: right;
        margin-top: -80px;
    }

    .urgences {
        margin-top: 300px;
    }

    .fees .fees_content {
        padding: 20px 30px;
    }

    .urgences_card {
        max-width: 350px;
        padding: 15px;
    }

    .fees_content .text {
        font-size: 15px;
        line-height: 18px;
        padding: 25px 20px;
    }

    .contact {
        padding-top: 120px;
    }

    .address {
        margin-top: 30px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .slider .center_slider {
        margin-top: 180px;
    }

    .content_main .card {
        max-height: 860px;
    }

    .accuel .box-img {
        padding: 20px 10px;
    }

    .accuel .box-img .img-border {
        height: 250px;
    }

    .accuel .box-img {
        max-width: 550px;
    }

    .accuel .box-img .img-photo {
        height: 250px;
    }

    .accuel .box-img .img-lips {
        height: 250px;
    }

    .accuel .box-img .row {
        max-height: 760px;
    }

    .news .instagram .insta_img_hover {
        width: 100%;
        left: 0px;
    }

    .news .instagram {
        overflow: visible;
    }

    .news .instagram .insta_img {
        height: 200px;
    }

    .news .instagram .insta_img_hover {
        height: 210px;
    }

    .contact_form {
        max-width: 500px;
    }

    .sticker.sticky .logo_small {
        width: 30%;
        right: 0;
        left: auto;
    }

    .traitments_text {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 15px;
        padding-right: 100px;
        font-size: 14px;
        line-height: 17px;
    }

    .urgences_group .row {
        display: inherit;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    .slider .center_slider {
        margin-top: 180px;
    }

    .content_main .card {
        max-height: 700px;
    }

    .accuel .box-img {
        padding: 20px 10px;
    }

    .accuel .box-img .img-border {
        height: 180px;
    }

    .accuel .box-img {
        max-width: 410px;
    }

    .accuel .box-img .img-photo {
        height: 180px;
    }

    .accuel .box-img .img-lips {
        height: 180px;
    }

    .accuel .box-img .row {
        max-height: 730px;
    }

    .news .instagram .insta_img_hover {
        width: 100%;
        left: 0px;
    }

    .news .instagram {
        overflow: visible;
    }

    .news .instagram .insta_img {
        height: 130px;
    }

    .news .instagram .insta_img_hover {
        height: 140px;
    }

    .sticker.sticky .logo_small {
        width: 50%;
        right: 0;
        left: auto;
    }

}

@media (min-width: 320px) and (max-width: 767px) {

    .bouton {
        max-width: 305px;
    }

    .navbar-collapse {
        z-index: 500;
    }

    .technologies_group .technologie_card .content-box {
        justify-content: center !important;
    }

    .content_main {
        padding-top: 0px;
        margin-top: -100px;
        overflow: hidden;
    }

    .content_main .card {
        border: none;
        border-radius: 0;
        background-color: transparent;
    }

    .slide_title {
        top: 230px;
    }

    .slide_title {
        width: 100%;
        font-size: 18px;
        line-height: 26px;
    }

    .slider .slide {
        height: 750px;
    }

    .equipe .box-text {
        margin-left: 0px;
    }

    .team_box .doctor {
        max-width: 250px;
    }

    .doctor_box:nth-child(1) .doctor:hover .line {
        width: 160px;
    }

    .valeurs .shape {
        display: none;
    }

    .valeurs-box .text_box {
        margin-top: 900px;
    }

    .valeurs-box .box-photo .photo {
        width: 100%;
    }

    .box-photo .photo:nth-child(1) {
        top: 50px;
    }

    .box-photo .photo:nth-child(2) {
        top: 345px;
        left: 0%;
    }

    .box-photo .photo:nth-child(3) {
        top: 590px;
        left: 0%;
    }

    .valeurs .content .text {
        font-size: 16px;
        line-height: 19px;
        padding: 20px 0 50px 0;
    }

    .valeurs .content .title {
        font-size: 28px;
        line-height: 28px;
    }

    .modal {
        padding-right: 10px !important;
        padding-left: 10px;
    }

    .box_modal_valerus {
        margin-left: 0px;
    }

    .team_box .doctor .modal-dialog .modal_text {
        font-size: 14px;
        padding: 20px;
        margin-top: 15px;
    }

    .team_box .doctor .modal-dialog .modal_title {
        font-size: 20px;
        line-height: 20px;
        padding-top: 20px;
    }

    .doctor_box:nth-child(3) .modal-dialog .line_modal {
        width: 220px;
    }

    .team_box .doctor .modal-dialog .line_modal {
        margin-left: 0px;

    }

    .modal img {
        max-width: 50%;
        height: auto;
    }

    .team_box .doctor .modal-dialog .close {
        padding: 25px 0px 0 0;
    }

    .doctor_box:nth-child(1) .modal-dialog .line_modal {
        width: 265px;
    }

    .valeurs-box .row, .technologies {
        overflow: hidden;
    }

    .technologies_group .technologie_card .text {
        font-size: 14px;
    }

    .technologies_group .technologie_card .img {
        height: 240px;
    }

    .traitments .shape {
        display: none;
    }

    .traitments .photo {
        display: none;
    }

    .traitments_accordion .panel-title .title {
        font-size: 14px;
    }

    .fees .fees_content {
        padding-left: 25px;
    }

    .fees_content .text {
        font-size: 14px;
        line-height: 18px;
        padding: 25px 10px;
    }

    .content_box {
        min-height: 350px;
        padding: 20px 0;
    }

    .content_box .bouton {
        width: 81%;
    }

    .fees {
        padding-top: 50px;
    }

    .fees .img {
        height: 240px;
    }

    .contact {
        margin-top: 30px;
        padding: 0 10px;
    }

    .border_map {
        border-right: 0px solid #E24978;
        border-bottom: 0px solid #E24978;
    }

    .single_content {
        font-size: 16px;
        line-height: 28px;
    }

    .single_content ul {
        font-size: 16px;
        line-height: 34px;
        margin-left: 0px;
    }
}

img.alignright {
    float: right;
    margin: 0 0 1em 1em;
}

img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignright {
    float: right;
}

.alignleft {
    float: left;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1440px) and (max-width: 1680px) {
    .slider .card {
        padding: 0 0 0 300px;
    }

    .slider .slide {
        background-position: right;
        background-size: cover;
        max-width: 1334px;
        /*margin-left: 292px;*/
        margin-left: 23%;
    }

    .slider .bg-picture {
        margin: 0 -200px 0 0;
        max-width: 1400px;
        margin-top: -195px;
    }

    .card-img-overlay {
        z-index: 50;
    }

    .slide_title {
        font-size: 24px;
        max-width: 350px;
    }

    .slide_title .bold_title {
        font-size: 26px;
    }

    header .logo {
        width: 25%;
    }

    header .phone,
    header .address {
        font-size: 18px;
    }

}

@media (min-width: 1201px) and (max-width: 1680px) {
    .accuel .content {
        max-width: 35% !important;
        margin-left: 7% !important;
    }

    .valeurs-box .row {
        margin: 0 50px;
    }

    .valeurs .shape {
        left: -130px;
        top: -90px;
    }

    .text_box {
        margin-top: 50px;
    }

    .box-photo .photo:nth-child(1) {
        left: -50px;
    }

    .box-photo .photo:nth-child(2) {
        left: 330px;
    }

    .box-photo .photo:nth-child(3) {
        left: -21px;
    }

    .valeurs .content:nth-child(1) {
        margin-right: -250px;
    }

    .valeurs .content:nth-child(2) {
        margin-right: -150px;
    }

    .valeurs .content .valeur-text {
        max-width: 365px;
        margin: 0 auto;
    }

    .valeurs .content .text {
        font-size: 16px;
        padding: 30px 0 50px 0;
    }

    .traitments_text {
        padding-left: 75px;
        max-width: 400px;
    }
    .traitments_accordion {
        width: 450px;
        margin-left: 50px;
        margin-top: 50px;
        padding: 50px;
    }

    .traitments_accordion .panel-title {
        margin-bottom: 30px;
    }

    .traitments_accordion .panel-title .title {
        padding-right: 20px;
    }
    .panel-group {
        margin-top: 0px;

    }
    .traitments .photo {
        width: 910px;
    }
    .traitments {
        padding-bottom: 100px;
    }
    .days .row {
        flex-wrap: nowrap;
    }
    .contact-box {
        margin-left: 0px;
    }
    #sb_instagram.sbi_col_8 #sbi_images .sbi_item {
        width: 20%;
    }

}

@media (min-width: 992px) and (max-width: 1200px) {
    #sb_instagram.sbi_col_8 #sbi_images .sbi_item {
        width: 25% !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    #sb_instagram.sbi_col_8 #sbi_images .sbi_item {
        width: 33.3% !important;
    }
}
@media (min-width: 481px) and (max-width: 767px) {
    #sb_instagram.sbi_col_8 #sbi_images .sbi_item {
        width: 50% !important;
    }
}
@media (min-width: 1440px) and (max-width: 1450px) {
    .slider .slide {
        margin-left: 292px;
    }
}
