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

header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.Tablet header,
.Mobile header {
    position: fixed;
    background: #000;
    z-index: 9999;
}

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

.telTopNav a {
    font-size: 17px;
    background: #1ec9f9;
    color: #000;
    padding: 6px 20px;
    border-radius: 5px;
}

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

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

.Mobile .header_nav,
.Tablet .header_nav {
    position: fixed;
    top: 135px;
    background: #0002cf;
    left: 0;
    z-index: 50;
    width: 100%;
    padding: 10px 0;
    display: none;
}

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

.Tablet ul.nav-list,
.Mobile ul.nav-list {
    flex-direction: column;
    gap: 10px;
}

.megaMenu {
    position: absolute;
    top: 60px;
    left: 0;
    width: max-content;
    text-align: left;
    background: #fff;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all .4s;
}

.Mobile .megaMenu,
.Tablet .megaMenu {
    position: static;
    visibility: visible;
    opacity: 1;
    width: 100%;
    margin-top: 10px;
}

li.nav-submenu-item {
    padding: 3px 0;
}

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

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

.Desktop li.nav-item:not(.active) > a:hover, 
.Desktop li.nav-item.active > a,
.Desktop li.nav-submenu-item:not(.active) > a:hover,
.Desktop li.nav-submenu-item.active > a {
    color: #1ec9f9;
}

li.nav-item {
    width: 130px;
    margin: 0 10px;
    text-align: center;
    line-height: 1.3;
    position: relative;
}

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

li.nav-item:hover .megaMenu {
    top: 40px;
    visibility: visible;
    opacity: 1;
}

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

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

.header_link a {
    color: #fff;
}

.hero {
    width: 100%;
    height: 800px;
    position: relative;
}

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

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

.hero_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 130px;
    position: relative;
    z-index: 5;
}

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

