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

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

.txt0 p {
    font-size: 18px;
}

.megaMenu {
    display: none;
}

.Tablet header,
.Mobile header {
  position: fixed;
  width: 100%;
  background: #0d1b2a;
  z-index: 9999;
}

.navTop_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

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

body:not(.Desktop) ._logo a img {
  width: 170px;
  height: 60px;
  display: block;
  object-fit: contain;
}

ul.col.nav-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.Tablet ul.col.nav-list,
.Mobile ul.col.nav-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 20px;
}

li.nav-item {
    text-align: center;
    font-size: 14px;
    padding: 5px;
    border-bottom: 1px dashed transparent;
}

.Desktop li.nav-item {
    width: 146px;
}

li.nav-item.active,
.Desktop li.nav-item:hover {
    border-bottom: 1px dashed #fff;
}

li.nav-item > a {
    color: #fff;
}

.Tablet .navTop_right,
.Mobile .navTop_right {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  background: #0d1b2a;
  z-index: 9;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

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

#menu-button {
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  outline: none;
}

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

.Tablet ._mobTel {
  position: absolute;
  top: 100px;
  width: 100%;
  /*background: #fff;*/
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

._mobTel a {
  padding: 5px 20px;
  background: #d14104;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
}

._hero {
    height: 755px;
    width: 100%;
}

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

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

._slider_img {
    width: 100%;
    height: 900px;
}

.Tablet ._hero,
.Tablet .backgroud,
.Tablet ._slider_img {
    height: 600px;
}

.Mobile ._hero,
.Mobile .backgroud,
.Mobile ._slider_img {
    height: 600px;
}

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

._hero_content {
    position: absolute;
    top: 46%;;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
    width: 100%;
}

.Tablet ._hero_content,
.Mobile ._hero_content {
    top: 60%;
}

.societeNom {
    color: #fff;
    letter-spacing: 0.03em;
    font-weight: 600;
    text-transform: uppercase;
}

._hero_content .h1 {
    margin: 0;
    font-size: 65px;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 22px;
}

.Tablet ._hero_content .h1 {
    font-size: 40px;
}

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

._hero_content .h1 > div {
    background: #d14104;
    color: #fff;
    padding: 0px 12px;
    border-radius: 20px;
    width: fit-content;
    margin: auto;
}

._hero_content .txt {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.04em;
    text-align: center;
}

.Mobile ._hero_content .txt {
    font-size: 17px;
    line-height: 22px;
    width: 100%;
}

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

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

._btn a {
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 18px;
    background: #fff;
    color: #000;
    font-weight: 600;
    transition: all 0.4s;
    text-transform: capitalize;
}

.Mobile ._hero_content ._btn a {
    justify-content: center;
    width: 90%;
}

._btn a:last-child {
    background: #d14104;
}

._btn a div {
    color: #000;
}

._btn a svg {
    width: 15px;
    height: 15px;
}

._btn a:last-child div {
    color: #fff;
    transition: all 0.4s;
}

._btn a:last-child svg {
    fill: #fff;
    transition: all 0.4s;
}

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

._btn a:hover div {
    color: #fff;
}

._btn a:hover svg {
  fill: #fff;
}

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

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

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

.sectionNom svg {
    width: 20px;
    height: 20px;
    fill: #d14104;
}

.sectionNom ._nom {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.02em;
}

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

.Tablet .s1_content {
  grid-template-columns: repeat(1, 1fr);
  gap: 35px;
}

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

section ._btn {
    margin-top: 30px;
}

.s1_right img {
    width: 100%;
    height: 450px;
    background: #ddd;
    display: block;
    object-fit: cover;
    border-radius: 30px;
}

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

.section_1 ._btn a {
    background: #0D1B2A !important;
}

.section_1 ._btn a:hover {
    background: #222 !important;
    color: #fff !important;
}

section.section_2,
section.section_7 {
    background: #eee;
}

.s2Top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.Mobile .s2Top {
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.s2Top_h1 {
    font-size: 45px;
    width: 60%;
    font-weight: 600;
    line-height: 1;
    color: #0d1b2a;
}

.Tablet .s2Top_h1 {
  font-size: 31px;
  width: 100%;
}

.Mobile .s2Top_h1 {
    font-size: 25px;
    width: 100%;
}

.section_2 ._btn {
    margin: 0;
}

.Tablet .section_2 ._btn {
  width: max-content;
}

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

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

.s2Box {
    border: 1px solid #DDDDDD;
    background: #f8f8f8;
    padding: 40px;
    border-radius: 20px;
    display: flex !important;
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
    margin: 0 10px;
    transition: all 0.4s;
}

.Mobile .s2Box {
    margin: 0;
    padding: 40px 10px;
    width: 100%;
    gap: 20px;
}

.s2Box:hover {
    background: #0d1b2a;
}

.s2Icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 1px solid #ddd;
}

.Mobile .s2Icon {
    justify-content: center;
    margin: auto;
    width: 80px;
    height: 80px;
}

.s2Icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.Mobile .s2Icon img {
    width: 40px;
    height: 40px;
}

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

.Mobile .s2Link {
    width: 100%;
}

.s2Link a {
    font-size: 24px;
    line-height: 25px;
    font-weight: 600;
    width: 100%;
    display: block;
    height: 50px;
    color: #0d1b2a;
    transition: all 0.4s;
}

.Tablet .s2Link a {
  height: 30px;
  font-size: 21px;
}

.Mobile .s2Link a {
    font-size: 17px;
    text-align: center;
    line-height: 20px;
    height: 100%;
}

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

.s2Img {
  width: 100%;
}

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

section.section_3 {
    background: #0d1b2a;
}

.s3_content {
  display: grid;
  grid-template-columns: 25% 50% 25%;
}

body:not(.Desktop) .s3_content {
    grid-template-columns: 100%;
}

.s3Titre {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    color: #fff;
}

.Mobile .s3Titre {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 25px;
}

.s3_p {
    text-align: center;
    font-size: 17px;
    line-height: 24px;
    color: #fff;
}

.s3_img {
    position: relative;
    width: 250px;
    margin: auto;
}

.s3Img {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 50px;
  width: 250px;
  height: 400px;
}

body:not(.Desktop) .s3Img {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 30px;
  width: 250px;
  height: 250px;
}

.s3Img img {
    width: 250px;
    height: 400px;
    object-fit: cover;
    display: block;
    margin: auto;
    background: #ddd;
}

.s3Center_img {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}

.Tablet .s3Center_img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.Mobile .s3Center_img {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.s3Span {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: #fff;
    color: #000;
    padding: 25px 0 10px;
    border-radius: 50px 50px 10px 10px;
    text-align: center;
    font-size: 19px;
    font-weight: 600;
}

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

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

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

.s4Grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
}

.Mobile .s4Grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.s4Box:first-child {
    padding-right: 30px;
}

.s4Box:last-child {
    padding-left: 30px;
    border-left: 1px solid #d14104;
}

.Mobile .s4Box {
    padding: 0 !important;
    border: none !important;
}

.s4Icon {
    width: 60px;
    height: 60px;
    background: #d14104;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

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

.s4Grid_h1 {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    margin: 20px 0 10px;
}

.s4Grid_p {
    font-size: 18px;
    line-height: 26px;
}

.s4_right {
    position: relative;
}

.Desktop .s4_right {
    min-width: 500px;
    display: block;
}

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

.s4Img_1 img {
    width: 450px;
    height: 600px;
    display: block;
    background: #ddd;
    object-fit: cover;
    float: left;
    border-radius: 30px;
}

.Tablet .s4Img_1 img {
  width: 90%;
  height: 400px;
}

.Mobile .s4Img_1 img {
    width: 100%;
    height: 400px;
}

.s4_xp {
    position: absolute;
    bottom: -50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #0d1b2a;
    width: fit-content;
    z-index: 5;
    justify-content: center;
    border-radius: 30px;
}

.Tablet .s4_xp,
.Tablet .s4Img_2 {
    bottom: -20px;
}

.Mobile .s4_xp {
    bottom: -5px;
    right: 0;
}

.s4Xp_nbr {
    font-size: 60px;
    font-weight: 600;
    color: #d14104;
}

.s4Xp_p {
    color: #fff;
    font-weight: 600;
    font-size: 25px;
    line-height: 28px;
}

.s4Img_2 {
    position: absolute;
    right: 0;
    bottom: -50px;
    padding: 10px;
    background: #fff;
    border-radius: 30px;
}

.s4Img_2 img {
    background: #888;
    width: 300px;
    height: 450px;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.Tablet .s4Img_2 img {
  width: 300px;
  height: 300px;
}

section.section_5,
section.section_6 {
    background: #f3f3f347;
}

section.section_5::before {
    content: '';
    background: #0d1b2a;
    width: 100%;
    height: 75%;
    position: absolute;
    z-index: 0;
    top: 0;
}

body:not(.Desktop) section.section_5::before {
    height: 100%;
}

.s5_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: end;
    position: relative;
    z-index: 2;
}

.Tablet .s5_content {
  grid-template-columns: 1fr;
  gap: 30px;
}

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

.s5_left ._nom,
.s5Txt h2,
.s5Txt h3,
.s5Txt p {
    color: #fff;
}

.s5Left_img img {
    width: 100%;
    height: 300px;
    background: #ddd;
    display: block;
    margin-top: 50px;
    border-radius: 30px;
    object-fit: cover;
}

.s5_right img {
    width: 100%;
    height: 700px;
    background: #ddd;
    display: block;
    object-fit: cover;
    border-radius: 30px;
}

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

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

body:not(.Desktop) .s6_content {
  grid-template-columns: 1fr;
}

.Mobile .s6_content {
    gap: 30px;
}

.s6Left_h1 {
    font-size: 40px;
    font-weight: 600;
    color: #0d1b2a;
}

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

.s6Left_p {
    font-size: 18px;
    margin: 10px 0 30px;
}

.s6_rappel {
    background: #e6e8e9;
    padding: 30px 20px;
    border-radius: 30px;
}

.s6rappel_h1 {
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    color: #0d1b2a;
}

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

form#rappel_immediat {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}

.input_form {
    width: 100%;
    padding: 13px 20px;
    font-size: 18px;
    border: 1px solid #0d1b2a;
    border-radius: 50px;
}

.btn_devis_gratuit {
    border: none;
    background: #0d1b2a;
    width: 100%;
    padding: 12px 0;
    border-radius: 50px;
    font-size: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    transition: all 0.4s;
}

.btn_devis_gratuit:hover {
    background: #d14104;
}

.s6_right h2 {
    padding: 20px;
    background: #0d1b2a;
    color: #fff;
    border-radius: 30px;
    margin-bottom: 7px;
}

.s6_f3 {
    padding: 30px 20px;
    border-radius: 30px;
    background: #f3f3f3;
}

section.section_8 {
    background: #0d1b2a;
}

.s8_top {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
}

.s8_top .sectionNom {
    margin: 0;
}

.s8_top .sectionNom ._nom {
    color: #fff;
}

.s8Top_h1 {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
    margin: 20px 0 5px;
}

.Mobile .s8Top_h1 {
    font-size: 22px;
    text-align: center;
    line-height: 28px;
}

.s8Top_p {
    font-size: 19px;
    color: #fff;
    font-weight: 100;
}

.Mobile .s8Top_p {
    font-size: 17px;
}

/*.s8Grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}*/

.s8Box {
    padding: 30px 20px;
    margin: 0 5px;
    background: #fff;
    border-radius: 30px;
}

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

}

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

.s8Box svg {
    width: 50px;
    height: 50px;
    fill: #d14104;
    margin: 10px 0 20px;
}

.s8_txt {
    font-size: 18px;
    height: 150px;
    overflow-y: scroll;
}

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

.s8User_photo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ddd;
    display: block;
}

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

