*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
    transition: all .3s ease;
}
html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}
body {
    font-size: 16px;
    font-family: "Calibri", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
	width: 100%;
	max-width: 1220px;
	margin: auto;
    padding: 0 20px;
}
.header {
    position: relative;
}
.Tablet .header,
.Mobile .header {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    left: 0;
}
.header-top {
	background: #003366;
}
#header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 30px 5px 30px;
}
.Tablet #header-top ,
.Mobile #header-top{
	justify-content: space-around;
	padding: 15px 0;
}
.header a {
    color: #fff;
    font-weight: 600;
    display: flex;
}
a, a:hover {
	text-decoration: none;
}
#header-top>div,
#header-middle>div {
    display: flex;
    align-items: center;
}
img {
    max-width: 100%;
}
#header-top img {
	margin-right: 5px;
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.rappel_title {
    color: #fff;
    padding-right: 10px;
}
.header-top input.form-input {
    padding: 10px;
    border: 1px solid #8f0000;
    margin: 0;
    height: 45px;
}
.header-top input.button_rappel {
    padding: 10px;
    border: 1px solid #8f0000;
    text-align: center;
    cursor: pointer;
    color: #ffffff;
    background: #8f0000;
    height: 45px;
}
.header-middle {
    background: #8f0000;
}
#header-middle {
	display: flex;
	justify-content: space-between;
	align-items: center;
    padding: 10px 30px;
}
.icon-img {
    margin-right: 10px;
    background: #ffffff;
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
}
.icon-img img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.adresse {
	color: #fff;
}

.header-bottom {
	background: #fff;
    box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 50%);
}
.fixed-top {
    position: fixed;
    width: 100%;
    z-index: 1;
    top: 0;
    animation: forwards fixed .7s;
}
@keyframes fixed {
    from {
        top: -70px;
    }
    to {
        top: 0;
    }
}
.Tablet .header-bottom,
.Mobile .header-bottom {
	display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 1;
}
.Desktop ul.nav-list {
	display: flex;
}
li.nav-item {
    display: block;
    position: relative;
    padding: 20px;
    text-align: center;
    transition: all .3s;
}
.Mobile li.nav-item {
    text-align: left;
    padding: 15px 20px;
}
li.nav-item a {
	color: #242424;
    font-weight: 600;
    text-transform: uppercase;
}
li.nav-item a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #8f0000;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: all .5s;
}
.Mobile li.nav-item a::before {
    width: 100px;
    left: 20px;
}
.Desktop li.nav-item:hover > a::before,
li.nav-item.active > a::before {
    opacity: 1;
    transition: all .5s;
}
.nav-submenu {
    display: none;
    list-style: none;
    background: #003366;
    margin: 0;
    z-index: 2;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}
li.nav-submenu-item.active,
li.nav-submenu-item:hover {
    background: #fff;
}
.Mobile .nav-submenu {
    position: relative;
    top: 15px;
}
li.nav-submenu-item a {
    color: #fff;
    border-top: 1px solid #02010100;
}
.Desktop .nav-item:hover .nav-submenu {
    display: block;
}
.nav-submenu-item a {
    display: block;
    text-align: left;
    color: #000;
    padding: 9px 0;
    max-width: 90%;
    margin: auto;
    font-size: 14px;
    text-transform: none;
}
li.nav-submenu-item {
	padding: 10px 5px;
    border-top: 1px solid #A9A9A9;
}
li.nav-submenu-item:hover > a,
li.nav-submenu-item.active > a {
    color: #8f0000;
}

.menu-mobile {
  	cursor: pointer;
    background: #8f0000 url(../images/nav.svg) no-repeat center;
    background-size: 18px;
    height: 50px;
    width: 50px;
}
.nav-click {
    position: absolute;
    top: 0;
    right: 20px;
    border-left: 1px solid #8f0000;
    background-color: #8f0000;
    cursor: pointer;
    height: 55px;
    width: 50px;
}
.nav-click i {
    display: block;
    height: 100%;
    width: 100%;
    background: url(../images/drop.svg) no-repeat center center;
    background-size: 20px;
}
.nav-rotate {
    -webkit-transform:rotate(180deg);
    -moz-transform:rotate(180deg);
    -ms-transform:rotate(180deg);
    -o-transform:rotate(180deg);
    transform:rotate(180deg);
}
.Mobile ul.nav-list.ul-mob {
    border-bottom: 3px solid #111111;
}

