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

.Mobile b.titre-album {
    font-size: 22px;
    text-align: center;
    margin: 30px 0 20px;
}

.Tablet b.titre-album {
    font-size: 30px;
}

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

:root {
    --volet: #032394;
    --rouge: #dd040a;
    --gris: #333;
    --noir: #000;
    --blanc: #fff;

    --transition: all .4s;
    --animation: root_animation 1.5s ease-in-out 0s infinite normal both running;
}

._animation {
    animation: var(--animation);
}

@keyframes root_animation {
    0% {
      transform: scale(1);
      transform-origin: center center;
      animation-timing-function: ease-out;
    }
    10% {
        transform: scale(.91);
        animation-timing-function: ease-in;
    }
    17% {
        transform: scale(.98);
        animation-timing-function: ease-out;
    }
    33% {
        transform: scale(.87);
        animation-timing-function: ease-in;
    }
    45% {
        transform: scale(1);
        animation-timing-function: ease-out;
    }
}

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

._flag {
    width: 100%;
    height: 39px;
}

.navTop {
    /* background: var(--volet); */
    padding: 25px 0;
}

.Mobile .navTop,
.Tablet .navTop {
    padding: 0;
}

header .navTop > .container {
    max-width: 1300px;
}

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

.Mobile .navTop_content {
    margin-top:-54px;
}

._logo a img {
box-shadow: 3px 3px 1px #cecece;
  border-radius: 50%;
}

.Mobile ._logo a img,
.Tablet ._logo a img {
    /* width: 250px;
    height: 88px;
    object-fit: contain; */
}

._mob_tel {
    position: fixed;
    top: 159px;
    width: 100%;
    left: 0;
    text-align: center;
    background: var(--rouge);
    padding: 5px 0;
}

._mob_tel a {
    background: #fff;
    padding: 5px 20px;
    border-radius: 5px;
    color: #000;
}
.burger_menu {
   background: #04498b;
  margin-top: 40px; 
}
.burger_menu img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.navTop_center {
    display: flex;
    align-items: center;
}
.text-agence,
 .text-agence a {
    color: #fff;
}

a.navTop_box {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: var(--noir);
}

a.navTop_box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: #04498b;
  padding: 5px;
  border-radius: 50%;
}

._tel_p {
    width: 300px;
    text-align: center;
    line-height: 1.1;
    margin-top: 12px;
}

.Mobile ._tel_p {
    width: 100%;
}

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

.grt img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    filter:invert(1);
}

.navTop_right a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--noir);
    background: var(--blanc);
    padding: 7px 20px;
    border-radius: 100px;
}

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

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

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

.navLink {
    background: var(--noir);
    padding: 20px 40px;
    margin-top: 5px;
    text-align: center;
}

.Tablet .navLink,
.Mobile .navLink {
    transform: scaleY(0);
    transform-origin: 0 0 0;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    position: fixed;
    width: 100%;
    top: 159px;
    left: 0;
    transition: all .4s;
}

.navLink.navShow {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}

li._nav-item {
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 600;
    position: relative;
}

li._nav-item a {
    color: var(--blanc);
    position: relative;
    font-size: 12px;
}

li._nav-item a::before {
    position: absolute;
    top: 90%;
    left: 60%;
    color: transparent;
    content: '•';
    text-shadow: 0 0 transparent;
    font-size: 1.2em;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
}

li._nav-item:not(.active):hover a::before {
    color: var(--blanc);
    text-shadow: 0.625em 0 var(--blanc), -0.625em 0 var(--blanc);
}

li._nav-item.active a {
    text-decoration: underline;
}

.banner {
    position: relative;
}

.Mobile .banner {
    margin-top: 160px;
}

.banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(2, 18, 45, 0.3);
    top: 0;
    left: 0;
    z-index: 5;
}

._hero {
    width: 100%;
    height: 820px;
    overflow: hidden;
}

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

.Tablet ._hero,
.Tablet ._bg {
    height: 600px;
}

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

