@font-face {
    font-family: 'FMBolyarSansPro500';
    src: url('../fonts/FMBolyarSansPro-500.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'FMBolyarSansPro700';
    src: url('../fonts/FMBolyarSansPro-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'FMBolyarSansPro300';
    src: url('../fonts/FMBolyarSansPro-300.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'AllisonScript';
    src: url('../fonts/AllisonScript-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'MarkPro';
    src: url('../fonts/MarkPro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MarkBook';
    src: url('../fonts/MarkPro-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MarkBold';
    src: url('../fonts/MarkPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'MarkMedium';
    src: url('../fonts/MarkPro-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'MarkLight';
    src: url('../fonts/MarkPro-Light.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}




body{
    color: #2e2e2e; 
    font-family: 'MarkPro';
    font-size: 16px;
}  
*{
    margin: 0px;
    padding: 0px;
}
p{ 
    font-family: 'MarkPro';
    font-size: 16px;
}
ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
a, a:focus, a:hover{
    text-decoration: none;
}

.content_pages{
    min-height: 300px;
}

/* Header */

.header{
    padding: 50px 0;
    position: absolute;
    z-index: 9;
    width: 100%;
}
.header .container .row{
    align-items: center;
}
.hamburger{
    display: none;
}
.menu ul{
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}
.menu ul li{
    display: inline-block;
    margin-left: 100px;
}
.menu ul li:first-child{
    margin-left: 0;
}
.menu ul li a{
    font-family: 'FMBolyarSansPro500';
    font-size: 14px;
    color: #323232;
    text-transform: uppercase;
}
.menu ul li:last-child a{
    color: #fff;
    background: #000;
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.menu ul li:last-child a span{
    position: relative;
    top: -2px;
}
.menu ul li:last-child a img{
    margin-right: 15px;
}
.menu ul li.selected a{
    border-bottom: 2px solid #323232;
    padding-bottom: 5px;
    pointer-events: none;
}
.menu ul li.selected:last-child a{
    border-bottom: 3px solid #fff;
    padding-bottom: 15px;
}
@media (max-width: 1399px){
    .menu ul li {
        margin-left: 80px;
    }
}
@media (max-width: 1199px){
    .menu ul li {
        margin-left: 50px;
    }
}
@media (max-width: 991px){
    .header{
        padding: 30px 0;
    }
    .header .container{
        position: relative;
    }
    .menu {
        position: fixed;
        top: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        background: #323232;
        transition: .7s ease;
        -webkit-transition: .7s ease;
        -moz-transition: opacity .7s ease;
        padding-top: 150px;
        overflow-y: auto;
        text-align: unset;
    }
    .menu ul{
        display: block;
        text-align: center;
    }
    .menu ul li{
        display: block;
        margin-left: 0;
        margin-bottom: 50px;
    }
    .menu ul li a{
        color: #fff;
    }
    .hamburger{
        z-index: 9999;
        width: 35px;
        height: 35px;
        cursor: pointer;
        display: inline-block;
        position: absolute;
        right: 15px;
        top: 3px;
    }
    .hamburger button{
        background: transparent;
        border: 0;
        outline: none;
        position: relative;
        top: 0;
        width: 100%;
        height: 30px;
    }
    /*.hamburger.animate{
        position: absolute;
        top: 0;
        left: 0;
    }*/
    .bar,
    .bar:after,
    .bar:before {
        height: 2px;
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
    }
    .bar {
        transform: translateY(25px);
        background: #323232;
        transition: all 0ms 300ms;
        position: absolute;
        top: -9px;
        width: 25px;
        right: 0;
    }
    .bar.animate {
        background: rgba(255, 255, 255, 0);
    }
    .bar:before {
        content: "";
        position: absolute;
        right: 0;
        top: -10px;
        background: #323232;
        width: 35px;
        transition: bottom 500ms 500ms cubic-bezier(0.23, 1, 0.32, 1), transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .bar:after {
        content: "";
        position: absolute;
        right: 0;
        top: 10px;
        width: 35px;
        background: #323232;
        transition: top 500ms 500ms cubic-bezier(0.23, 1, 0.32, 1), transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .bar.animate:after {
        background: #fff;
        top: -2px;
        transform: rotate(45deg);
        transition: top 500ms cubic-bezier(0.23, 1, 0.32, 1), transform 500ms 500ms cubic-bezier(0.23, 1, 0.32, 1);;
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
        width: 35px;
        height: 2px;
    }
    .bar.animate:before {
        background: #fff;
        top: -3px;
        transform: rotate(-45deg);
        transition: bottom 500ms cubic-bezier(0.23, 1, 0.32, 1), transform 500ms 500ms cubic-bezier(0.23, 1, 0.32, 1);;
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
        width: 35px;
        height: 2px;
    }
    .show_menu {
        left: 0;
        opacity:1;
        z-index: 999;
    }
    .hide_menu {
        opacity:0;
        left: 100%;
    }
}
@media (max-width: 575px){
    .header{
        padding: 20px 0;
    }
    .logo{
        max-width: 150px;
    }
}


/* Switcher Home */

.switcher_home{
    position: relative;
    background: url('../images/switcher_home.jpg') no-repeat;
    background-size: cover;
    width: 100%;
    height: 1100px;
    display: flex;
    align-items: center;
}
.titre_switcher_home{
    padding-left: 50px;
}
.titre_switcher_home h1{
    font-family: 'MarkLight';
    font-size: 80px;
    color: #000;
    line-height: 1;
}
.titre_switcher_home h1 span{
    display: block;
    line-height: 1;
}
.titre_switcher_home h1 strong{
    font-family: 'AllisonScript';
    font-size: 150px;
    font-weight: 100;
    display: block;
    line-height: 1;
    margin-top: -40px;
}
@media (max-width: 991px){
    .switcher_home{
        height: 700px;
    }
    .titre_switcher_home h1 {
        font-size: 50px;
    }
    .titre_switcher_home h1 strong{
        font-size: 100px;
        margin-top: -20px;
    }
    .titre_switcher_home a img{
        height: 50px;
    }
}
@media (max-width: 575px){
    .switcher_home{
        height: 400px;
    }
    .titre_switcher_home{
        padding-left: 20px;
        padding-top: 30px;
    }
    .titre_switcher_home h1 {
        font-size: 30px;
    }
    .titre_switcher_home h1 strong{
        font-size: 60px;
        margin-top: -20px;
    }
    .titre_switcher_home a img{
        height: 40px;
    }
}


/* Footer */

.footer{
    padding: 70px 0;
    text-align: center;
}
.menu_footer{
    padding: 50px 0;
}
.menu_footer ul{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.menu_footer ul li{
    display: inline-block;
    margin-left: 100px;
}
.menu_footer ul li:first-child{
    margin-left: 0;
}
.menu_footer ul li a{
    font-family: 'FMBolyarSansPro500';
    font-size: 14px;
    color: #323232;
    text-transform: uppercase;
}
.menu_footer ul li:last-child a{
    border: 1px solid #323232;
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.menu_footer ul li:last-child a span{
    position: relative;
    top: -2px;
}
.menu_footer ul li:last-child a img{
    margin-right: 15px;
}
.social_footer ul li{
    display: inline-block;
    margin: 0 15px;
}
@media (max-width: 991px){
    .menu_footer ul li {
        margin-left: 50px;
    }
    .menu_footer ul li a{
        font-size: 13px;
    }
    .menu_footer ul li:last-child a {
        padding: 10px 25px;
    }
}
@media (max-width: 767px){
    .menu_footer ul{
        display: block;
    }
    .menu_footer ul li {
        margin-left: 0;
        display: block;
        margin-bottom: 30px;
    }
    .menu_footer ul li:last-child{
        margin-bottom: 0;
    }
}
@media (max-width: 575px){
    .logo_footer a img{
        max-width: 150px;
    }
}

/* Home Page */

/**  A propos home  **/

.video_centre{
    position: relative;
    top: -70px;
    z-index: 1;
}
.video_centre video{
    max-width: 100%;
}
.content_apropos_home{
    padding-top: 80px;
    padding-left: 70px;
}
.content_apropos_home h2{
    font-family: 'FMBolyarSansPro300';
    font-size: 16px;
    color: #454545;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.content_apropos_home h3{
    font-family: 'MarkBold';
    font-size: 35px;
    color: #454545;
    margin-bottom: 50px;
}
.content_apropos_home p{
    font-family: 'MarkPro';
    font-size: 20px;
    color: #636363;
    line-height: 40px;
    margin-bottom: 50px;
}
.content_apropos_home a{
    font-family: 'MarkBold';
    font-size: 20px;
    color: #3b3b3b;
    padding: 15px 30px;
    border-radius: 40px;
    border: 2px solid #3b3b3b;
    display: inline-block;
}
.content_apropos_home a img{
    margin-left: 15px;
}
@media (max-width: 1199px){
    .content_apropos_home {
        padding-top: 40px;
        padding-left: 30px;
    }
    .content_apropos_home h3 {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .content_apropos_home p {
        font-size: 18px;
        line-height: 35px;
        margin-bottom: 30px;
    }
}
@media (max-width: 991px){
    .content_apropos_home {
        padding-top: 0;
        padding-left: 0;
    }
}
@media (max-width: 575px){
    .video_centre {
        top: 0;
    }
    .content_apropos_home {
        padding-top: 40px;
    }
    .content_apropos_home h3 {
        font-size: 21px;
    }
    .content_apropos_home p {
        font-size: 17px;
        line-height: 35px;
    }
    .content_apropos_home a {
        font-size: 17px;
    }
}


/**  Services Home  **/

.services_home{
    margin-top: 70px;
}
.services_home h2 {
    font-family: 'FMBolyarSansPro300';
    font-size: 90px;
    color: transparent;
    -webkit-text-stroke: 1px #454545;
    -moz-text-stroke: 1px #454545;
    -o-text-stroke: 1px #454545;
    text-transform: uppercase;
    margin-bottom: 70px;
    line-height: 1;
    text-align: center;
}
.item_services_home{
    text-align: -webkit-center;
    text-align: -moz-center;
    text-align: -ms-center;
    text-align: -o-center;
}
.item_services_home h3{
    font-family: 'MarkBold';
    font-size: 25px;
    color: #454545;
    margin: 20px 0 30px;
}
.item_services_home p{
    font-family: 'MarkPro';
    font-size: 15px;
    color: #454545;
    line-height: 30px;
    margin: 0;
    max-width: 85%;
}
@media (max-width: 991px){
    .services_home h2{
        font-size: 60px;
        margin-bottom: 30px;
    }
    .services_home .row{
        justify-content: center;
    }
    .item_services_home{
        margin-top: 30px;
    }
}
@media (max-width: 575px){
    .services_home h2{
        font-size: 35px;
        margin-bottom: 10px;
    }
    .item_services_home h3 {
        font-size: 21px;
        margin: 15px 0 20px;
    }
    .item_services_home p {
        line-height: 25px;
        max-width: 100%;
    }
}

/**  Galerie  **/

.galerie{
    margin-top: 130px;
}
.galerie h2{
    font-family: 'FMBolyarSansPro700';
    font-size: 60px;
    color: #454545;
    text-transform: uppercase;
}
.galerie h2 span{
    font-family: 'FMBolyarSansPro300';
}
.galerie .container-fluid{
    padding-left: 0;
    padding-right: 0;
}
.title_galerie{
    font-size: 80px;
    text-align: right;
}
.galerie_slider_content{
    margin-top: -8px;
}
.item_galerie_slider a{
    display: block;
}
.galerie_slider_content .owl-carousel .owl-item img{
    width: 100%;
}
.galerie_slider_content .owl-stage{
    padding-left: 100px !important;
}
.galerie_slider_content .owl-theme .owl-nav{
    position: absolute;
    top: -50px;
    right: 8%;
    margin-top: 0;
    width: 150px;
}
.galerie_slider_content .owl-carousel .owl-nav button.owl-next span,
.galerie_slider_content .owl-carousel .owl-nav button.owl-prev span{
    display: none;
}
.galerie_slider_content .owl-carousel .owl-nav button.owl-next:after,
.galerie_slider_content .owl-carousel .owl-nav button.owl-prev:after{
    content: '';
    position: absolute;
    top: 0;
    width: 59px;
    height: 29px;
    background-size: contain !important;
}
.galerie_slider_content .owl-carousel .owl-nav button.owl-next:after{
    right: 0;
    background: url('../images/next.png') no-repeat;
}
.galerie_slider_content .owl-carousel .owl-nav button.owl-prev:after{
    left: 0;
    background: url('../images/prev.png') no-repeat;
}
.galerie_slider_content .owl-carousel.owl-drag .owl-item{
    opacity: .5;
}
.galerie_slider_content .owl-carousel.owl-drag .owl-item.active{
    opacity: 1 !important;
}
.item_galerie_slider a{
    overflow: hidden;
    position: relative;
    padding-bottom: 80%;
    display: block;
}
.item_galerie_slider a img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    backface-visibility: visible;
}
@media (max-width: 1199px){
    .galerie {
        margin-top: 80px;
    }
    .galerie h2 {
        font-size: 45px;
    }
    .galerie_slider_content .owl-theme .owl-nav {
        top: -40px;
    }
}
@media (max-width: 991px){
    .galerie {
        margin-top: 60px;
    }
    .galerie h2 {
        font-size: 35px;
        margin-bottom: 70px;
    }
}
@media (max-width: 575px){
    .galerie h2 {
        font-size: 25px;
    }
    .galerie_slider_content .owl-theme .owl-nav {
        top: -35px;
        width: 100px;
    }
    .galerie_slider_content .owl-carousel .owl-nav button.owl-next:after,
    .galerie_slider_content .owl-carousel .owl-nav button.owl-prev:after {
        width: 40px;
        height: 20px;
    }
}
@media (min-width: 500px) and (max-width: 767px){
    .galerie_slider_content .owl-stage{
        padding-left: 40px !important;
    }
}
@media (max-width: 499px){
    .title_galerie{
        margin-bottom: 75px;
        font-size: 50px;
    }
    .galerie_slider_content .owl-stage{
        padding-left: 0px !important;
    }
}

/*  Switcher  */

.switcher{
    position: relative;
    background: #a6b0ba;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}
.switcher h1{
    font-family: 'MarkLight';
    font-size: 80px;
    color: #000;
    margin: 0;
}
@media (max-width: 991px){
    .switcher{
        height: 350px;
        padding-top: 70px;
    }
    .switcher h1{
        font-size: 7vmax;
    }
}
@media (max-width: 575px){
    .switcher h1{
        font-size: 5vmax;
    }
}

/*  Contact  */

.content_contact{
    margin-top: 70px;
}
.info_contact h2{
    font-family: 'MarkBold';
    font-size: 35px;
    color: #000;
    margin-bottom: 60px;
}
.info_contact h2 span{
    display: block;
}
.info_contact ul li{
    display: inline-block;
    width: 49%;
    margin-bottom: 40px;
}
.info_contact ul li.location{
    width: 100%;
}
.info_contact ul li span{
    font-family: 'MarkMedium';
    font-size: 18px;
    color: #000;
    margin-left: 25px;
}
.info_contact ul li samp{
    width: 32px;
    display: inline-block;
}
.map{
    position: relative;
    margin-top: 70px;
}
.map iframe{
    width: 100%;
    height: 500px;
}
.text_input{
    margin-bottom: 30px;
    position: relative;
}
.text_input input, .text_input textarea{
    width: 100%;
    height: 60px;
    font-family: 'MarkLight';
    font-size: 18px;
    color: #5f5f5f;
    border: 1px solid #000;
    border-radius: 30px;
    outline: none;
    padding-left: 30px;
}
.text_input textarea{
    resize: none;
    height: 150px;
    padding-top: 30px;
}
.text_input input::placeholder, .text_input textarea::placeholder{
    font-family: 'MarkLight';
    font-size: 18px;
    color: #5f5f5f;
}
input[type='date' i]{
    display: flex !important;
}
samp.error{
    color: red;
    padding-left: 20px;
    position: absolute;
    left: 0;
    bottom: -23px;
}
.button_submit button{
    font-family: 'MarkBold';
    font-size: 21px;
    color: #fff;
    background: #000;
    border: 0;
    border-radius: 30px;
    outline: none;
    height: 60px;
    width: 250px;
}
.close_contact{
    background: transparent;
    border: 0;
    position: absolute;
    right: 30px;
}
.close_contact span{
    font-size: 20px;
    line-height: 1;
}
@media (max-width: 1199px){
    .info_contact h2{
        font-size: 30px;
    }
    .info_contact ul li span {
        font-size: 17px;
        margin-left: 15px;
    }
}
@media (max-width: 575px){
    .info_contact h2{
        font-size: 25px;
        margin-bottom: 40px;
    }
    .info_contact ul li{
        display: block;
        width: 100%;
    }
    .text_input input, .text_input textarea{
        padding-left: 20px;
        font-size: 16px;
        height: 50px;
    }
    .text_input textarea{
        padding-top: 20px;
        height: 150px;
    }
    .text_input input::placeholder, .text_input textarea::placeholder{
        font-size: 16px;
    }
    .button_submit button {
        font-size: 19px;
        width: 200px;
    }
}

/* Services */

.block_service_01{
    margin: 70px 0;
}
.block_service_01 .row{
    align-items: center;
}
.text_block_service_01 h2{
    font-family: 'MarkPro';
    font-size: 70px;
    color: #2c2c2c;
    line-height: 1;
    margin-bottom: 50px;
}
.text_block_service_01 h2 span{
    display: block;
    line-height: 1;
}
.text_block_service_01 p{
    font-family: 'MarkPro';
    font-size: 21px;
    color: #636363;
    line-height: 45px;
}
.img_block_service_01{
    text-align: right;
}

.block_service_02{
    position: relative;
    width: 100%;
    height: 1100px;
    margin-top: 100px;
}
.img_block_service_02{
    position: relative;
    top: -70px;
}
.text_block_service_02{
    padding: 70px 0 0 50px;
}
.text_block_service_02 h2{
    font-family: 'MarkPro';
    font-size: 70px;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}
.text_block_service_02 label{
    font-family: 'MarkLight';
    font-size: 30px;
    color: #fff;
    line-height: 1;
    margin-bottom: 50px;
}
.text_block_service_02 p{
    font-family: 'MarkPro';
    font-size: 21px;
    color: #fff;
    line-height: 45px;
}
.block_service_02_bottom{
    text-align: -webkit-center;
    text-align: -moz-center;
    text-align: -ms-center;
    text-align: -o-center;
    padding-top: 150px;
}
.block_service_02_bottom h3{
    font-family: 'MarkPro';
    font-size: 45px;
    color: #fff;
    margin-bottom: 50px;
}
.block_service_02_bottom p{
    font-family: 'MarkPro';
    font-size: 25px;
    color: #fff;
    line-height: 50px;
    width: 80%;
}

.block_service_03.services_home {
    position: relative;
    margin-top: -70px;
}
.block_service_03 .item_services_home h3{
    min-height: 60px;
}

.block_service_04{
    margin-top: 70px;
}
.block_service_04 .row{
    align-items: center;
}
.text_block_service_04_left{
    position: relative;
    background: url('../images/img3.jpg') no-repeat bottom;
    background-size: cover;
    width: 100%;
    height: 740px;
    padding: 250px 50px 0 50px;
}
.text_block_service_04_right{
    position: relative;
    background: #000 url('../images/femme2.png') no-repeat top;
    background-size: contain;
    width: 100%;
    height: 820px;
    padding: 280px 50px 0 50px;
}
.block_service_04 h3{
    font-family: 'MarkPro';
    font-size: 45px;
    color: #fff;
    margin-bottom: 50px;
}
.block_service_04 h3 span{
    display: block;
    line-height: 1;
}
.block_service_04 p{
    font-family: 'MarkPro';
    font-size: 21px;
    color: #fff;
    line-height: 45px;
}
.block_service_04 .text_block_service_04_left h3,
.block_service_04 .text_block_service_04_left p{
    color: #000;
}

.block_service_05{
    margin-top: 100px;
}
.block_service_05 .row{
    align-items: center;
}
.text_block_service_05 h2{
    font-family: 'MarkPro';
    font-size: 60px;
    color: #000;
    line-height: 1;
    margin-bottom: 60px;
}
.text_block_service_05 h2 span, .text_block_service_05 h3 span{
    display: block;
    line-height: 1;
}
.text_block_service_05 h2 label{
    display: block;
    font-family: 'AllisonScript';
    font-weight: 700;
    padding-left: 30px;
}
.text_block_service_05 h3{
    font-family: 'MarkMedium';
    font-size: 30px;
    color: #000;
    line-height: 2;
    margin-bottom: 50px;
}
.text_block_service_05 p{
    font-family: 'MarkPro';
    font-size: 23px;
    color: #000;
    line-height: 50px;
}

.block_service_06{
    text-align: -webkit-center;
    text-align: -moz-center;
    text-align: -ms-center;
    text-align: -o-center;
    padding: 80px 0 100px;
    background: #000;
}
.block_service_06 p{
    font-family: 'FMBolyarSansPro300';
    font-size: 30px;
    color: #fff;
    line-height: 60px;
    max-width: 85%;
    margin-bottom: 0;
}
.block_service_06 p span{
    font-size: 35px;
    display: block;
    line-height: 1;
}
.block_service_06 p label{
    font-family: 'MarkPro';
    display: block;
    line-height: 1;
    margin-top: 25px;
    margin-bottom: 10px;
}
.block_service_06 p b{
    font-family: 'MarkMedium';
    font-weight: 500;
    display: block;
    line-height: 1;
}

.blocks_services_with_bg{
    padding: 30px 0;
}
.text_blocks_services_with_bg{
    padding-top: 70px;
}
.text_blocks_services_with_bg h3{
    font-family: 'MarkBold';
    font-size: 50px;
    color: #fff;
    line-height: 1;
    margin-bottom: 30px;
}
.text_blocks_services_with_bg p{
    font-family: 'MarkPro';
    font-size: 25px;
    color: #fff;
    line-height: 45px;
    margin-bottom: 0;
}

@media (max-width: 1399px){
    .text_block_service_05 h3 span{
        line-height: unset;
    }
    .block_service_06 p{
        font-size: 25px;
    }
    .block_service_06 p span{
        font-size: 32px;
    }
}
@media (max-width: 1199px){
    .text_block_service_01 h2{
        font-size: 50px;
    }
    .block_service_02 {
        height: 900px;
    }
    .text_block_service_02 h2 {
        font-size: 60px;
    }
    .text_block_service_02 label {
        font-size: 25px;
        margin-bottom: 35px;
    }
    .block_service_02_bottom {
        padding-top: 90px;
    }
    .block_service_02_bottom p {
        font-size: 22px;
        line-height: 40px;
        width: 100%;
    }
    .block_service_03 .item_services_home h3{
        font-size: 22px;
    }
    .block_service_03 .item_services_home p {
        font-size: 15px;
        max-width: 100%;
    }
    .block_service_04 h3 {
        font-size: 35px;
        margin-bottom: 40px;
    }
    .block_service_04 p {
        font-size: 19px;
        line-height: 40px;
    }
    .text_block_service_05 h2 {
        font-size: 50px;
        margin-bottom: 30px;
    }
    .text_block_service_05 h3 {
        font-size: 23px;
        margin-bottom: 40px;
    }
    .text_block_service_05 p {
        font-size: 21px;
        line-height: 40px;
    }
    .block_service_06 p{
        max-width: 100%;
    }
}
@media (max-width: 991px){
    .text_block_service_01 h2{
        font-size: 40px;
        margin-bottom: 35px;
    }
    .text_block_service_01 p {
        font-size: 18px;
        line-height: 40px;
    }
    .block_service_02 {
        height: 700px;
    }
    .text_block_service_02 {
        padding: 50px 0 0 0;
    }
    .text_block_service_02 h2 {
        font-size: 40px;
    }
    .text_block_service_02 label {
        font-size: 19px;
        margin-bottom: 30px;
    }
    .text_block_service_02 p {
        font-size: 18px;
        line-height: 35px;
    }
    .img_block_service_02 {
        top: -30px;
    }
    .block_service_02_bottom {
        padding-top: 50px;
    }
    .block_service_02_bottom h3 {
        font-size: 35px;
        margin-bottom: 30px;
    }
    .block_service_02_bottom p {
        font-size: 20px;
        line-height: 35px;
    }
    .block_service_04 h3 {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .block_service_04 p {
        font-size: 18px;
        line-height: 30px;
    }
    .text_block_service_05 h2 {
        font-size: 40px;
    }
    .text_block_service_05 h3 {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .text_block_service_05 p {
        font-size: 19px;
        line-height: 35px;
    }
    .block_service_06 {
        padding: 70px 0;
    }
    .block_service_06 p {
        font-size: 21px;
        line-height: 50px;
    }
    .block_service_06 p span {
        font-size: 25px;
    }
    .text_blocks_services_with_bg {
        padding-top: 50px;
    }
    .text_blocks_services_with_bg h3 {
        font-size: 35px;
    }
    .text_blocks_services_with_bg p {
        font-size: 20px;
        line-height: 35px;
    }
}
@media (max-width: 767px){
    .block_service_02{
        height: 100%;
        padding-bottom: 50px;
    }
    .block_service_02 .row{
        flex-direction: column-reverse;
    }
    .img_block_service_02 {
        top: 0;
    }
    .block_service_03 .item_services_home h3 {
        min-height: auto;
    }
    .services_home.block_service_03{
        margin-top: 20px;
    }
    .text_block_service_04_left {
        height: 500px;
        padding: 130px 50px 0 50px;
    }
    .text_block_service_04_right {
        height: 600px;
        padding: 200px 50px 0 50px;
    }
    .text_block_service_05{
        margin-top: 30px;
    }
    .block_service_06 p {
        font-size: 18px;
        line-height: 40px;
    }
    .block_service_06 p span {
        font-size: 20px;
    }
    .text_blocks_services_with_bg {
        padding-top: 30px;
    }
    .text_blocks_services_with_bg h3{
        margin-bottom: 20px;
    }
}
@media (max-width: 575px){
    .text_block_service_01 h2 {
        font-size: 35px;
        margin-bottom: 30px;
    }
    .block_service_02 {
        margin-top: 50px;
    }
    .block_service_02_bottom p {
        font-size: 18px;
    }
    .text_block_service_04_left {
        height: 400px;
        padding: 100px 20px 0 20px;
    }
    .text_block_service_04_right {
        height: 550px;
        padding: 130px 20px 0 20px;
    }
    .text_blocks_services_with_bg h3 {
        font-size: 30px;
    }
    .text_blocks_services_with_bg p {
        font-size: 18px;
        line-height: 30px;
    }
}

/*  Le centre  */

.titre_block_centre_01 h2{
    font-family: 'MarkPro';
    font-size: 70px;
    color: #2c2c2c;
    margin-top: 70px;
}
.text_block_centre_01{
    position: relative;
    top: -50px;
}
.text_block_centre_01 p{
    font-family: 'MarkPro';
    font-size: 21px;
    color: #636363;
    line-height: 45px;
    margin-top: 40px;
}

.block_centre_02{
    position: relative;
    width: 100%;
    padding: 150px 0;
    margin-top: 100px;
    text-align: -webkit-center;
    text-align: -moz-center;
    text-align: -ms-center;
    text-align: -o-center;
}
.text_block_centre_02 h2, .text_block_centre_03 h2, .text_block_centre_04 h2{
    font-family: 'MarkPro';
    font-size: 45px;
    color: #fff;
    margin-bottom: 50px;
}
.text_block_centre_02 p, .text_block_centre_03 p, .text_block_centre_04 p{
    font-family: 'MarkPro';
    font-size: 22px;
    color: #fff;
    line-height: 45px;
    margin-bottom: 0;
    max-width: 80%;
}

.block_centre_03{
    position: relative;
    width: 100%;
    height: 930px;
    text-align: -webkit-center;
    text-align: -moz-center;
    text-align: -ms-center;
    text-align: -o-center;
}
.text_block_centre_03{
    padding-top: 120px;
}
.text_block_centre_03 h2, .text_block_centre_03 p, .text_block_centre_04 h2, .text_block_centre_04 p{
    color: #000;
}

.block_centre_04 .row{
    align-items: center;
}
.text_block_centre_04{
    padding-left: 70px;
}
.img_block_centre_04{
    position: relative;
    top: -50px;
}
.text_block_centre_04 p{
    max-width: 100%;
}
@media (max-width: 1199px){
    .titre_block_centre_01 h2{
        font-size: 55px;
    }
    .text_block_centre_04 h2{
        font-size: 40px;
        margin-bottom: 40px;
    }
    .text_block_centre_04 p{
        font-size: 20px;
        line-height: 40px;
    }
}
@media (max-width: 991px){
    .titre_block_centre_01 h2{
        font-size: 45px;
        margin-bottom: 30px;
    }
    .text_block_centre_01 {
        top: 0;
    }
    .block_centre_02 {
        padding: 100px 0;
        margin-top: 50px;
    }
    .block_centre_03{
        height: 800px;
    }
    .text_block_centre_02 p, .text_block_centre_03 p, .text_block_centre_04 p{
        max-width: 100%;
    }
    .text_block_centre_04 {
        padding-left: 0;
    }
}
@media (max-width: 757px){
    .titre_block_centre_01 h2{
        font-size: 35px;
    }
}
@media (max-width: 575px){
    .titre_block_centre_01 h2{
        font-size: 30px;
    }
    .text_block_centre_01 p {
        font-size: 18px;
        line-height: 35px;
        margin-top: 30px;
    }
    .block_centre_03 {
        height: 700px;
    }
    .text_block_centre_03 {
        padding-top: 100px;
    }
    .text_block_centre_02 h2, .text_block_centre_03 h2, .text_block_centre_04 h2 {
        font-size: 30px;
        margin-bottom: 35px;
    }
    .text_block_centre_02 p, .text_block_centre_03 p, .text_block_centre_04 p {
        font-size: 18px;
        line-height: 35px;
    }
}

/* Prendre RDV */

.content_rdv{
    margin: 70px 0;
}
.titre_rdv{
    padding-top: 70px;
}
.titre_rdv h2{
    font-family: 'MarkPro';
    font-size: 60px;
    color: #000;
    line-height: 70px;
}
.titre_rdv h2 span{
    display: block;
}
.titre_rdv h2 b{
    font-family: 'MarkBold';
}
.text_input label {
    font-family: "MarkMedium";
    font-size: 18px;
    color: #000;
    padding-left: 15px;
}
[type="radio"]:checked, [type="radio"]:not(:checked) {
    width: 0 !important;
    position: absolute !important;
}
[type="radio"]:checked + label, [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: inline-block;
    margin-left: 15px;
}
[type="radio"]:checked + label:nth-of-type(1), [type="radio"]:not(:checked) + label:nth-of-type(1) {
    margin: 0 50px 15px 15px;
}
[type="radio"]:checked + label:before, [type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 23px;
    height: 23px;
    border-radius: 100%;
    border: 1px solid #a6b0ba;
    cursor: pointer;
}
[type="radio"]:checked + label:after, [type="radio"]:not(:checked) + label:after {
    content: "";
    width: 13px;
    height: 13px;
    background: #000;
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
::-webkit-calendar-picker-indicator{
    width: 50px;
    display: inline-flex;
    justify-content: center;
}
@media (max-width: 1199px){
    .titre_rdv h2 {
        font-size: 50px;
    }
}
@media (max-width: 991px){
    .titre_rdv h2 {
        font-size: 30px;
        line-height: 50px;
        margin-bottom: 30px;
    }
    .titre_rdv {
        padding-top: 0;
    }
}

/* Page introuvable */

.img_introuvable{
    text-align: center;
}










































