 *,
*::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: #000;
    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;
}

::root {
    --first: #A36D3F;
    --second: #0cc639;
    --third: #97AB26;
    --four: #6E5752;
}

.webtop {
    width: 100%;
    height: 900px;
    position: relative;
    overflow: hidden;
}

.Mobile .webtop {
    height: 750px;
}

._background {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

._background:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.Mobile ._bg {
    width: 100%;
    height: 750px;
}

.webp_top_content {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
}

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

.navTop {
    padding: 10px 0;
    border-bottom: 1px solid #ffffff59;
    background: #000;
}

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

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

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

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

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

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

.nav_tel a {
    color: #fff;
}

.navBottom {
    margin: 30px 0 0;
}

.Tablet .navBottom,
.Mobile .navBottom {
    margin: 10px 0;
}

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

._logo a img {
    width: 200px;
    height: 82px;
    object-fit: contain;
}

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

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

.Tablet ul.nav-list.showMenu,
.Mobile ul.nav-list.showMenu {
    display: flex;
}

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

.Desktop li.nav-item::before {
    content: '';
    background: #fff;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0;
}

.Desktop li.nav-item.active::before {
    opacity: 1;
}

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

.Desktop li.nav-item:not(.active) > a:hover {
    color: #0cc639;
}

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

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

ul.nav-submenu {
  display: none;
    position: absolute;
    grid-template-columns: repeat(3, 1fr);
    width: 870px;
    background: #fff;
    left: 0;
    padding: 10px 20px;
    gap: 7px;
    text-align: left;
}
.Mobile ul.nav-submenu a,
.Tablet ul.nav-submenu a {
    padding: 5px 0;
    display: block;
    text-align: center;
}

.Tablet ul.nav-submenu {
    grid-template-columns: 1fr 1fr;
    position: static;
    width: 100%;
    display: block;
}
.Mobile ul.nav-submenu {
    grid-template-columns: 1fr;
    position: static;
    width: 100%;
    max-height: 300px;
    overflow-y: scroll;
    display: block;
}

.Desktop li.nav-item:hover ul.nav-submenu,
ul.nav-submenu.navShow {
    display: grid;
    grid-template-columns: 100%;
    width: max-content;
}

ul.nav-submenu a {
    color: #000;
    transition: all .4s;
}
.Desktop ul.nav-submenu a {
    color: #000;
    transition: all .4s;
    padding: 5px 0;
    display: block;
}
ul.nav-submenu a:hover {
    color: #056f4d;
}

._hero {
    width: 100%;
    height: 83.5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

._hero_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: -50px;
}

.Tablet ._hero_content {
    margin-top: 150px;
}

.Mobile ._hero_content {
    margin-top: 200px;
}

._hero_content img[alt="award"] {
    width: 70px;
    height: 60px;
    object-fit: contain;
}

._hero_content img[alt="icon_star"] {
    width: 115px;
    height: 29px;
    object-fit: contain;
}

._hero_nom {
    font-weight: 500;
    font-size: 30px;
    margin: 15px 0 5px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
}

._hero_h1 {
    text-align: center;
    line-height: 1;
    margin: 30px 0 10px;
    font-size: 35px;
    font-style: italic;
    color: #fff;
}

.Mobile ._hero_h1 {
    font-size: 25px;
    font-weight: 600;
}

.Tablet .Tablet ._hero_h1 {
    font-size: 30px;
    font-weight: 600;
}

.Desktop.ville ._hero_h1::first-line {
    font-size: 80px;
    font-style: normal;
    font-weight: 600;
    font-family: sans-serif;
}

.Tablet ._hero_h1,
.Mobile ._hero_h1 {
    font-style: normal;
}

._hero_p {
    font-size: 19px;
    color: #fff;
    margin: 10px 0 30px;
    text-align: center;
    line-height: 1.4;
}

.Mobile ._hero_p {
    font-size: 14px;
}

._hero_btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.Mobile ._hero_btn {
    flex-direction: column;
    width: 100%;
}

._hero_btn a {
    background-color: #fff;
    color: rgb(45, 45, 45);
    text-align: left;
    line-height: 55px;
    font-weight: 700;
    font-size: 18px;
    padding-left: 35px;
    border-radius: 6px;
    padding-right: 35px;
    border: 1px solid #fff;
    transition: all .4s;
}

._hero_btn a:hover { 
    background: transparent;
    color: #fff;
}

._hero_btn a:first-child {
    background: transparent;
    color: #fff;
}

._hero_btn a:first-child:hover {
    background: #0cc639;
    color: #000;
    border-color: #0cc639;
}

.Mobile ._hero_btn a {
    width: 100%;
    text-align: center;
}

._rappel_content {
    position: relative;
    z-index: 3;
    margin-top: -75px;
    padding: 60px 40px 30px;
    background-color: #fff;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
}

.Mobile ._rappel_content {
    margin-top: 50px;
    padding: 0;
    box-shadow: none;
}

._rappel_top {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 20px;
    top: -22px;
}

.Mobile ._rappel_top {
    position: static;
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

._rappel_top_box {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    padding: 9px 25px;
    border-radius: 20px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
}

._rappel_top ._rappel_top_box:nth-child(2n) {
    background: #056f4d;
    color: #fff;
}

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

._rappel_top ._rappel_top_box:nth-child(2n) img {
    filter: invert(1);
}

._rappel_grid {
    display: grid;
    grid-template-columns: 30% 65%;
    justify-content: space-between;
}

.Tablet ._rappel_grid,
.Mobile ._rappel_grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
}

._rappel_left {
    font-size: 35px;
    line-height: 0.9;
    font-weight: 600;
}

._rappel_form form#rappel_immediat {
    display: flex;
    width: 100%;
}