/*slick*/
.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;
    width: 100%;
}
.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;
}
/*end slick*/

.banner {
    position: relative;
    height: 72vh;
    overflow: hidden;
}
.slider .banner-slider,
.slider .slick-list.draggable {
    height: 100%;
}
.Mobile .banner {
    height: 500px;
}
.slider .slick-track {
    height: 100%;
}
.slider .slick-list.draggable::before,
.img-slider::before {
    position: absolute;
    content: "";
    background: rgba(0,0,0,.5);
    width: 100%;
    height: 100%;
    z-index: -1;
}
.img-slider {
	width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 0;
}
.text-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.Tablet .text-slider { 
  top: 60%; 
}
.Mobile .text-slider {
    width: 100%;
    text-align: center;
    transform: translateY(-30%);
}
.text-slider .h1 {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}
/*.Mobile .text-slider .h1 {
    font-size: 40px;
}*/
.text-slider .p-slider {
    font-size: 34px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.Mobile .text-slider .p-slider {
    font-size: 18px;
    margin-bottom: 20px;
}
.Desktop .btn-navigation {
    display: flex;
    gap: 20px;
    margin: 30px 0 0;
}
.btn-navigation > div {
    width: 245px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.btn-realisations {
    background: #8f0000;
}
.btn-devis {
    border: 2px solid #8f0000;
    background: #fff;
}
.Mobile .btn-navigation > div {
    width: 195px;
    height: 51px;
    margin: 15px auto;
}
.btn-realisations:hover {
    background: #003366;
    transition: all .5s;
}
.btn-devis:hover {
    background: #003366;
    border: none;
    transition: all .5s;
}
.btn-realisations:hover > a,
.btn-devis:hover > a {
	color: #fff;
}
.btn-realisations a {
	text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.btn-devis a  {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: #8f0000;
}

.Mobile .btn-realisations a,
.Mobile .btn-devis a {
    font-size: 16px;
}

.banner-slider ul.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;
    position: absolute;
    bottom: 50px;
    left: 16%;
}
.Mobile .banner-slider ul.slick-dots {
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}	
.banner-slider .slick-dots	li {
	margin: 0 0.5rem;
}
	
.banner-slider .slick-dots button {
	display: block;
	width: 1rem;
	height: 1rem;
	padding: 0;
	border: none;
	border-radius: 100%;
	background: none;
	border: 3px solid #fff;
	text-indent: -9999px;
	cursor: pointer;
}
.Mobile .banner-slider .slick-dots button {
    width: .75rem;
    height: .75rem;
    border: 2px solid #fff;
}
	
.banner-slider .slick-dots	li.slick-active button {
	background-color: #8f0000;
	border: 3px solid #8f0000;
}
	

/*footer*/
.footer-top {
    background: #8f0000;
    color: #fff;
}
.footer a {
    color: #fff;
}
#footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    place-content: center;
    padding: 40px 0;
}
.Tablet #footer{
    grid-template-columns: repeat(2, 1fr);
}
.Mobile #footer {
    grid-template-columns: 100%;
    padding: 20px 0;
}
.bloc-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.Mobile .bloc-footer {
    justify-content: center;
}
.contact-footer > div {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}
.contact-footer img {
    margin-right: 7px;
    width: 20px;
    height: 20px;
    object-fit: cover;
}
.contact-footer .mail a, .text-agence a {
    color: #ffffff;
    text-decoration: underline;
}
#footer .h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
#footer li {
    display: block;
    position: relative;
    padding: 0 0 15px 30px;
}
div#footer li::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 3px;
    background: #fff;
    left: 0;
    top: 12px;
}

