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

.navMenu {
    background: #fff;
    padding: 10px 0;
}

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

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

.navLeft > a img {
    width: 300px;
    height: 83px;
    object-fit: contain;
}

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

li._nav-item {
    width: 200px;
    text-align: center;
}

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

.navRight a {
    padding: 10px 40px;
    background: #fda513;
    color: #000;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 18px;
    transition: all .5s;
}

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

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

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

.heroContent:before {
    content: '';
    background: #D1D5DB;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
}

.background {
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
}

.Tablet .background,
.Desktop .background {
    z-index: -1;
}

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

.heroTeContent {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.nom {
    font-size: 12px;
    background: #fda513;
    width: fit-content;
    border-radius: 20px;
    padding: 1px 30px;
}

.hero_h1 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 70px;
    margin: 10px 0 20px;
}

.hero_p {
    color: #000;
    font-size: 18px;
    margin-bottom: 50px;
}

._btn a {
    padding: 10px 70px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 21px;
    transition: all .5s;
    background: #085f94;
    color: #fff;
    transition: all .4s;
}

._btn a:hover {
  background: #0a0a0a;
  color: #fff;
}

.section_1 {
    padding: 100px 0;
}

.s1_content {
    position: relative;
    display: flex;
    align-items: start;
    gap: 30px;
}

.section_nom {
    display: flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    background: #0a0a0a;
    padding: 1px 30px;
    border-radius: 20px;
}

.section_nom svg {
    width: 15px;
    height: 15px;
    fill: #fda513;
}

._nn {
    font-size: 15px;
    letter-spacing: 0.03em;
    color: #fff;
}

.s1_left > img {
    width: 400px;
    height: 500px;
    object-fit: cover;
    display: block;
    background: #ddd;
    border-radius: 10px;
    box-shadow: 0 0 5px #777;
}

.s1_right {
    display: grid;
}

.s1_right ._txt {
    margin-bottom: 20px;
}

.s1_right h1 {
    margin: 10px 0 20px;
}

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

.s1h3 {
    font-weight: 600;
    font-size: 21px;
    margin-bottom: 10px;
}

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

.s1li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.section_btn {
  margin-top: 30px;
}

.section_btn a {
    width: fit-content;
    background: #085f94;
    color: #fff;
    padding: 10px 70px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all .4s;
}

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

.s1_img2 img {
    width: 300px;
    height: 200px;
    display: block;
    background: #ddd;
    border-radius: 10px;
    box-shadow: 0 0 5px #777;
}

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

.s3_1 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
}

.s3_2 {
    margin-bottom: 20px;
    font-size: 19px;
    letter-spacing: 0.03em;
}

.s3_3 {
    font-size: 15px;
    padding-top: 20px;
    border-top: 1px solid #d1d5db;
    color: #535353;
}

.section_2 {
    padding: 100px 0;
    position: relative;
}

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

.s1_png {
    position: relative;
    display: grid;
    grid-template-columns: 60% 30%;
    align-items: center;
    justify-content: space-between;
}

/*.s1_png img {
    width: 300px;
    height: 158px;
    object-fit: contain;
}*/

.s1_img3 {
    position: relative;
}

.s1_img3:before {
    content: '';
    background: transparent;
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80%;
    height: 50%;
    z-index: 0;
    border-width: 1px 1px 0 0;
    border-style: solid;
    border-color: #fda513;
    border-radius: 0 20px 0 0;
}

.s1_img3:after {
    content: '';
    background: transparent;
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 80%;
    height: 50%;
    z-index: 0;
    border-width: 0 0 1px 1px;
    border-style: solid;
    border-color: #fda513;
    border-radius: 0 0 0 20px;
}

.s1_img3 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    background: #ddd;
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

.s2_txt h2 {
    margin-top: 20px;
}

.s2_txt h2,
.s2_txt h3,
.s2_txt p {
    color: #fff;
}

.section_3 {
    padding: 50px 0;
}

.section_4 {
    padding: 100px 0;
    position: relative;
}

.section_4:before {
    content: '';
    background: #085f94;
    width: 100%;
    height: 60%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.s4Title {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 70px;
    color: #fff;
    line-height: 50px;
}

.s4h1 {
    font-size: 20px;
}

.s4h2 {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 600;
}

.s4Grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
}

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

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

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

.s4Txt {
    text-align: center;
    margin-top: 12px;
}

