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

.navFixed {
    position: fixed;
    z-index: 999;
    background: linear-gradient(180deg, rgba(10, 26, 17, .92), rgba(5, 14, 9, .98)), radial-gradient(circle at top right, rgba(132, 176, 146, .08), transparent 34%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .28);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    width: 100%;
    top: 0;
    left: 0;
}

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

.navFixed ._logo a img {
    background: #fff;
}

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

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

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

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

ul.nav-submenu {
    display: none;
    position: absolute;
    top: 60px;
    background: #3df3f3;
    width: max-content;
    left: 0;
    text-align: left;
    padding: 15px;
}

.Mobile ul.nav-submenu,
.Tablet ul.nav-submenu {
    display: block;
    position: static;
    margin-top: 10px;
}

li.nav-submenu-item a {
    font-size: 16px;
    padding: 5px 0;
    display: block;
    color: #000;
}

li.nav-item > a:hover,
li.nav-item.active > a,
li.nav-submenu-item a:hover,
li.nav-submenu-item.active a {
    text-decoration: underline;
}

li.nav-item {
    height: 75px;
    width: 120px;
    font-size: 15px;
    line-height: 1.2;
    padding: 5px 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.Tablet li.nav-item,
.Mobile li.nav-item {
    width: 100%;
    height: auto;
    flex-direction: column;
}

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

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

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

.telTopNav a {
    color: #000;
    background: #fff;
    padding: 8px 30px;
    border-radius: 5px;
}

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

.Tablet .navFixed_right,
.Mobile .navFixed_right {
    position: fixed;
    top: 90px;
    background: #0e1812;
    left: 0;
    width: 100%;
    justify-content: center;
    padding: 20px 0;
    display: none;
}

.navFixed_btn a {
    background: #3df3f3;
    padding: 12px 20px;
    color: #000;
    border-radius: 100px;
    min-width: 160px;
    display: block;
    text-align: center;
}

.navFixed_btn a:hover {
    background: #fff;
}

@-webkit-keyframes slide{0%{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);}100%{-webkit-transform:translate(100%,0);-ms-transform:translate(100%,0);transform:translate(100%,0);}}/*!sc*/
@keyframes slide{0%{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);}100%{-webkit-transform:translate(100%,0);-ms-transform:translate(100%,0);transform:translate(100%,0);}}/*!sc*/

.marquee-cont {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-flow: row nowrap;
    -webkit-box-pack: center;
    justify-content: center;
    font-family: sans-serif;
    background: linear-gradient(90deg, rgba(18, 24, 19, .90), rgba(39, 29, 22, .70), rgba(18, 24, 19, .90));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 12px 28px rgba(0, 0, 0, .10);
    margin-top: 115px;
}

.Mobile .marquee-cont,
.Tablet .marquee-cont {
    margin-top: 150px;
}

.marquee-cont::before {
    content: '';
    position: absolute;
    width: 5%;
    height: 100%;
    background: linear-gradient(90deg, #efe8d8 0%, rgba(239, 232, 216, 0) 100%);
    top: 0;
    left: 0;
}

.marquee-cont::after {
    content: '';
    position: absolute;
    width: 5%;
    height: 100%;
    background: linear-gradient(270deg, #e9e1cf 0%, rgba(233,225,207,0) 100%);
    top: 0;
    right: 0;
}

.marquee-slider {
    min-width: 100%;
    flex-shrink: 0;
    animation-name: slide;
    animation-direction: reverse;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
    animation-duration: 25s;
    display: flex;
    align-items: center;
}

.marquee-slider p {
    display: flex;
    position: relative;
    font-size: 16px;
    margin: 0;
    padding: 20px;
    font-weight: 600;
    align-items: center;
    color: #fff;
}

.marquee-slider p::before {
    content: ".";
    position: absolute;
    left: -1px;
    font-weight: 900;
    top: 41%;
    transform: translateY(-50%);
}

.Tablet .navTop_video,
.Mobile .navTop_video {
    margin-top: 8px;
}

.navTop_video_content {
    display: grid;
    align-items: center;
    gap: 30px;
    width: 100%;
    grid-template-columns: 275px auto;
}

.Mobile .navTop_video_content {
    grid-template-columns: 100%;
    margin: 0 0 20px;
    gap: 5px;
}

.navTop_video_content img {
    width: 100%;
    height: 495px;
    margin: 30px 0;
    object-fit: cover;
    display: block;
    background: #ddd;
}

.Tablet .navTop_video_content img {
    height: 280px;
    object-fit: cover;
}

.Mobile .navTop_video_content img {
    height: 150px;
    object-fit: cover;
    margin: 10px 0 0 0;
}

.right_fixed_btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    z-index: 50;
}

.right_fixed_btn a {
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: all .3s ease;
    color: #000000;
    background: #2597f8;
    gap: 5px;
}

.right_fixed_btn a:hover {
    animation: none;
    background: #ddd;
}

a.right_fixed_btn_a.__avis_btn {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}

a.right_fixed_btn_a.__avis_btn .stars {
    color: #ffca28;
}

.devis_az {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 1;
    }
}

