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

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

.nav_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

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

.Tablet ._logo a img,
.Mobile ._logo a img {
    width: 80px;
    height: 80px;
}

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

.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;
}

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

li.nav-item {
    width: 13%;
    text-align: center;
    line-height: 1.2;
    position: relative;
    margin: 0 5px;
}

.Tablet li.nav-item,
.Mobile li.nav-item {
    width: 100%;
}

li.nav-item a {
    text-transform: uppercase;
}

li.nav-item > a {
    color: #000;
}

ul.nav-submenu {
    display: none;
    position: absolute;
    grid-template-columns: repeat(1, 1fr);
    width: 320px;
    background: #fff;
    left: 0;
    padding: 10px 20px;
    gap: 7px;
    text-align: left;
    z-index: 2;
}

.Tablet ul.nav-submenu,
.Mobile ul.nav-submenu {
    position: static;
    width: 100%;
    display: grid;
    text-align: center;
    margin-top: 10px;
    background: #eee;
}

.Desktop li.nav-item:hover ul.nav-submenu,
ul.nav-submenu.navShow {
    display: grid;
}

ul.nav-submenu a {
    color: #000;
}

li.nav-item a:hover {
    color: #5fdee5;
}

li.nav-item.active > a,
li.nav-submenu-item.active > a {
    color: #2e6b6e;
}

.nav_tel {
    width: 150px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-width: 150px;
}

.nav_tel_h1 {
    font-size: 13px;
    color: #535353;
}

.nav_tel a {
    display: block;
    width: 100%;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.23;
}

.navTop_left {
    display: flex;
    align-items: center;
    gap: 20px;
    position: fixed;
    top: 93px;
    width: 100%;
    left: 0;
    background: #5fdee5;
    padding: 5px;
    justify-content: center;
}

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

.nav_tel_mob {
    background: #2e6b6e;
    padding: 5px 10px;
    border-radius: 5px;
}

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

.nav_tel_mob a {
    color: #fff;
}

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

._hero {
    width: 100%;
    height: 650px;
    position: relative;
}

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