.s8_google img {
    width: 50px;
    height: 17px;
    object-fit: contain;
    display: block;
}

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

.s8_bottom ._avis_btn ._btn a {
    text-transform: none;
}

.h2.Titre {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.Mobile .h2.Titre {
    font-size: 1.7rem;
}

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

.Tablet .Liens {
    grid-template-columns: repeat(2, 1fr);
}

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

.Liens a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid #aaa;
    padding-bottom: 10px;
}

.Liens a svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
    fill: #d14104;
    transition: all 0.4s;
}

.Liens a:hover svg {
    fill: #0d1b2a;
}

footer {
    position: relative;
}

footer:before {
  content: '';
  background: #0d1b2a;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}

.footer_top {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 100px 0 80px;
}

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

.Mobile .footer_top {
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
  padding: 80px 0 50px;
}

.footerDes {
    color: #fff;
    font-size: 18px;
    margin: 30px 50px 0 0;
}

.footer_h2 {
    color: #d14104;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

.footer_box:last-child .footer_h2:not(:first-child) {
    margin: 20px 0 10px;
}

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

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

.Tablet .footer_box:last-child .footerLink:not(:first-child) {
  grid-template-columns: 1fr;
}

.fLink_a,
.fLink_a a {
    color: #fff;
    font-size: 18px;
}

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

.Mobile .fLink_a.footerTel {
    gap: 5px;
}

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

.footer_rs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    position: relative;
}

.Mobile .footer_rs {
    gap: 5px;
}

.footer_rs a {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.footer_rs a:hover {
    background: #fff;
}

.footer_rs a img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

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

footer a:hover {
    text-decoration: underline;
}

.copyright {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    padding: 30px 0;
    font-size: 18px;
    border-top: 1px solid #fff;
}

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

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

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

.Tablet .contactContent {
  grid-template-columns: 1fr;
  gap: 50px;
}

.Mobile .contactContent {
  grid-template-columns: 1fr;
  gap: 30px;
}

.contact_left {
    height: fit-content;
    background: #0d1b2a;
    padding: 50px 20px;
    border-radius: 30px;
}

.Mobile .contact_left {
    padding: 50px 10px;
}

.contact_left .sectionNom ._nom {
    color: #fff;
}

.contact_h1 {
    color: #fff;
    font-size: 60px;
    line-height: 60px;
    font-weight: 600;
}

.Mobile .contact_h1 {
    font-size: 40px;
    text-align: center;
    line-height: normal;
}

form#FormDevis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

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

.formDiv {
    display: grid;
    gap: 5px;
}

.formDiv:nth-child(6) {
    grid-column: 1 / 3;
}

.Mobile .formDiv:nth-child(6) {
    grid-column: 1;
}

.formDiv label {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-left: 10px;
    letter-spacing: 0.03em;
    line-height: 28px;
}

.formDiv .form-input {
    width: 100%;
    font-size: 18px;
    padding: 15px 25px 15px 25px;
    border-radius: 20px;
    border: none;
    color: #0F0F0F;
    letter-spacing: 0.01em;
}

.formDiv textarea.form-input {
    max-width: 100%;
    min-height: 200px;
    max-height: 200px;
    padding: 20px;
}

input.btn.btn-submit {
    border-radius: 25px 25px 25px 25px;
    padding: 15px 30px 15px 30px;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 600;
    background: #d14104;
    color: #fff;
}

.contact_right div#Map {
    width: 100%;
    height: 340px;
    margin-bottom: 50px;
    border-radius: 20px;
}

.contactBox {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #d14104;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
}

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

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

.contactBox_img svg {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

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

.contactBox_h1 {
    color: #fff;
    font-size: 23px;
    font-weight: 600;
}

.contactBox_link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    line-height: 23px;
}

.contactBox_link a {
    color: #fff;
    font-size: 19px;
}

._hero.herocontact {
    height: 450px;
}

._hero.herocontact .backgroud {
    height: 600px;
}

._hero.herocontact ._slider_img {
    height: 600px;
}

._hero.herocontact ._hero_content {
    top: 40%;
}

.Tablet ._hero.herocontact ._hero_content,
.Mobile ._hero.herocontact ._hero_content {
  top: 70%;
}

.Tablet ._hero.herocontact .backgroud,
.Tablet ._hero.herocontact ._slider_img {
  height: 450px;
}

.Mobile ._hero.herocontact .backgroud,
.Mobile ._hero.herocontact ._slider_img {
  height: 450px;
}

.Tablet #realisations .col-md-3.col-sm-6.col-xs-12 {
  flex: 0 0 33%;
  max-width: 33%;
}