.headerTop_2 {
    background: #2597f8;
    padding: 15px 0;
}

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

.Mobile .headerTop_2_content,
.Tablet .headerTop_2_content {
    flex-direction: column;
    gap: 20px;
}

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

.Mobile .headerTop_2_left {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

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

.headerTop_2_left_h1 {
    font-size: 18px;
}

.headerTop_2_left_span {
    font-weight: 600;
}

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

.Mobile .headerTop_2_right {
    gap: 5px;
}

.headerTop_2_right a {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, .09);
    padding: 15px 30px;
    color: #000000;
    border-radius: 100px;
    text-align: center;
    line-height: 1;
    border: 1px solid #000;
    font-weight: 600;
}

.headerTop_2_right a:hover {
    background: #fff;
    border: 1px solid #fff;
}

.Mobile .headerTop_2_right a {
    padding: 10px 14px;
    gap: 5px;
}

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

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

.Mobile .headerTop_3_content {
    flex-direction: column;
    gap: 20px;
}

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

.Mobile .headerTop_3_right,
.Tablet .headerTop_3_right {
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

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

.headerTop_3_menu a {
    font-size: 18px;
    color: #000;
    letter-spacing: 0.03em;
}

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

.Mobile .headerTop_3_right_btn {
    gap: 10px;
    width: 100%;
}

.headerTop_3_right_btn a {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0);
    padding: 15px 30px;
    color: #000000;
    border-radius: 100px;
    text-align: center;
    line-height: 1;
    border: 1px solid #000;
    font-weight: 600;
    height: 53px !important;
}

.headerTop_3_right_btn a:hover {
    background: #2597f8;
}

.Mobile .headerTop_3_right_btn a {
    width: 50%;
    padding: 15px;
    font-size: 15px;
    text-align: center;
    justify-content: center;
}

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

.headerTop_3_right_btn a:last-child {
    background: #3df3f3;
    border: 1px solid #468b04;
}

.hero {
    height: 850px;
    display: flex;
    align-items: center;
}

.Mobile .hero {
    height: 600px;
}

.hero_content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero_span_1 {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 100px;
    padding: 8px 22px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
    margin-bottom: 28px;
    font-size: 18px;
}

.Mobile .hero_span_1 {
    font-size: 16px;
}

.hero_span_1_star {
    color: #fff;
    font-size: 20px;
}

.hero_h1 {
    font-size: 60px;
    line-height: .95;
    margin-bottom: 26px;
    text-shadow: 0 6px 40px rgba(0, 0, 0, .5);
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    font-style: italic;
}

body:not(.ville) .hero_h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 70px;
}

body.Tablet:not(.ville) .hero_h1 {
  font-size: 50px;
}

.Mobile .hero_h1 {
    font-style: normal;
    font-size: 27px;
    font-weight: 600;
}

.Tablet .hero_h1 {
    font-style: normal;
    font-size: 32px;
    font-weight: 600;
}

.Desktop.ville .hero_h1::first-line {
    font-size: 90px;
    letter-spacing: -5px;
    font-weight: 800;
    font-style: normal;
}

.hero_span_2 {
    font-size: 23px;
    color: rgba(255, 255, 255, .88);
    line-height: 1.7;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}