.s4h3 {
    width: fit-content;
    margin: 0 auto 10px;
    background: #085f9447;
    padding: 2px 20px;
    font-size: 15px;
    border-radius: 3px;
}

.s4p {
    font-size: 17px;
    line-height: 23px;
}

.section_6 {
    padding: 0 0 100px;
}

.section_5 {
    padding: 0 0 120px;
    position: relative;
}


.section_6 {
    padding: 0 0 100px;
}

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

.s6_right h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 10px;
}

.s4_grid {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 15px;
    margin-right: -250px;
    display: grid;
    gap: 10px;
}

.s4_box {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #ebebeb;
    position: relative;
    padding: 20px;
    transition: all .4s;
}

.s4_box:hover {
    border: 1px solid #fda513;
}

.s4_img {
    min-width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f2428;
    border-radius: 50%;
    transition: all .4s;
}

.s4_box:hover .s4_img {
    background: #fda513;
}

.s4_img img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    filter: invert(1);
    transition: all .4s;
}

.s4_box:hover .s4_img img {
    filter: invert(0);   
}

.s4_li h3 {
    font-size: 19px;
}

.s4_li p {
    font-size: 16px;
    line-height: 24px;
}

.s6_left img {
    width: 700px;
    height: 800px;
    display: block;
    object-fit: cover;
    background: #ddd;
}

.s5_content ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 100px;
    align-items: center;
}

.s5_content h2 {
    text-align: center;
    font-size: 45px;
    width: 60%;
    margin: 0 auto 80px;
    line-height: 50px;
}

.s5_content ul li {
    position: relative;
}

.s5_content ul li:before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}

.s5_content ul li p {
    margin: 0;
    padding-left: 85px;
}

.s5_content ul li:nth-child(1):before {
    background: url(../images/img/s5_icon_1.png) center / contain no-repeat;
}

.s5_content ul li:nth-child(2):before {
    background: url(../images/img/s5_icon_2.png) center / contain no-repeat;
}

.s5_content ul li:nth-child(3):before {
    background: url(../images/img/s5_icon_3.png) center / contain no-repeat;
}

.s5_content ul li:nth-child(4):before {
    background: url(../images/img/s5_icon_4.png) center / contain no-repeat;
}

.s5_content ul li:nth-child(5):before {
    background: url(../images/img/s5_icon_5.png) center / contain no-repeat;
}

.section_7 {
    padding: 100px 0;
    position: relative;
}

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

.s7_content {
    position: relative;
    color: #fff;
}

.s7_content h2 {
    color: #fff;
    text-align: center;
    width: 70%;
    margin: 0 auto 50px;
    font-size: 35px;
}

.s7_content ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.s7_content ul li {
    position: relative;
    padding: 40px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    max-width: 32%;
    flex: 0 0 32%;
}

.s7_content ul li:before {
    content: '';
    background-color: #fda513;
    position: absolute;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40px;
}

.s7_content ul li p {
    margin: 0;
    padding: 100px 0 0;
}

.s7_content ul li:nth-child(1):before {
    background-image: url(../images/img/s7_icon_1.png);
}

.s7_content ul li:nth-child(2):before {
    background-image: url(../images/img/s7_icon_2.png);
}

.s7_content ul li:nth-child(3):before {
    background-image: url(../images/img/s7_icon_3.png);
}

.s7_content ul li:nth-child(4):before {
    background-image: url(../images/img/s7_icon_4.png);
}

.s7_content ul li:nth-child(5):before {
    background-image: url(../images/img/s7_icon_5.png);
}

.section_8 {
    padding: 100px 0;
}

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

.s8_left {
    min-width: 400px;
    height: 400px;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 0 0 30px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

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

.s8_txt {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.s8_h1 {
    color: #fff;
    font-size: 22px;
    text-decoration: underline;
}

.s8_li a {
    display: block;
    font-size: 35px;
    color: #fff;
    margin-bottom: 10px;
}

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

.s8_txt .section_btn a {
    background: #fda513;
    color: #000;
    transition: all .4s;
}

.s8_txt .section_btn a:hover {
  background: #fff;
}

footer {
    padding: 100px 0 0;
    background: #d1d5db42;
}

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

.footerH2,
.footerC_h2 {
    color: #000;
    font-weight: 600;
    font-size: 21px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

li.footer-nav-link {
    margin-bottom: 5px;
}

input#mail2 {
    display: none;
}

.rappel_h1 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

form#rappel_immediat input.form-input {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #000;
    padding: 10px;
    width: 70%;
    font-size: 18px;
    color: #000;
    background: transparent;
}

form#rappel_immediat button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #085f94;
    border-radius: 5px;
}

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