body.Desktop.realisations ._hero.herocontact,
body.Desktop.mentions ._hero.herocontact {
    margin-bottom: 50px;
}

body:not(.Desktop).realisations ._hero.herocontact,
body:not(.Desktop).mentions ._hero.herocontact {
    margin-bottom: 20px;
}

#avis_form {
    margin-top: 15px;
}

#MonAvis,
#avis_form {
  padding: 0 2%;
}
#MonAvis span {
  font-size: 18px;
  color: #333;
  display: block;
}
.item-tem .avis {
  display:inline-block;
  vertical-align: top;
}

#avis_form label {
  display: block;
  margin-bottom: 8px
}

#avis_form .input-form {
  margin: 0 0 15px 0;
  width: 100%
}
section#temoignages {
    position: relative;
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
    text-align: center;
}
section#temoignages > div > b {
  position: relative;
    font-size: 40px;
    color: #fff;
}
section#temoignages a {
    background: #b70d24;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 19px;
    margin: 25px 0;
    display: inline-block;
    position: relative;
}
section#temoignages p {
    color: #fff;
    font-size: 17px;
}
section#temoignages span {
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
}
section#temoignages::before {
    content: "";
    background: #000000ad;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
.logo-partenaire {
    padding: 50px 0;
}

/*******/
.col-tem {
    width: 50%;
}