._background:before {
    content: '';
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

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

.Mobile ._hero,
.Mobile ._background,
.Mobile ._bg {
    height: 500px;
}

._hero_container {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.Mobile ._hero_container {
    top: 65%;
}

._hero_content {
    width: 100%;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.Tablet ._hero_content {
    grid-template-columns: 90% auto;
    gap: 0;
}

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

._hero_nom {
    margin-bottom: 40px;
    background: #fff;
    width: fit-content;
    padding: 3px 30px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
}

._hero_nom img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0);
}

body:not(.Mobile) ._hero_h1_ville:first-line {
    font-size: 65px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    font-style: normal;
}

._hero_h1_ville {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 0.7;
    text-transform: math-auto;
    font-style: italic;
}

.Mobile ._hero_h1_ville {
    line-height: 1.1;
    font-style: normal;
    font-weight: 600;
}

._hero_h1_not_ville {
    font-size: 60px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
}

.Mobile ._hero_h1_not_ville {
    font-size: 35px;
}

._hero_line {
    margin: 40px 0;
}

.Tablet ._hero_line {
    margin: 30px 0;
}

.Mobile ._hero_line {
    margin: 25px 0;
}

._hero_line img {
    width: 527px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

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

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

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

._hero_btn a {
    background: #2e6b6e;
    padding: 10px 40px;
    border-radius: 100px;
    color: #fff;
    letter-spacing: 0.03em;
}

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

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

._hero_btn a:first-child {
    background: #5fdee5;
    color: #000;
}

._hero_form {
    width: 80%;
    background: #fff;
    float: right;
    padding: 25px 20px 40px;
}

.Tablet ._hero_form {
    float: none;
    margin: auto;
    background: transparent;
    padding: 0;
}

.Mobile ._hero_form {
    width: 100%;
    float: none;
    background: transparent;
    padding: 0;
}

._hero_form img {
    width: 40px;
    height: 40px;
    margin: auto;
    display: block;
    margin-bottom: 10px;
}

._hero_form_h1 {
    position: relative;
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 15px;
    margin-bottom: 30px;
    letter-spacing: 10px;
}

._hero_form_h1:before {
    content: '';
    background: #000;
    position: absolute;
    width: 100px;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

form#FormDevis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 15px;
}

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

.form-input {
    padding: 10px;
    border: 1px solid #2e6b6e;
}

textarea.form-input,
input.btn.btn-submit {
    grid-column: 1 / 3;
}

textarea.form-input {
    height: 100px;
    max-height: 100px;
}

.Mobile textarea.form-input,
.Mobile input.btn.btn-submit {
    grid-column: 1;
}

input.btn.btn-submit {
    background: #5fdee5;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 18px;
}

input.btn.btn-submit:hover {
    background: #2e6b6e;
    color: #fff;
}

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

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

.s1_title {
    position: relative;
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 15px;
    margin-bottom: 30px;
    letter-spacing: 10px;
}

.Mobile .s1_title {
    font-size: 20px;
    letter-spacing: 4px;
}

.s1_title:before {
    content: '';
    background: #000;
    position: absolute;
    width: 100px;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.s1_grid_left {
    position: relative;
}

.s1_png {
    position: absolute;
    z-index: -1;
    bottom: 25px;
    left: 0;
}

.s1_txt h1 {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #2e6b6e;
}

.s1_txt h1:before {
    content: "";
    width: 64px;
    height: 64px;
    display: inline-flex;
    background: url(../images/img/rouleau.png);
    background-repeat: no-repeat;
    margin: 10px 10px 0px 0px;
    background-size: contain;
    min-width: 64px;
}

.s1_png img {
    width: 400px;
    height: 320px;
    object-fit: cover;
    display: block;
}

.s1_grid_left > img {
    width: 75%;
    height: 550px;
    background: #ddd;
    display: block;
    float: right;
    object-fit: cover;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

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

.section_btn {
    margin-top: 30px;
}

.section_btn a {
    background: #5fdee5;
    padding: 10px 40px;
    border-radius: 100px;
    color: #000;
    letter-spacing: 0.03em;
}

.section_btn a:hover {
    background: #000;
    color: #fff;
}

section.section_2 {
    background: #f4f4f4;
}

.s2_top .s1_title {
    margin-bottom: 10px;
}

.s2_h1 {
    font-size: 70px;
    text-align: center;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 10px;
}

.Mobile .s2_h1 {
    font-size: 45px;
    letter-spacing: 2px;
}

.s2_p {
    text-align: center;
    line-height: 1;
    font-size: 18px;
    margin-bottom: 50px;
}

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

.Mobile .s2_grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 10px;
}

.s2_img {
    position: relative;
    padding: 5px;
}

.s2_img:before {
    content: '';
    background: transparent;
    border: 1px solid #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
}

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

.Mobile .s2_img img {
    height: 153px;
}

.s2_box a {
    text-align: center;
    display: block;
    margin-top: 12px;
    font-size: 18px;
    color: #000;
}

.Mobile .s2_box a {
    line-height: 1.1;
}

section.section_7:before {
    content: '';
    background: #2e6b6e;
    width: 40%;
    height: 100%;
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
}

.Mobile section.section_7:before {
    width: 100%;
    height: 20%;
}

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

.Mobile .s7_content {
    grid-template-columns: 1fr;
    gap: 30px;
}

.Mobile .s7_left {
    order: 2;
}

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

.Mobile .s7_right img {
    height: 300px;
}

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

.Tablet .s3_content {
    gap: 15px;
}

.Mobile .s3_content {
    grid-template-columns: 1fr;
    gap: 30px;
}

.s3_box {
    padding: 50px 30px;
    border: 2px solid #2e6b6e;
    border-radius: 5px;
}

.Mobile .s3_box {
    padding: 40px 20px;
}

section.section_atout {
    background: #2e6b6e;
}

.atout_h1 {
    font-size: 70px;
    text-align: center;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 10px;
    color: #fff;
}

.Mobile .atout_h1 {
    font-size: 45px;
    letter-spacing: 2px;
}

.atout_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
    margin-top: 50px;
}

.Mobile .atout_grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.atout_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border: 1px solid #fff;
    margin: auto;
    border-radius: 50%;
}

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

.atout_p {
    display: block;
    color: #fff;
    font-size: 20px;
    margin-top: 30px;
    letter-spacing: 0.03em;
}

.Mobile .atout_p {
    margin-top: 5px;
}

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

.Tablet .s4_content {
    gap: 30px;
}

.Mobile .s4_content {
    grid-template-columns: 1fr;
    gap: 30px;
}

.Mobile .s4_left {
    order: 2;
}

.s4_txt h2,
.s5_txt h2 {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #2e6b6e;
}

.s4_txt h2:before,
.s5_txt h2:before {
    content: "";
    width: 64px;
    height: 64px;
    display: inline-flex;
    background: url(../images/img/rouleau.png);
    background-repeat: no-repeat;
    margin: 10px 10px 0px 0px;
    background-size: contain;
    min-width: 64px;
}

.s4_right img {
    width: 100%;
    height: 450px;
    display: block;
    background: #ddd;
    object-fit: cover;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.Mobile .s4_right img {
    height: 300px;
}

section.section_5:before {
    content: '';
    background: #2e6b6e;
    position: absolute;
    width: 50%;
    height: 75%;
    z-index: -1;
    bottom: 0;
    left: 0;
}

.Mobile section.section_5:before {
    width: 100%;
    height: 20%;
    bottom: initial;
    left: 0;
    top: 0;
}

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

.Mobile .s5_content {
    grid-template-columns: 1fr;
    gap: 30px;
}

.s5_left img {
    width: 100%;
    height: 550px;
    display: block;
    background: #ddd;
    object-fit: cover;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.Mobile .s5_left img {
    height: 300px;
}

section.section_6:before {
    content: '';
    background: #2e6b6e;
    position: absolute;
    width: 50%;
    height: 75%;
    z-index: -1;
    top: 0;
    right: 0;
}

.Mobile section.section_6:before {
    width: 100%;
    height: 20%;
    top: initial;
    right: 0;
    bottom: 0;
}

section.section_6 .s5_content {
    align-items: start;
}

.s8_content {
    width: 50%;
    margin: auto;
}

.Mobile .s8_content {
    width: 100%;
}

.Tablet .s8_content {
    width: 90%;
}

.s8_title {
    position: relative;
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 15px;
    margin-bottom: 30px;
    letter-spacing: 10px;
}

.s8_title:before {
    content: '';
    background: #000;
    position: absolute;
    width: 100px;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.s8_link {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding-bottom: 30px;
    position: relative;
}

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

.s8_link:before {
    content: '';
    background: #000;
    position: absolute;
    width: 100px;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.s8_link_box {
    font-weight: 600;
}

.s8_link_box a {
    color: #000;
}

footer a:hover {
    text-decoration: underline;
}

.footer_top {
    position: relative;
}

.footer_top:before {
    content: '';
    background: #2e6b6e;
    position: absolute;
    width: 50%;
    height: 100%;
    z-index: -1;
}

.Mobile .footer_top:before {
    width: 100%;
}

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

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

div#Map {
    position: absolute !important;
    width: 50%;
    height: 100%;
    right: 0;
}

.Mobile div#Map {
    position: relative !important;
    width: 100%;
    height: 200px;
    right: 0;
    order: 2;
    margin: 0 0 50px;
}

.footer_top_content_grid {
    padding: 80px 0;
}

.Mobile .footer_top_content_grid {
    padding: 50px 0;
}

._rappel_h1 {
    font-size: 16px;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

form#rappel_immediat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.form_input {
    position: relative;
    width: 50%;
}

.Mobile .form_input {
    width: 80%;
}

.form_input input.form-input {
    background: transparent;
    color: #fff;
    border-bottom: 2px solid #fff;
    padding: 0 5px 15px 40px;
    width: 100%;
}

.form_input input.form-input::placeholder {
    color: #fff;
}

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

form#rappel_immediat button {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer_top_content_grid_left_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 50px;
}

.Tablet .footer_top_content_grid_left_grid {
    grid-template-columns: 1fr;
    gap: 50px;
}

.Mobile .footer_top_content_grid_left_grid {
    grid-template-columns: 1fr;
    gap: 50px;
}

.footer_top_content_grid_left_grid_box_h2 {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 600;
}

.footer_top_content_grid_left_grid_box_ul {
    color: #fff;
}

.footer_top_content_grid_left_grid_box_li {
    margin: 5px 0;
    line-height: 1.3;
}

.footer_top_content_grid_left_grid_box_li .adr {
    line-height: 1.2;
}

.footer_top_content_grid_left_grid_box_li a {
    color: #fff;
    display: block;
}

.footer_bottom {
    background: #5fdee5;
    color: #000;
    padding: 30px 0;
}

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

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

.footer_bottom_left a {
    color: #000;
}

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