.Mobile .hero_span_2 {
    text-align: center;
    line-height: 1.1;
    font-size: 17px;
}

.hero_span_3 {
    font-size: 25px;
    color: rgba(255, 255, 255, .88);
    text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 40px;
}

.Mobile .hero_span_3 {
    text-align: center;
    font-size: 18px;
    margin: 8px 0 25px;
}

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

.Mobile .hero_btn {
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.hero_btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    padding: 18px 38px;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
    border: 1px solid #fff;
}

.hero_btn a:hover {
    background: #3df3f3;
}

.Mobile .hero_btn a {
    width: 100%;
    justify-content: center;
    padding: 12px;
}

.hero_btn a:last-child {
    background: #ffffff16;
    color: #fff;
}

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

.hero_btn a img[alt="portable"] {
    filter: invert(1);
}

.hero_grid {
    display: flex;
    align-items: center;
    gap: 70px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 100px;
    padding: 18px 50px;
    margin-top: 50px;
}

.Mobile .hero_grid {
    padding: 20px;
    gap: 10px;
    width: 100%;
}

.hero_box {
    text-align: center;
}

.Mobile .hero_box {
    width: 100%;
    display: block;
}

.hero_box_h1 {
    font-size: 45px;
    letter-spacing: -1px;
    color: #3df3f3;
    line-height: 1;
    font-weight: 600;
}

.hero_box_p {
    color: rgba(255, 255, 255, .75);
    font-weight: 600;
}

.Mobile .hero_box_p {
    font-size: 12px;
}

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

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

.s1_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.s1_left {
    position: relative;
}

.s1_img.s1_img_1 {
    position: absolute;
    top: 50px;
    left: -30px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    z-index: 5;
}

.Mobile .s1_img.s1_img_1 {
    left: 10px;
    width: 150px;
    height: 150px;
}

.s1_img.s1_img_1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: transparent;
    border: 5px solid #ffffff;
    border-radius: 50%;
}

.Mobile .s1_img.s1_img_1::before {
    width: 170px;
    height: 170px;
    border: 3px solid #fff;
}

.s1_img.s1_img_1 img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #888;
    border-radius: 50%;
    position: relative;
    z-index: 10;
}

.s1_img.s1_img_2 img {
    width: 100%;
    height: 750px;
    display: block;
    background: #ddd;
    object-fit: cover;
    border-radius: 20px;
}

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

.section_nom {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    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: #0059a5;
}

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

.s1_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-top: 30px;
}

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

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

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

.s1_p {
    font-weight: 600;
}

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

.section_btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #2597f8;
    color: #000;
    padding: 18px 38px;
    border-radius: 7px;
    border: 1px solid #2597f8;
    width: fit-content;
    font-size: 17px;
}

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

.section_btn a:hover {
    background: #3df3f3;
}

.s2_nom {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    width: fit-content;
    padding: 0 40px;
    margin: 0 auto 20px;
    color: #0059a5;
}