.Mobile ._rappel_form form#rappel_immediat {
    flex-direction: column;
    gap: 5px;
}

._rappel_form form#rappel_immediat .form_input {
    position: relative;
    width: 70%;
}

.Mobile ._rappel_form form#rappel_immediat .form_input {
    width: 100%;
}

._rappel_form form#rappel_immediat .form_input input.form-input {
    padding: 15px 10px 15px 50px;
    width: 100%;
    border: 1px solid #000;
}

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

._rappel_form form#rappel_immediat button {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #0cc639;
    border: none;
    transition: all .4s;
}

.Mobile ._rappel_form form#rappel_immediat button {
    width: 100%;
    padding: 10px;
}

._rappel_form form#rappel_immediat button:hover {
    background: #056f4d;
}

._rappel_form form#rappel_immediat button span {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #000000;
    transition: all .4s;
}

._rappel_form form#rappel_immediat button img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    transition: all .4s;
}

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

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

.s1_top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.societe_nom {
    color: #056f4d;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.s1_h1 {
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
    margin: 10px 0;
}

.Mobile .s1_h1 {
    font-size: 22px;
}

.s1_p {
    text-align: center;
}

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

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

.s1_left {
    display: grid;
    gap: 20px;
}

.Tablet .s1_left,
.Mobile .s1_left {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.s1_left > div {
    display: flex;
    gap: 20px;
}

.Tablet .s1_left > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.Mobile .s1_left > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.s1_img_div_1 {
    align-items: end;
}

.s1_left img {
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.s1_img_1 img,
.s1_img_4 img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    display: block;
    background: #ddd;
}

.s1_img_2 img,
.s1_img_3 img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    display: block;
    background: #ddd;
}

.Tablet .s1_left > div img,
.Mobile .s1_left > div img {
    width: 100%;
    height: 220px;
}

.s1_right_grid {
    display: grid;
    gap: 15px;
    margin: 30px 0;
}

.s1_right_box {
    display: flex;
    gap: 10px;
}

.s1_right_box_icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.s1_right_box_h1 {
    font-size: 20px;
    font-weight: 600;
}

