* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "arial", sans-serif;
	color: #3d3d3d;
    margin: 0;
    padding: 0;
}
.container {
    width: 100%;
    max-width: 1500px;
    margin: auto;
    padding: 0 15px;
}
a, a:hover {
	text-decoration: none;
}
a.logo img {
    width: 180px;
    height: 82px;
    object-fit: contain;
}
.header-top {
	padding-top: 20px;
    padding-right: 0px;
    padding-bottom: 70px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    background-color: #154001;
    background-image: url(../images/img/bg-header.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-position: 100% 50%;
    box-shadow: 0 0 0 0 #fff;
}
.Desktop .contact {
	display: flex;
}
.contact > div > img,
.fixe-portable img {
	width: 15px;
	height: 15px;
}
.contact > div > span {
	font-size: 14px;
	color: #fff;
	padding-left: 9px;
}
.Tablet .contact > div > span,
.Mobile .contact > div > span {
    font-size: 16px;
    padding-left: 2px;
}
.header-top a {
    color: #fff;
}
.Desktop .contact .fixe,
.Desktop .contact .portable {
	margin-left: 30px;
}
.Tablet .contact .mail,
.Tablet .contact .fixe,
.Tablet .contact .portable,
.Mobile .contact .mail,
.Mobile .contact .fixe,
.Mobile .contact .portable {
    text-align: center;
    margin-bottom: 10px;
}
.Tablet .header-top .portable img,
.Mobile .header-top .portable img {
    width: 18px !important;
    height: 18px !important;
}
.footer .portable img {
    width: 23px !important;
    height: 23px !important;
}

/*header2*/
.header-bottom .container {
	position: relative;
}
.header-nav {
	background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: absolute;
    z-index: 1;
    top: -45px;
}
ul.nav-list {
	display: flex;
}
li.nav-item {
    display: block;
    padding: 35px 5px;
    text-align: center;
    position: relative;
}
li.nav-item > a {
	color: #4e4e4e;
    border: 1px dotted;
    display: block;
    padding: 5px;
    border-radius: 10px;
}
.Mobile li.nav-item a {
    color: #fff;
}
.Desktop li.nav-item a::before {
    content: "";
    width: 20px;
    height: 10px;
    background: #72a603;
    position: absolute;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    top: 0;
    left: 50%;
    transform: scaleY(0) translateX(-50%);
    transition: all .5s;
}
.Desktop li.nav-item:hover > a::before,
.Desktop li.nav-item.active > a::before {
    transform: scaleY(1) translateX(-50%);
}
.Desktop li.nav-item:hover > a, .Desktop li.nav-item.active > a {
    color: #436102;
}
.nav-submenu {
	display: none;
	list-style: none;
    background: green;
    padding-left: 0;
    margin: 0;
    z-index: 2;
    top: 110px;
    
}
.Tablet .nav-submenu,
.Mobile .nav-submenu {
    max-height: 300px;
    overflow-y: scroll;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
}
.nav-submenu {
    position: absolute;
}
.Desktop li.nav-submenu-item a {
    color: #fff;
    width: 345px;
}
.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: 8px;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
li.nav-submenu-item:hover {
    background: #72a603;
}
li.nav-submenu-item:hover a {
    color: #fff;
}

/*slide*/
.banner {
    position: relative;
    height: 900px;
}
.slider .banner-slider,
.slider .slick-list.draggable {
    height: 100%;
}
.Tablet .banner ,
.Mobile .banner {
    height: 500px;
    top: 0px;;
}
.slider .slick-track {
    height: 100%;
}
.Tablet .slider ,
.Mobile .slider {
    margin-top: 85px;
}
.img-slider {
	width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 0;
}
.img-slider::before {
    content: "";
    position: absolute;
    background-color: rgba(0,0,0,.6);
    height: 100%;
    width: 100%;
    z-index: -1;
}
.slider button.slick-prev.slick-arrow {
    display: none;
    position: absolute;
    z-index: 1;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    left: 100px;
    width: 50px;
    height: 50px;
    border: none;
    background: none;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    transition: 5000ms;
}
.slider button.slick-next.slick-arrow {
    display: none;
    position: absolute;
    z-index: 1;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    right: 100px;
    width: 50px;
    height: 50px;
    border: none;
    background: none;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    transition: 5000ms;
}
.slider button.slick-arrow img {
    width: 35px;
}
.text-slider {
	position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
}
.Tablet .text-slider ,
.Mobile .text-slider {
    top: 60%;
    width: 100%;
    text-align: center;
}
.text-slider .h1 {
	font-size: 72px;
	font-weight: 700;
}
.Mobile .text-slider .h1 {
    font-size: 36px;
    color: #fff;
    text-align: center;
}
.text-slider .p-slider {
	font-size: 30px;
	margin: 20px 0;
}
.Mobile .text-slider .p-slider {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}
.btn-realisations {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}
.btn-realisations a {
    padding: 20px 45px;
    background: #154001;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: 500ms;
}
.Mobile .btn-realisations {
    justify-content: center;
}
.btn-realisations a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

/*section1*/
.section1 {
	padding-top: 110px;
    padding-right: 0px;
    padding-bottom: 110px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    background-image: url(../images/img/about_us_bg.webp);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 0 100%;
    box-shadow: 0 0 0 0 #ffffff;
}
.Desktop .section1 {
    background-size: contain;
}
.Mobile .section1 {
    padding: 0 20px 70px 20px;;
}
.section1 .bloc {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 15px;
	place-content: center;
	padding: 0 0 110px 70px;
}
.Mobile .section1 .bloc {
    grid-template-columns: 100%;
}
.Desktop .img-bloc {
	width: 50%;
	display: flex;
}
.img-bloc img {
    border-radius: 20px;
    height: 400px;
    object-fit: cover;
    width: 100%;
}
.Mobile .img-bloc img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.img-bloc-top {
	position: relative;
    z-index: 1;
    border: 8px solid #fff;
}
.img-bloc-bottom {
	position: relative;
    top: 35%;
    right: 35%;
}
.Mobile .img-bloc-bottom {
    right: 0;
    top: 0;
    border: 8px solid #fff;
}
h1 {
	font-size: 32px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #312e2e;
}
p {
	line-height: 24px;
}

/*section-categorie*/
.section-cat {
	padding-top: 110px;
    padding-right: 0px;
    padding-bottom: 110px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    background-image: url(../images/img/shapes.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 100% 100%;
    box-shadow: 0 0 0 0 #ffffff;
    position: relative;
    z-index: 0;
}
.section-cat::after {
    content: "";
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    z-index: -1;
    left: 0;
}
/*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*/

.categorie_vignette {
	display: grid;
	grid-template-columns: 25% 75%;
	place-content: center;
}
.Mobile .categorie_vignette {
    grid-template-columns: 100%;
}
.bloc-cat .slick-slide {
    margin: 0 20px;
    border-radius: 20px;
    background: #fff;
    padding: 20px 15px;
    text-align: center;
    transition: all .7s;
}
.bloc-cat .slick-slide:hover,
.bloc-cat .sous-bloc-cat:focus {
    background: #72a603;
    transition: all .7s;
}
.bloc-cat .slick-slide:hover >a,
.bloc-cat .sous-bloc-cat:focus >a {
	color: #fff;
}
.bloc-cat .slick-slide img,
.bloc-cat .sous-bloc-cat img {
	margin-bottom: 15px;
    border-radius: 20px 20px 0 0;
}
.bloc-cat .slick-slide a,
.bloc-cat .sous-bloc-cat a {
	color: #3d3d3d;
}
.titre-cat {
	color: #fff;
    font-size: 44px;
    font-weight: 600;
}
.bloc-cat button.slick-prev.slick-arrow {
    display: block !important;
	position: absolute;
	top: 100%;
	width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
}
.bloc-cat button.slick-next.slick-arrow {
    display: block !important;
    position: absolute;
    left: 50px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
}
.bloc-cat button.slick-arrow img {
    width: 50%;
}

/*section2*/
.section2 {
	padding-top: 80px;
    padding-right: 0px;
    padding-bottom: 110px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    background-color: #fbfbfb;
    box-shadow: 0 0 0 0 #ffffff;
}
.section1 p , .section2 p , .section3 p {
    text-align: justify;
}
.bloc2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
    place-content: center;
}
.Mobile .bloc2 {
    grid-template-columns: 100%;
}
.titre-section2 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #154001;
    margin: 45px auto;
    position: relative;
    display: table;
}
.titre-section2::before {
    content: "";
    background-image: url(/skins/default/images/leaves.png);
    height: 65px;
    width: 65px;
    position: absolute;
    top: -30px;
    left: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%,-50%);
}
.Mobile .titre-section2,
.Mobile .titre-cat {
    font-size: 30px;
    margin-bottom: 20px;
}
.bloc-text {
	display: flex;
	align-items: center;
	padding: 40px;
    background: #fff;
    transition: 500ms;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
}
.Mobile .bloc-text {
    display: block;
    padding: 10px;
}
.bloc-text::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translatey(-50%);
    height: 100%;
    background: #72a603;
    width: 6px;
    transition: all .7s;
}
.bloc-text:hover::before {
    height: 60%;
    transition: all .7s;
}
.Desktop .bloc2 .right, .Mobile .bloc2 .right img {
    position: relative;
    width: 100%;
    height: 113px;
    border-radius: 20px;
    background-color: #72a603;
    transition: 500ms;
    box-shadow: 5px 5px 0px #d4d4d4;
    margin: 0px 33px 0px 0px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}
