 *,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
  width: device-width;
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
    margin: 0;
    font-family: 'Calibri', sans-serif;
    text-align: left;
    background-color: #fff;
    line-height: 1.5;
    color: #000;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6, .h3, .h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

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

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

h1,h2,h3,h4,h5 {
    font-weight: bold;
    color: #212121;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  line-height: 1.4;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}
b,
strong {
  font-weight: bolder;
}
figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}


button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover, .btn:focus {
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
  background-image: none;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}
.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, 
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* 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 .slider {

}
.Mobile .homeslider .slider {
	box-shadow: none;
    padding: 0;
}
.homeslider .slider-track {
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}

a {
    background: transparent;
    -webkit-transition: .5s;
    transition: .5s;
    color: #777
    text-decoration: none;
}
a:hover {
    color: #222;
}
a:hover, a:active, a a:focus {
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
    color: #000;
}
h1 {
    font-size: 27px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

h3 {
    font-size: 18px;
    margin: 10px 0;
}

p {
  font-size: 18px;
}

a,
input[type="submit"],
input[type='submit'],
button {
    cursor: pointer;
}

input,
button,
textarea {
    outline: none;
}

ul {
  list-style: none;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.container {
  padding: 0 12px;
}

a.swipebox img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}
b.titre-album {
    width: 100%;
    font-size: 36px;
    color: #000;
    font-weight: bold;
    display: block;
    margin: 15px;
    text-align: center;
    text-transform: uppercase;
}

.mentions h2 {
    padding: 20px;
    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;
}

.blog_pageIntrouvable {
    background: #fff;
    position: fixed;
    height: 100%;
    width: 100%;
    font-size: 18px;
    z-index: 10000 !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: #000;
}

.blog_pageIntrouvable > div {
  height: 100%;
  color: #333
}
.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: #333
}
.blog_pageIntrouvable a:hover {
    text-decoration: underline;
}
#noDesktop { display: none; }
@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;
  }
}

div#Messages {
    text-align: center;
    background-color: #d14104;
    padding: 10px;
    width: 100%;
    z-index: 999999;
    position: fixed;
    top: 0;
    left: 0;
}

div#Messages p {
    margin: 0;
    color: #fff;     
    font-size: 20px;
}
.Tablet div#Messages p,
.Mobile div#Messages p {
    font-size:14px;
}

.Tablet header,
.Mobile header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 999;
}

.navTop {
    background: #C7DC49;
    padding: 12px 0;
}

._navTop_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navTop_left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav_tel {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav_tel img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.navTop_left a {
    color: #000;
    font-size: 17px;
}

.nav_content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 12px 0;
}


.Tablet .nav_content,
.Mobile .nav_content {
    justify-content: space-between;
}

._logo a img {
    width: 190px;
    height: 70px;
    object-fit: contain;
}

ul.nav-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.Tablet ul.nav-list,
.Mobile ul.nav-list {
    position: fixed;
    width: 100%;
    flex-direction: column;
    top: 135px;
    background: #fff;
    left: 0;
    padding: 10px 0;
    gap: 10px;
    display: none;
}

li.nav-item {
    width: 100%;
    line-height: 1.2;
    text-align: center;
}

.Mobile li.nav-item,
.Tablet li.nav-item {
    padding: 10px 0;
}

li.nav-item a {
    color: #000;
    transition: all .4s;
}

li.nav-item:hover:not(.active) > a {
    color: #10551f;
}

li.nav-item.active > a {
    color: #10551f;
}

ul.nav-submenu {
    display: none;
    position: absolute;
    width: 300px;
    background: #c7dc49;
    z-index: 22;
    padding: 20px 0;
    text-align: left;
    gap: 5px;
    border-radius: 5px;
    margin-top: 30px;
}

li.nav-submenu-item {
    padding: 10px 15px;
}

li.nav-submenu-item.active,
.Desktop li.nav-submenu-item:hover {
    background: #fff;
}

.Tablet ul.nav-submenu,
.Mobile ul.nav-submenu {
    position: static;
    width: 100%;
    margin: 10px 0 0;
    text-align: center;
    display: block;
    padding: 0px;
}

.Desktop ul.nav-submenu:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 40px;
    background: transparent;
    top: -40px;
    left: 0;
}