.footer-bottom {
    background: #003366;
}
.copyright {
    padding: 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.copyright img {
    width: 150px;
    height: 25px;
    object-fit: contain;
}
.Mobile .copyright {
    flex-wrap: wrap;
    gap: 10px;
}

/*categorie*/
.categorie_vignette {
    padding: 50px 0;
}
.Mobile .categorie_vignette {
    padding: 20px;
}
.titre-cat {
    font-size: 34px;
    font-weight: 600;
    color: #242424;
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
}
.titre-cat::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background: #8f0000;
    bottom: 0;
    left: 0;
}
.bloc-cat {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    place-content: center;
}
.Tablet .bloc-cat { 
  grid-template-columns: repeat(3, 1fr); 
}
.Mobile .bloc-cat {
    grid-template-columns: repeat(2, 1fr);
}
.cat-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    margin: auto;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cat-img img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.sous-bloc-cat {
    background: #F5F3F2;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    /*height: 275px;*/
}
.Mobile .sous-bloc-cat {
    padding: 20px 10px;
}
.titre-sous-cat {
    color: #111111;
    font-size: 20px;
    font-weight: 400;
}
.Mobile .titre-sous-cat {
    font-size: 16px;
    font-weight: 600;
}
.sous-bloc-cat a {
    font-size: 16px;
    font-weight: bold;
    color: #111111;
    text-transform: uppercase;
}
.sous-bloc-cat a:hover {
    color: #8f0000;
}
.Mobile .sous-bloc-cat a {
    font-size: 14px;
    width: 100%;
}
.sous-bloc-cat a > img {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}


/*content*/
.section1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    place-content: center;
    padding: 50px 0;
    border-top: 7px solid #003366;
}
.Mobile .section1 {
    grid-template-columns: 100%;
    /* padding: 20px; */
    gap: 0;
}
.Desktop h1,
.Desktop h2 {
    position: relative;
    margin-bottom: 20px;
}
.section2 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    place-content: center;
    padding: 40px 0;
}
.Tablet .section2,
.Mobile .section2 {
    grid-template-columns: 100%;
    padding: 20px;
}
.Desktop .bloc-texte h2 {
    border-top: 5px solid #8f0000;
    padding: 12px;
    min-height: 225px;
}
.bloc-texte h2 {
    border-top: 5px solid #8f0000;
    padding: 5px 0;
}
.bloc-texte h2::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    top: 0;
    left: 0;
}
.Mobile .bloc-texte {
    margin: 25px 0;
}
.bloc-texte h2:hover {
    background: #003366;
    color: #fff;
}
.section2 p,
.section3 p {
    text-align: justify;
}
.Mobile .section3,
.Tablet .section3 {
    grid-template-columns: 100%;
    padding: 20px;
}
.section3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    place-content: center;
    padding: 50px 0;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px;
    position: relative;
    color: #fff;
    z-index: 0;
}
.Mobile .bg-img {
    padding: 20px;
}
.bg-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    top: 0;
    left: 0;
    z-index: -1;
}
.bg-img h2 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 20px;
}
.bg-img h2::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    background: #8f0000;
    bottom: 0;
}

/*section4-devis*/
.section4 {
    background-image: url(../images/img/bg-content.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    z-index: 0;
}
.Mobile .section4 {
    padding: 40px 20px;
}
.sous-sect4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.Mobile .sous-sect4 {
    grid-template-columns: 100%; 
}
.section4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(68 68 68 / 51%);
    z-index: -1;
}
.Devisgratuit {
    background: #fff;
    padding: 40px;
    grid-column: span 2;
}
.Mobile .Devisgratuit {
    padding: 20px;
    grid-column: 1;
    width: 100%;
}
.Mobile div#Map {
    width: 100%;
    height: 300px;
    margin-top: 20px;
}
.titre-devis {
    text-align: center;
    margin-bottom: 20px;
}
.titre-devis .h4 {
    color: #8f0000;
    font-size: 24px;
    font-weight: 600;
}
.Mobile .titre-devis .h4 {
    font-size: 23px;
}
.titre-devis .h3 {
    font-size: 30px;
    font-weight: 600;
    color: #242424;
}
.Mobile .titre-devis .h3 {
    font-size: 15px;
}
.form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.Mobile .form {
    grid-template-columns: auto;
}
 .form-input {
    border: 1px solid #DDDDDD7A;
    padding: 17px;
    font-size: 16px;
    font-family: inherit;
    width: 100%;
    margin: 5px 0 0;
}
 .form-input:focus,
.section4 textarea:focus {
    outline: 1px solid #8f0000;
}
.section4 textarea.form-input {
    width: 100% !important;
    min-height: 100px;
    border: 1px solid #DDDDDD7A;
    padding: 15px;
    font-size: 16px;
    font-family: inherit;
    margin-bottom: 20px;
}
.section4 .submit {
    text-align: center;
}
.btn-submit {
    padding: 17px;
    border-radius: 5px;
    border: none;
    background: #8f0000;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .5s;
}
.btn-submit:hover {
    background: #003366;
    transition: all .5s;
}