._hero_banner {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.Tablet ._hero_banner {
    top: 63%;
}

/*.Mobile ._hero_banner {
    top: 67%;
}*/

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

body:not(.Mobile) ._hero_h1::first-line {
    font-size: 50px;
    text-transform: uppercase;
}

._hero_h1 {
    text-align: center;
    font-size: 35px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: none;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #FFF;
    stroke: #FFF;
    color: var(--rouge);
}

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

._hero_p {
    font-size: 25px;
    text-align: center;
    color: #fff;
}

.Tablet ._hero_p {
    font-size: 18px;
}

.Mobile ._hero_p {
    font-size: 18px;
    line-height: 1.1;
}

._hero_p a {
    text-decoration: underline;
    color: #fff;
    font-weight: 600;
}

._hero_btn {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}
.Mobile ._hero_btn{
  flex-direction: column;
}

.Mobile ._hero_btn {
    margin-top: 35px;
}

._hero_btn a {
    padding: 20px 40px;
    font-size: 22px;
    border-radius: 5px;
    background: var(--rouge);
    color: var(--blanc);
}

.Mobile ._hero_btn a {
    padding: 10px 40px;
}


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

section.section_1 > .container {
    max-width: 1200px;
}

.page_h1 h1 {
    font-size: 2.2em;
    font-weight: 600;
    color: var(--volet);
    text-align: center;
    margin-bottom: 30px;
}

.Mobile .page_h1 h1 {
    font-size: 25px;
}

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

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

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

.Mobile .s1_left {
    width: 100%;
    flex-direction: column;
    gap: 0;
}

.Tablet .s1_left {
    width: 100%;
}

.s1_img_1_icon {
    margin-bottom: 20px;
}

.Mobile .s1_left_img_2,
.Mobile .s1_left_img_1,
.Tablet .s1_left_img_2,
.Tablet .s1_left_img_1 {
    width: 100%;
}

.s1_img_1_icon img {
    width: 300px;
    height: 71px;
    object-fit: contain;
}

.s1_img1_image img {
    width: 300px;
    height: 520px;
    object-fit: cover;
    display: block;
    background: #ddd;
}

.Tablet .s1_img1_image img {
    width: 100%;
    height: 350px;
}

.s1_img2_image img {
    width: 300px;
    height: 310px;
    display: block;
    background: #ddd;
    object-fit: cover;
    margin: 10px 0;
}

.Tablet .s1_img2_image img {
    width: 100%;
    height: 215px;
}

.Mobile .s1_img1_image img,
.Mobile .s1_img2_image img {
    width: 100%;
    height: 200px;
}

.s1_right h2 {
    padding-left: 4%;
    padding-right: 4%;
    font-size: 2em;
    font-style: normal;
    font-family: "Ubuntu Condensed";
    font-weight: 400;
    padding-top: 1%;
    padding-bottom: 1%;
    color: var(--rouge);
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: solid;
}

.Mobile .s1_right h2 {
    font-size: 22px;
    line-height: 1.3;
}

.section_btn a {
    padding-right: 2%;
    padding-left: 2%;
    background-color: var(--rouge);
    color: var(--blanc);
    font-weight: 700;
    border-radius: 30px;
    padding-top: 2%;
    padding-bottom: 2%;
    width: 300px;
    display: block;
    text-align: center;
    font-size: 18px;
}


.s2_content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px 20px;
    flex-wrap: wrap;
}

.Tablet .s2_content {
    gap: 20px 10px;
}

.Mobile .s2_content {
    gap: 10px;
}

._s2_box {
    width: calc((100% / 4) - 20px);
    height: 250px;
    position: relative;
}

.Tablet ._s2_box {
    width: calc((100% / 4) - 10px);
}

.Mobile ._s2_box {
    width: calc((100% / 2) - 10px);
    height: 158px;
}

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

.s2_txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

a.s2_icon img {
    width: 90px;
    height: 90px;
    display: block;
    object-fit: contain;
    transition: var(--transition);
    position: relative;
    top: 0;
}

.Mobile a.s2_icon img {
    width: 50px;
    height: 50px;
}

.Tablet a.s2_icon img {
    width: 60px;
    height: 60px;
}

._s2_box:hover a.s2_icon img {
    top: -10px;
}