.Desktop li.nav-item:hover ul.nav-submenu {
    display: block;
}

.down_menu {
    position: absolute;
    right: 10px;
    top: 0;
    background: #000;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.down_menu img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.burger_menu img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.Mobile .navTop_left {
    position: fixed;
    top: 93px;
    width: 100%;
    left: 0;
    background: #C7DC49;
    padding: 5px;
    justify-content: center;
}

.Mobile .navTop_left .nav_tel {
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}

._hero_header {
    width: 100%;
    height: 750px;
    position: relative;
}

._hero_header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(16, 85, 31, 0.4);
}

.background {
    width: 100%;
    height: 750px;
    position: absolute;
    z-index: -1;
}

._bg {
    width: 100%;
    height: 100%;
}

._hero {
    position: absolute;
    width: 100%;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
}

.Tablet ._hero,
.Mobile ._hero {
    top: 50%;
}

._hero_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5px;
}

.Tablet ._hero_content {
    grid-template-columns: 75% auto;
}

.Mobile ._hero_content {
    grid-template-columns: 1fr;
}

._nom {
    display: flex;
    align-items: center;
    gap: 10px;
}

._nom svg {
    color: #fff;
    width: 25px;
    height: 25px;
}

._nom_txt {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.Mobile ._nom_txt {
    font-size: 16px;
    letter-spacing: 3px;
}

.Desktop.ville ._hero_h1:first-line {
    color: #fff;
    font-size: 70px;
    font-style: normal;
    font-weight: 600;
}

.ville ._hero_h1 {
    font-size: 40px;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    margin: 10px 0 20px;
    font-style: italic;
}

body:not(.ville) ._hero_h1 {
    font-size: 70px;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    margin: 10px 0 20px;
    font-style: italic;
}

.Mobile ._hero_h1 {
    font-size: 36px !important;
    line-height: 1 !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin: 10px 0 0 !important;
    font-style: normal !important;
}

._hero_line img {
    width: 527px;
    height: 16px;
    object-fit: contain;
}

.Mobile ._hero_line img {
    width: 100%;
}

._hero_btn {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 50px;
}

.Mobile ._hero_btn {
    flex-direction: column;
}

a._hero_btn_link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 7px 7px 7px 30px;
    border-radius: 50px;
    color: #000;
    transition: all .4s;
}

._hero_btn_img {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c7dc49;
    border-radius: 50%;
}

._hero_btn_img img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

._heroForm {
    background: #fff;
    padding: 40px 40px 50px;
    border-radius: 10px;
    width: 75%;
    float: right;
}

.Mobile ._heroForm {
    background: #fff;
    padding: 40px 20px 50px;
    border-radius: 10px;
    width: 100%;
    float: none;
}

.Tablet ._heroForm {
  float: none;
  margin: auto;
}

._heroForm_h1 {
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

form#FormDevis {
    display: grid;
    gap: 10px;
}

form#FormDevis .form-input {
    border: none;
    padding: 10px;
    border-radius: 5px;
    background: #F7F8ED;
}

form#FormDevis input.btn.btn-submit {
    padding: 8px;
    border-radius: 5px;
    background: #10551f;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    transition: all .4s;
}

form#FormDevis input.btn.btn-submit:hover {
    background: #000;
}

.s0_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 5;
    margin-top: -80px;
    background: #F7F8ED;
    border-radius: 20px;
}

.Mobile .s0_content {
    grid-template-columns: repeat(2, 1fr);
    background: transparent;
}

.s0_box {
    position: relative;
    padding: 55px 35px 30px;
}

.Mobile .s0_box {
    position: relative;
    padding: 55px 15px 30px;
    margin: 30px 0;
    background: #F7F8ED;
}

.Tablet .s0_box {
  padding: 55px 15px 30px;
}

.s0_box:nth-child(1):before,
.s0_box:nth-child(2):before,
.s0_box:nth-child(3):before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: calc(100% - 110px);
    border-right: 1px dashed rgba(151, 181, 69, .7);
    transform: translateY(-50%);
}

.s0_img {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C7DC49;
    border-radius: 5px;
}

.s0_img img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.s0_txt {
    text-align: center;
}