.Mobile .bloc2 .right {
    display: flex;
    justify-content: flex-end;
}
.Mobile .bloc2 .right img {
    width: 85px;
    object-fit: contain;
}
.bloc-text h2 {
	margin-bottom: 20px;
	line-height: 1.5;
}
.Mobile .bloc-text h2 {
    text-align: center;
    margin-top: 20px;
}

/*section3*/
.section3 {
    position: relative;
	padding-top: 110px;
    padding-right: 0px;
    padding-bottom: 110px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    background-color: #fbfbfb;
    background-image: url(../images/img/shapes.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 0 0;
    box-shadow: 0 0 0 0 #ffffff;
    z-index: 0;
}
.section3::after {
    content: "";
    background-color: rgba(0,0,0,0.4);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    z-index: -1;
    left: 0;
}
.bloc3 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	place-content: center;
}
.Mobile .bloc3 {
    grid-template-columns: 100%;
}
.bloc-text3 {
	background: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
}
.bloc-text3 img {
    border-radius: 20px 20px 0 0;
    width: 100%;
    height: 274px;
    object-fit: cover;
}
.text6, .text7 {
   	padding: 80px 30px 35px;
   	position: relative;
}
.Mobile .text6,
.Mobile .text7 {
    padding: 20px;
    padding-top: 50px;
}
.bloc3 h2 {
	color: #154001;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;	
}
.icon-absolute {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    border: 6px solid #fff;
    line-height: 100px;
    background: #154001;
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -80px;
    transform: translatex(-50%);
    left: 50%;
    transition: 500ms;
}
.Mobile .icon-absolute {
    width: 100px;
    height: 100px;
    top: -50px;
}
.icon-absolute:hover {
	background: #72a603;
	transition: 500ms;
}
.icon-absolute img {
	height: 100%;
    max-width: 80px;
    object-fit: contain;	
}
.Mobile .icon-absolute img {
   width: 60px;
    height: 80px;
}

