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

.Mobile h1 {
    font-size: 24px;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

h3 {
    font-size: 20px;
    margin: 10px 0;
}

p {
  font-size: 18px;
}

a,
input[type="submit"],
input[type='submit'],
button {
    cursor: pointer;
}

input,
button,
textarea {
    outline: none;
}

ul {
  list-style: none;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.container {
  padding: 0 12px;
}

a.swipebox img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}
b.titre-album {
    width: 100%;
    font-size: 36px;
    color: #000;
    font-weight: bold;
    display: block;
    margin: 15px;
    text-align: center;
    text-transform: uppercase;
}

.mentions h2 {
    padding: 20px;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}
.mentions ol {
    max-width: 100%;
    width: 80%;
    margin: auto;
    padding: 0 0 30px;
}
body.Mobile.mentions ol {
    width: 100%; 
    padding:0 20px 20px;
}

.blog_pageIntrouvable {
    background: #fff;
    position: fixed;
    height: 100%;
    width: 100%;
    font-size: 18px;
    z-index: 10000 !important;
    text-align: center;
    top: 0;
  left: 0;
}
.blog_pageIntrouvable .d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}
.blog_pageIntrouvable span {
  color: #000;
}

.blog_pageIntrouvable > div {
  height: 100%;
  color: #333
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: #000000;
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #000000;
}
.blog_pageIntrouvable a {
    color: #333
}
.blog_pageIntrouvable a:hover {
    text-decoration: underline;
}
#noDesktop { display: none; }
@media(max-width: 767px) {
  .blog_pageIntrouvable {
    font-size: 14px;
  }
  .blog_pageIntrouvable a {
      display: block;
  }
  .blog_pageIntrouvable p {
      font-size: 17px;
      letter-spacing: 5px;
      margin-top: -10px;
  }
  .blog_pageIntrouvable h1 {
    font-size: 100px;
  }
}

div#Messages {
    text-align: center;
    background-color: #d14104;
    padding: 10px;
    width: 100%;
    z-index: 999999;
    position: fixed;
    top: 0;
    left: 0;
}

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

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

._megaMenu {
     display: none; 
    position: absolute;
    width: 350px;
    top: 47px;
    background: #fff;
    padding: 20px;
        z-index: 22;
}

ul._nav-submenu li {
    padding: 5px 0;
}

ul._nav-submenu li a:hover {
    text-decoration: underline;
}

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

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

.navTel_h1 {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.03em;
}

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

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

.navTel_link a {
    font-size: 17px;
    color: #000;
}

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

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

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

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

.Mobile .navContent ._logo a img {
    width: 100px;
    height: 72px;
    object-fit: contain;
}

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

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

.Tablet .navList {
    position: fixed;
    width: 100%;
    background: #fff;
    left: 0;
    top: 155px;
    padding: 15px 0;
    display: none;
}

.Mobile .navList {
    position: fixed;
    width: 100%;
    background: #fff;
    left: 0;
    top: 89px;
    padding: 15px 0;
    display: none;
}

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

li._nav-item {
    text-align: center;
    position: relative;
}

.Desktop li._nav-item:hover ._megaMenu {
    display: block;
}

li._nav-item a {
    color: #000;
    transition: all .3s;
    font-size: 15px;
}

li._nav-item.active > a,
li._nav-item:hover > a {
    color: #a50001;
}

nav.nav {
    background: #ddd;
}

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