.s0_h2 {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.s0_p {
    color: #535353;
}

section {
    position: relative;
    padding: 100px 0;
}

.Tablet section,
.Mobile section {
    padding: 50px 0;
}

.s1_content {
    display: flex;
    align-items: center;
}

.Mobile .s1_content,
.Tablet .s1_content {
    flex-direction: column;
    align-items: flex-start;
}

.Mobile .s1_left,
.Tablet .s1_left {
    width: 100%;
}

.s1_nom {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    background: #f7f8ed;
    padding: 5px 30px;
    border-radius: 60px;
    margin-bottom: 15px;
}

.s1_nom svg {
    color: #10551f;
    width: 25px;
    height: 25px;
}

.s1_nom_txt {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.Desktop .s1_txt {
    margin-right: 50px;
}

.s1_grid {
    display: flex;
    align-items: flex-end;
    gap: 25px;
    margin-top: 40px;
}

.Mobile .s1_grid {
    flex-direction: column;
}

.s1_grid_left {
    min-width: 200px;
}

.Mobile .s1_grid_left {
    min-width: 100%;
}

.s1_grid_left_top_h1 {
    font-size: 100px;
    font-weight: 600;
    line-height: 1;
    color: #10551f;
}

.s1_grid_left_top_p {
    font-size: 20px;
    line-height: 1;
}

.section_btn {
    margin-top: 30px;
}

.section_btn a._hero_btn_link {
    background: #c7dc49;
    width: fit-content;
}

.section_btn ._hero_btn_img {
    background: #fff;
}

.s1_grid_right {
    position: relative;
    z-index: 5;
    margin-right: -150px;
}

.Mobile .s1_grid_right,
.Tablet .s1_grid_right {
    margin: 0 0 30px 0;
}

.s1_grid_right_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #F7F8ED;
}

.Mobile .s1_grid_right_grid {
    grid-template-columns: 1fr;
}

.s1_grid_right_grid_box {
    padding: 40px 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
}

.s1_grid_right_grid_box:nth-child(1):before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: calc(100% - 80px);
    border-right: 1px dashed rgba(151, 181, 69, .7);
    transform: translateY(-50%);
}

.Mobile .s1_grid_right_grid_box:nth-child(1):before {
    display: none;
}

.s1_grid_right_grid_box_img img {
    width: 40px;
    height: 40px;
    min-width: 40px;
    object-fit: contain;
}

.s1_grid_right_grid_box_h2 {
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 17px;
    font-size: 17px;
}

.s1_right img {
    width: 420px;
    height: 550px;
    object-fit: cover;
    display: block;
    background: #ddd;
}

.Tablet .s1_right,
.Mobile .s1_right {
    width: 100%;
}

.Mobile .s1_right img {
    width: 100%;
    height: 250px;
}

.Tablet .s1_right img {
    width: 100%;
    height: 300px;
    margin-top: 30px;
}

.Desktop .section_2 {
    padding: 50px 0;
}

.s2_top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 40px;
}

.s2_h1 {
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
}

.s2_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.Tablet .s2_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.Mobile .s2_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.s2_box {
    /* width: calc((100% / 4) - 20px); */
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    background: #C7DC49;
    padding: 40px 20px;
    margin: 10px;
    border-radius: 7px;
    transition: all .4s;
}

.s2_box:hover {
    background: #10551f;
}

.s2_icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    transition: all .4s;
}

.s2_box:hover .s2_icon img {
    filter: invert(1);
}

.s2_ancre {
    line-height: 1.1;
}

.s2_ancre a {
    color: #000;
    font-size: 17px;
    transition: all .4s;
}

.s2_box:hover .s2_ancre a {
    color: #fff;
}

.s2_img img {
    width: 150px;
    height: 150px;
    display: block;
    object-fit: cover;
    background: #ddd;
    border-radius: 50%;
}

.s3_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: end;
}

.Tablet .s3_content,
.Mobile .s3_content {
    grid-template-columns: 1fr;
}

.s3_left {
    position: relative;
}

.s3_left_img img {
    width: 480px;
    height: 550px;
    display: block;
    background: #ddd;
    object-fit: cover;
}

.Mobile .s3_left_img img {
    width: 100%;
    height: 300px;
}

.Tablet .s3_left_img img {
    width: 100%;
    height: 300px;
}