.hero_container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.Desktop .hero_container::before {
    width: 43%;
    height: 400px;
    position: absolute;
    content: '';
    background: #1ec9f9;
    top: 55%;
    transform: translateY(-50%);
    right: 0;
    z-index: 0;
    clip-path: polygon(17% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero_nom {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    width: fit-content;
    padding: 0 0 0 70px;
    margin: 0 0 20px;
    color: #ffffff;
}

.hero_nom::before {
    content: "";
    position: absolute;
    width: 56px;
    height: 2px;
    background: linear-gradient(-90deg, #ffffff, rgba(33, 38, 45, 0)) !important;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.Mobile .hero_nom {
    margin-bottom: 0;
}

.Desktop .hero_ville_h1::first-line {
    font-size: 55px;
    font-weight: 600;
    font-style: normal;
}

.Tablet .hero_ville_h1::first-line {
    font-size: 50px;
    font-weight: 600;
    font-style: normal;
}

.hero_ville_h1 {
    font-style: italic;
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 25px;
    color: #fff;
}

.Mobile .hero_ville_h1 {
    font-style: normal;
    font-weight: 600;
    margin: 10px 0;
    font-size: 2rem;
}

.hero_prestations_h1 {
    font-size: 60px;
    line-height: 1;
    font-weight: 600;
    color: #fff;
    font-style: normal;
    margin-bottom: 25px;
}

.hero_p {
    color: #fff;
    font-size: 16px;
}

.hero_btn {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.Mobile .hero_btn {
    flex-direction: column;
    gap: 15px;
}

.hero_btn a {
    width: fit-content;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 17px;
    font-weight: 600;
    border: 1px solid #fff;
    border-radius: 50px;
}

.hero_btn a:hover {
    background: #0002cf;
}

.hero_right img {
    width: 100%;
    height: 273px;
    object-fit: contain;
}

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

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

section.section_1::before {
    content: '';
    width: 40%;
    height: 65%;
    background: transparent;
    border: solid #0002cf;
    border-width: 4px 4px 4px 0;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: -1;
}

.Tablet section.section_1::before,
.Mobile section.section_1::before {
    width: 70%;
    height: 350px;
    top: 25px;
}

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

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

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

.Tablet .s1_left img,
.Mobile .s1_left img {
    height: 300px;
}

.section_nom {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    width: fit-content;
    padding: 0 0 0 70px;
    margin: 0 0 20px;
    color: #000;
}

.section_nom::before {
    content: "";
    position: absolute;
    width: 56px;
    height: 2px;
    background: linear-gradient(-90deg, #000, rgba(33, 38, 45, 0)) !important;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.section_btn {
    display: block;
    margin-top: 30px;
}

.section_btn a {
    width: fit-content;
    background: #0002cf;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 17px;
    font-weight: 600;
    border: 1px solid #fff;
    border-radius: 50px;
}

.section_btn a:hover {
    background: #1ec9f9;
}

.section_0 {
    position: relative;
    padding: 100px 0;
    margin-top: -70px;
}

.Mobile .section_0 {
    margin-top: -110px;
}

.section_0::before {
    content: '';
    background: #1ec9f9;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
}

.Mobile .section_0::before {
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
}

.s0_content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.s0_box img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
}

.s0_p {
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.Tablet .s0_p,
.Mobile .s0_p {
    font-size: 15px;
}

section.section_2 {
    background: #1ec9f9;
}

.s2_content {
    display: grid;
    grid-template-columns: 11% auto;
    gap: 30px;
    align-items: center;
}

.Mobile .s2_content,
.Tablet .s2_content {
    grid-template-columns: 100%;
}

.s2_h1 {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 600;
}

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

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

.s2_box {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 0 10px 50px;
}

.Tablet .s2_box,
.Mobile .s2_box {
    height: 250px;
}

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

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

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

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

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

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

section.section_4::before {
    content: '';
    width: 75%;
    height: 65%;
    background: transparent;
    border: solid #0002cf;
    border-width: 1px 1px 1px 0;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    transform: translateY(-50%);
}

.Tablet section.section_4::before {
    display: none;
}

.Mobile section.section_4::before {
    height: 333px;
    width: 100%;
    border-width: 1px 0;
}

.s4_content {
    display: grid;
    grid-template-columns: 40% auto 20%;
    gap: 30px;
    align-items: center;
}

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

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

.Tablet .s4_left {
  grid-column: 1 / 3;
}

.s4_center img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.s4_right {
    display: grid;
    gap: 40px;
}

.s4_box {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    background: #fff;
    padding: 40px 0;
}

.Mobile .s4_box {
    padding: 0;
}

.s4_box_img img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.s4_box_h2 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.s4_box_p {
    line-height: 1.1;
    font-size: 14px;
    margin-top: 10px;
    color: #535353;
}

section.section_5::before {
    content: '';
    background: #0002cf;
    width: 100%;
    height: 400px;
    position: absolute;
    z-index: -1;
    top: 200px;
}

.s5_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1ec9f9;
    padding: 0 50px 0 0;
}

.Mobile .s5_top,
.Tablet .s5_top {
    width: 100%;
    padding: 40px 20px;
}

.s5_top_img {
    position: relative;
    z-index: 5;
    margin-top: -100px;
}

.s5_top_img img {
    width: 500px;
    height: 293px;
    object-fit: contain;
}

.Tablet .s5_rappel,
.Mobile .s5_rappel {
  width: 100%;
  text-align: center;
}

.s5_rappel_h1 {
    font-size: 20px;
    margin-bottom: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.Mobile .s5_rappel_h1 {
    font-size: 18px;
    letter-spacing: normal;
}

.s5_rappel form {
    display: flex;
    align-items: center;
    position: relative;
    width: 400px;
}

.Tablet .s5_rappel form,
.Mobile .s5_rappel form {
    width: 100%;
}

.s5_rappel_div_input {
    position: relative;
    width: 100%;
}

.s5_rappel_div_input img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 25px;
    object-fit: contain;
    left: 10px;
}

input.s5_rappel_form_input {
    width: 100%;
    height: 50px;
    padding: 0 10px 0 40px;
    border: 1px solid #535353;
}

.s5_rappel form button {
    position: absolute;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    height: 30px;
    border: none;
    padding: 17px 15px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.s5_rappel form button img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

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

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

.s5_nbr {
    font-size: 70px;
    line-height: 1;
    font-weight: 600;
    color: #fff;
}

.Mobile .s5_nbr,
.Tablet .s5_nbr {
    font-size: 40px;
    text-align: center;
}

.s5_h2 {
    text-align: center;
    font-size: 39px;
    line-height: 1;
    color: #fff;
}

.Tablet .s5_h2,
.Mobile .s5_h2 {
    font-size: 20px;
}

.s5_bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 40px;
    background: #fff;
}

.Mobile .s5_bottom,
.Tablet .s5_bottom {
    grid-template-columns: 1fr;
    padding: 40px 20px;
}

.s5_bottom :where(.section_nom, ._txt h2, ._txt p, ._txt h3) {
    color: #000;
}

.s5_bottom_left img {
    width: 100%;
    height: 550px;
    display: block;
    object-fit: cover;
}

.Tablet .s5_bottom_left img,
.Mobile .s5_bottom_left img {
    height: 300px;
}

.section_7 {
    overflow: hidden;
    display: block;
    height: 200px;
    position: relative;
}

div#marquee1 {
    transform: rotateZ(4deg) translateY(-50%);
    background: #1ec9f9;
    position: absolute;
    top: 85%;
    left: -10px;
}

.Mobile div#marquee1 {
    transform: rotateZ(5deg) translateY(-50%);
    background: #1ec9f9;
    position: absolute;
    top: 85%;
    left: -10px;
}

div#marquee2 {
    transform: rotateZ(-4deg) translateY(-50%);
    position: absolute;
    top: 5%;
    background: #0002cf;
    left: -5px;
}

.Tablet div#marquee2 {
    top: -7%;
}