/*prestations*/
.content1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 20px;
    place-content: center;
    padding: 50px 0;
}
.Mobile .content1 {
    grid-template-columns: auto;
    gap: 20px;
    padding: 20px;
}
.texte-content p {
    text-align: justify;
}
.content2 {
    position: relative;
    background: #333;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    z-index: 0;

}
.Mobile .content2 {
    padding: 40px 20px;
}
/*.content2::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    top: 0;
    left: 0;
    z-index: -1;
}*/
.content-slide ul.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1.5rem 0;
    list-style-type: none;
}
.Mobile .content-slide ul.slick-dots {
    padding: 0;
}   
.content-slide .slick-dots  li {
    margin: 0 0.5rem;
}
    
.content-slide .slick-dots button {
    display: block;
    width: 1rem;
    height: 1rem;
    padding: 0;
    border: none;
    border-radius: 100%;
    background: none;
    border: 3px solid #fff;
    text-indent: -9999px;
    cursor: pointer;
}
.Mobile .content-slide .slick-dots button {
    width: .75rem;
    height: .75rem;
    border: 2px solid #fff;
}    
.content-slide .slick-dots  li.slick-active button {
    background-color: #8f0000;
    border: 3px solid #8f0000;
}

.Mobile h1 {
    font-size: 23px;
}
.Mobile h2 {
    font-size: 21px;
}


/*realisation*/
div#realisations {
    padding: 40px 0;
}
.Mobile div#realisations {
    padding: 20px;
}
.Desktop .img-realisations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 0;
}
.swipebox img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
b.titre-album {
    font-size: 30px;
    color: #242424;
}

.page-mention {
    padding: 40px 0;
}
.Mobile .page-mention {
    padding: 20px 30px;
}

/*404*/
.blog_pageIntrouvable {
    background: #111111;
    position: fixed;
    height: 100%;
    width: 100%;
    font-size: 18px;
    z-index: 200000 !important;
    text-align: center;
    top: 0;
    left: 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: #8f0000;
}

.blog_pageIntrouvable > div {
  height: 100%;
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: #000000;
}
.blog_pageIntrouvable p {
    font-size: 36px;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #fff;
}
.blog_pageIntrouvable a {
    color: #8f0000;
}
.blog_pageIntrouvable a:hover {
    text-decoration: underline;
}
.Mobile .blog_pageIntrouvable {
    font-size: 14px;
}
.Mobile .blog_pageIntrouvable a {
    display: block;
}
.Mobile .blog_pageIntrouvable p {
    font-size: 17px;
    letter-spacing: 5px;
    margin-top: -10px;
}
.Mobile .blog_pageIntrouvable h1 {
    font-size: 100px;
}


div#Messages {
    background: #111111;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: 400;
}
.Mobile div#Messages {
    margin-top: 160px;
}
.logo a img {
    width: 250px;
    height: 128px;
    object-fit: contain;
    background: #fff;
    border-radius: 5px;
}

.Mobile .logo img {
    width: 180px;
    height: 80px;
    object-fit: contain;
}
input#mail {
    display: none;
}




/*
Avis
*/

section.section-avis {
    padding: 100px 0;
}
 

.imgAvis.bg {
    background-color: #ddd;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 0;
}
.Mobile .imgAvis.bg {
    padding: 10px;
}
b.titreAvis {
    display: block;
    font-size: 26px;
    color: #376371;
    text-transform: uppercase;
}
b.titreAvis::after {
    content: "";
    display: block;
    margin: 2rem auto ;
    width: 35px;
    border-bottom: 3px solid #376371;
}
.block-avis {
    margin: 0 auto;
    padding: 40px;
    border-radius: 7px;
    text-align: center;
}
#temoignages .item-tem p {
    margin-bottom: 0;
}

.temoin { 
    color: black;
    padding: 80px 0;
}
.Mobile .temoin {
    padding-top: 12rem;
}
.Desktop .temoin .grid-row {
    display: grid;
    grid-template-columns: 60% auto;
    grid-gap: 20px;
}
.Tablet .temoin .grid-row,
.Mobile .temoin .grid-row {
    display: block;
}
 .col-right .blockFormulaire {
    background: #e3e8ed;
    border-radius: 10px;
    padding: 40px;
}
.Desktop .col-right {
    margin-left: 1rem;
}
.temoin .item-tem {
    border-bottom: 1px solid rgb(98 98 98 / 20%);
    padding-bottom: 15px;
    margin-bottom: 1rem;
}
h1.Titrecontenu {
    font-size: 36px;
    margin-bottom: 2rem;
}
.Mobile h1.Titrecontenu {
    font-size: 22px;
}
h2.Titrecontenu {
    color: #092750;
}
#avis_form {
    margin-top: 15px;
}

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

