 *,
*::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: #002d69;
    padding: 10px;
    width: 100%;
    z-index: 999999;
    position: fixed;
    top: 0;
    left: 0;
}

div#Messages p {
    margin: 0;
    color: #fff;     
    font-size: 20px;
}
.Tablet div#Messages p,
.Mobile div#Messages p {
    font-size:14px;
}

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

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

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

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

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

.navTop_icon {
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #002d69;
    border-radius: 50%;
}

.navTop_icon svg {
    width: 25px;
    height: 25px;
    filter: invert(1);
}

.navTop_link {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.navTop_link a {
    color: #000;
}

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

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

._menu {
    margin-bottom: 10px;
}

.Tablet ._menu {
    position: fixed;
    left: 0;
    top: 150px;
    z-index: 9;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 0 3px #aaa;
    display: none;
}

.Mobile ._menu {
    position: fixed;
    left: 0;
    top: 150px;
    z-index: 9;
    background: #fff;
    padding: 10px 0;
    max-height: 250px;
    overflow: scroll;
    border-bottom: 2px solid #ffb200;
    box-shadow: 0 0 3px #aaa;
    display: none;
}

.menu_list {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

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

.menu_list a {
    text-align: center;
    color: #000;
    font-size: 15px;
}

li.nav-item {
    position: relative;
}

.Mobile li.nav-item,
.Tablet li.nav-item {
    text-align: center;
    line-height: 1;
    margin: 3px 0;
}

ul.nav-submenu {
    position: absolute;
    width: max-content;
    background: #fff;
    padding: 10px 20px;
    display: none;
}

.Mobile ul.nav-submenu,
.Tablet ul.nav-submenu {
    position: static;
    display: grid;
    gap: 10px;
    padding: 10px 0px 0px;
}

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

li.nav-item:hover a {
    color: #002d69;
}

.menu_btn a {
    display: flex;
    width: max-content;
    background: #002557;
    padding: 15px 30px;
    color: #fff;
    line-height: 1;
    align-items: center;
}

.menu_btn a:hover {
    background: #0153c3;
}

.menu_btn svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: invert(1);
    position: relative;
}

.menu_btn a:hover svg {
    animation: myAnim 1s ease 0s 1 normal forwards;
}

@keyframes myAnim {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transform: translateX(22px);
  }

  24% {
    opacity: 1;
  }

  40% {
    animation-timing-function: ease-in;
    transform: translateX(18px);
  }

  65% {
    animation-timing-function: ease-in;
    transform: translateX(12px);
  }

  82% {
    animation-timing-function: ease-in;
    transform: translateX(6.5px);
  }

  93% {
    animation-timing-function: ease-in;
    transform: translateX(4px);
  }

  25%,
  55%,
  75%,
  87%,
  98% {
    animation-timing-function: ease-out;
    transform: translateX(0px);
  }

  100% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateX(0px);
  }
}

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

.Mobile .hero {
    margin-top: 150px;
    height: 450px;
}

.Tablet .hero {
    margin-top: 150px;
    height: 500px;
}

.background {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

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

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

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

.hero_content {
    color: #fff;
}

.hero_nom {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.1);
    width: fit-content;
    padding: 2px 20px;
    border: 1px solid #fff;
    border-radius: 100px;
    margin-bottom: 10px;
}

