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

header {
    position: absolute;
    width: 100%;
    z-index: 99;
}

.Mobile header,
.Tablet header {
  position: fixed;
  z-index: 9999;
  background: #fff;
  box-shadow: 0px 11px 34px 0px rgba(51.99999999999999, 98.99999999999989, 188, 0.1);
}

.navTop {
    padding: 20px 0;
}

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

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

.Mobile .navTop_content {
    justify-content: center;
}

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

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

.text_mail {
    color: #fff;
}

.Tablet .text_mail {
    color: #000;
}

.navTop_mail svg {
    width: 15px;
    height: 15px;
    fill: #fff;
    object-fit: contain;
}

.Tablet .navTop_mail svg {
    fill: #000;
}

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

.res_content a {
    display: flex;
    align-items: center;
}

.res_content a svg {
  width: 18px;
  height: 18px;
  object-fit: cover;
  fill: #fff;
}

.Tablet .res_content a svg {
    fill: #000;
}

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

.Tablet ._navTop_tel {
  flex-direction: column;
  gap: 10px;
}

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

.text_tel {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.Mobile .text_tel,
.Tablet .text_tel {
    color: #000;
}

._navTop_tel a svg {
    width: 15px;
    height: 15px;
    object-fit: contain;
    fill: #fff;
}

.Mobile ._navTop_tel a svg,
.Tablet ._navTop_tel a svg {
    fill: #000;
}

._menu_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 11px 34px 0px rgba(51.99999999999999, 98.99999999999989, 188, 0.1);
    padding: 10px 20px;
    background: #fff;
}

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

.burgerMenu svg {
    width: 40px;
    height: 40px;
}

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

.Tablet ul.nav-list {
  position: fixed;
  flex-direction: column;
  top: 195px;
  left: 0;
  background: #940303;
  width: 100%;
  padding: 10px;
  display: none;
}

.Mobile ul.nav-list {
  position: fixed;
  flex-direction: column;
  top: 140px;
  left: 0;
  background: #940303;
  width: 100%;
  padding: 10px;
  display: none;
}

li.nav-item {
    position: relative;
}

.Mobile li.nav-item {
    margin: 10px 0;
}

li.nav-item > a {
    color: #000;
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 0.03em;
}

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

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

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

ul.nav-submenu a {
    color: #000;
    text-transform: uppercase;
}

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

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

.Mobile .nav-item.active,
.Tablet .nav-item.active {
  background: #fff;
  width: 100%;
  text-align: center;
  padding: 10px;
}

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

._devis_btn a {
    padding: 15px 25px;
    background: #940303;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    transition: all .4s;
}

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

._bg_slider {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 900px;
    overflow: hidden;
}

._bg_slider::before {
    content: '';
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

._hero {
    height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
}

._background,
._bg {
    width: 100%;
    height: 900px;
}

.Tablet ._bg_slider,
.Tablet ._hero,
.Tablet ._background,
.Tablet ._bg {
    height: 700px;
}

.Mobile ._bg_slider,
.Mobile ._hero,
.Mobile ._background,
.Mobile ._bg {
    height: 600px;
}

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

.Mobile ._hero_content {
    margin-top: 130px;
}

.Tablet ._hero_content {
  margin-top: 150px;
}

._1_img img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.Mobile ._1_img img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.Tablet ._1_img img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

._hero_h1 {
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 50px;
    margin: 20px 0;
    color: #fff;
}

.Mobile ._hero_h1 {
    font-size: 24px;
    margin: 10px 0;
    line-height: 1;
}

.Tablet ._hero_h1 {
  font-size: 40px;
  margin: 10px 0;
  line-height: 40px;
}

._hero_p {
    font-size: 35px;
    width: 80%;
    text-align: center;
    line-height: 1.2;
    margin: 10px 0 40px;
    color: #fff;
}

.Mobile ._hero_p {
    width: 100%;
    font-size: 18px;
    margin: 10px 0 20px;
}

.Tablet ._hero_p {
  font-size: 25px;
}

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

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

._btn a {
    padding: 15px 50px;
    background: #940303;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    transition: all .4s;
}

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

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

section {
    padding: 100px 0;
}

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

.s1_content {
    display: grid;
    align-items: center;
    gap: 100px;
    grid-template-columns: 35% auto;
}

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

.s1_left {
    position: relative;
}

.Mobile ._form_line {
    display: none;
}

._form_line_top {
    position: absolute;
}

._form_line_top div:nth-child(1) {
    position: absolute;
    width: 150px;
    height: 2px;
    background: #000;
    display: block;
    top: 0;
    left: -20px;
}

._form_line_top div:nth-child(2) {
    position: absolute;
    width: 150px;
    height: 2px;
    background: #000;
    display: block;
    top: 15px;
    left: -40px;
}

._form_line_top div:nth-child(3) {
    position: absolute;
    width: 2px;
    height: 150px;
    background: #000;
    display: block;
    top: -40px;
    left: 15px;
}

._form_line_top div:nth-child(4) {
    position: absolute;
    width: 2px;
    height: 150px;
    background: #000;
    display: block;
    top: -20px;
    left: 0;
}

._form_line_bottom {
    position: absolute;
    bottom: 0;
    right: 0;
}

._form_line_bottom div:nth-child(1) {
    position: absolute;
    width: 150px;
    height: 2px;
    background: #000;
    display: block;
    bottom: 0;
    right: -20px;
}

._form_line_bottom div:nth-child(2) {
    position: absolute;
    width: 150px;
    height: 2px;
    background: #000;
    display: block;
    bottom: 15px;
    right: -40px;
}

._form_line_bottom div:nth-child(3) {
    position: absolute;
    width: 2px;
    height: 150px;
    background: #000;
    display: block;
    bottom: -40px;
    right: 15px;
}

._form_line_bottom div:nth-child(4) {
    position: absolute;
    width: 2px;
    height: 150px;
    background: #000;
    display: block;
    bottom: -20px;
    right: 0;
}

.s1_form {
    padding: 50px 40px;
}

.Mobile .s1_form {
    padding: 0;
}

.form_h1 {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 600;
}

form#FormDevis {
    display: grid;
    gap: 10px;
}

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