#avis_form .form-control {
  margin: 0 0 15px 0;
  width: 100%
}
#MonAvis span {
  font-size: 18px;
  color: v#1faed8;
  display: block;
}
.item-tem .avis {
  display:inline-block;
  vertical-align: top;
}

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

}
.avis > i {
    background: url(../images/img/rating-sprit.webp) no-repeat;
    display: inline-block;
    height: 23px;
    width: 120px;
    margin-right: 15px;
    margin-bottom: 20px;
}
.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;
}
#temoignages a.btn-rea {
    margin-top: 1rem;
    padding: 7px 35px;
}
.item-tem img {
    margin: 0;
    width: 50px;
    height: 50px;
}
img.google {
    width: 60px;
    height: 25px;
    object-fit: contain;
}
.avis-nom {
    display: flex;
    align-items: center;
    gap: 10px;
}
 
.temoignages .col-left .avis > i {
    background: url(../images/img/rating-sprit.png) no-repeat;
    height: 9px;
    width: 50px;
    margin: 0;
}
.temoignages .col-left .avis-0 {
  background-position: 0 0 !important;
}
.temoignages .col-left .avis-1 {
  background-position: 0 -11px !important;
}
.temoignages .col-left .avis-2 {
  background-position: 0 -22px !important;
}
.temoignages .col-left .avis-3 {
  background-position: 0 -32px !important;
}
.temoignages .col-left .avis-4 {
  background-position: 0 -43px !important;
}
.temoignages .col-left .avis-5 {
  background-position: 0 -53px !important;
}
.temoignages .col-left .avis-6 {
  background-position: 0 -65px !important;
}
.temoignages .col-left .avis-7 {
  background-position: 0 -75px !important;
}
.temoignages .col-left .avis-8 {
  background-position: 0 -85px !important;
}
.temoignages .col-left .avis-9 {
  background-position: 0 -95px !important;
}
.temoignages .col-left .avis-10 {
  background-position: 0 -105px !important;
}
.avis-t {
    display: flex;
    align-items: center;
    gap: 10px;
}
.slide-temoignage .avis-t {
    justify-content: center;
    margin: 10px 0 5px;
}
.Mobile .slide-temoignage .avis-t {
    flex-wrap: wrap;
    gap: 0;
}
.temoignages .col-left img.google {
    width: 36px;
    height: 15px;
    object-fit: contain;
}
.sa-titre {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    margin: 0 0 40px;
}

.sa-item {
    background: #e3e8ed;
    padding: 50px; 
    position: relative;
    margin: 0 20px;
}
.Tablet .sa-item,
.Mobile .sa-item { 
    padding: 20px; 
    margin: 0 10px;
}
.sa-item:after{
    content: "";
    position: absolute;
    right: 20px;
    bottom: 20px;   
    width: 40px;
    height: 40px; ;
     background-image: url(../images/img/right-quote.svg);
     background-size: contain;
}
.sa-content .avis {
    margin: 0 0 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}
.sa-item p {
    font-style: italic;
    font-size: 18px;
    margin: 0 0 30px;
}
.avis-nom img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.sa-item .avis b {
    display: flex;
    align-items: center;
    gap: 15px;
}
section.section-avis .btn-content {
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
}
.titreAvis {
    font-size: 36px;
    font-weight: 600;
    padding: 30px 60px;
    border-bottom: 2px solid #F2F3F6;
    margin-bottom: 30px;
    color: #14287b;
}
.Mobile .titreAvis {
    font-size: 28px; 
    padding: 0 0 20px; 
    margin: 0;
}
.avis-nom span {
    text-transform: capitalize;
}