.mobTel {
    padding: 5px 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mobTel a {
    font-size: 17px;
    color: #fff;
    background: #a50001;
    padding: 5px 20px;
    border-radius: 5px;
}

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

.background {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 700px;
}

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

.Mobile .hero,
.Mobile .background,
.Mobile ._bg {
    height: 500px;
}

._hero_text {
    height: 100%;
    width: 100%;
    background-color: transparent;
    background-image: radial-gradient(at top right, #2F5D8C73 30%, #2D394C 90%);
    opacity: 1;
}

._hero_text > .container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero_content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.Mobile .hero_content {
    top: 65%;
    width: 90%;
    margin: auto;
}

.hero_nom {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.Mobile .hero_nom {
    font-size: 14px;
}

.hero_h1 {
    font-size: 60px;
    font-weight: 500;
    text-transform: none;
    line-height: 1;
    letter-spacing: -2px;
    color: #fff;
    margin: 10px 0 30px 0;
}

.Tablet .hero_h1 {
    font-size: 45px;
}

.Mobile .hero_h1 {
  font-size: 30px;
  letter-spacing: 0;
}

.Desktop.ville .hero_h1::first-line {
    font-size: 70px;
    font-weight: 600;
}

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

.Mobile ._btn {
    flex-direction: column;
    width: 100%;
}

._btn a {
    background: #a50001;
    letter-spacing: 1px;
    color: #fff;
    padding: 14px 30px;
    transition: all .4s;
    font-size: 18px;
    border-radius: 10px;
}

.Mobile .hero_content ._btn a {
    width: 100%;
    text-align: center;
}

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

.hero_grid {
    position: absolute;
    bottom: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 70%;
    align-items: start;
}

.Mobile .hero_grid {
    width: 100%;
    grid-template-columns: 100%;
    position: static;
    border: 1px dashed #a50001;
}

.Tablet .hero_grid {
  bottom: 10px;
  width: 100%;
}

.heroGrid_box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    background: #fff;
    height: 150px;
}

.Tablet .heroGrid_box {
  gap: 5px;
}

.heroGrid_box:nth-child(2) {
    border-width: 0 1px 0 1px;
    border-style: dashed;
    border-color: #a50001;
}

.Mobile .heroGrid_box:nth-child(2) {
    border-width: 1px 0 1px 0;
}

.heroGrid_left img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: brightness(0);
}

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

.Tablet .herp_h3 {
  font-size: 17px;
}

.herp_h4 {
    font-size: 16px;
    color: #535353;
}

.Tablet .herp_h4 {
  font-size: 15px;
  line-height: 1.3;
}

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

body:not(.Desktop) section {
    padding: 50px 0;
}

.Mobile section.section_1 {
    padding: 0 0 50px !important;
}

.s1Content {
    display: grid;
    grid-template-columns: 35% 60%;
    justify-content: space-between;
}

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

.s1Left {
    height: fit-content;
    background: #e79d9d url(../images/img/sms.webp) no-repeat right bottom;
    border: 1px solid #dddddd;
  padding: 70px 30px 40px;
  border-radius: 10px;
}

.Mobile .s1Left {
    padding: 50px 20px 40px;
}

form#FormDevis {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 10px;
}

.s1_h1 {
    font-size: 26px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    margin-bottom: 16px;
    width: 100%;
}

.s1_h1:before {
    background-color: #a50001;
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 1px;
    width: 55%;
}

.Mobile .s1_h1:before {
    width: 45%;
}

.s1_p {
    margin-bottom: 30px;
}

.form-input {
    background-color: #FFFFFF;
    border: 1px solid #a50001;
    display: block;
    padding: 10px 15px;
    width: 100%;
}

input.btn.btn-submit {
    background-color: #a50001;
    color: #ffffff;
    padding: 10px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section.section_2 {
    padding: 0 0 100px 0;
}

.s2Top {
    text-align: center;
    margin-bottom: 40px;
}

.s2H1 {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 2.5rem;
}

.s2_p {
    font-size: 22px;
    width: 50%;
    margin: auto;
    line-height: 1.2;
}

.Mobile .s2_p {
    font-size: 19px;
    width: 100%;
}

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

.Tablet .s2_grid {
  gap: 10px;
}

.Mobile .s2_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.s2Box {
    padding: 60px 30px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.Tablet .s2Box {
  padding: 40px 20px;
}

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

.s2Box:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    background-size: 101% 101%;
    background-color: transparent;
    background-image: radial-gradient(at bottom left, #2D394C 0%, #a50001 100%);
    transform: scaleY(0);
    transform-origin: 0 0 0;
    opacity: 0;
}

.s2Box:hover:before {
    opacity: 1;
    transform: scaleY(1);
}

.s2Icon {
    position: relative;
}

.s2Icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    transition: all .4s;
}

.Tablet .s2Icon img {
  width: 80px;
  height: 80px;
}

.Tablet .s2Icon img {
  width: 50px;
  height: 50px;
}

.s2Box:hover .s2Icon img {
    filter: brightness(0) invert(1);
}

.s2Ancre {
    position: relative;
}

.s2Ancre a {
    color: #000;
    font-weight: 600;
    font-size: 18px;
    transition: all .4s;
}

.Tablet .s2Ancre a {
  text-align: center;
  display: block;
  line-height: 1.5;
  font-size: 16px;
}

.Mobile .s2Ancre a {
    font-weight: 800;
    font-size: 15px;
    line-height: 1.3;
    display: block;
    text-align: center;
}

.s2Box:hover .s2Ancre a {
  color: #fff;
}

.s2Plus {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 2px;
    position: relative;
    width: fit-content;
    border-bottom: 1px solid #000;
    transition: all .4s;
}

.s2Box:hover .s2Plus {
    color: #fff;
}


.s2Plus img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    transition: all .4s;
}

