 *,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
  width: device-width;
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
    margin: 0;
    font-family: 'Calibri', sans-serif;
    text-align: left;
    background-color: #fff;
    line-height: 1.5;
    color: #000;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6, .h3, .h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
    text-decoration: none;
    outline: 0;
    color: inherit;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

h1,h2,h3,h4,h5 {
    font-weight: bold;
    color: #212121;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  line-height: 1.4;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}
b,
strong {
  font-weight: bolder;
}
figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}


button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover, .btn:focus {
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
  background-image: none;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}
.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

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

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

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

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

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, 
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.homeslider .slider {

}
.Mobile .homeslider .slider {
	box-shadow: none;
    padding: 0;
}
.homeslider .slider-track {
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}

a {
    background: transparent;
    -webkit-transition: .5s;
    transition: .5s;
    color: #777
    text-decoration: none;
}
a:hover {
    color: #222;
}
a:hover, a:active, a a:focus {
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
    color: #000;
}
h1 {
    font-size: 27px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

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

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

p {
  font-size: 18px;
}

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

input,
button,
textarea {
    outline: none;
}

ul {
  list-style: none;
}

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

.container {
  padding: 0 12px;
}

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

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

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

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

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

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

.navScroll_top {
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: -1;
    opacity: 0;
    box-shadow: 0 0 5px #aaa;
    transition: all .5s;
}

.navScroll_top.showTop {
    z-index: 99;
    opacity: 1;
}

.navScroll_bott {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0;
    transition: all .5s
}

.navScroll_bott.showBot {
    z-index: 99;
    opacity: 1;
}

.navScroll_bott .ns_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

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

.ns_btn a {
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    padding: 10px 30px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    color: #fff;
    background-color: #443835;
    display: flex;
    align-items: center;
    gap: 7px;
    border-radius: 40px;
    transition: all .4s;
}

.ns_btn a:hover {
      background: #000;
}

.nT_left ._logo {
    margin-right: 30px;
}

.nT_left ._logo img {
    width: 175px;
    height: 111px;
    object-fit: contain;
}

.Mobile .nT_left ._logo img {
    width: 145px;
    height: 90px;
    object-fit: contain;
}

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

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

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

.Tablet .nT_left,
.Mobile .nT_left {
    justify-content: space-between;
    width: 100%;
}

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

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

.nT_link img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    display: block;
}

.nT_link a {
    font-size: 17px;
    color: #000;
    font-weight: 600;
}

.nT_link a:hover {
    color: #443835;
}

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

.nT_right a {
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    padding: 18px 30px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    color: #fff;
    background-color: #443835;
    display: flex;
    align-items: center;
    gap: 7px;
}

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

.nT_right a:hover img {
      transform: rotate(45deg);
}

.nT_leftTop {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 5px;
}

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

._menuLink {
    padding: 10px 0;
}

ul.nav-submenu {
    position: absolute;
    width: 300px;
    background: #fff;
    z-index: 22;
    padding: 20px;
    display: grid;
    gap: 5px;
    text-align: left;
    display: none;
}

.Tablet ul.nav-submenu,
.Mobile ul.nav-submenu {
    position: static;
    text-align: center;
    background: #443835;
    margin: auto;
}

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

span.nav-click img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.Mobile li.nav-submenu-item a,
.Tablet li.nav-submenu-item a {
    color: #fff;
}

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

.Mobile ul.nav-list,
.Tablet ul.nav-list {
    position: fixed;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    left: 0;
    top: 100px;
    background: #fff;
    display: none;
    max-height: 450px;
    overflow: scroll;
}

li.nav-item {
    text-align: center;
    padding: 5px;
    line-height: 1.2;
    position: relative;
}

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

.Desktop li.nav-item:hover > a,
li.nav-item.active > a,
.Desktop li.nav-submenu-item:hover > a,
li.nav-submenu-item.active > a {
    color: #443835;
}

.Tablet li.nav-submenu-item.active > a,
.Mobile li.nav-submenu-item.active > a  {
    color: #fff;
}

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

li.nav-item a {
    font-size: 14px;
    color: #000;
}

._hero {
    position: relative;
    width: 100%;
    height: 800px;
    background: rgba(0, 0, 0, 0.8);
    margin-top: 20px;
}

._bg {
    width: 100%;
    height: 800px;
    position: relative;
}

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

.Mobile ._hero {
    height: 550px;
}