form#FormDevis input.btn.btn-submit {
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #940303;
}

._nom {
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
    width: fit-content;
}

._nom::before {
    content: '';
    width: 30%;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
}

._nom::after {
    content: '';
    width: 50%;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: 6px;
    left: 0;
}

.s1_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 25px 0 50px;
}

.Mobile .s1_grid {
    grid-template-columns: 100%;
}

.s1_box:nth-child(1) {
    border-right: 1px solid #888;
}

.Mobile .s1_box:nth-child(1) {
    border-bottom: 1px solid #888;
    border-right: 0;
}

.s1_box {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    line-height: 1.2;
    font-size: 17px;
    padding: 20px 40px;
}

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

.section_btn {
    margin-top: 20px;
}

.section_btn a {
    padding: 15px 50px;
    background: #940303;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    transition: all .4s;
}

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

.s2_content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.Tablet .s2_content,
.Mobile .s2_content {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
}

.s2_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 5px;
}

.s2_img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

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

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

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

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

.Tablet .s3_right img,
.Mobile .s3_right img {
    height: 250px;
}

.s3_left .section_btn {
    margin-top: 50px;
}

.s4_content {
    position: relative;
}

.s4_content::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    background: #000;
}

.Mobile .s4_content::before {
    display: none;
}

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

.Mobile .s4_box {
    grid-template-columns: 100%;
    margin: 20px 0 50px;
    position: relative;
}

.Tablet .s4_box {
  gap: 0;
  grid-template-columns: 43% auto 43%;
}

.s4_left {
    background: #940303;
    border-radius: 5px;
    overflow: hidden;
}

.s4_center {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #940303;
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
}

.Mobile .s4_center {
    position: absolute;
    top: -30px;
    left: -5px;
}

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

.s4_box._left {
    text-align: left;
}

.s4_box ._right {
    text-align: right;
}

.Mobile .s4_right {
    position: absolute;
    top: -20px;
    right: 0;
    padding: 10px;
    background: #000;
    border-radius: 50px;
}

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

.s4_txt {
    padding: 40px 20px;
}

.s4_txt .p {
    margin-bottom: 40px;
    color: #fff;
}

.s4_txt a {
    padding: 15px 50px;
    background: #fff;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    transition: all .4s;
}

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

.s4_h3 {
    font-size: 20px;
    letter-spacing: 0.03em;
    font-weight: 600;
}

.Mobile .s4_h3 {
    color: #fff;
    font-size: 16px;
}