.s1_right_box_p {
    line-height: 1.2;
    margin-top: 3px;
}

.section_btn {
    margin-top: 30px;
}

.section_btn a {
    background-color: #0cc639;
    color: #000;
    text-align: left;
    line-height: 55px;
    font-weight: 700;
    font-size: 18px;
    padding-left: 35px;
    border-radius: 6px;
    padding-right: 35px;
    border: 1px solid #0cc639;
    display: block;
    width: fit-content;
    transition: all .4s;
}

.section_btn a:hover {
    background: #056f4d;
}

section.section_2 {
    background: #fdf7f247;
}

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

.s2_h1 {
    line-height: 0.8;
    margin: 10px 0;
    font-size: 47px;
    text-transform: uppercase;
    font-weight: 600;
}

.Mobile .s2_h1 {
    font-size: 30px;
}

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

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

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

.s2_box {
    border: 1px solid #e6e6e6;
    padding-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
}

.s2_img {
    position: relative;
}

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

.Mobile .s2_img > img {
    height: 120px;
}

.s2_mask {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
}

.s2_mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s2_icon {
    width: 60px;
    height: 60px;
    background: #056f4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 20px;
    position: relative;
    z-index: 2;
    transition: all .4s;
}

.s2_box:hover .s2_icon {
    background: #0cc639;
}

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

.s2_link {
    margin-top: 30px;
}

.Mobile .s2_link {
    padding: 0 10px;
    line-height: 1.1;
}

.s2_link a {
    text-align: center;
    display: block;
    color: #000;
}

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

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

.s3_txt {
    margin: 30px 0;
}

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

.Mobile .s3_left_bottom {
    flex-direction: column;
    align-items: flex-start;
}

.s3_left_bottom .section_btn {
    margin: 0;
}

.s3_google {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.s3_goo_top {
    margin-bottom: -5px;
}

.s3_goo_top img {
    width: 100px;
    height: 33px;
    object-fit: contain;
}

.s3_goo_bottom {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-top: 2px;
    line-height: 1;
}

.s3_goo_1 {
    font-size: 23px;
    font-weight: 600;
}

.s3_goo_2 img {
    width: 130px;
    height: 33px;
    object-fit: contain;
}

.s3_goo_3 {
    color: #535353;
    margin-bottom: 3px;
}

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

.Tablet .s3_right {
    width: 100%;
    gap: 10px;
}

.Mobile .s3_right {
    width: 100%;
    gap: 10px;
    grid-template-columns: 1fr;
}

.s3_img_left {
    display: grid;
    gap: 20px;
}

.Tablet .s3_img_left,
.Mobile .s3_img_left {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.s3_right img {
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.s3_img_left img {
    width: 250px;
    height: 270px;
    display: block;
    background: #ddd;
    object-fit: cover;
}

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

.Tablet .s3_right img {
    width: 100%;
    height: 270px;
}

.Mobile .s3_right img {
    width: 100%;
    height: 170px;
}

.section_4:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #056f4d;
}

.s4_content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 70px;
}

.Mobile .s4_content {
    padding: 0 20px;
}

.s4_content .societe_nom {
    color: #fff;
    font-size: 22px;
    letter-spacing: 6px;
}

.s4_top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.s4_top img {
    width: 70px;
    height: 60px;
    object-fit: contain;
}

.Mobile .s4_top img {
    width: 45px;
    height: 39px;
    object-fit: contain;
    margin-top: 23px;
}

.s4_txt h2,
.s4_txt p {
    position: relative;
    z-index: 5;
    color: #fff;
}

.Mobile .s4_content .section_btn {
    position: relative;
    z-index: 2;
    top: -15px;
}

span.vector {
    width: 35%;
    height: 91%;
    border: 1px solid #fff;
    border-right: unset;
    border-radius: 20px 0 0 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

span.vector::before {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
}

span.vector::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
}

span.vector.two {
    left: unset;
    right: 0;
    border: 1px solid #fff;
    border-left: unset;
    border-radius: 0 20px 20px 0;
}

span.vector.two::before {
    right: unset;
    left: -2px;
}

span.vector.two::after {
    right: unset;
    left: -2px;
}

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

.s5_left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.s5_img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    background: #ddd;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.s5_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: #056f4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s5_icon_img {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0cc639;
    border-radius: 50%;
}