.Mobile ._bg {
    width: 100%;
    height: 550px;
}
._hero_cc {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.Mobile ._hero_cc {
  top: 60%;
}

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

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

.Desktop ._hero_right {
    padding: 60px 40px;
    background: #fff;
}

._hRight_h1 {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

input#mail {
    display: none;
}

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

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

.form-input {
    height: 55px;
    line-height: 55px;
    padding: 0 30px 0 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #797979;
    color: #091216;
}

.form-input:focus {
    border-color: #443835;
}

textarea.form-input {
    grid-column: 1 / 3;
    max-width: 100%;
    max-height: 120px;
}

.Mobile textarea.form-input {
    grid-column: 1;
}

input.btn.btn-submit {
    background: #443835;
    padding: 13px 0;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 0.03em;
    border-radius: inherit;
    transition: all .4s;
}

input.btn.btn-submit:hover {
    background: #000;
}

._hero_nom {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.03em;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 23px;
    padding: 0 43px;
    position: relative;
}

._hero_nom::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 33px;
    height: 5px;
    transform: translateY(-50%);
    background: linear-gradient(to right, #fff 5px, transparent 5px), linear-gradient(to right, #fff 100%);
    background-repeat: no-repeat;
    background-size: 33px 5px, 33px 1px;
    background-position: 0 0, 0 51.5%;
}

._hero_nom::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 33px;
    height: 5px;
    transform: translateY(-50%);
    background: linear-gradient(to left, #fff 0 5px, transparent 5px), linear-gradient(to left, #fff 0 100%);
    background-repeat: no-repeat;
    background-size: 33px 5px, 33px 1px;
    background-position: 0 0, 0 51.5%;
}

._hero_h1 {
    font-weight: 700;
    font-size: 55px;
    text-transform: uppercase;
    line-height: 1.12;
    margin-bottom: 12px;
    color: #fff;
}

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

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

.Mobile ._btn {
    flex-direction: column;
    margin-top: 20px;
    width: 100%;
}

._btn a {
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    padding: 18px 30px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    color: #fff;
    background-color: #443835;
    display: flex;
    align-items: center;
    gap: 7px;
}

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

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

._btn a:hover img {
    transform: rotate(45deg);
}

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

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

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

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

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

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

.Tablet .s1_left img,
.Mobile .s1_left img {
    width: 100%;
    height: 300px;
}

.s_nom {
    text-transform: uppercase;
    color: #443835;
    letter-spacing: 0.03em;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 23px;
    padding: 0 43px;
    position: relative;
}

.s_nom::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 33px;
    height: 5px;
    transform: translateY(-50%);
    background: linear-gradient(to right, #443835 5px, transparent 5px), linear-gradient(to right, #443835 100%);
    background-repeat: no-repeat;
    background-size: 33px 5px, 33px 1px;
    background-position: 0 0, 0 51.5%;
}

.s_nom::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 33px;
    height: 5px;
    transform: translateY(-50%);
    background: linear-gradient(to left, #443835 0 5px, transparent 5px), linear-gradient(to left, #443835 0 100%);
    background-repeat: no-repeat;
    background-size: 33px 5px, 33px 1px;
    background-position: 0 0, 0 51.5%;
}

.s1_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 40px;
}

.s1_h2 {
    font-size: 70px;
    line-height: 1;
    font-weight: 600;
}

.s1_box {
    text-align: center;
}

.s1_box:last-child {
    border-left: 1px solid #aaa;
}

.s2_h1 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 50px;
    width: 50%;
    line-height: 1;
}

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

.s2_bottom {
    display: flex;
    overflow: hidden;
}

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

.s2_box {
    height: 300px;
    margin: 0 10px;
    position: relative;
}

.Tablet .s2_box,
.Desktop .s2_box {
    width: calc(100% - 20px) !important;
}

.Mobile .s2_box {
    height: 200px;
    width: 100%;
    margin: 0;
    position: relative;
}


.s2_box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(23, 36, 38, 0) 0%, #172426 100%);
    transition: all .4s;
}

.s2_box:hover::before {
      background: linear-gradient(180deg, rgba(139, 32, 27, 0) 0%, #443835 100%);
}

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

.s2_ancre a {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center;
    margin-bottom: 17px;
    color: #fff;
    width: 100%;
}

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

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

.s3_right {
    position: relative;
}

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

.s3_right::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    background: #443835;
    top: -10px;
    left: -10px;
    z-index: -1;
}

.s3_right::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    background: #443835;
    bottom: -10px;
    right: -10px;
    z-index: -1;
}

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