.Desktop.ville .title-slider::first-line, .title-slider {
    font-size: 59px;
    color: #fff;
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    margin: 30px 0 0;
}
.ville .title-slider {
    line-height: normal;
    font-size: 50px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    font-style: italic;
    text-transform: none;
}
.Mobile .title-slider {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
}
.logo-footer img {
    width: 250px;
    height: 130px;
    background: #fff;
    border-radius: 5px;
    object-fit: contain;
}
.Tablet div#header-middle,
.Mobile div#header-middle {
    padding: 10px 0;
}
.Mobile .copyright a {
    display: block;
    width: 100%;
    text-align: center;
    margin: 15px 0 0;
}


.img-bloc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-content img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}



/*============================
CONTACT & DEVIS
============================*/

.contact-content {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
}
.Mobile .contact-content {
    display: block;
    margin-top: 0;
    padding: 20px 0; 
}
.Mobile .adr-map {
    padding: 20px 0;
}
.Tablet .contact-content {
  padding: 20px 0; 
}
.coordonne_cont img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.coordonne_cont {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.ContactezNous b {
    font-size: 20px;
    margin-bottom: 30px;
    display: block;
}
.ContactezNous-h1 {
    color: #333333;
    text-transform: uppercase;
    font-weight: 600;
    font-family: Calibri;
    font-size: 32px;
}
.adr-map {
    padding: 0 0 0 40px;
}
.coordonne_cont a {
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.ContactezNous {
    text-align: center;
}
.devis .Devisgratuit-h3 {
    font-size: 32px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
}
.Mobile.devis .Devisgratuit-h3 {
    font-size: 24px;
}
.devis .Devisgratuit {
    width: 80%; 
    margin: 50px auto 30px;
    text-align: center;
}
body.Desktop.devis .btn-submit {
    max-width: 48%;
    margin: auto;
}
body.Mobile.devis .Devisgratuit {
    display: block; 
    width: 100%;
    padding: 175px 0 0;
    margin-top: 0;
}
.Tablet.devis .Devisgratuit {
  margin-top: 225px;
}


body.Mobile.devis div#devisGratuit {
    display: none;
}

a.btn.btn-cont {
    background: rgba(255, 255, 255, .3);
    color: #000;
    border-radius: 0; 
    margin-top: 20px;
    text-transform: uppercase;
    border: solid 1px#fff;
    font-weight: 600;
    padding: 10px 15px;
    font-size: 14px;
}
.boutton-slider {
    display: flex;
    flex-wrap: wrap; 
    gap: 10px;
}
.Mobile .boutton-slider { 
    justify-content: center; 
}
.contact .ContactezNous #FormDevis {
    display: block!important;
}
.contact-content div#Map {
    height: 450px;
    width: 100%;
    z-index: 0;
}
.Mobile .contact-content div#Map {
    height: 300px;
    width: 100%;
}
.ContactezNous svg, .ContactezNous img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 5px;
}


 
.Tablet .corps > .row > div {
  max-width: 100%;
  flex: 0 0 100%;
}
.Tablet .competences > .row > div {
  max-width: 25%;
  flex: 0 0 25%;
}
.Tablet .mainright .Devisgratuit {
  display: none;
}
.Tablet .ImgLeft {
  display: none;
}
.Mobile .twoBox img {
    width: 100%;
    height: 185px;
    object-fit: cover;
}
.Tablet.contact .adr-map {
  padding: 0 0 0 20px;
}

 
.swipebox img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}
.titre-album {
  clear: both;
  display: block;
  font-size: 32px;  
  margin: 20px 0;
  width: 100%;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}


div#realisations .container-box .row {
    display: flex;
    flex-wrap: wrap;
}
div#realisations .container-box .row > div {
  width: 25%;
  flex:0 0 25%;
  padding: 0 5px;
}
.Tablet div#realisations .container-box .row > div {
  width: 50%;
  flex:0 0 50%;
  padding: 0 5px;
}
.Mobile div#realisations .container-box .row > div {
  width: 100%;
  flex:0 0 100%;
  padding: 0 5px;
}


/*----------------------------------------------------------
MENTIONS
---------------------------------------------------------*/
.mentions h2 {
    padding: 20px 0;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}
.mentions ol {
    max-width: 100%;
    width: 80%;
    margin: auto;
    padding: 0 0 30px;
}
body.Mobile.mentions ol {
    width: 100%; 
    padding:0 20px 20px;
}
.mentions h3 {
    font-size: 20px; 
    font-weight: 600;
    margin: 30px 0 15px;
}

form#rappel_immediat_header {
    display: flex;
    align-items: center;
    justify-content: center;
}