._avis_ .slick-next,
._avis_ .slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 70px;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: 0;
    background: 0 0;
}
._avis_ .slick-next:focus,
._avis_ .slick-next:hover,
._avis_ .slick-prev:focus,
._avis_ .slick-prev:hover {
    color: transparent;
    outline: 0;
    background: 0 0;
}
._avis_ .slick-next:focus:before,
._avis_ .slick-next:hover:before,
._avis_ .slick-prev:focus:before,
._avis_ .slick-prev:hover:before {
    opacity: 1;
}
._avis_ .slick-next.slick-disabled:before,
._avis_ .slick-prev.slick-disabled:before {
    opacity: 0.25;
}
._avis_ .slick-next:before,
._avis_ .slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: 0.75;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
._avis_ .slick-prev {
    left: -25px;
}
[dir="rtl"] .slick-prev {
    right: -25px;
    left: auto;
}
._avis_ .slick-prev:before {
    content: "←";
}
[dir="rtl"] ._avis_ .slick-prev:before {
    content: "→";
}
._avis_ .slick-next {
    right: -25px;
}
[dir="rtl"] ._avis_ .slick-next {
    right: auto;
    left: -25px;
}
._avis_ .slick-next:before {
    content: "→";
}
[dir="rtl"] ._avis_ .slick-next:before {
    content: "←";
}
._avis_ .slick-dotted.slick-slider {
    margin-bottom: 30px;
}
._avis_ .slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
._avis_ .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
._avis_ .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    background: 0 0;
}
._avis_ .slick-dots li button:focus,
._avis_ .slick-dots li button:hover {
    outline: 0;
}
._avis_ .slick-dots li button:focus:before,
._avis_ .slick-dots li button:hover:before {
    opacity: 1;
}
._avis_ .slick-dots li button:before {
    font-family: slick;
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "•";
    text-align: center;
    opacity: 0.25;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
._avis_ .slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: #000;
}
/*# sourceMappingURL=slick-theme.min.css.map */

._avis_ {
    background: #940303;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}



.star {
    color: #ffd700;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

/* Personnalisation des flèches Slick */
.slick-prev,
.slick-next {
    width: 50px !important;
    height: 50px !important;
    z-index: 10;
    opacity: 1;
}

.slick-prev {
    left: 10px !important;
}

.slick-next {
    right: 10px !important;
}

.slick-prev:before,
.slick-next:before {
    font-size: 30px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

._avis_ button{
    position: relative;
}


._avis_ button svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.Desktop .testimonials-slider,
.Tablet .testimonials-slider {
    display: flex;
    overflow: hidden;
}

.avis_box {
    background: #fff;
    margin: 0 5px;
    padding: 20px;
}
.Desktop .avis_box,
.Tablet .avis_box {
    width: 95% !important;
}
.Mobile .avis_box {
    margin: 10px 0;
}

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

.Mobile .avis_top {
  align-items: start;
}

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

.Mobile .avis_top_left {
    flex-direction: column;
    align-items: start;
    gap: 0;
}

.avis_top_left p {
  margin: 0;
  font-size: 16px;
}

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

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

.sta {
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avis_txt {
    height: 200px;
    overflow-y: scroll;
    font-size: 16px;
    line-height: 25px;
}

.Mobile .avis_txt {
    height: 100px;
    font-size: 14px;
    line-height: 20px;
}

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

.Mobile .section-title .h2 {
    font-size: 22px;
}

.Mobile .section-title p,
.Mobile .video_p {
    font-size: 15px;
    line-height: 20px;
}

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

._avis_ button {
  position: relative;
  width: 50px;
  height: 50px;
  background: #ffffff8f;
  outline: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.rev_tel {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.Mobile .rev_tel {
    justify-content: center;
    margin: auto;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title .h2 {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 300;
    text-align: center !important;
}
.rev_tel {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.teltop a {
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 18px;
  margin: 0 3px;
  transition: all .3s ease;
  position: relative;
}
.teltop a:hover {
    background: #888;
}
.Desktop .teltop a:before {
    content: '';
    width: 25px;
    height: 25px;
    position: absolute;
    left: 15px;
    display: block;
    background-image: url(../images/img/icon_tel.png);
    top: 50%;
    transform: translateY(-50%);
}
.Desktop .teltop a {
  padding: 10px 20px 10px 50px;
}

._avis_btn {
    display: block;
    margin: 30px auto 0;
    text-align: center;
}
._avis_btn a {
    font-size: 18px;
    color: #000;
    padding: 10px 30px;
    background: #fff;
    border-radius: 20px;
    transition: all .4s;
}

._avis_btn a:hover {
    background: #888;
}

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

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

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

.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;
    gap: 0 20px;
}

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

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

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;
    padding: 10px;
}

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

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

._footer_tel .s7_icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #940303;
    border-radius: 3px;
    transition: all .4s;
}

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

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

._rea > img {
    width: 100%;
    height: 165px;
    background: #ddd;
    object-fit: cover;
}

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

.s5_box {
    padding: 50px;
    border: 1px solid #888;
    border-radius: 10px;
}

.s5_box .section_btn {
    margin-top: 40px;
}

.mapContent iframe {
    width: 100%;
    margin: 50px 0;
}

.s7_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    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_link, .s7_link a {
    font-size: 18px;
    color: #000;
    line-height: 1.15;
}

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

.Mobile section.section_4 {
    padding: 0 !important;
}