.Tablet .s3_right img,
.Mobile .s3_right img {
    width: 100%;
    height: 300px;
}

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

.s4_box {
    display: grid;
    grid-template-columns: 60% 40%;
}

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

.s4_txt {
    position: relative;
    bottom: -100px;
    padding: 80px 50px 45px 50px;
    background: #fff;
}

.Tablet .s4_txt,
.Mobile .s4_txt {
    bottom: -50px;
}

.Mobile .s4_txt {
    padding: 50px 20px;
}

.s5_top {
    text-align: center;
}

.s5_h1 {
    width: 50%;
    margin: auto;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 40px;
}

.Mobile .s5_h1 {
    width: 100%;
    font-size: 27px;
}

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

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

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

.s5_txt {
    margin-top: 25px;
}

._btn.s5_btn {
    justify-content: center;
    margin-top: 50px;
}

section.section_6 {
    background: #f3f3f3;
}

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

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

.s6_right {
    position: relative;
}

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

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

.Tablet .s6_right > img,
.Mobile .s6_right > img {
    width: 100%;
    height: 300px;
}

.s6_tel {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    left: -10px;
    background: #000;
    padding: 20px 40px;
}

.Mobile .s6_tel {
    left: -5px;
}

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

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

.s6_link {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 5px;
}

.s6_link a {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

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

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

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

.s7_h1 {
    font-size: 45px;
    text-transform: uppercase;
    font-weight: 600;
}

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

.s7_h2 {
    font-size: 18px;
}

.s7_grid {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

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

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

.s7_icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #443835;
    border-radius: 50%;
    transition: all .4s;
}

.section_7 .s7_box:hover .s7_icon {
    background: #000;
}

.s7_link,
.s7_link a {
    font-size: 18px;
    color: #000;
    line-height: 1.15;
}

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

.s7_right {
    position: relative;
}

.s7_right::before {
    content: '';
    background: #443835;
    width: 20%;
    height: 80%;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
}

.Mobile .s7_right::before {
    transform: translate(-50%, 0);
    top: -10px;
    left: 50%;
    width: 80%;
    height: 20%;
}

.s7_right form#FormDevis {
    padding: 80px 40px;
    border: 1px solid #aaa;
    background: #fff;
}

.Mobile .s7_right form#FormDevis {
    padding: 50px 20px;
}

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

.Tablet footer,
.Mobile footer {
    padding: 50px 0 0;
    position: relative;
    z-index: 4;
}

.footer_list {
    display: grid;
    grid-template-columns: 30% 65%;
    gap: 5%;
}

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

._footer_tel .s7_icon {
    width: 40px;
    height: 40px;
    border-radius: 0;
    transition: all .4s;
}

._footer_tel .s7_box:hover .s7_icon {
    background: #fff;
}

._footer_tel .s7_box:hover .s7_icon img {
    filter: invert(1);
}

.footer_h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
}

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

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

.footer_link a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 0;
    font-size: 17px;
    margin: 5px 0;
    color: #fff;
}

.footer_link a img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all .4s;
}

.footer_link a:hover img {
    filter: none;
}

._footer_tel .s7_link,
._footer_tel .s7_link a {
    color: #fff;
}

.Mobile .f_rappel_right {
    width: 100%;
}

._footer_rappel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    padding: 31px 78px;
    background-color: transparent;
    border: 1px solid #313537;
}

.Mobile ._footer_rappel,
.Tablet ._footer_rappel {
  padding: 40px 20px;
  flex-direction: column;
  gap: 30px;
}

.f_rappel_h1 {
    color: #fff;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
}

.Mobile .f_rappel_h1 {
    font-size: 21px;
    text-align: center;
}

form#rappel_immediat {
    position: relative;
}

input.input-form {
    height: 69px;
    padding: 0 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 500px;
}

.Mobile input.input-form {
    width: 100%;
}

form#rappel_immediat button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    outline: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
}

form#rappel_immediat button:hover {
    background: #443835;
}

form#rappel_immediat button img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    transition: all .4s;
}

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

.copyright {
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 17px;
}

.Mobile .copyright {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 15px;
}

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

.copy_2 a {
    font-size: 17px;
    color: #fff;
}

.Tablet .footer_box:nth-child(2),
.Mobile .footer_box:nth-child(2) {
    margin-bottom: 30px;
}

.GoogleBagde {
    z-index: 0 !important;
}

.footer_box ._logo {
    width: fit-content;
    background: #fff;
}