.hero_h1 {
    font-size: 50px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.Mobile .hero_h1 {
    font-size: 30px;
    font-weight: 600;
}

.Tablet .hero_h1 {
    font-size: 40px;
    font-weight: 600;
}

.hero_txt {
    font-size: 22px;
}

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

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

.Mobile .hero_btn a {
    width: 100%;
    padding: 10px;
}

.hero_btn a {
    width: fit-content;
    color: #fff;
    background: #002D69;
    padding: 15px 30px;
    font-size: 17px;
}

.hero_btn a:hover {
    background: #0153c3;
}

.section_1 {
    background: #002d69;
}

.s1_content {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding: 30px 0;
}

.Mobile .s1_content {
    flex-direction: column;
    text-align: center;
}

.Tablet .s1_content {
    justify-content: space-between;
}

.s1_p {
    color: #fff;
    font-size: 26px;
}

.Mobile .s1_p {
    font-size: 19px;
}

.Tablet .s1_p {
    width: 55%;
}

.s1_content a {
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 10px;
    background: #181818;
    padding: 15px 30px;
    border: 1px dashed;
    position: relative;
}

.s1_content a::before {
    content: '';
    position: absolute;
    background: #7a7a7a;
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    border-radius: 0 30px 30px 0;
    transition: all .5s;
}

.s1_content a:hover::before {
    width: 100%;
    border-radius: 0;
}

.s1_svg {
    width: 20px;
    height: 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    position: relative;
}

.s1_content a svg {
    width: 17px;
    height: 17px;
}

.s1_content a div:nth-child(2) {
    font-size: 25px;
    color: #fff;
    position: relative;
}

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

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

section.section_2 {
    padding: 50px 0;
}

.s2_title {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    position: relative;
}

.s2_title:before {
    content: '';
    background: #002d69;
    position: absolute;
    width: 200px;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.s2_h1 {
    font-size: 60px;
    font-weight: 600;
}

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

.Tablet .s2_h1 {
    font-size: 40px;
}

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

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

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

.s2_image img {
    width: 120px;
    height: 137px;
    object-fit: contain;
}

.Tablet .s2_image img,
.Mobile .s2_image img {
    margin: auto;
    width: 80px;
    height: 80px;
}

section.section_3 {
    padding-top: 30px;
}

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

.Tablet .s3_content {
    flex-direction: column;
    gap: 40px;
}

.Mobile .s3_content {
    flex-direction: column;
    gap: 30px;
}

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

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

.s_nom {
    font-size: 11px;
    margin-bottom: 20px;
    padding: 5px 35px;
    background: rgba(0, 0, 0, 0.1);
    width: fit-content;
    border: 1px solid #000;
    border-radius: 100px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1;
}

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

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

.s3_icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #002557;
    border-radius: 5px;
}

.s3_icon img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    filter: invert(1);
}

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

.s3_tel_icon {
    line-height: 1;
}

.s3_tel_icon svg {
    width: 30px;
    height: 30px;
}

.s3_tel_h3 {
    font-size: 15px;
    color: #535353;
}

.s3_tel_link a {
    font-size: 30px;
    line-height: 1;
    font-weight: 600;
    color: #000;
}

.s3_right {
    position: relative;
}

.s3_img.s3_img_1 img {
    width: 450px;
    height: 600px;
    display: block;
    background: #ddd;
    object-fit: cover;
    border-radius: 10px;
}

.s3_img.s3_img_2 {
    position: absolute;
    bottom: -50px;
    left: -50px;
    border: 5px solid #fff;
    border-radius: 15px;
}

.Tablet .s3_img.s3_img_2,
.Mobile .s3_img.s3_img_2 {
    position: static;
    border: 0;
}

.s3_img.s3_img_2 img {
    width: 300px;
    height: 400px;
    background: #888;
    display: block;
    border-radius: 10px;
}

.Tablet .s3_right img {
    width: 100% !important;
    height: 300px !important;
}

.Mobile .s3_right img {
    width: 100% !important;
    height: 200px !important;
}

section.section_4 {
    background: #002557;
}

section.section_4::before {
    content: '';
    background: #455a9d;
    position: absolute;
    z-index: 0;
    width: 100%;
    top: 0;
    left: 0;
    height: 400px;
}

.s4_content {
    position: relative;
}

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

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

.s4_top_box {
    text-align: center;
}

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

.s4_p {
    font-size: 18px;
    color: #fff;
}

.s4_bottom {
    background: #002557;
    margin-top: 50px;
    padding: 50px 30px 0;
    border-radius: 30px 30px 0 0;
    gap: 50px;
    display: grid;
    grid-template-columns: 27% auto;
}

.Mobile .s4_bottom {
    grid-template-columns: 1fr;
    padding: 50px 10px;
}

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