.Mobile div#marquee2 {
    transform: rotateZ(-5deg) translateY(-50%);
    position: absolute;
    top: -30%;
    background: #0002cf;
    left: -5px;
}

.marquee-strip {
    overflow: hidden;
    padding: 18px 0;
    white-space: nowrap;
}

.Mobile .marquee-strip {
    padding: 10px 0;
}

div#marquee1 .marquee-track {
    display: inline-flex;
    animation: marquee1 30s linear infinite;
    gap: 0;
}

div#marquee2 .marquee-track {
    display: inline-flex;
    animation: marquee2 30s linear infinite;
    gap: 0;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #666;
}

.Mobile .marquee-item {
    font-size: 12px;
}

div#marquee1 .marquee-item {
    color: #000;
}

div#marquee2 .marquee-item {
    color: #fff;
}

.marquee-star {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@keyframes marquee1 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


@keyframes marquee2 {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

section.section_6 {
    overflow: hidden;
}

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

.Mobile section.section_6::before {
    height: 400px;
    top: initial;
    bottom: 0px;
    width: 70%;
}

section.section_6::after {
    content: '';
    background: url(../images/img/bg13.png);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 170px;
    top: 0;
    z-index: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.Mobile section.section_6::after {
    display: none;
}

.s6_content {
    display: grid;
    grid-template-columns: 35% auto;
    gap: 50px;
    position: relative;
    z-index: 5;
    align-items: center;
}

.Mobile .s6_content {
    grid-template-columns: 100%;
}

.s6_right img {
    width: 600px;
    height: 333px;
    object-fit: contain;
}

.s8_content {
    display: grid;
    grid-template-columns: 40% auto;
    gap: 50px;
}

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

.Mobile .s8_content {
    grid-template-columns: 100%;
}

.s8_left {
    background: #1ec9f9;
    padding: 40px 30px 50px 30px;
}

.s8_left_h1 {
    font-size: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}

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

form#FormDevis .form-input {
    padding: 10px;
    border: 1px solid #eee;
    background: #f7f7f7;
}

form#FormDevis input.btn.btn-submit {
    margin-top: 10px;
    background: #000;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: inherit;
}

.s8_h2 {
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.s8_box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.s8_icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1ec9f9;
}

.s8_box_h2 {
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
}

.s8_box_txt a {
    color: #000;
}

.footer_ul {
    padding: 100px 0 30px;
}

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

.footer_grid a:hover {
    color: #eee;
}

.Tablet .footer_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
}

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

.Tablet .footer_box:last-child {
  grid-column: 1 /3;
}

.Tablet .footer_box:last-child .footer_link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
}

.footer_box ._logo a img {
    width: 300px;
    height: 142px;
}

.footer_p {
    margin: 20px 0 0;
    color: #fff;
    font-size: 16px;
}

.footer_p a {
    color: #fff;
}

.footer_h2 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 19px;
    position: relative;
    width: fit-content;
    padding: 0 50px 0 0;
    margin: 0 0 30px;
    color: #fff;
}

.Mobile .footer_h2 {
    margin: 0 0 15px;
}

.footer_h2:before {
    content: "";
    position: absolute;
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, rgba(33, 38, 45, 0)) !important;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.footer_a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}

.footer_a img {
    width: 12px;
    height: 12px;
    object-fit: contain;
    display: block;
}

.footer_a a {
    color: #fff;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #fff;
    padding: 30px 0;
    border-top: 1px solid #eeeeee21;
}

.Mobile .copyright {
    flex-direction: column;
    gap: 7px;
}

.copyright a {
    color: #fff;
}

.copyright a:hover {
    color: #f59898;
}

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


footer {
    background: #0002cf;
}

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

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