.Mobile .col-tem,
.Tablet .col-tem {
    width: 90%;
    margin: 10px auto;
}

input#mail {
    display: none;
}
/*.col-tem input {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 15px;
    height: 50px;
    font-size: 14px;
    letter-spacing: 2px;
}*/
.col-tem input:last-child {
    background: #d14113;
    color: #fff;
    width: 50%;
    display: inline-block;
    margin: auto;
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.03em;
    font-weight: 600;
}
.col-tem textarea {
    width: 100%;
    height: 100px;
}
div#MonAvis span {
    color: #fff;
    margin: 10px auto;
    text-transform: uppercase;
}
section.temoin {
    padding: 50px 0;
}
section.temoin h1, h2 {
    font-weight: bold;
    font-size: 25px;
}
.intro-layer.ribbon-1 span {
    display: block;
    color: #fff;
    font-size: 40px;
    text-shadow: 1px 3px #666666;
}
.titre-span > span {
    display: block;
}
.titre-span span:first-child {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
}
.\34 04 .sect4 {
    display: none;
}


.col-tem:last-child {
    height: fit-content;
    background: #0d1b2a;
    padding: 50px 20px;
    border-radius: 30px;
}

.Mobile .col-tem:last-child {
    padding: 40px 10px;
}

.col-tem input,
.col-tem textarea {
    width: 100%;
    font-size: 18px;
    padding: 15px 25px 15px 25px;
    border-radius: 20px;
    border: none;
    color: #0F0F0F;
    letter-spacing: 0.01em;
    margin: 5px 0 10px;
}

.col-tem label {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-left: 10px;
    letter-spacing: 0.03em;
    line-height: 28px;
}

h2.Titrecontenu {
    color: #fff;
}