.s2Box:hover .s2Plus img {
    filter: brightness(0) invert(1);
}

section.section_3 {
    background-color: transparent;
    background-image: radial-gradient(at top right, #000 20%, #000 100%);
}

.s3_img {
    position: absolute;
    width: 50%;
    right: 0;
    height: 90%;
    top: 0;
}

.Mobile .s3_img {
    position: static;
    width: 90%;
    height: 250px;
    margin: auto;
}

.Tablet .s3_img {
  width: 45%;
}

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

.s3_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    position: relative;
    gap: 50px;
}

.Mobile .s3_content {
    grid-template-columns: 100%;
    margin-top: 20px;
}

.s3exp {
    text-align: center;
    width: fit-content;
    line-height: 1;
    padding: 10px 30px;
    background: #fff;
    position: relative;
    bottom: -50px;
}

.Mobile .s3exp {
    bottom: 0;
    margin: auto;
    width: 100%;
}

.Tablet .s3exp {
    bottom: -15px;
}

.s2xp_top {
    color: #000;
    font-size: 50px;
    font-weight: 600;
}

.s2xp_bottom {
    font-size: 26px;
}

.s3_txt {
    color: #fff;
    margin: 20px 0;
}

.s3_txt h2,
.s3_txt h3 {
    color: #fff;
}

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

body:not(.Desktop) .s4_content {
  flex-direction: column;
  width: 100%;
}

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

.s4_left img {
    width: 500px;
    height: 550px;
    object-fit: cover;
    display: block;
    background: #ddd;
}

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

.s4_right {
    background: #fff;
    position: relative;
    z-index: 2;
    margin-left: -100px;
    padding: 50px 90px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

.Tablet .s4_right {
    padding: 40px 20px;
    margin: 30px 0 0;
}

.Mobile .s4_right {
    padding: 30px 20px;
    margin: 20px 0 0;
}

.section_5 {
    background-color: #e79d9d;

}

.s5Top .hero_nom {
    color: #000;
    letter-spacing: normal;
    font-size: 25px;
    text-transform: none;
    font-weight: 600;
}

.s5Top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

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

.s5Top:before {
    content: '';
    position: absolute;
    width: 60%;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    background: #a50001;
    left: 265px;
}

.Mobile .s5Top:before {
    width: 100%;
    top: 41%;
    left: 0;
}

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

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

.Tablet .s5_bottom {
    gap: 10px;
}

.s5_box {
    background: #fff;
    border-bottom: 3px solid #a50001;
}

.s5_img {
    width: 100%;
    height: 250px;
}

.Tablet .s5_img,
.Mobile .s5_img {
    height: 200px;
}

.s5_txt {
    padding: 40px 20px;
}

.s6_content {
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    width: 100%;
}

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

.Tablet .s6_content {
    gap: 10px;
}

.s6Box {
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid #a50001;
}

body:not(.Desktop) .s6Box {
    padding: 40px 20px;
}

.rappel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: end;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
}


._rappel_icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #a50001;
    border-radius: 50%;
    animation: pulse-animation 2s infinite;
    cursor: pointer;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(168, 63, 57, 0.4);
    }
    5% {
        transform: scale(1.01);
    }
    15% {
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 50px rgba(168, 63, 57, 0);
    }
    100% {
        box-shadow: 0 0 0 100px rgba(168, 63, 57, 0);
    }
}

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

._rappel_img img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0);
}

input#mail2 {
  display: none;
}

._rappel_form {
    padding: 0 0 10px;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
    display: none;
}

.rForm_h1 {
    width: 100%;
    background: #a50001;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 19px;
}

.rForm_box {
    padding: 20px;
    width: 100%;
}

form#rappel_immediat {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
}

form#rappel_immediat input {
    width: 100%;
}

footer {
    padding: 80px 0 30px;
    background: #e79d9d;
    border-top: 2px solid #a50001;
}

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

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

.footerBox:first-child {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    border: 1px solid #FFFFFF4A;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
    padding: 2em;
    border-radius: 10px;
}

.Mobile .footerBox:first-child {
    padding: 30px 20px;
}

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

.footer_link a {
    color: #000;
}

.footerTitle {
    font-size: 23px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer_link a.arrow,
.footer_link .adr,
.footer_link a.telLink,
.footer_link a.mail {
    position: relative;
    padding-left: 35px;
}

.footer_link a.arrow:before,
.footer_link .adr:before,
.footer_link a.telLink:before,
.footer_link a.mail:before {
    content: '';
    width: 20px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0);
}

.footer_link a.arrow:before {
    background-image: url(../images/img/footer_img.png);
}