li.footer-nav-link a {
    color: #000;
    font-size: 17px;
}

li.footer-nav-link a:hover {
  text-decoration: underline;
}

.copyright {
    margin-top: 50px;
    background: #085f94;
}

.copy {
    text-align: center;
    padding: 20px;
    font-size: 16px;
    color: #fff;
}

body.prestations .s6_right {
    position: relative;
    z-index: 2;
    margin-right: -150px;
    background: #fff;
    padding: 20px;
}

body.prestations .s5_content > p {
    text-align: center;
    margin-bottom: 40px;
}

body.prestations .s6_left img {
    width: 700px;
    height: 700px;
    display: block;
    object-fit: cover;
    background: #ddd;
}

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

.Tablet .navLeft > a img {
  width: 200px;
  height: 70px;
  object-fit: contain;
}

.Mobile .navLeft > a img {
  width: 200px;
  height: 70px;
  object-fit: contain;
}

body:not(.Desktop) li._nav-item {
  width: 100%;
  text-align: center;
}

.Tablet li._nav-item a {
  color: #000;
  font-size: 12px;
  line-height: normal;
}

.Mobile .navList {
    display: none;
    position: fixed;
    width: 100%;
    background: #085f94;
    top: 90px;
    left: 0;
    padding: 20px 0;
}

.Mobile ul.nav-list {
    flex-direction: column;
}

.Mobile .background {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: -1;
}

.Mobile .heroContent:before {
    content: '';
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.Mobile .heroText {
    position: relative;
    z-index: 2;
    margin-top: 150px;
}

.Mobile .heroTeContent {
    grid-template-columns: 1fr;
    gap: 0;
}

.Tablet .hero_h1,
.Mobile .hero_h1 {
    font-size: 2rem;
    line-height: normal;
}

.Mobile .hero {
    width: 100%;
    height: 600px;
}

body:not(.Desktop) .s1_content {
  flex-direction: column;
}

body:not(.Desktop) .s1_left {
  width: 100%;
}

body:not(.Desktop) .s1_left > img {
  width: 100%;
  height: 300px;
}

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

body:not(.Desktop) .s1_png {
  grid-template-columns: 100%;
  gap: 20px;
}

body:not(.Desktop) .s1_img3 img {
  height: 300px;
}

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

.Mobile .s3_content,
.Mobile .s4Grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

.Mobile .section_4:before {
  height: 100%;
}

.Mobile .s4p {
    font-size: 17px;
    line-height: 23px;
    color: #fff;
}

.Mobile .s4h3 {
    background: #fda513;
}

body:not(.Desktop) .s6_content {
  flex-direction: column;
  gap: 20px;
}

body:not(.Desktop) .s4_grid {
  margin: 0;
}

body:not(.Desktop) .s6_right {
  margin: 0;
}

body:not(.Desktop) .s6_left {
  width: 100%;
}

body:not(.Desktop) .s6_left img {
  height: 300px;
  width: 100%;
}

body:not(.Desktop).realisations,
body:not(.Desktop).devis,
body:not(.Desktop).mentions,
body:not(.Desktop).contact {
    margin-top: 9rem;
}

.Mobile .s4_box {
    flex-direction: column;
}

.Mobile .s3box {
    text-align: center;
}

.Mobile .s4h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.Mobile .s4Title {
  margin-bottom: 40px;
}

.Mobile .s5_content h2,
.Mobile .s7_content h2 {
  width: 100%;
    font-size: 25px;
    line-height: normal;
    margin-bottom: 30px;
}

.Tablet .s5_content h2,
.Tablet .s7_content h2 {
  width: 90%;
  font-size: 30px;
}

.Mobile .s5_content ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

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

.Tablet .s7_content ul li {
  position: relative;
  padding: 30px;
  max-width: 48%;
  flex: 0 0 50%;
}

.Mobile .s7_content ul li {
  position: relative;
  padding: 30px;
  max-width: 100%;
  flex: 0 0 100%;
}

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

.Tablet .s8_content {
  flex-direction: column;
  gap: 30px;
}

.Tablet .s8_left {
  min-width: 100%;
  height: 400px;
}

.Mobile .s8_left {
  min-width: 100%;
  height: 300px;
}

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

.Mobile footer {
    padding: 70px 0 0;
    background: #d1d5db42;
}

.Mobile div[class^="section"]:not(.section_nom):not(.section_btn),
.Tablet div[class^="section"]:not(.section_nom):not(.section_btn) {
  padding: 50px 0;
}

.navTel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #fda513;
    padding: 5px;
}