.s3_left_floating {
    position: absolute;
    right: -20px;
    bottom: 0;
}

.Tablet .s3_left_floating,
.Mobile .s3_left_floating {
    display: none;
}

.s3_left_floating img {
    width: 208px;
    height: 515px;
    object-fit: contain;
}

.s3_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 30px 0;
}

.s3_box {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 15px;
}

.s3_icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

section.section_4:before {
    content: '';
    width: 97%;
    position: absolute;
    top: 100px;
    left: 50%;
    background: #F5F2EC;
    height: calc(100% - 200px);
    transform: translateX(-50%);
    border-radius: 10px;
}

.s4_content {
    position: relative;
    z-index: 5;
}

.s4_top {
    display: flex;
    align-items: flex-end;
    gap: 60px;
}

.s4_top_left {
    padding-top: 40px;
}

.s4_top_right {
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.s4_top_right img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    display: block;
    background: #ddd;
    border-radius: 7px;
}

.s4_bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 10;
    margin-bottom: -50px;
}

.Tablet .s4_bottom,
.Mobile .s4_bottom {
    grid-template-columns: 1fr;
}

.s4_box {
    padding: 40px 30px;
}

.s4_box:nth-child(1),
.s4_box:nth-child(3) {
    background: #c7dc49;
}

.s4_box:nth-child(2) {
    background: #10551f;
}

.s4_box_h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}

.s4_box:nth-child(2) .s4_box_h2,
.s4_box:nth-child(2) .s4_box_p {
    color: #fff;
}

form#rappel_immediat {
    display: grid;
    margin-top: 30px;
    gap: 7px;
}

.form_input {
    position: relative;
}

form#rappel_immediat input.form-input {
    width: 100%;
    padding: 15px 10px 15px 60px;
    border-radius: 100px;
    border: none;
}

.form_input img {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    object-fit: contain;
}

form#rappel_immediat button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: none;
    border-radius: 100px;
    background: #000;
    color: #fff;
    font-size: 17px;
}

form#rappel_immediat button img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.s4_box_grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.s4_box_grid img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    display: block;
}

.s4_box_tel {
    display: grid;
    gap: 8px;
    margin-top: 25px;
}

.s4_tel_link {
    display: flex;
    align-items: center;
}

.s4_tel_icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10551f;
    border-radius: 50%;
    min-width: 55px;
    position: relative;
    transition: all .4s;
}

.s4_tel_link:hover .s4_tel_icon {
    background: #f7f8ed;
}

.s4_tel_icon img {
    width: 27px;
    height: 27px;
    object-fit: contain;
    filter: invert(1);
}

.s4_tel_link:hover .s4_tel_icon img {
    filter: none;
}

.s4_tel_link a {
    background: #fff;
    width: 100%;
    padding: 10px 10px 10px 35px;
    border-radius: 100px;
    margin-left: -20px;
    color: #000;
}

section.section_5 {
    background-image: linear-gradient(180deg, #EAF0DA 0%, #FFFFFF00 100%);
}

.s5_top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 50px;
    text-align: center;
}

.s5_top_h1 {
    font-size: 50px;
    font-weight: 600;
}

.Mobile .s5_top_h1 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 15px;
}

.Tablet .s5_top_h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 15px;
}

.s5_top_p {
    font-size: 17px;
}

.s5_bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.Tablet .s5_bottom,
.Mobile .s5_bottom {
    grid-template-columns: 1fr;
}

.s5_box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}

.s5_img {
    position: relative;
}

.s5_img > img {
    width: 100%;
    height: 300px;
    display: block;
    background: #ddd;
    object-fit: cover;
}

.s5_icon {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 80px;
    height: 80px;
    background: #10551f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.s5_icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.s5_txt {
    margin-top: 20px;
}

.s6_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.Tablet .s6_content,
.Mobile .s6_content {
    grid-template-columns: 1fr;
}

.s6_h1 {
    font-size: 45px;
    font-weight: 600;
}

.Mobile .s6_h1 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 15px;
}

.Tablet .s6_h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 15px;
}

.s6_p {
    margin-bottom: 30px;
}

.s6_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.s6_grid img {
    width: 100%;
    height: 250px;
    background: #ddd;
    object-fit: cover;
}