.s4_bottom_left .s_nom {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.s4_h1 {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 600;
    color: #fff;
}

.s4_bottom_left .menu_btn a {
    background: #455a9d;
}

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

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

.s4_bottom_box {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;
}

.s4_h3 {
    font-size: 33px;
    font-weight: 600;
    color: #fff;
}

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

.s4_bottom_box .s4_p {
    margin: 20px 0 30px;
}

.s4_bottom_grid {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: -40px;
}

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

.s4_link a {
    color: #ffffff;
}

.s4_link img {
    width: 25px;
    height: 9px;
    object-fit: contain;
    line-height: 1;
}

.s4_link:hover img {
    animation: myAnim 1s ease 0s 1 normal forwards;
}

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

.s5_content {
    display: flex;
    align-items: center;
    gap: 100px;
}

.s5_h1 {
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 50px;
}

.s5_grid,
.s5_left {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.s5_right {
    position: relative;
}

.s5_img.s5_img_1 img {
    width: 400px;
    height: 500px;
    display: block;
    background: #ddd;
    object-fit: cover;
    border-radius: 10px;
}

.s5_img.s5_img_2 {
    position: absolute;
    bottom: -50px;
    left: -50px;
    border: 5px solid #fff;
    border-radius: 15px;
}

.s5_img.s5_img_2 img {
    width: 280px;
    height: 350px;
    background: #888;
    display: block;
    border-radius: 10px;
}

.s5_txt {
    margin-bottom: 30px;
}

.s5_user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.s5_user_img img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
}

.s5_user_txt {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.s5_bottom_left_right img {
    width: 45px;
    height: 16px;
    object-fit: contain;
    display: block;
}

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

.s5_bottom_left_right img {
    width: 45px;
    height: 16px;
    object-fit: contain;
    display: block;
}

.s5_left .menu_btn {
    margin-top: 30px;
}

.avis_txt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 10px;
}

section.section_6:before {
    content: '';
    background: #00255717;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(100px);
}

.s6_content {
    position: relative;
}

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

.s6_h1 {
    font-size: 43px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
}

.Mobile .s6_h1 {
    text-align: center;
    font-size: 25px;
}

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

.Mobile .s6_grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.s6_box {
    padding: 40px 30px 50px;
    background: #fff;
    border-radius: 10px;
}

.s6_box:nth-child(2n) {
    background: #002557;
}

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

.s6_h2 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
    line-height: 1;
}

.s6_box:nth-child(2n) .s6_h2,
.s6_box:nth-child(2n) .s6_p {
    color: #fff;
}

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

.Tablet .s7_content {
  gap: 20px;
  display: grid;
  grid-template-columns: 30% auto;
}

.Mobile .s7_content {
    flex-direction: column;
    gap: 30px;
}

.s7_left {
    display: flex;
    gap: 20px;
}

.Tablet .s7_left {
  flex-direction: column;
}

.Tablet .s7_left,
.Mobile .s7_left {
    width: 100%;
}

.s7_img_1 {
    position: relative;
    top: -25px;
}

.s7_img_2 {
    position: relative;
    bottom: -25px;
}

.Mobile .s7_left > div,
.Tablet .s7_left > div {
    width: 100%;
    top: 0;
}

.s7_left img {
    width: 300px;
    height: 500px;
    object-fit: cover;
    display: block;
    background: #ddd;
    border-radius: 10px;
}

.Mobile .s7_left img,
.Tablet .s7_left img {
    width: 100%;
    height: 250px;
}

.s7_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: #d70c0c;
}

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

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

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

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

.s7_icon {
    width: 50px;
    height: 50px;
    background: #f9dbdb;
    min-width: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.s7_right .section_link {
    margin-top: 30px;
}

.s7_box_txt {
    font-size: 18px;
}

.s8_content {
    display: grid;
    grid-template-columns: 60% auto;
}

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

.Tablet .s8_content {
    grid-template-columns: 35% auto;
}

.s8_txt {
    background: #002557;
    padding: 40px 30px;
    border-radius: 10px;
    color: #fff;
}

.s8_h1 {
    font-size: 35px;
    line-height: 1.1;
    font-weight: 600;
}

.s8_p {
    margin: 1rem 0 2rem 0;
}

.s8_txt .menu_btn a {
    background: #fff;
    color: #000;
}

.s8_txt .menu_btn svg {
    filter: invert(0);
}

footer {
    background: #002557;
    padding-top: 80px;
}

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

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

.Desktop .rappel_h1::first-line {
    font-size: 47px;
}

.Tablet .rappel_h1::first-line {
    font-size: 40px;
}

.rappel_h1 {
    color: #fff;
    font-size: 25px;
    width: 50%;
    text-align: center;
    line-height: 1.1;
    margin: 30px 0 20px;
}

.Tablet .rappel_h1 {
    width: 80%;
}

.Mobile .rappel_h1 {
    width: 100%;
}

.rappel_form {
    width: 100%;
}

form#rappel_immediat {
    display: flex;
    align-items: center;
    width: 50%;
    margin: auto;
}