.s5_icon_img img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.s5_txt {
    margin-top: 20px;
}

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

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

.s7_box {
    position: relative;
    padding: 80px 30px;
    border-radius: 5px;
}

.s7_box::before {
    content: '';
    background: #000000c4;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
}

.s7_box ._txt {
    position: relative;
    color: #fff;
}

.s7_box ._txt h2,
.s7_box ._txt h3 {
    color: #fff;
}

.s7_box .section_btn {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.Mobile .s7_box .section_btn {
    width: max-content;
}

.s8_h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 600;
}

.Mobile .s8_h1 {
    font-size: 24px;
    line-height: 1.1;
}

.s8_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.Mobile .s8_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.Mobile .s8_grid img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    background: #ddd;
    border-radius: 5px;
}

.Tablet .s8_grid {
    gap: 15px;
}

.s8_box_2 {
    display: grid;
    gap: 22px;
}

.Tablet .s8_box_2 {
    gap: 15px;
}

.s8_box img {
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    object-fit: cover;
}

.s8_box_1 img {
    width: 100%;
    height: 600px;
    display: block;
    background: #ddd;
}

.Tablet .s8_box_1 img {
    height: 450px;
}

.s8_box_2 img {
    width: 100%;
    display: block;
    background: #ddd;
    height: 100%;
}

.s8_grid_2 {
    margin-top: 22px;
}

.Tablet .s8_grid_2 {
    margin-top: 15px;
}

.Mobile .s8_grid_2 {
    margin-top: 10px;
}

.s8_grid_2 img {
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: 289px;
    background: #ddd;
    display: block;
}

.Tablet .s8_grid_2 img {
    height: 218px;
} 

.s8_btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.section_9 {
    background: #fdf7f247;
}

.s9_top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

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

.Mobile .s9_h1 {
    font-size: 24px;
    line-height: 1.1;
    margin: 10px 0;
}

.s9_slick {
    display: flex !important;
    align-items: stretch;
    overflow: hidden;
    justify-content: center;
}

.s9_box {
    width: calc(100% - 20px) !important;
    height: 100%;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 40px;
    margin: 40px auto;
    display: block !important;
    background: #fff;
}

.s9_box_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 20px;
}

.s9_box_top_left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.s9_box_top_left_img {
    position: relative;
}

.s9_box_top_left_img > img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.s9_google {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s9_google img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.s9_box_h4 {
    font-weight: 600;
    line-height: 1;
}

.s9_date {
    font-size: 14px;
    color: #535353;
}

.s9_txt {
    max-height: 200px;
    overflow-y: scroll;
    height: 200px;
}

.s9_notes {
    margin-top: 10px;
}

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

.Tablet .s10_content {
    gap: 20px;
}

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

.s10_h1 {
    font-size: 35px;
    font-weight: 600;
}

form#FormDevis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-top: 35px;
}

.Mobile form#FormDevis {
    grid-template-columns: 1fr;
}

form#FormDevis .form-input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #fff;
}

form#FormDevis textarea.form-input {
    grid-column: 1 / 3;
    height: 120px;
    max-height: 150px;
}

.Mobile form#FormDevis textarea.form-input {
    grid-column: 1;
}

form#FormDevis input.btn.btn-submit {
    background-color: #0cc639;
    color: #000;
    line-height: 45px;
    font-weight: 700;
    font-size: 18px;
    padding-left: 35px;
    border-radius: 6px;
    padding-right: 35px;
    border: 1px solid #0cc639;
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all .4s;
}

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

.s10_img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #ddd;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.s10_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 35px;
    gap: 20px 10px;
}