.navTel a {
    color: #fff;
    font-size: 18px;
    background: #000;
    padding: 3px 10px;
    border-radius: 5px;
}

.contact-content {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
}
.Mobile .contact-content {
    display: block;
    margin-top: 0;
    padding: 20px 0; 
}
.Mobile .adr-map {
    padding: 20px 0;
}
.Tablet .contact-content {
  padding: 20px 0; 
}
.coordonne_cont img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.coordonne_cont {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.ContactezNous b {
    font-size: 20px;
}
.ContactezNous-h1 {
    color: #333333;
    text-transform: uppercase;
    font-weight: 600;
    font-family: Calibri;
    font-size: 32px;
}
.adr-map {
    padding: 0 0 0 40px;
}
.coordonne_cont a {
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.ContactezNous {
    text-align: center;
}
.devis .Devisgratuit-h3 {
    font-size: 32px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
}
.Mobile.devis .Devisgratuit-h3 {
    font-size: 24px;
}
.devis .Devisgratuit {
    width: 80%; 
    margin: 50px auto 30px;
    text-align: center;
}
body.Desktop.devis .btn-submit {
    max-width: 48%;
    margin: auto;
}
body.Mobile.devis .Devisgratuit {
    display: block; 
    width: 100%;
    padding: 175px 0 0;
    margin-top: 0;
}
.Tablet.devis .Devisgratuit {
  margin-top: 225px;
}


body.Mobile.devis div#devisGratuit {
    display: none;
}

a.btn.btn-cont {
    background: rgba(255, 255, 255, .3);
    color: #000;
    border-radius: 0; 
    margin-top: 20px;
    text-transform: uppercase;
    border: solid 1px#fff;
    font-weight: 600;
    padding: 10px 15px;
    font-size: 14px;
}
.boutton-slider {
    display: flex;
    flex-wrap: wrap; 
    gap: 10px;
}
.Mobile .boutton-slider { 
    justify-content: center; 
}
.contact .ContactezNous #FormDevis {
    display: block!important;
}
.contact-content div#Map {
    height: 450px;
    width: 100%;
}
.Mobile .contact-content div#Map {
    height: 300px;
    width: 100%;
}
.ContactezNous svg, .ContactezNous img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 5px;
}

.form-input {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 17px;
    margin: 10px 0;
}

input.btn.btn-submit {
    width: 100%;
    background: #000;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

input#mail {
    display: none;
}

.Mobile .navRight {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.Mobile li._nav-item a {
  color: #fff;
  font-size: 15px;
    line-height: normal;
}

.Mobile .hero_h1,
.Mobile .hero_p {
    color: #fff;
}

.Mobile .s4_grid {
    padding: 10px 0;
}

.Desktop li._nav-item {
  position: relative;
}

.Desktop li._nav-item:before {
    content: '';
    background: #000;
    width: 50%;
    height: 1px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .4s;
}

.Desktop li._nav-item:hover:before {
    opacity: 1;
}

.Desktop .s4Box:nth-child(2) .s4Txt,
.Desktop .s4Box:nth-child(3) .s4Txt,
.Desktop .s4Box:nth-child(4) .s4Txt {
    padding: 0 50px;
}

.menu_scroll {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transform: scaleY(0);
    transform-origin: top;
    z-index: 99999;
    padding: 12px 0;
    background: #fff;
    box-shadow: 0 0 5px #aaa;
    transition: all 0.5s;
}

.menu_scroll.scrolled {
    transform: scaleY(1);
}

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

._menuScroll_right {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

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

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

._ms_h {
    color: #535353;
}

._ms_txt a {
    color: #000;
    font-weight: 600;
    font-size: 18px;
}

._ms_btn a {
    font-size: 1.2em;
    font-weight: 500;
    overflow: hidden;
    padding: 15px 40px;
    position: relative;
    transition: all .3s;
    z-index: 1;
    background: #085f94;
    border-radius: 40px;
    display: flex;
    text-align: center;
    color: #fff;
}

.heroForm_h1 {
  text-align: center;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  text-shadow: 0 0 5px #fff;
}

.Mobile ._hero_form {
    padding: 30px 10px;
}