body {
	color: #666;
    background-color: white;
    /*background: linear-gradient(180deg, rgba(226,218,207,1) 0%, rgba(213,206,196,1) 8%, rgba(223,197,148,1) 100%);*/
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 24px;
    overflow-x: hidden;
}

a,
a:hover,
a:focus {
	text-decoration: none;
	color: inherit;
	outline: none;
}
a, .btn {
	-webkit-transition: .3s ease;
    transition: .3s ease;
}

img {
	max-width: 100%;
}

h1,h2,h3,h4,h5, .h3, .h2 {
	color: #ea0b0b;
	font-weight: 300;
}
h2 {
    font-size: 26px;
    line-height: 36px;
}

/*
Header
*/
#sticky-wrapper {
    position: relative;
    z-index: 10000 !important;
}
.header {
    background: #a67629;
    height: 80px;
    position: relative;
    z-index: 10000 !important;
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
}
@media (min-width: 1200px) {  
    .header .container {
        max-width: 1400px;
    }
}
.logo {
    width: 20%;
    flex: 0 0 22%;
}
@media(max-width: 767px) {
	.logo {
	    width: 50%;
	    flex: 0 0 50%;
	}
}

.TelMob {
    text-align: center;
    padding: 5px 0;
    background-color: #000;
}
.TelMob a {
    font-size: 18px;
    margin: 0 10px;
    color: white;
    padding: 12px 0;
}

/*
Nav
*/
.nav {
	height: 80px;
	width: 80%;
    flex: 0 0 80%;
}
.nav-list {
	display: table;
	height: 100%;
    list-style: none;
    margin: 0;
    padding-left: 15px;
    position: relative;
}
.nav-item {
	display: table-cell;
	vertical-align: middle;
	/*position: relative;*/
	padding: 0 7px;
	height: 100%;
	width: 15%;
    background: rgb(0, 0, 0, .3);
}
.Desktop .nav-item:last-child {
	width: 20%;
}
.nav-item > a {
	text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    position: relative;
    text-align: center;
    line-height: 100%;
    font-size: 13px;
    display: flex;
    height: 100%;
    align-items: center; 
}

.nav-item > a:before,
.nav-item > a:after {
    transition: opacity .25s ease;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 0;
    width: 0;
    border: solid transparent;
    pointer-events: none;
    opacity: 0;
}
.nav-item > a:before {
    border-color: rgba(199,198,197,0);
    border-bottom-color: #d9d9d7;
    border-width: 7px;
}
.nav-item > a:after {
    border-color: rgba(255,255,255,0);
    border-bottom-color: #ea0b0b;
    border-width: 6px;
}
.nav-item.active > a:before,
.nav-item.active > a:after,
.nav-item:hover > a:before,
.nav-item:hover > a:after {
    opacity: 1;
}

.nav-submenu {
	padding-left: 0;
    margin: 0;
    list-style: none;
    display: block;
    opacity: 0;
    transition: opacity .25s ease;
    position: absolute;
    min-width: 250px;
    pointer-events: none;
    border: 1px solid #c7c6c5;
    border-top: 0;
    border-radius: 3px;
    box-shadow: 0 5px 10px 0 rgb(0 0 0 / 5%);
    left: -15px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 20px;
    background-color: white;
    width: 100%;
    column-count: 3;
}
.Desktop .nav-submenu{
    margin-top: 36px;
}
.nav-item:hover .nav-submenu {
	opacity: 1;
    pointer-events: auto;
}
.nav-submenu-item {
    padding: 0 15px;
}
.nav-submenu-item > a {
    color: #222;
    display: block;
    border-bottom: 1px dotted #ddd;
    padding: 10px 0;
}


/* Mobile navigation */
.nav-mobile {
  	display: none;
  	cursor: pointer;
    background: #000 url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/17824/nav.svg) no-repeat 60px 50%;
    background-size: 18px;
    height: 45px;
    width: 90px;
    color: white;
    line-height: 45px;
    padding-left: 12px;
}
.nav-click {
  position:absolute;
  top:0;
  right:0;
  display:none;
  border-left:1px solid #000;
  background-color: #000;
  height:44px;
  width:50px;
  cursor:pointer;
  z-index: 10000 !important;
}
.nav-click i {
	display:block;
	height:48px;
	width:48px;
	background:url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/17824/drop.svg) no-repeat center center;
	background-size:20px;
}
.nav-click:hover {
	background-color:#000;
}
.nav-rotate {
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-o-transform:rotate(180deg);
	transform:rotate(180deg);
}