/*section devis*/
.section4 {
	padding-top: 0;
    padding-right: 0px;
    padding-bottom: 0;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    background-image: url(../images/img/about_us_bg.webp);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 50% 100%;
    box-shadow: 0 0 0 0 #ffffff;
    border-top: solid 3px #154001;
}
.Devisgratuit {
	display: grid;
	grid-template-columns: 33.33% 66.67%;
}
.Mobile .Devisgratuit {
    grid-template-columns: 100%;
}
.titre-devis {
    padding: 15px 0;
    font-size: 30px;
    color: #154001;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
}
.Desktop .formulaire {
	background: #fff;
    border-radius: 0 20px 20px 0;
    padding: 40px;
    /*border: 2px solid #467302;*/
    border-left: none;
    max-width: 80%;
    margin: auto;
}
.Mobile .formulaire {
    background: #fff;
    border-radius: 0 0 20px 20px;
    padding: 10px;
    border: 2px solid #467302;
    border-top: none;
}
.form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.Mobile .form {
    grid-template-columns: 100%;
}
.formulaire input.form-input,
.devis input.form-input {
    display: inline-block;
    border-color: #d9d9d9;
    height: 60px;
    border-radius: 20px;
    font-size: 1rem;
    line-height: 1.25;
    color: #495057;
    padding: 0.5rem 0.75rem;
    border: 1px solid gray;
}
.Mobile .formulaire input.form-input,
.Mobile.devis input.form-input {
    height: 45px;
}
textarea.form-input {
	width: 100% !important;
	height: 150px;
    border-color: #d9d9d9;
    border-radius: 20px;
    margin: 20px 0;
    padding: 0.5rem 0.75rem;
    padding-top: 15px;
    font-size: 1rem;
    line-height: 1.25;
    color: #495057;
    border: 1px solid gray;
}
.Mobile textarea.form-input {
    height: auto;
}
.submit {
	text-align: center;
}
.formulaire input.btn-submit,
.devis input.btn-submit {
    background-color: #154001;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 20px 45px;
    transition: 500ms;
    border-radius: 20px;
    border: none;
    cursor: pointer;
}
.Mobile .formulaire input.btn-submit,
.Mobile.devis input.btn-submit {
    width: 100%;
    height: 45px;
    padding: 0;
}
input.btn-submit:hover, .btn-realisations a:hover {
    background: #72a603;
    color: #000;
}