a.s2_ancre {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--blanc);
    letter-spacing: 0.05em;
    text-align: center;
    padding: 0 10px;
}

.Mobile a.s2_ancre,
.Tablet a.s2_ancre {
    font-size: 16px;
}

section.section_3 {
    margin: 100px 0;
}

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

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

.s3_img_2 {
    position: absolute;
    bottom: -80px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 81px;
}

.s3_content {
    position: relative;
    z-index: 5;
    color: var(--blanc);
    line-height: 1.2;
}

.s3_txt h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--blanc);
    font-weight: 500;
}

.s3_txt p {
    margin: 10px;
}

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

.Tablet .s4_content {
    gap: 10px;
}

.Tablet .s4_content,
.Mobile .s4_content {
    grid-template-columns: 100%;
    gap: 30px;
}

.s4_box {
    box-shadow: 0 0 5px 0 #888;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 40px;
}

.s4_img {
    width: 100%;
    height: 300px;
}

.s4_txt {
    padding: 40px 20px;
}

.s4_txt h3 {
    font-size: 25px;
    margin: 0 0 30px;
    text-align: center;
}

._s4_btn a {
    margin: auto;
    display: block;
    width: 80%;
    text-align: center;
    background: var(--rouge);
    font-weight: 700;
    border-radius: 30px;
    padding-top: 2%;
    padding-bottom: 2%;
    color: var(--blanc);
    font-size: 18px;
}

.Mobile ._s4_btn a {
    width: 95%;
}

.Desktop .section_5 > .container {
    max-width: 100%;
}

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

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

.s6_h1 {
    font-size: 35px;
    color: var(--blanc);
    text-align: center;
    margin-bottom: 30px;
}