@media only screen and (max-width: 767px) {
	.header {
		height: inherit;
	}
	.header .d-flex {
		justify-content: space-between;
		align-items: center;
	}
    .nav-mobile {
      display:block;
    }
    .nav {
      width:100%;
      display: block;
      height: inherit;
      position: absolute;
    }
    .nav-list {
    	background: white;
      display:none;
      padding: 0;
      position: static;
    }
    .nav-item {
        background: white;
      width:100%;
      display: block;
      height: initial;
    }
    .nav-item > a {
        display: block;
         padding: 15px;
	    color: #000;
	    text-align: left;
    }
    .nav-click {
      display:block;
    }
    .nav-mobile-open {
      border-radius:5px 5px 0 0;
      -webkit-border-radius:5px 5px 0 0;
      -moz-border-radius:5px 5px 0 0;
    }
    .nav-item:hover .nav-submenu {
      	display:none;

      	border: none;
    	box-shadow: none;
    	background: #efefef;
    }
    .nav-submenu {
      position:static;
      width:100%;
      display: none;
      column-count: 2;
    }
    .nav-submenu-item > a {
        padding: 6px 0;
        font-size: 9px;
        line-height: 130%;
        text-transform: none;
    }
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


/*
Homeslider
*/
.homeslider {
    position: relative;
    height: 588px;
}
.sliderHome .row {
	margin-right: -1px;
    margin-left: -1px;
}
.sliderHome .row > div {
	padding-right: 1px;
    padding-left: 1px;
}
.imgSlider {
    height: 588px;
    background-color: #ddd;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media(max-width: 767px) {
	.homeslider,
	.imgSlider {
		height: 230px;
	}
}
.captionSlider {
    position: absolute;
    width: 100%;
    top: 58%;
    transform: translateY(-50%);
    z-index: 99;
}
.title-slider {
    text-transform: uppercase;
    color: white;
    font-weight: 800;
    font-size: 30px;
    line-height: 150%;
    padding-top: 35px;
    text-shadow: 0px 1px 7px #292828;
}
.title-slider span:first-child {
    display: block;
    text-shadow: 0px 1px 7px #292828;
    font-weight: 300;
    font-size: 30px;
    margin-bottom: 24px;
}
.title-slider span:first-child:after {
    content: "";
    display: block;
    width: 373px;
    border-bottom: 8px solid #ea0b0b;
    margin-top: -3px;
}

@media(max-width: 767px) {
	.title-slider {
		font-size: 18px;
		padding-top: 0;
        position: absolute;
	}
	.title-slider span {
    font-size: 21px;
	}
	.title-slider span:first-child:after {
		width: 270px;
	    margin-top: 2px;
	}
}
.rappelSlider, .DevisSlider {
    display: inline-block;
    vertical-align: top;
}
.rappelSlider {
    width: 50%;
    padding-right: 15px;
}
.rappelSlider > div {
    background: rgb(255, 255, 255);
    padding: 20px;
}
#mail, #mail2 { display: none; }
.DevisSlider {
    background: rgb(255, 255, 255);
    padding: 20px;
    position: relative;
    width: 60%;
}
@media(max-width: 767px) {
	.rappelSlider,
	.DevisSlider {
		width: 100%;
		display: block;
        margin: 40px 0;
	}
	.rappelSlider {
		padding-right: 0;
	}
}
.form-input {
    display: block;
    width: 100%;
    margin: 5px 0;
    padding: 10px 10px;
    background: white;
    border: 1px solid #ddd;
}
textarea.form-input {
    height: 100px;
}
.form-input:focus {
	outline: none;
	box-shadow: none;
	-webkit-transition: .3s ease;
    transition: .3s ease;
}
.DevisSlider .h3,
.rappelSlider .h3 {
	background: url(../images/black-twill.png) repeat-x left center;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
}
.DevisSlider .h3 span,
.rappelSlider .h3 span {
	background-color: white;
	padding-right: 15px;
}
.btn-devis {
    border: 2px solid #ea0b0b;
    background: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 7px 25px;
    display: block;
    margin-top: 10px;
    cursor: pointer;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    color: #ea0b0b;
}
.btn-devis:hover {
    background-color: #000;
    color: white;
}
.btn-devis:focus {
    outline: none;
    box-shadow: none;
}
.Desktop .btn-devis.btn-realisations { 
    background-color: rgb(0, 0, 0, .3);
    border-color: #a67629;
    color: #fff;
    width: auto;
    text-align: center;
    position: relative;
}
.Desktop .btn-devis.btn-realisations:before {
    position: absolute;
    content: '';
    background: url(../images/img/bg.jpg);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
.Mobile .btn-devis.btn-realisations {
    background: #a67629;
    border-color: #a67629;
    color: black;
    width: auto;
    text-align: center;
    position: relative;
    top: 40px;
}
#rappel_immediat .btn-devis {
	width: 100%;
    margin-top: 5px;
}
.tel-slider {
    padding: 0 !important;
    padding-left: 10px !important;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    position: fixed;
    z-index: 999999;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 98px;
}
.tel-slider img {
    width: 50px;
}
.tel-slider span {
    display: flex;
    font-size: 24px;
    margin: 8px 0;
    color: white;
    font-weight: 600;
    background: #ea0b0b;
    align-items: center;
    padding: 5px 10px;
}
.call {
    display: block; 
    overflow: hidden; 
    margin: 0 auto 15px; 
}
span.call img {
    width: 250px;
    height: 250px;
    object-fit: cover;
}
/*
Categories
*/
.Desktop .categories {
    padding: 120px 0 60px;
    position: relative;
}
.Mobile .categories {
    padding: 0;
    position: relative;
}
.categories-inner .h2 {
    text-align: center;
    font-size: 36px;
}
.categories-item {
    margin-top: 35px;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}
.categories-item .slick-track {
	margin-right: -15px;
    margin-left: -15px;
}
.categories-item .box-cat_ {
    padding-right: 15px;
    padding-left: 15px;
}
@media(max-width: 767px) {
	.categories-item .box-cat_ {
		padding: 0;
		margin-bottom: 20px;
        display: inline-block;
        vertical-align: top;
        width: 46%;
        margin-left: 5px;
        margin-right: 5px;
	}
    .categories-item .box-cat_ img {
        width: 100%;
    }
}
.categories-item a {
    display: block;
}
.categories-item a span {
    text-transform: uppercase;
    line-height: 130%;
    background: #ea0b0b;
    height: 50px;
    padding: 10px;
    display: flex;
    align-items: center;
    color: #ffffff;
}

/*
Contenu
*/
.wrap {
	font-size: 16px;
	line-height: 30px;
	color: #000000;
}

.wrap h1 {
	border-left: 5px solid #ea0b0b;
    color: #000;
    text-transform: uppercase;
    font-size: 30px;
    padding-left: 15px;
}
.wrap h1:after {
	content: "";
    background: url(../images/black-twill.png) repeat-x left center;
	display: block;
	height: 25px;
}
.Desktop .row-reverse {
	flex-direction: row-reverse;
}
.section1 {
	padding: 80px 0 0;
    background: #ececec;
}
#interne .section1{
	padding-bottom: 60px;
}
.img-intero {
    border: 15px solid white;
    box-shadow: 0 2px 15px #ddd;
}
.section2 {
	/*background-color: #f5e2bd;*/
	padding: 60px 0;
	/*margin-top: -50px;*/
}
#interne .section2{
	margin-top: 0;
}
.section3 {
    padding: 60px 0;
    position: relative;
}
.section4 {
	position: relative;
    padding: 40px 0 30px;
    color: white;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}