/*footer*/
.footer-top {
    padding-top: 110px;
    padding-right: 0px;
    padding-bottom: 110px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-position: 50% 100%;
    background-color: #154001;
    box-shadow: 0 0 0 0 #ffffff;
}
#footer {
	display: flex;
	justify-content: space-between;
}
.Mobile #footer {
    display: block;
}
footer.footer a {
    color: #fff;
    line-height: 1.5;
}

footer.footer li,
footer.footer .mail,
footer.footer .adresse,
footer.footer .fixe,
footer.footer .portable {
    display: flex;
    align-items: center;
    padding-top: 20px;
}
.Mobile footer.footer li,
.Mobile footer.footer .mail,
.Mobile footer.footer .adresse,
.Mobile footer.footer .fixe,
.Mobile footer.footer .portable {
    padding-top: 13px;
}
.footer .h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
.Mobile .footer .h3 {
    margin-top: 20px;
}
.footer .h3::before {
	display: block;
    content: "";
    height: 1px;
    width: 70px;
    background: #d4d4d4;
    position: absolute;
    left: 0;
    bottom: 0;	
}
.list-villes img, .list-prestations img {
    width: 16px;
    height: 20px;
    object-fit: contain;
    margin-right: 5px;
}
.adresse span {
	color: #fff;
	line-height: 1.7;
}
.contact-footer > div > img {
    margin-right: 6px;
    width: 20px;
    height: 20px;
}
.footer-bottom {
	padding: 30px 0;
    background-color: #181818;
    box-shadow: 0 0 0 0 #ffffff;
    color: #fff;
}
.copyright {
	display: flex;
	align-items: center;
	gap: 15px;
}
.Mobile .copyright {
    display: block;
    padding: 0 20px;
    text-align: center;
}
.Mobile .sous-bloc-cat {
    border-radius: 20px;
    background: #fff;
    padding-bottom: 20px;
    text-align: center;
    transition: all .7s;
}
img {
    max-width: 100%;
}

.nav-mobile {
    cursor: pointer;
    background: #154001 url(../images/nav.svg) no-repeat 70px center;
    background-size: 18px;
    height: 50px;
    width: 100px;
    text-transform: uppercase;
    color: white;
    padding-left: 10px;
    line-height: 50px;
    font-weight: 600;
    border-radius: 20px;
}
ul.ul-mob {
    display: none;
    background-image: url(../images/img/bottom_elements.webp);
    background-position: 68% 100%;
    position: absolute;
    top: 92px;
    left: 0;
    width: 100%;
}
.Tablet li.nav-item,
.Mobile li.nav-item {
    padding: 15px 15px;
    text-align: left;
}
.Tablet .header-top,
.Mobile .header-top {
    position: fixed;
    width: 100%; 
    z-index: 9999; 
    top: 100px;
    padding-bottom: 10px; 
}
.Tablet .header-nav,
.Mobile .header-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    border-radius: 0;
    padding: 0 20px;
    left: 0;
}
.Tablet .header-nav .logo,
.Mobile .header-nav .logo {
    padding: 7px 0;
    max-width: 150px;
}
.Tablet .section1 .bloc ,
.Mobile .section1 .bloc {
    padding: 40px 20px 0;
}
.Tablet h1,
.Mobile h1 {
    font-size: 30px;
}
.Tablet .section-cat,
.Tablet .section2,
.Tablet .section3,
.Tablet .section4,
.Tablet .footer-top,
.Mobile .section-cat,
.Mobile .section2,
.Mobile .section3,
.Mobile .section4,
.Mobile .footer-top {
    padding: 20px;
}
.Mobile .bloc-cat {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    place-content: center;
}
.Mobile .logo-footer {
    text-align: center;
}
.Mobile li.nav-item.active {
    border-radius: 20px;
    border: 1px solid #fff;
}
.section-cat button {
    border: 1px solid #fff;
    color: #fff;
    background-color: #154001;
    font-size: 24px !important;
    font-family: "arial", sans-serif;
}
.Mobile .banner button.slick-prev.slick-arrow , .Mobile .banner button.slick-next.slick-arrow {
    display: none !important;
}
.Mobile .copyright > div > a {
    display: block;
    line-height: 48px;
}
.Mobile span.nav_submenu {
    color: #000;
    background-color: #fff;
    position: absolute;
    right: 0px;
    top: 0%;
    transform: rotate(90deg);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 10px;
    cursor: pointer;
    z-index: 9;
    font-family: "arial", sans-serif;
    font-weight: 800;
}
.fixed-top {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    animation: forwards fromTop .5s;
    transform: translateY(-100%);
}
@keyframes fromTop {
    from {
        transition: all .25s;
        opacity: 0;      
    }
    to {
        transition: all .25s;
        opacity: 1;
        transform: translateY(0);
    }
}
.top_none {
    top: 0 !important;
    background-color: #154001;
}
.white {
    color: #fff !important;
}
.img-realisations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    place-content: center;
    margin-top: 25px;
}
.Mobile .img-realisations {
    grid-template-columns: 100%;
}
.swipebox img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}
.Mobile .swipebox img {
    height: 250px;
}
body.realisations {
    background: #9b9a98;
}
#realisations {
    padding: 100px 0;
}
.Mobile #realisations {
    position: relative;
    top: 120px;
}
#realisations .titre-album {
    color: #154001;
    font-size: 44px;   
}
.Mobile #realisations .titre-album {
    font-size: 30px;
}
#realisations .content {
    padding: 20px;
}
#textmentions {
    padding: 100px 0;
}
.Mobile #textmentions {
    position: relative;
    top: 150px;
}
.Mobile #textmentions .container {
    padding: 0 25px;
}
#textmentions h3 {
    margin-top: 20px;
    margin-bottom: 5px;
}