.footer_link .adr:before {
    background-image: url(../images/img/footer_adr.png);  
}

.footer_link a.telLink:before {
    background-image: url(../images/img/footer_tel.png);
}

.footer_link a.mail:before {
    background-image: url(../images/img/footer_mail.png);
}

.footer_p a {
    color: #000;
}

.footer_c {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 20px;
}

.footer_c a {
    background: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0 20px 0;
}

.Mobile .copyright {
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid #a50001;
    margin-top: 30px;
}

.copyright a {
  font-weight: 600;
  color: #000;
}

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

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

div#Map {
    width: 100%;
    height: 400px;
    margin-top: 30px;
}

.Mobile div#Map {
    height: 300px;
}

.footer_map {
  position: relative;
  z-index: 0;
}

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

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

.s10_left {
    background-color: transparent;
    background-image: radial-gradient(at top right, #a5000182 0%, #a50001 100%);
    padding: 50px 30px;
}

.Mobile .s10_left {
    padding: 30px 20px;
}

.s10_box {
    padding: 20px;
    background: #fff;
    margin-bottom: 30px;
}

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

.s10_title {
    color: #fff;
    font-size: 30px;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
    font-weight: 600;
}

.Mobile .s10_title {
  font-size: 23px;
}

.s10_content a.arrow,
.s10_content .adr,
.s10_content a.telLink,
.s10_content a.mail {
    position: relative;
    padding-left: 35px;
    color: #000;
    display: block;
    margin: 10px;
}

.s10_content a.arrow:before,
.s10_content .adr:before,
.s10_content a.telLink:before,
.s10_content a.mail:before {
    content: '';
    width: 20px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.s10_content a.arrow:before {
    background-image: url(../images/img/footer_img.png);
}

.s10_content .adr:before {
    background-image: url(../images/img/footer_adr.png);  
}

.s10_content a.telLink:before {
    background-image: url(../images/img/footer_tel.png);
}

.s10_content a.mail:before {
    background-image: url(../images/img/footer_mail.png);
}

.s10_content div#Map {
    width: 100%;
    height: 300px;
    margin-top: 30px;
}

.s10_content .footer_c {
    justify-content: start;
}

.s10_right {
    background: #fff;
    padding: 50px 20px;
}

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

.s10_right form#FormDevis {
  gap: 16px;
}

.s10_right .form-input {
    background-color: #FFFFFF;
    border: 1px solid #a50001;
    display: block;
    padding: 16.5px 14px;
    width: 100%;
    font-size: 1.1em;
}

.s10_right textarea.form-input {
    height: 200px;
    max-height: 200px;
    min-height: 200px;
}

textarea.form-input {
    height: 70px;
    max-height: 100px;
    min-height: 70px;
}

span.nav-click {
    position: absolute;
    right: 5px;
    top: 0;
    width: 30px;
    height: 30px;
    background: #a50001;
    display: flex;
    align-items: center;
    justify-content: center;
}

span.nav-click img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: invert(1);
}

.Mobile ._megaMenu,
.Tablet ._megaMenu {
    position: static;
    width: 100%;
    background: #ddd;
    padding: 20px;
}

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

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

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

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

section.section_mp4 {
    padding-bottom: 0;
}

.Mobile section.section_mp4 {
    padding-top: 0 !important;
}

.videoBlock {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid #a50001;
}

.videoBlock video {
    width: 100%;
}

section._x {
    padding-top: 0;
}

.liste_ville_Lettre {
    background-color: #eeeeee;
    background-attachment: fixed;
    padding: 60px 0;
    position: relative;
}

.Desktop ._grid {
    column-count: 4;
}

.Tablet ._grid {
    column-count: 3;
}

.Mobile ._grid {
    column-count: 1;
}

.item.itemLettre {
    background: rgb(255 255 255 / 88%);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.contenGrid b {
  display: block;
  background: #a50001;
  text-align: center;
  color: #fff;
  padding: 7px 15px;
  font-size: 24px;
  font-weight: normal;
}

.contenGrid > ul {
  margin: 0;
  padding: 20px;
  list-style: none;
}

.contenGrid > ul li {
  border-bottom: 1px dashed #ddd;
  padding-bottom: 7px;
  margin-bottom: 7px;
}

.contenGrid > ul li a {
  display: flex;
  color: #000;
  transition: all .3s ease;
}

.contenGrid i.icon {
  position: relative;
  padding: 12px;
}

.contenGrid > ul li a .icon {
  font-size: 14px;
  margin-right: 6px;
  color: #fff;
}

.icon-location::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain !important;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/img/locali.png);
}

.contenGrid > ul li span {
    color: #888;
}