.section4 .overlay {
	background-repeat: repeat;
    background-image: url(../images/row-pattern.png);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; 
    opacity: 0.8;
}
.item4.text-center.aos-init.aos-animate {
    background: rgb(0, 0, 0, .3);
}
.item4 {
	position: relative;
}
.item4 h2 {
    color: white;
    font-weight: 400;
}
.item-img img:last-child {
	margin-top: -47px;
}
.item-text:last-child p {
	margin-bottom: 0;
}
.Desktop .logo-inner {
    max-width: 100%;
    position: relative;
    top: 78px;
}
.Mobile .logo-inner {
    max-width: 100%;
    margin: auto;
    background: #000000d4;
    padding: 10px;
    width: 100%;
}
@media(max-width: 767px) {
	.section1 {
		padding: 20px 0;
	}
	.section1 .row {
		flex-direction: column-reverse;
	}
	.section2 {
		margin-top: 0;
		padding: 20px 0;
	}
	.item-img img:last-child {
		margin-top: -23px;
	}
} 
.logo-prart {
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
    color: white;
    padding: 30px 0;
    position: relative;
}
.logo-prart:before {
	content:"";
    /*background: #000;*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .85;
}
.logo-item {
	text-align: center;
	position: relative;
}

div#realisations {
    padding: 5rem 0;
}
.Mobile #swipebox-close {
    right: 35%;
    width: 30px;
    height: 30px;
    background-position: 5px 2px;
    transform: translateX(-50%);
}
/*
Footer
*/
.info-footer {
    padding: 60px 0;
    background: #000;
    color: white;
}
.logo-footer a {
	display: block;
    text-align: center;
    background: white;
}

.copyright {
    padding: 10px 0;
}
.Desktop .texte-agence {
    border-top: 5px solid white;
    padding-top: 15px;
    margin-top: 10px;
}
#bdrl {
	border-left: 1px solid white;
	padding-left: 35px;
}
.info-divers .h3 {
    color: white;
}
.info-divers .h3:after {
    content: "";
    display: block;
    width: 50px;
    border-bottom: 7px solid white;
    margin-left: 2px;
    margin-top: 5px;
    margin-bottom: 15px;
}
.info-divers ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}
.liens-compt li {
    margin-bottom: 15px;
}
.partenaires {
    background: white;
    padding: 60px 0;
}
.box-part span {
    height: 159px;
    border: 1px solid #c1c1c1;
    margin: 15px 0;
    padding: 15px;
}
.Mobile .box-part span {
    height: inherit;
}
.liens-compt li:last-child {
    margin-bottom: 0;
}