.s2_nom::before {
    content: "";
    position: absolute;
    width: 56px;
    height: 2px;
    background: linear-gradient(-90deg, #0059a5, rgba(0, 89, 165, 0)) !important;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.s2_nom::after {
    content: "";
    position: absolute;
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, #0059a5, rgba(0, 89, 165, 0)) !important;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.s2_h1 {
    display: block;
    font-size: 45px;
    width: 60%;
    margin: 0 auto 40px;
    line-height: 1.1;
    font-weight: 600;
    text-align: center;
}

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

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

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

.s2_box {
    width: 100%;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.Mobile .s2_box {
    width: 100%;
    height: 150px;
    padding: 10px;
}

.s2_link a {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    display: block;
    line-height: 1.2;
}

.s2_box:hover .s2_link a {
    color: #3df3f3;
}

.Mobile .s2_link a {
    font-size: 16px;
}

section.section_3 {
    background: #3df3f3;
}

.s3_img {
    position: absolute;
    z-index: 0;
    width: 40%;
    height: 100%;
    top: 0;
}

.s3_content {
    display: grid;
    grid-template-columns: 45% auto;
    align-items: center;
}

.Mobile .s3_content {
    grid-template-columns: 100%;
    gap: 30px;
}

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

.s4_top {
    text-align: center;
}

.s4_top_title {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    width: fit-content;
    padding: 0 40px;
    margin: 0 auto 20px;
    color: #0059a5;
}

.Mobile .s4_top_title {
    font-size: 13px;
    letter-spacing: 1px;
}

.s4_top_title::before {
    content: "";
    position: absolute;
    width: 56px;
    height: 2px;
    background: linear-gradient(-90deg, #0059a5, rgba(0, 89, 165, 0)) !important;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.s4_top_title::after {
    content: "";
    position: absolute;
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, #0059a5, rgba(0, 89, 165, 0)) !important;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.s4_top_h1 {
    display: block;
    font-size: 45px;
    width: 60%;
    margin: 0 auto 40px;
    line-height: 1.1;
    font-weight: 600;
}

.Mobile .s4_top_h1 {
    width: 100%;
    font-size: 30px;
}

.Tablet .s4_top_h1 {
  width: 75%;
  font-size: 35px;
}

.s4_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.Tablet .s4_grid {
    gap: 10px;
}

.s4_box {
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    box-shadow: 0 10px 20px 10px rgba(0, 0, 0, .02);
}

.Mobile .s4_box {
    flex-direction: column;
    padding: 20px;
    gap: 7px;
    position: relative;
    text-align: center;
}
.Tablet .s4_box {
    flex-direction: column;
    padding: 20px;
    gap: 7px;
    align-items: flex-start;
    position: relative;
}

.s4_box:first-child,
.s4_box:last-child {
    background: #2597f8;
}

.s4_img img {
    width: 95px;
    height: 95px;
    object-fit: contain;
    display: block;
}

.Tablet .s4_img img,
.Mobile .s4_img img {
    width: 60px;
    height: 60px;
}

.s4_h2 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.Tablet .s4_h2 {
    position: absolute;
    width: 71%;
    right: 0;
    top: 20px;
}

.Mobile .s4_h2 {
    font-size: 18px;
}

.Tablet .s4_p {
    margin-top: 13px;
}

.s5_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.Tablet .s5_content {
  gap: 30px;
}

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

.s5_box {
    background: #2597f8;
    border-radius: 5px;
}

.Tablet .s5_box,
.Mobile .s5_box {
    padding: 20px;
}

.s5_img {
    position: relative;
    top: -40px;
    left: -20px;
}

.Tablet .s5_img,
.Mobile .s5_img {
    position: static;
}

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

.s5_txt {
    padding: 0 20px 20px;
    margin-top: -20px;
}

.Tablet .s5_txt,
.Mobile .s5_txt {
    margin-top: 20px;
    padding: 0;
}

section.section_6 {
    background: #3df3f3;
}

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

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

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

.s6_h1 {
    font-size: 35px;
    line-height: 1.1;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.Tablet .s6_h1,
.Mobile .s6_h1 {
    margin-bottom: 10px;
}

.s6_p {
    font-size: 18px;
    line-height: 1.1;
    color: #333;
    margin-bottom: 40px;
}

.s6_box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    padding: 20px;
    width: 100%;
    border-radius: 5px;
}

.s6_box:hover {
    background: #fff;
}

.Tablet .s6_box {
    margin: 0;
}

.s6_icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: block;
}

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

.s6_box_div_link,
.s6_box_div_link a {
    color: #000;
    font-size: 17px;
    line-height: 1.1;
    margin-top: 10px;
}

.s6_box_div_link a:hover {
    text-decoration: underline;
}

form#FormDevis {
    display: grid;
    gap: 20px;
    padding: 70px 25px;
    background: #fff;
    border-radius: 10px;
}

.form-input {
    border-radius: 6px;
    border: 1px solid #000000;
    padding: 10px 15px;
    color: #1f242e;
}

.form-input:focus {
    background: #e6e5e254;
}

form#FormDevis input.btn.btn-submit {
    height: 50px;
    font-size: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: #2597f8;
    font-weight: 600;
}

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

footer {
    padding: 20px;
    display: grid;
    grid-template-columns: 25% auto;
    gap: 30px;
}

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