.s6_grid {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

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

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

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

.Mobile .s6_box img {
    height: 60px;
    width: 60px;
}

.s6_p {
    color: var(--blanc);
    text-align: center;
    font-size: 18px;
    margin-top: 15px;
}

.Mobile .s6_p {
    font-size: 16px;
    line-height: 1.1;
}

.s7_star_1 {
    display: inline-block;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    align-items: center;
    width: 120px;
    height: 22px;
    background-image: url(/js/etoile.svg);
}

.s7_star_2 {
    height: 22px;
    background-image: url(/js/etoile-on.svg);
}

.s7_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(246, 246, 248);
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.Mobile .s7_top {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 30px;
}

.s7_top_left {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 7px;
}

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

.s7_top_left_top svg {
    width: 76px;
    height: 33px;
    object-fit: contain;
}

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

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

.s7_avis_nb {
    font-size: 27px;
    line-height: 1;
    font-weight: 600;
    margin-right: 7px;
}

.s7_avis_votes {
    color: #535353;
    margin-left: 12px;
}

.avis_btn a {
    border-radius: 24px;
    border-color: rgba(0, 0, 0, 0);
    line-height: 18px;
    color: rgb(255, 255, 255);
    font-family: inherit;
    font-weight: bold;
    font-size: 16px;
    background-color: rgb(0 98 229);
    text-transform: none;
    border-width: 2px;
    padding: 7px 19px;
}

.s7_grid {
    display: flex;
    overflow: hidden;
    justify-content: center;
}

body:not(.Mobile) .s7_box {
    width: calc((100% / 3) - 10px)!important;
    margin: 0 5px;
    background: rgb(246, 246, 248);
    padding: 24px;
    border-radius: 10px; 
}
.Mobile .s7_box { 
    margin: 0 5px;
    background: rgb(246, 246, 248);
    padding: 24px;
    border-radius: 10px; 
}

.s7_box_top {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.s7_box_top_left {
    position: relative;
    width: fit-content;
}

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

.avis_top_right {
    position: absolute;
    right: -8px;
    bottom: 0;
    background: #fff;
    padding: 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avis_top_right img {
    width: 20px;
    height: 20px;
}

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

.s7_nom_icon svg {
    width: 14px;
    height: 14px;
}

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

}

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

.avis_txt {
    margin-top: 10px;
    line-height: 1.3;
}

.s7_bottom {
    position: relative;
}

.left_arrow {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}

.right_arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}

.left_arrow ._reviews_arrow_left,
.right_arrow ._reviews_arrow_right {
    background: #11111180;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.s8_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 38px;
    box-shadow: 0 0 5px var(--volet);
}

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

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

.s8_h1,
.sco_horaire_h1 {
    font-size: 30px;
    color: var(--volet);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.Mobile .s8_h1,
.Mobile .sco_horaire_h1 {
    font-size: 22px;
}

.s8_content .s8_box:nth-child(1) {
    border-right: 1px solid var(--volet);
}

.Mobile .s8_content .s8_box:nth-child(1) {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--volet);
    border-right: none;
}

.s8_content .s8_box:nth-child(2) {
    border-left: 1px solid var(--volet);
}

.Mobile .s8_content .s8_box:nth-child(2) {
    padding-top: 30px;
    border-top: 1px solid var(--volet);
    border-left: none;
}

.s8_p,
.sco_horaire_p {
    font-size: 20px;
}

.s8_btn a {
    margin: 0 auto 30px;
    display: block;
    width: 300px;
    text-align: center;
    padding: 12px 0;
    border-radius: 50px;
    background: var(--rouge);
    color: var(--blanc);
    font-size: 18px;
    font-weight: 600;
}

footer .navTop_center {
    gap: initial;
    justify-content: space-between;
    grid-template-columns: 60% 10% 20%;
    display: grid;
}

.Mobile footer .navTop_center {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 10px;
}

.Tablet footer .navTop_center {
    width: 100%;
}

.Tablet footer .navTop_content,
.Mobile footer .navTop_content {
    flex-direction: column;
    gap: 30px;
}

.footer_bottom {
    background: var(--noir);
    padding: 10px 0;
}

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

.Mobile .footer_bottom_content {
    flex-direction: column;
    gap: 10px;
}

.footer_bottom_content .footer_box:nth-child(2) {
    text-transform: uppercase;
}

.footer_bottom_content a,
.footer_bottom_content {
    color: var(--blanc);
}

.footer_box a img {
    width: 150px;
    height: 25px;
    object-fit: contain;
    margin-left: 10px;
}

.p1_content h1 {
    font-size: 30px;
    text-align: center;
    color: var(--volet);
}

section.presta_1 h2 {
    color: var(--rouge);
    text-align: center;
}

.Tablet section.presta_1,
.Mobile section.presta_1,
.Tablet section.section_content,
.Mobile section.section_content,
.Tablet section.section_temoignages,
.Mobile section.section_temoignages,
.Mobile .mentionL,
.Tablet .mentionL {
    margin-top: 160px;
}

.Mobile div#realisations,
.Tablet div#realisations {
    margin-top: 190px;
}

.Desktop section.presta_2 > .container {
    max-width: 1600px;
}

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

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

.Tablet .p2_left,
.Mobile .p2_left {
    order: 2;
}

section.presta_2 h2,
section.presta_2 h3 {
    color: var(--rouge);
    font-size: 24px;
}

section.presta_1 p,
section.presta_2 p {
    margin: 0;
}

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

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

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

.p3_content {
    text-align: center;
}

.p3_p {
    font-size: 20px;
}

.p3_content a {
    margin: 20px auto 30px;
    display: block;
    width: 300px;
    text-align: center;
    padding: 12px 0;
    border-radius: 50px;
    background: var(--volet);
    color: var(--blanc);
    font-size: 18px;
    font-weight: 600;
}

.stem_h1 {
    font-size: 50px;
    text-align: center;
    font-weight: 600;
    color: var(--volet);
    line-height: 1.2;
}

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

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

.stem_h2 {
    font-size: 30px;
    color: var(--rouge);
    font-weight: 600;
    text-align: center;
}

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

.stem_p {
    text-align: center;
    margin: 10px 0 30px;
    color: #444;
    font-size: 20px;
}

form#avis_form\ {
    display: grid;
}

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

div#MonAvis {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.Mobile div#MonAvis {
    flex-direction: column-reverse;
}

input#mail {
    display: none;
}

.stem_content label {
    margin: 8px 0 5px;
}