.flag {
    margin-top: 83px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.Mobile .flag {
    margin-top: -80px;
}
.flag img {
    width: 100px;
    height: 67px;
    object-fit: contain;
}
.adr {
    margin-top: 15px;
}
#Map {
    height: 200px;
    width: 100%;
}

.wrap .row.align-items-center img {
    border: 15px solid #efebeb;
    /*margin-bottom: 52px;*/
}

a.logo {
    background: rgb(255, 255, 255, .8);
    padding: 5px;
    max-width: 225px;
    position: relative;
}
a.logo:before{
    position: absolute;
    content: '';
    background-image: url(../images/img/bg.jpg);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
.Mobile a.logo {
    padding: 0;
    margin: 10px 0;
}
/*
@media(max-width: 767px) {
    a.logo { background: none; }
}*/
.logo-footer a img {
    background: white;
    padding: 5px;
}
.captionSlider img {
    border: none !important;
}


#avis_form {
    margin-top: 15px;
}

#MonAvis,
#avis_form {
  padding: 0 2%;
}
#MonAvis span {
  font-size: 18px;
  color: #333;
  display: block;
}
.item-tem .avis {
  display:inline-block;
  vertical-align: top;
}

#avis_form label {
  display: block;
  margin-bottom: 8px
}

#avis_form .input-form {
  margin: 0 0 15px 0;
  width: 100%
}

.avis a {
  width:10%;
  float:left;
  height:100%;

}
.avis > i {
  background: url('../images/rating-sprit.png') no-repeat;
  display: inline-block;
  height: 23px;
  width: 120px;
  margin-right: 15px;
}
.avis-0 {
  background-position: 0 0 !important;
}
.avis-1 {
  background-position: 0 -25px !important;
}
.avis-2 {
  background-position: 0 -50px !important;
}
.avis-3 {
  background-position: 0 -75px !important;
}
.avis-4 {
  background-position: 0 -100px !important;
}
.avis-5 {
  background-position: 0 -125px !important;
}
.avis-6 {
  background-position: 0 -150px !important;
}
.avis-7 {
  background-position: 0 -175px !important;
}
.avis-8 {
  background-position: 0 -200px !important;
}
.avis-9 {
  background-position: 0 -225px !important;
}
.avis-10 {
  background-position: 0 -250px !important;
}

section#temoignages {
    text-align: center;
    padding: 40px;
    background: linear-gradient(
35deg
, #a67629, white);
}
section#temoignages a:last-child {
    background: #a67629;
    color: #101010;
    padding: 7px;
    display: block;
    width: 125px;
    margin: 10px auto;
}

.Desktop .col-tem {
    width: 50%;
}
form#avis_form input:last-child {
    background: #a67629;
    color: white;
}
form#avis_form input {
    height: 40px;
    padding-left: 10px;
    border: 1px solid #000;
    border-radius: 6px;
}
form#avis_form textarea {
    height: 70px;
    padding-left: 10px;
    border: 1px solid #000;
    border-radius: 6px;
}
div#realisations img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.Desktop section#temoignages b {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
}

.testimonial video,
.testimonial iframe {
    width: 100%;
}

.testimonial {
    padding: 0;
}
.title_testimonial {
    padding: 35px 0;
}