/*404*/
.page-introuvable,
.page-introuvable a {
    color: #fff;
    font-size: 36px;
    line-height: 2;
}
.Mobile .page-introuvable,
.Mobile .page-introuvable a {
    font-size: 24px;
}
.page-introuvable {
    display: flex;
    align-items: center;
    height: 100vh;
    justify-content: center;
    flex-direction: column;
    background-image: url(../images/img/shapes.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

/*messages*/
#Messages {
    color: #154001;
    text-align: center;
    padding: 15px 0;
    font-weight: 600;
}

/*rappel*/
.head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.Mobile .head {
    display:block;
}
.rappel_ {
    display: flex;
    align-items: center;
}
.Mobile .rappel_ {
    display: none
}
.rappel_title {
    color: #fff;
    padding-right: 10px;
}
.head input.form-input {
    border-radius: 15px;
    padding: 10px;
    border: 1px solid #72a603;
}
.head input.button_rappel {
    padding: 10px;
    border: 1px solid #72a603;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    color: #000;
    background: #72a603;
}

/*num-tel*/
.fixe-portable {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.Desktop div#Map {
    height: 315px;
    width: 100%;
    border-right: none;
}
.Mobile div#Map {
    height: 250px;
    width: 100%;
    border-radius: 20px 20px 0 0;
    border: 2px solid #467302;
    border-bottom: none;
}
.slick-slide a.btn-linnk_ img {
    width: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}
.p-slider a img {
    filter: invert(1);
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 25px;
    object-fit: contain;
}
.p-slider a {
    color: white;
}
.p-slider a:hover {
    text-decoration: underline;
}
.Mobile .btn-realisations a {
    padding: 20px;
}
#mail {
    display: none;
}
.devis .Devisgratuit {
    display: block;
    padding: 30px 0;
}
.Mobile.devis .Devisgratuit {
    padding: 30px 15px;
}
.Mobile .titre-devis {
    font-size: 24px;
}


.Desktop.ville .title-slider::first-line, .title-slider {
    font-size: 50px;
    color: #fff;
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    margin: 30px 0;
}
.Desktop.ville .title-slider {
    line-height: normal;
    font-size: 38px;
    color: #ffffff;
    font-weight: 500;
    /* margin: 0; */
    font-style: italic;
    text-transform: none;
}
.Mobile .title-slider {
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
}


.Desktop div#footer {
    display: grid;
    grid-template-columns: 50% 1fr 1fr;
    gap: 30px;
    padding: 0 30px;
}
.Desktop .list-villes ul {
    column-count: 2;
}
.Desktop .banner-slider {
    width: 100%;
    max-height: 900px;
    overflow: hidden;
}