.stem_content .input-form {
    background: rgb(33 17 87 / .26);
    padding: 16px;
    border: none;
    border-radius: 5px;
}
.section_content .form-input {
    background: rgb(255 255 255);
    padding: 16px;
    border: none;
    border-radius: 5px;
}

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

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

.stem_content input.btn {
    margin-top: 30px;
    background: var(--rouge);
    padding: 11px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--blanc);
}

.section_content input.btn-submit {
    background: var(--rouge);
    padding: 11px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--blanc);
}

.stem_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

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

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

.sco_bloc.sco_horaire {
    padding: 38px;
    box-shadow: 0 0 5px var(--volet);
    margin: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.Mobile .sco_bloc.sco_horaire {
    padding: 38px 20px;
}

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

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

section.section_content .stem_grid > div {
    width: 100%;
    height: 500px;
}

.Tablet section.section_content .stem_grid > div {
    height: 400px;
}

.Mobile section.section_content .stem_grid > div {
    height: 400px;
}

.sco_bloc .s8_content {
    box-shadow: none;
}

.sco_bloc {
    padding: 38px;
    box-shadow: 0 0 5px var(--volet);
    margin: 50px 0;
}

.sco_bloc .sco_horaire_h1,
.sco_bloc .sco_horaire_p {
    text-align: center;
}

ul.s8_box {
    display: block;
    padding: 0 0 0 150px;
    list-style: disc;
}

.Mobile ul.s8_box {
    padding: 0;
}

.Tablet ul.s8_box {
    padding: 0 0 0 50px;
}

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

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

.sco_left_h1 {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--volet);
}

.sco_left_h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--rouge);
    margin-bottom: 10px;
}

.sco_left_p {
    margin-bottom: 20px;
}

.sco_box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.sco_icon {
    width: 60px;
    height: 60px;
    background: var(--volet);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.sco_icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.sco_box_h1 {
    font-size: 17px;
    font-weight: 600;
    color: var(--volet);
    line-height: 1;
    margin-bottom: 5px;
}

.sco_box_p {
    line-height: 1.05;
    color: #000;
}

.sco_right {
    padding: 40px;
    background: #211157;
    border-radius: 5px;
}

.Tablet .sco_right {
    padding: 20px;
}

.Mobile .sco_right {
    padding: 40px 10px;
}

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

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

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

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

.sp_grid img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 5px;
}

.Tablet .sp_grid img,
.Mobile .sp_grid img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}


@media screen and (min-width: 1600px) {
    section.section_1 > .container {
        max-width: 1500px;
    }

    .s1_img_1_icon img {
        width: 400px;
        height: 94px;
        object-fit: contain;
    }

    .s1_img1_image img {
        width: 400px;
    }

    section.section_6 > .container {
        max-width: 90%;
    }

    .s5_content {
        gap: 40px;
    }
}
._nav-submenu {
     transform: scaleY(0); 
     opacity: 0; 
     visibility: hidden; 
    position: absolute;
    top: 100%;
    transform-origin: 0 0 0;
    transition: all 0.3s ease 0s;
    z-index: 9999 !important;
    left: 0;
    background: var(--rouge);
    padding: 15px;
    border-radius: 16px;
    width: 425px;
    margin-top: 6px;
    text-align: left;
}
._megaMenu li {
    padding: 8px 0;
}
._megaMenu a {
    color: #fff !important;
}
.Mobile ._megaMenu a,
.Tablet ._megaMenu a {
    color: #000000 !important;
}
li._nav-item:hover ._nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}
.s3_txt h2 {
    color: #fff;
    font-size: 40px;
}
.text-agence {
    margin-left: 30px;
}
body:not(.Desktop) ._nav-submenu {
    transform: none;
    opacity: 1;
    visibility: inherit;
    position: relative; 
    background: #fff; 
    text-align: center;
}
body:not(.Desktop) .navLink.navShow { 
    height: 500px;
    overflow: scroll;
}
.Tablet footer .navTop_center {  
  grid-template-columns: 42% 13% 40%; 
}
body:not(.Desktop) ._mob_tel { 
    top: 125px; 
}