.footer_left {
    background: #2597f8;
    padding: 30px;
    border-radius: 5px;
}

.Tablet .footer_left {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
}

.footer_left ._logo {
    width: fit-content;
    background: #fff;
    padding: 5px;
    display: block;
    margin: auto;
    margin-bottom: 20px;
}

.Tablet .footer_left ._logo {
  margin: auto;
}

.footer_left ._logo img {
    width: 250px;
    height: 125px;
    object-fit: contain;
    display: block;
}

.footer_left ._hero_p {
    flex-direction: column;
}

.footer_left ._hero_p a._hero_btn {
    background: #fff;
}

.footer_left ._hero_p a._hero_btn div {
    color: #000;
}

.footer_left ._hero_p a._hero_btn div img {
    filter: brightness(0);
}

.footer_right {
    padding: 30px 50px;
    display: grid;
    align-items: start;
    grid-template-columns: 1fr 1fr 1fr;
    background: #3df3f3;
    border-radius: 5px;
    gap: 25px;
}

.Tablet .footer_right {
  gap: 45px;
  grid-template-columns: 1fr 1fr;
}

.Mobile .footer_right {
    gap: 30px;
    grid-template-columns: 1fr;
    padding: 30px 20px;
}

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

.Tablet .footer_box:last-child .footer_ul {
  grid-template-columns: 1fr 1fr;
}

.Tablet .footer_box:last-child .footer_ul ._copy {
  grid-column: 1 / 3;
  text-align: center;
}

.footer_h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}

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

.footer_ul a {
    color: #000;
}

.footer_ul a:hover {
    text-decoration: underline;
}

.footer_link {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.2;
    margin: 0;
}

.footer_icon {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

._copy {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #999;
}

ul {
    padding:0;
    list-style: none;
}
.footer-social-icons {
    width: 350px;
    display:block;
    margin: 0 auto;
}
.social-icon {
    color: #fff;
}
ul.social-icons {
    margin-top: 10px;
}
.social-icons li {
    vertical-align: top;
    display: inline;
    height: 100px;
}
.social-icons a {
    color: #fff;
    text-decoration: none;
}
.social-icons a img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.Mobile .social-icons a img {
    padding: 0;
    width: 20px;
    height: 20px;
    margin: 0 9px;
}
img.fa{
    padding:8px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    background-color: transparent;
}
.fa-facebook:hover {
    background-color: #3d5b99;
}
.fa-twitter:hover {
    background-color: #00aced;
}

.fa-instagram:hover {
    background-color: #eb8231;
}
.fa-youtube:hover {
    background-color: #e64a41;
}
.fa-linkedin:hover {
    background-color: #0073a4;
}
.fa-tiktok:hover {
    background-color: #5a32a3;
}

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

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

.Mobile .s7_right {
    width: 100%;
}

.s7_h1 {
    font-size: 50px;
    line-height: 0.95em;
    text-transform: math-auto;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.01em;
}

.Mobile .s7_h1 {
    font-size: 25px;
}

.Tablet .s7_h1 {
    font-size: 35px;
}

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

.Mobile form#rappel_immediat {
    flex-direction: column;
    gap: 0;
    width: 100%;
}

#rappel_immediat .form_input {
    width: 413px;
    position: relative
}

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

#rappel_immediat .form_input input {
    height: 75px;
    width: 100%;
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #000;
    color: #000;
    font-size: 18px;
}

#rappel_immediat .form_input input:focus {
    border-color: #2597f8;
}

#rappel_immediat .form_input input::placeholder {
    color: #000;
}

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

#rappel_immediat button {
    color: #000;
    font-weight: 700;
    padding: 14px 30px;
    background: transparent;
    border-radius: 5px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: 18px;
    border: 1px solid #000;
}

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

#rappel_immediat button:hover {
    background: #3df3f3;
}

.Mobile #rappel_immediat button {
    width: 100%;
    padding: 8px;
}

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

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

.s8_box:nth-child(1),
.s8_box:nth-child(4) {
    background: #3df3f3;
}

.s8_content .s8_box:only-child {
    grid-column: 1 / 3;
}

.footer_left .footer_a a {
    color: #000;
}