.Mobile a.logo img {
    width: 117px;
    display: block;
    margin: auto;
}
.Mobile .flag img {
    width: 60px;
}
.Mobile .title-slider span:last-child {
    position: relative;
}
.Mobile .title-slider span:last-child {
    background: #a67629;
    display: block;
    text-align: center; 
    padding: 15px 0;
}
.Desktop .villes__ {
    column-count: 3;
}

/**
404
*/
.blog_pageIntrouvable {
    background: #a67629;
    position: fixed;
    height: 100%;
    width: 100%;
    font-size: 18px;
    z-index: 200000 !important;
    text-align: center;
    top: 0;
}
.blog_pageIntrouvable .d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}
.blog_pageIntrouvable span {
  color: whitefff;
}

.blog_pageIntrouvable > div {
  height: 100%;
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: #000000;
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #000000;
}
.blog_pageIntrouvable a {
    color: white;
}
.blog_pageIntrouvable a:hover {
    text-decoration: underline;
}
@media(max-width: 767px) {
  .blog_pageIntrouvable {
    font-size: 14px;
  }
  .blog_pageIntrouvable a {
      display: block;
  }
  .blog_pageIntrouvable p {
      font-size: 17px;
      letter-spacing: 5px;
      margin-top: -10px;
  }
  .blog_pageIntrouvable h1 {
    font-size: 100px;
  }
  .telMobile a {
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 10px 0;
    display: inline-block;
    vertical-align: middle;
    margin: 15px 0;
  }
  .telMobile em {
    color: white;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
    font-size: 24px;
  }
}
.logo-inner img {
    width: 113px !important;
    margin-right: 30px;
}
.logo-prart .container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.Mobile .logo-inner .row { 
    text-align: center;
    margin: 0;
}
.Mobile .logo-inner .row img {
    margin-bottom: 20px;
}

.botton-devis {
    position: absolute;
    right: -83px;
    margin-top: 23px;
}
.DevisSlider {
    background: rgb(255, 255, 255);
    padding: 20px;
    position: absolute;
    right: -389px;
    top: 31.5%;
    width: 20%;
    transition: .3s;
}
.DevisSlider.devis-block{
    right: 0;
    transition: .3s;
}
.botton-devis button {
    cursor: pointer;
    color: #ea0b0b;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    background: #fff;
    padding: 15px 30px;
    transform: rotate(-90deg);
    outline: none;
}
.img-perso img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.col-md-7.block-rappel {
    display: flex;
    align-items: center;
    margin-top: 83px;
}
.Desktop .captionSlider .container {
    max-width: 1400px;
}
a.btn-devis.btn-realisations.btn-lien {
    background-color: #ea0b0b;
    border: none;
} 
.tel-slider img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}
.Mobile .tel-slider {
    display: none;
}
.whatsapp {
    background: none !important;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 0px 1px 7px #292828;
    padding: 0 0 15px !important;
    font-size: 17px;
}

.video-perso {
    padding: 0 0 50px;
    display: flex;
    justify-content: center;
}
.video-perso iframe {
    width: 100%;
    height: 624px;
}
.Mobile .video-perso iframe { 
    height: 450px;
}
.reseux img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.Mobile .reseux img {
    width: 50px;
    height: 50px; 
}
.reseux {
    position: fixed;
    bottom: 100px;
    right: 60px;
    z-index: 999;
}
.Mobile .reseux { 
    bottom: 26px;
    right: 26px;
}
.block-presse {
    padding: 120px 0 0;
}
.titre-presse {
    color: #000;
    font-size: 52px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 58px;
    letter-spacing: -3px;
}
.date {
    padding: 20px 0;
    color: #000;
    font-weight: bold;
}
.date span {
    color: #A7A7A7;
}
.img-presse img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.intro h1 {
    color: #000;
    font-size: 22px;
    font-weight: bold;
    margin-top: 30px;
}
.text-presse h2 {
    color: #000;
    font-weight: bold;
    padding: 10px 0 15px;
}
.block-presse p {
    font-size: 16px;
    color: #000;
    text-align: justify;
}
.box-textP {
    padding: 0 100px 0;
}
.Mobile .title-slider {
    left: 0;
}
.Mobile .title-slider span:nth-child(1) {
    margin-left: 15px;
}
.Mobile .title-slider {
    left: 0;
}
.Mobile .logo-inner img {
    width: 90px !important;
    margin-right: 0;
    height: 60px;
    object-fit: contain;
}