.Tablet .s10_grid,
.Mobile .s10_grid {
    grid-template-columns: 1fr;
    gap: 10px;
}

.s10_box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.s10_icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    background: #056f4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
}

.s10_box:hover .s10_icon {
    background: #0cc639;
}

.s10_icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.s10_box a {
    color: #000;
    transition: all .4s;
}

.s10_box:hover a:hover {
    color: #535353;
}

.section_11 {
    position: relative;
    z-index: 5;
    margin-bottom: -100px;
}

.s11_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #0cc639;
    padding: 30px;
    gap: 10px;
    border-radius: 10px;
}

.Mobile .s11_content {
    grid-template-columns: 1fr;
    padding: 30px 10px;
}

.Tablet .s11_content {
    grid-template-columns: 1fr 1fr;
}

.s11_box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: transparent;
    padding: 33px 20px 33px 35px;
    border-radius: 5px;
    border: 2px solid #000;
}

.s11_title {
    font-size: 48px;
    color: #000;
    font-weight: 800;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.s11_title ._p {
    font-weight: 500;
    font-size: 25px;
}

.s11_p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #000;
    text-transform: uppercase;
}

.s11_img {
    width: 80px;
    height: 80px;
    background-color: #056f4d;
    display: flex;
    margin-left: auto;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 10px;
    position: relative;
    z-index: 9;
}

.s11_img::before {
    width: 90px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    z-index: -1;
}

.s11_img img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

footer {
    background: #2a2a2a;
    padding: 150px 0 20px;
}

footer a {
    transition: all .4s;
}

footer a:hover {
    color: #0cc639;
}

.footer_top_content {
    display: grid;
    grid-template-columns: 30% auto;
    gap: 20px;
    justify-content: center;
}

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

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

.footer-ul {
    display: grid;
    gap: 7px;
}

.footer_box:last-child .footer-ul {
    grid-template-columns: 100%;
}

.Tablet .footer_box:first-child .footer-ul,
.Tablet .footer_box:last-child .footer-ul {
    grid-template-columns: 100%;
}

.Mobile .footer_box:last-child .footer-ul {
    grid-template-columns: 1fr;
}

.footer-ul a {
    color: #e1e1e1;
}

.footer_content {
    padding: 30px 0 10px;
    margin-top: 50px;
    border-top: 1px solid #ffffff4f;
    text-align: center;
    color: #fff;
}

.footer_content a {
    padding-left: 5px;
    color: #fff;
}

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

}

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

section.temoin .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.col-tem h2.Titrecontenu {
    text-align: center;
}

form#avis_form\ {
    display: grid;
    gap: 10px;
}

input#mail {
    display: none;
}

div#MonAvis {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 14px;
    margin-bottom: 10px;
}

.col-tem .input-form {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #888;
}

.col-tem input.btn {
    padding: 10px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    background: #0cc639;
    margin-top: 15px;
}

.col-tem .s9_box {
    width: 100% !important;
    height: fit-content;
    margin: 10px 0;
}

.col-tem .s9_box .s9_txt {
    overflow: visible;
    max-height: 100%;
    height: 100%;
}

.Mobile section.temoin .row {
    grid-template-columns: 1fr;
    margin: 0 10px;
}

.col-tem:nth-child(1) {
  max-height: 900px;
  overflow-y: scroll;
}

.Tablet .col-tem:nth-child(1) {
  max-height: 700px;
  overflow-y: scroll;
}

.Mobile .col-tem:nth-child(1) {
    max-height: 500px;
    overflow-y: scroll;
}

.Tablet .col-tem .s9_box,
.Mobile .col-tem .s9_box {
    padding: 30px 20px;
}

.burger_menu img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.s4_txt h3 {
    color: #fff;
}
.Mobile .s5_content {
    grid-template-columns: 100%;
}
.Mobile .s5_img img {
    height: 350px;
}
.Mobile li.nav-item,
.Tablet li.nav-item {
    padding: 5px 0;
}