.s6_right {
    padding: 30px;
    border: 1px solid #5858581A;
    border-radius: 10px;
}

.s7_content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.Tablet .s7_content,
.Mobile .s7_content {
    flex-direction: column;
}

.Tablet .s7_left,
.Mobile .s7_left {
    width: 100%;
}

.s7_left img {
    width: 450px;
    height: 500px;
    display: block;
    background: #ddd;
    object-fit: cover;
}

.Tablet .s7_left img,
.Mobile .s7_left img {
    width: 100%;
    height: 300px;
}

.s7_txt {
    margin-top: 30px;
}

.s7_box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.s7_icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    background: #10551f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.s7_icon:before {
    content: '';
    width: 75px;
    height: 75px;
    position: absolute;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed #10551f;
    border-radius: 50%;
}

.s7_icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.s8_content {
    position: relative;
    width: 100%;
    height: 500px;
}

.s8_box {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    width: 600px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.Mobile .s8_box {
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: fit-content;
    align-items: flex-start;
}

.s8_h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
}

.s9_top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 35px;
}

.s9_h1 {
    font-size: 50px;
    font-weight: 600;
}

.Mobile .s9_h1 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 15px;
}

.Tablet .s9_h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 15px;
}

.s9_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc((100% / 2) - 50px), 1fr));
    gap: 50px;
}

.Tablet .s9_grid,
.Mobile .s9_grid {
    grid-template-columns: 1fr;
}

.s9_box:nth-child(1) {
    background: #c7dc49;
}

.s9_box:nth-child(2) {
    background: #f7f8ed;
}

.s9_box {
    padding: 50px 40px;
    border-radius: 10px;
}

.s9_icon svg {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

footer {
    background: #10551f;
    padding-top: 120px;
}

.footer_content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.Tablet .footer_content,
.Mobile .footer_content {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
}

.footer_left {
    min-width: 400px;
    width: 400px;
    height: 550px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding: 30px 30px 50px 30px;
    border-radius: 10px 10px 0 0;
}

.Tablet .footer_left,
.Mobile .footer_left {
    min-width: 100%;
    width: 100%;
}

.footer_left:before {
    content: '';
    position: absolute;
    background-color: transparent;
    --background-overlay: '';
    background-image: linear-gradient(180deg, #21262100 37%, #10551F 88%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.footer_logo {
    position: relative;
}

.footer_logo a img {
    filter: brightness(0) invert(1);
    width: 250px;
    height: 92px;
    object-fit: contain;
}

.footer_left_bottom {
    position: relative;
}

.footer_txt {
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.4;
    font-size: 17px;
}

.footer_rs {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer_rs a {
    width: 40px;
    height: 40px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .4s;
}

.footer_rs a:hover {
    background: #c7dc49;
}

.footer_rs a svg {
    width: 20px;
    height: 20px;
}



.footer_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 30px;
}

.Mobile .footer_grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.footer_grid a,
.footer_grid div > div {
    color: #fff;
    font-size: 17px;
    margin: 5px 0;
}

.footer_right_top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.Mobile .footer_right_top {
    grid-template-columns: 1fr;
}

.footer_title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #c7dc49;
}

.footer_ul {
    display: grid;
    gap: 5px;
}

.footer_ul a {
    color: #fff;
    font-size: 17px;
}

.footer_right_bottom {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid #f7f8ed4a;
}

.Mobile .footer_right_bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.footer_right_bottom_left,
.footer_right_bottom_left a {
    color: #fff;
}

.footer_right_bottom_right img {
    width: 150px;
    height: 25px;
    object-fit: contain;
}

a._hero_btn_link:hover {
    background: #10551f !important;
    color: #fff;
}

footer a:hover {
    color: #c7dc49;
}

.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;
}
.ContactezNous-h1 {
    color: #333333;
    text-transform: uppercase;
    font-weight: 600;
    font-family: Calibri;
    font-size: 32px;
}
.adr-map {
    padding: 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.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-content div#Map {
    height: 450px;
    width: 100%;
}
.Mobile .contact-content div#Map {
    height: 300px;
    width: 100%;
}
.ContactezNous svg, .ContactezNous img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 5px;
}

input#mail {
    display: none;
}
.footer_grid img {
    filter: invert(1);
}