.Tablet form#rappel_immediat {
    width: 70%;
}

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

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

.Mobile .form_input {
    width: 65%;
}

.form_input input {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 4px;
    padding: 0 20px 0 45px;
    color: #fff;
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    background: transparent;
}

.form_input input::placeholder {
    color: #f5f5f5;
}

.form_input input:focus {
    border-color: #fff;
}

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

form#rappel_immediat button {
    height: 55px;
    margin-left: 5px;
    width: 29%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #fff;
    color: #000;
    font-size: 17px;
}

form#rappel_immediat button {
    width: 34%;
}

form#rappel_immediat button:hover {
    background: transparent;
    color: #fff;
}

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

form#rappel_immediat button:hover img {
    filter: invert(1);
}

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

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

.footer_grid a:hover {
    color: #0153c3;
}

.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: 100px;
    height: 100px;
}

.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_a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}

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

.footer_a div {
    color: #fff;
}

.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: #0153c3;
}

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

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

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

.s10_box {
    padding: 50px 30px;
    background: #f5f5f5;
}

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

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

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

.nav-mobile {
    width: 70px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.s11_content {
    display: grid;
    grid-template-columns: 40% auto;
    gap: 50px;
    align-items: center;
}

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

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

.s11_form {
    padding: 50px 40px;
    background: #e6e5e2;
    border-radius: 10px;
}

.Tablet .s11_form,
.Mobile .s11_form {
    padding: 40px 20px;
}

.s11_form .s11_h1 {
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

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

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

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

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

.form-input {
    background: transparent;
    border-width: 0 0 1px;
    padding: 0 0 5px;
}

.form-input::placeholder {
    color: #000;
}

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

form#FormDevis input.btn.btn-submit:hover {
    background: #fff;
    color: #000;
}

.s11_h2 {
    margin: 50px 0 15px;
    font-size: 23px;
    font-weight: 600;
}

.s11_left_a a {
    color: #000;
    font-size: 50px;
    line-height: 1;
    padding-bottom: 5px;
    width: fit-content;
    border-bottom: 1px solid;
    margin-bottom: 7px;
    display: block;
}

.s11_left_a a:hover {
    color: #fff;
}

.Mobile .s11_left_a a,
.Tablet .s11_left_a a {
    font-size: 45px;
}

.s11_left_p {
    font-size: 18px;
}

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

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

.Mobile .s11_grid,
.Tablet .s11_grid {
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 0;
}

.s11_box_h1 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

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

.s11_link_a {
    display: grid;
    gap: 3px;
}

.s11_link_a a {
    color: #000;
}

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

.s11_icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: block;
    filter: brightness(0);
}

.s11_right .s11_h1 {
    font-size: 30px;
    margin-bottom: 60px;
    display: block;
}

.Mobile .s11_right .s11_h1,
.Tablet .s11_right .s11_h1 {
  font-size: 25px;
  margin-bottom: 20px;
}

.col-tem {
    width: 50%;
}

.Tablet .col-tem,
.Mobile .col-tem {
    width: 100%;
    padding: 20px;
}

input#mail {
    display: none;
}

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

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

.col-tem input.btn {
    height: 50px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    background: #000;
    color: #fff;
}

.item-tem {
    margin: 20px 0;
    border: 1px solid #888;
    padding: 30px;
    width: 90%;
    border-radius: 5px;
}

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

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

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

.s11_left .s11_h1,
.s11_left .s11_h2,
.s11_left .s11_left_p {
    color: #000;
}