@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans.woff2') format('woff2'),
        url('../fonts/OpenSans.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-DemiBold.woff2') format('woff2'),
        url('../fonts/Oswald-DemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

*,
*::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: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  text-align: left;
  background-color: #fff;
}

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

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;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
b,
strong {
  font-weight: bolder;
}
figure {
  margin: 0 0 1rem;
}

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

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

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
    line-height: 24px;
}

h1,h2,h3,h4,h5, .h2, .h3 {
	font-family: 'Oswald', sans-serif;
    font-weight: 500;
}
h2, .h2 {
    font-size: 20px;
    color: #000000;
}

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



 
 

i.icon {
    position: relative;
}

.icon-envelope:before {
  content: "";
  background-image: url(../images/icon/icon-mail.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-phone:before {
  content: "";
  background-image: url(../images/icon/icon-fixe-bl-mob.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icon-mobile:before {
  content: "";
  background-image: url(../images/icon/icon-portable-bl-mob.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.header-container {
    background: #000000;
    color: white;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    padding: 10px 0;
}
.Mobile .header-top {
  height: inherit;
}
.Mobile .header .logo img {
  width: 280px;
}
.Mobile .tel-block {
    text-align: center;
    background: #ff2e2f;
    padding: 10px 0;
}
.tel-block a {
    color: inherit;
    margin-right: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    letter-spacing: -1px;
}
.Mobile .tel-block a {
  font-size: 20px;
  color: #121e24;
}
.tel-block a:hover {
	text-decoration: none;
}
.tel-block a .icon {
    display: inline-block;
    margin-right: 5px;
    width: 40px;
    height: 40px;
    background: #ff2e2f;
    text-align: center;
    line-height: 40px;
    border-radius: 100%;
    color: #000000;
    color: #ffffff;
}
.Mobile .tel-block a .icon {
    color: #121e24;
    height: 15px;
}
.Mobile .header-top .devisGratuit {
    background: #232222;
    color: white;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    display: block;
    padding: 15px 6px;
    font-size: 16px;
    text-align: center;
}
.rappel-block strong {
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
}
#mail, #mail2 { display: none; }
#rappel_immediat .form-input {
    font-size: 12px;
    background: white;
    border: 1px solid transparent;
    padding: 5px 10px;
    display: inline-block;
    vertical-align: middle;
    width: 155px;
}
#rappel_immediat .btn-submit {
    background: #121e24;
    font-size: 12px;
    color: white;
    padding: 5px 15px;
    border-radius: 0;
    margin-left: 1px;
    display: block;
    vertical-align: middle;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 5px;
}

.logo-header {
    background: #f5f5f5;
    display: block;
    width: 280px;
    height: 150px;
    margin-top: 74px;
    position: relative;
    border: 2px solid #000000;
    border-top: 0;
    border-radius: 0 0 25px 25px;
    margin-right: 5px;
    z-index: 35;
}
.Mobile .logo-header {
    border-radius: 15px;
    border: none;
    margin-top: 0;
    padding: 9px 6px 10px;
    width: 104px;
    height: inherit;
    margin-right: 5px;
}
.logo-header img {
    width: 223px;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    display: block;
    margin: 2px auto 0;
}

/* 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;
    margin-left: auto;
    margin-right: auto;
}
.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;
}

/*
Nav
*/
/*
Header
*/
@media (min-width: 1200px) {
  .nav > .container {
      max-width: 1400px;
  }
}
.header .flex-block {
  justify-content: space-between;
  align-items: center;
}
.telTop {
    display: flex;
}
.telTop > div {
    margin-left: 15px;
    font-size: 26px;
}
.telTop span {
    display: block;
    font-weight: bold;
    padding: 7px 0;
    color: #FF5D28;
}
.rappel-top {
    position: relative;
    padding-left: 80px;
}
.Mobile .rappel-top {
    padding: 20px;
    text-align: center;
    background: black;
    margin-bottom: 2rem;
}
.rappel-top::before {
  background-image: url(../images/img/call.webp);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 100%;
  border: 1px solid #ff5d28;
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
}
.Mobile .rappel-top::before {
    position: static;
    display: block;
    transform: none;
    margin: auto;
}
.rappel-top strong {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    color: #000000;
    display: block;
}
.Mobile .rappel-top strong {
  color: white;
}
#rappel_immediat .form-group {
    display: flex;
}
.Mobile #rappel_immediat .form-group {
    justify-content: center;
}
#rappel_immediat .form-input {
    font-size: 12px;
    font-weight: bold;
    min-width: 200px;
    flex: 0 0 200px;
}
.Mobile #rappel_immediat .form-input {
    min-width: 100%;
    flex: 0 0 100%;
    background: #ebebeb;
    border-radius: 5px;
    margin-bottom: 6px;
}
.btn.btn-submit {
    background: #121e24;
    border: 1px solid transparent;
    color: white;
    font-size: 12px;
    padding: 7px 15px;
    border-radius: 3px;
    letter-spacing: 1px;
    font-weight: bold;
    margin-left: 2px;
}
.Mobile .btn.btn-submit {
    width: 100%;
}
.Mobile #rappel_immediat .btn-submit {
    background: #ff5e29;
    color: black;
}

/*
Nav
*/
.top_adresse {
    margin-right: 3rem;
    display: flex;
    align-items: center;
    color: #FF5D28;
    font-weight: 600;
}
.top_adresse img {
    margin-right: 15px;
}
.bar {
  display: block;
  height: 5px;
  width: 50px;
  background-color: #ff5d28;
  margin: 10px auto;
}

.button {
  cursor: pointer;
  display: inline-block;
  width: auto;
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}
.Tablet .button,
.Desktop .button {
  margin-left: 3rem;
}

.middle {
  margin: 0 auto;
}

.bar {
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}

.nav-right .active .bar {
  background-color: #121e24;
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}

.button.active .top {
  -webkit-transform: translateY(15px) rotateZ(45deg);
  -moz-transform: translateY(15px) rotateZ(45deg);
  -ms-transform: translateY(15px) rotateZ(45deg);
  -o-transform: translateY(15px) rotateZ(45deg);
  transform: translateY(15px) rotateZ(45deg);
}

.button.active .bottom {
  -webkit-transform: translateY(-15px) rotateZ(-45deg);
  -moz-transform: translateY(-15px) rotateZ(-45deg);
  -ms-transform: translateY(-15px) rotateZ(-45deg);
  -o-transform: translateY(-15px) rotateZ(-45deg);
  transform: translateY(-15px) rotateZ(-45deg);
}

.button.active .middle {
  width: 0;
}
.Tablet .header,
.Mobile .header {
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
#sticky-wrapper,
.header {
    z-index: 1009 !important;
    position: relative;
}
.header {
    background: white;
}
.nav {
    background: #121e24;
}
.Tablet .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}
.header .container .d-flex {
    align-items: center;
    justify-content: space-between;
}

.is-sticky .nav .container .d-flex { 
  justify-content: space-between;
  transition: all .3s ease;
  align-items: center;
}
.nav .telTop { 
  display: none; 
  transition: all .3s ease;
}
.is-sticky .nav .telTop { display: flex; }
.is-sticky .nav .telTop > div {
    font-size: 16px;
    margin-left: 5px;
}
.is-sticky .nav .telTop span {
    padding: 0;
}
.is-sticky .nav .telTop img {
    filter: invert(1);
}
.navMenu {
  background: #000000;
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 1001;
}
.navMenu.open-menu {
    display: block;
}
.nav-list {
    padding-left: 0;
    list-style: none;
    margin: 0 auto;
}
.Desktop .nav-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.nav-item {
    display: block;
    position: relative;
    padding: 20px 7px;
}
.nav-item > a {
    color: white;
    display: block;
    line-height: 130%;
    font-size: 14px;
    letter-spacing: 1px;
}
.nav-item.active > a {
    border-left: 15px solid #ff5e29;
    padding-left: 1rem;
    color: #ff6330;
}
.nav-item:hover > a {
    color: #ff6330;
}
.nav-submenu {
    width: 250px;
  display: none;
  position: absolute;
  list-style: none;
  padding-left: 0;
  background: white;
  z-index: 2;
}
.nav-item:hover .nav-submenu {
  display: block;
}
.nav-submenu-item {
    text-align: left;
    padding: 0 10px;
}
.nav-submenu-item > a {
    display: block;
    padding: 9px 0;
    font-size: 14px;
    line-height: 130%;
    border-bottom: 1px dashed #c0c0c0;
    color: #121e24;
}
.nav-submenu-item:last-child > a {
    border-bottom: none;
}
.nav-submenu-item:hover > a,
.nav-submenu-item.active > a {
    color: #ff5d28;
}
.nav-mobile {
  display: none;
  cursor: pointer;
  background: #121e24 url(../images/nav.svg) no-repeat center center;
  background-size: 18px;
  height: 50px;
  width: 50px;
}
.Tablet .nav-mobile {
  margin-left: 5rem;
}
.nav-click {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  border-left: 1px solid #ffffff;
  height: 56px;
  width: 50px;
  cursor: pointer;
  z-index: 100;
}

.nav-click i {
  display: block;
  height: 48px;
  width: 48px;
  background: url(../images/drop.svg) no-repeat center center;
  background-size: 20px;
}

.nav-rotate {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*------------------------------------*\
    Media Queries
\*------------------------------------*/
@media only screen and (max-width: 991px) {
  .nav-list {
    background: #121e24;
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
  }
  .nav-list.open-menu {
    display: block;
  }

  .nav-item {
    padding: 0;
    display: block;
  }

  .nav-item > a {
    padding: 5px;
    text-align: left;
    letter-spacing: 0;
  }

  .nav-click {
    display: block;
  }

  .nav-mobile-open {
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
  }

  .nav-item:hover .nav-submenu {
    display: none;
  }

  .nav-submenu {
    position: static;
    width: 100%;
  }
}
.Mobile-tel {
    background: #000000;
    text-align: center;
}
.Tablet .Mobile-tel {
  display: flex;
  justify-content: center;
}
.Mobile-tel a {
    color: white;
    display: inline-block;
    padding: 11px 0;
    margin: 0 15px;
}
.Mobile-tel img {
    filter: invert(1);
}

/*
Homeslider
*/
.homeslider {
    position: relative;
}
.Mobile .homeslider {
    padding-top: 9rem;
}
.imgSlide {
    background-color: #121e24;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 900px;
    position: relative;
}
@media(min-width: 1800px) {
  .imgSlide {
    height: 900px;
  }
  .pos_30 {
    background-position: center 35%;
  }
  .pos_5 {
    background-position: center 5%;
  }
}
.Mobile .imgSlide {
    height: 400px;
}
#PageInterne .imgSlide {
    height: 500px;
}
.imgFull::before {
    content: "";
    background: rgb(0 0 0 / 15%);
    position: absolute;
    opacity: .4;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.imgFull .slick-arrow {
    cursor: pointer;
    background: white;
    width: 60px;
    height: 60px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease;
    opacity: .5;
    border: 0;
    text-indent: -9999px;
}
.imgFull .slick-arrow::after {
    content: "";
    background-image: url(../images/img/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    width: 30px;
    height: 30px;
}
.imgFull .slick-arrow:hover {
    opacity: 1;
}
.imgFull .slick-arrow:focus {
    outline: 0;
    box-shadow: none;
}
.imgFull .slick-prev {
    left: 5%;
    transform: translateX(-50%);
}
.imgFull .slick-next {
    right: 5%;
    transform: translateX(-50%);
}
.imgFull .slick-prev::after {
    transform: rotate(-180deg);
    margin-right: 7px;
}
.captionSlide {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.Mobile .captionSlide {
    top: 68%;
}
span.Subtitle {
    color: #ff5d28;
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
    line-height: 130%;
    margin-bottom: .5rem;
}
p.titre_ {
    line-height: 130%;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 0 4px #fff;
    color: #FF5D28;
}
.Mobile p.titre_ {
  text-align: center;
}
.captionSlide a.btn {
    margin-right: 20px;
    border: 1px solid transparent;
    padding: 10px 35px;
    border-radius: 7px;
    font-weight: bold;
    transition: all .3s ease;
}
.captionSlide a.btn-contact {
    background: #ff5d28;
}
.captionSlide a.btn-contact:hover {
  background: black;
    border-color: black;
    color: white;
}
.captionSlide a.btn-devis {
    background: white;
    color: #121e24;
}
.captionSlide a.btn-devis:hover {
    border-color: white;
    color: white;
}
.Mobile .captionSlide a.btn {
    display: block;
    text-align: center;
    margin: 15px 0;
}
.deirs_l {
    margin-bottom: 2rem;
}
.Mobile .deirs_l {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.deirs_l img {
    margin: 5px;
    width: 105px;
    height: 100px;
    object-fit: contain;
}
.Mobile .deirs_l img {
    display: block;
    margin: auto;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.Devis-form .form-control {
    background-color: rgb(0 0 0 / 40%);
    border-color: #ff5e29;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.Devis-form .form-control::-webkit-input-placeholder {
  color: #ffffff;
}

.Devis-form .form-control::-moz-placeholder {
  color: #ffffff;
}

.Devis-form .form-control:-ms-input-placeholder {
  color: #ffffff;
}

.Devis-form .form-control::-ms-input-placeholder {
  color: #ffffff;
}

.Devis-form .form-control::placeholder {
  color: #ffffff;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.Devis-form b {
    font-size: 36px;
    margin-bottom: 1rem;
    display: inline-block;
    border-left: 15px solid #ff5d28;
    padding-left: 1rem 
}
.Tablet .Devis-form b,
.Desktop .Devis-form b {
    color: white;
    text-shadow: 0 0 4px BLACK;
}
.Mobile .Devis-form b {
    margin-bottom: 2rem;
    display: block;
}
.inline-b {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
    margin: 15px 0;
}
#FormDevis .form-control {
    font-size: 14px;
    height: 50px;
    transition: all .3s ease;
}
#FormDevis .form-control:focus,
#FormDevis .form-control:hover {
    border-color: #ff5e29;
    outline: none;
    box-shadow: none;
}
textarea.form-control {
    resize: vertical;
    min-height: 150px;
    max-height: 175px;
    margin-bottom: 15px;
}
.btn.btn-submit {
    background: #ff5e29;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}
/*
Cat
*/
.info-devis {
    /*background: #f7f7f7;*/
    padding: 80px 0;
    position: relative;
}
.Mobile .info-devis {
  padding: 40px 0;
}
.section-cat {
    text-align: center;
}
.titre-item-cat.h2 {
    display: block;
    font-weight: bold;
    font-size: 36px;
    margin-bottom: 1.5rem;
    border-left: 15px solid #ff5d28;
    padding-left: 1rem 
}
.categories {
    list-style: none;
    padding-left: 0;
    margin: 0 -7px;
    display: table;
    width: 100%;
}
.Mobile .categories {
  margin: 0;
}
.cat-item {
    display: inline-block;
    width: 25%;
    vertical-align: top;
    margin: 15px 0;
    padding: 0 7px;
}
.Tablet .cat-item {
    width: 33.33333%
}
.Mobile .cat-item {
  width: 50%;
}
.cat-item a {
    background-color: #ddd;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 1px 4px 7px #d4d4d4;
    display: block;
    width: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all .3s ease;
}
.cat-item a:hover {
    box-shadow: none;
}
@media(max-width: 767px) {
  .cat-item a {
    overflow: hidden;
  }
}
.cat-item span {
    background: white;
    display: flex;
    padding: 15px;
    color: #000;
    line-height: 130%;
    font-size: 12px;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    height: 70px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
.cat-item.active a span {
    color: #ffffff;
    background: #000000;
}
.cat-item img {
	max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.adresse.adressTop {
    background: #ff5d28;
    color:#1b1b1b ;
    padding: 5px 0;
    text-align: right;
    font-weight: bold;
    letter-spacing: 1px;
}
@media(max-width: 767px) {
  .adresse.adressTop {
    font-size: 12px;
    text-align: center;
    letter-spacing: 0;
  }
}

.Mobile .Devisgratuit {
    padding: 20px;
}
.Mobile  .Devisgratuit .form-control {
    margin-bottom: 1rem;
}

/*
Content
*/
.videosBlock {
    text-align: right;
}
.Tablet .videosBlock #video1 {
  width: 100%;
}
.Block {
    display: flex;
    margin: 15px 0;
}
.Mobile .Block {
  display: block;
}
.Block.Block0 {
  display: block;
  background: #000000;
    padding: 60px 0;
    color: white;
}
.Block.Block0 h2 {
  color: #ff5d28;
}

.Block p {
  margin-bottom: 0;
}
.box_certificat {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}
.certificat img {
    width: 100%;
    margin-bottom: 5px;
}

@media(max-width: 767px) {
    .videosBlock {
        text-align: center;
    }
  .certificat img {
    max-width: 100%;
    margin: 15px 0;
  }
}

.Block .bloc-une {
    padding-left: 25px;
}
.Block .bloc-une p {
    text-align: justify;
}
.Mobile .Block .bloc-une {
  padding-left: 0;
}
.Block.Block0 .bloc-une {
    padding-left: 0;
    padding-top: 1rem;
    margin-bottom: 2rem;
}
a.btn.btn-custom {
    background: #ff5d28;
    color: black;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 25px;
    padding: 10px 45px;
    transition: all .3s ease;
}
a.btn.btn-custom:hover {
    background: #ffffff;
    color: black;
}
.Block.Block1,
.Block.Block6 {
    padding: 60px 0;
}
.Block.Block1 .container > .bloc-une {
    border-left: 15px solid #ff5d28;
    padding-left: 1rem;
}
#autreContenu {
    margin-top: 3rem;
}
.Block.Block5 {
    background: #ff5e29;
    padding: 60px 0;
}
.Block.Block5 .bloc-une h2 {
    color: #000000;
}
.Block.Block6 .col-lg-4 {
    margin: 15px 0;
}
.Block.Block6 .col-lg-4 .Block {
  margin: 0;
}
.Tablet .Block.Block6 .col-lg-4 > div,
.Desktop .Block.Block6 .col-lg-4 > div {
    background: white;
    height: 100%;
    padding: 15px;
    box-shadow: 0 0 16px #d8d8d8;
}
.Block.Block6 .bloc-une,
.Block.Block6 .bloc-une p {
    padding-left: 0;
}
.center_text .rond_img {
    width: 100%;
    margin-bottom: 1rem;
}

.Tablet .center_text .rond_img img,
.Mobile .center_text .rond_img img {
    width: 100%;
}
.Desktop .center_text .rond_img {
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.ImgLeft,
.ImgFull {
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
/*.Mobile .ImgLeft img,
.Mobile .ImgFull img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 15px;
}
.Mobile .ImgLeft,
.Mobile .ImgFull {
  background:none !important;
}*/
.Desktop .Block> .ImgFull,
.Desktop .Block> .ImgFull {
    width: 35%;
    flex: 0 0 35%;
}

.Services {
    background: #000000;
    padding: 80px 0;
}
.Titre {
    color: #ff6331;
    text-transform: uppercase;
    display: block;
    font-size: 36px;
    border-left: 15px solid #ff6331;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    padding-left: 1rem;
}
.Mobile .Titre {
    font-size: 20px;
}
.Liens {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
}
.Tablet .Liens {
    grid-template-columns: repeat(3, 1fr);
}
.Mobile .Liens {
    display: block;
}
.Liens a {
    display: block;
    color: #ff6331;
    padding-left: 25px;
    position: relative;
    line-height: 130%;
}
.Mobile .Liens a {
    padding-top: 12px;
    padding-bottom: 12px;
}
.Liens a:hover {
    color: #ff5d28;
    text-decoration: underline;
}
.Liens a::before {
    content: "";
    background-image: url(../images/img/map-orange.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 14px;
    height: 14px;
    top: 5px;
    left: 0;
    position: absolute;
}

.btn.btn-rea {
    background: #ff5d28;
    margin-bottom: 8px;
    color: #1b1b1b;
    display: block;
    text-transform: uppercase;
    margin-top: -30px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.btn.btn-rea:hover {
    background: #ff5d28;
    color: #000;
}
@media(max-width: 767px) {
  .btn.btn-rea {
    margin-top: 25px;
  }
}

/*
Footer
*/
/*
Footer
*/
.footer {
    background: #181818;
    padding: 80px 0;
    color: white;
}
.link_footer .h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 22px;
    margin-bottom: 2rem;
    display: inline-block;
    color: #ff6331;
}
ul.nav-link_footer {
    list-style: none;
    padding-left: 0;
}
ul.nav-link_footer li {
    margin-bottom: 1rem;
}
ul.nav-link_footer li > a {
    display: block;
    transition: all .3s ease;
}
ul.nav-link_footer li:hover > a {
    padding-left: 7px;
}
.coordonnees .flex-info {
    margin: 1.5rem 0;
}
.coordonnees span,
.coordonnees  a {
    color: white;
}
.coordonnees img {
    filter: invert(1);
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.other-Link {
    display: flex;
}
.other-Link a {
    color: #ff6331;
    font-size: 20px;
    text-transform: uppercase;
}
.link_footer #Map {
    height: 250px;
}
.Mobile .link_footer #Map {
    margin-bottom: 1rem;
}
.copyright {
    padding-top: 2rem;
    border-top: 1px solid #353535;
    margin-top: 3rem;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
}
.copyright a {
    font-weight: bold;
    text-decoration: underline;
    color: #ff7f54;
}

/*
Realisations
*/
.titre-album {
  font-family: 'Oswald';
    display: block;
    font-size: 30px;
    margin-bottom: 15px;
}
.swipebox {
    display: flex;
    justify-content: center;
    height: 250px;
    overflow: hidden;
    margin: 15px 0;
}
.swipebox img {
    width: 100%;
    flex: 0 0 100%;
    object-fit: cover;
}
.Mobile .swipebox {
    height: inherit;
}

.Mobile header.header-container {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
}

/**
404
*/
.blog_pageIntrouvable {
    background: white;
    position: fixed;
    height: 100%;
    width: 100%;
    font-size: 18px;
    z-index: 200000 !important;
    text-align: center;
    top: 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: #121e24;
}

.blog_pageIntrouvable > div {
  height: 100%;
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: #ff2a27;
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #000000;
}
.blog_pageIntrouvable a {
    color: #ff2a27;
}
.blog_pageIntrouvable a:hover {
    text-decoration: underline;
}
@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;
  }
  .telMobile a {
    font-size: 18px;
    font-weight: 700;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 10px 0;
    display: inline-block;
    vertical-align: middle;
    margin: 15px 0;
  }
  .telMobile a .icon {
    margin-right: 7px;
  }
  .telMobile em {
    color: white;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
    font-size: 24px;
  }
}
#Messages {
    background: black;
    text-align: center;
    position: relative;
    z-index: 99;
}
#Messages p {
    color: white;
    font-weight: bold;
    margin: 0;
    padding: 25px 0;
}

.ContactezNous {
    padding: 60px 0;
    background: #ebebeb;
}
.ContactezNous b {
    display: block;
    margin-top: 1rem;
    color: black;
    font-size: 18px;
}
.ContactezNous .Devisgratuit {
    margin-top: 1rem;
}
.ContactezNous em {
    margin: 0 15px;
}
.ContactezNous #Map {
    min-height: 300px;
    height: 100%;
}

#mentions {
    padding: 60px 0;
    background: #e9e9e9;
}
#realisations {
    padding: 60px 0;
    background: #ebebeb;
}
.Mobile #swipebox-close {
    width: 30px;
    height: 30px;
    background-position: 5px 2px;
}

.siret,
.text-f {
    font-weight: bold;
    color: #ff6331;
    font-size: 1.5rem;
}
.popupContact .siret {
    margin-left: 8px;
    color: #121e24;
}
.logoExt {
    margin-bottom: 2rem;
} 
.Mobile .logoExt {
    text-align: center;
} 
.logoExt > img,
.logoExt > div img {
    margin: 0 7px;
}
.Desktop .logoExt > div,
.Tablet .logoExt > div {
   margin-top: -1.5rem;
}

.Desktop .flyerBlock {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: -7rem;
    position: relative;
    z-index: 10;
}
.Mobile .flyerBlock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    padding: 15px;
    background: black;
}
.flyerBlock > div {
    transition: all .5s;
    display: block;
}
.Desktop .flyerBlock > div {
    max-width: 250px;
    flex: 0 0 250px;
    margin: 0 15px;
}
.Desktop .flyerBlock > div.logoExt_left {
    flex: 0 0 125px;
    max-width: 125px;
    margin-top: -28px;
}
.Desktop .flyerBlock > div.logoExt_Right {
    flex: 0 0 300px;
    max-width: 300px;
    margin-top: 28px;
}
.buttons {
    cursor: pointer;
    background-color: #121e24;
}
.flyerBlock img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border: 3px solid white;
    transition: all .5s;
}
.Desktop .flyerBlock > div.logoExt img {
    border: 0;
}
.Mobile .flyerBlock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
  background: rgb(45 61 66 / 20%);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  z-index: 9999 !important;
}
.overlay.is-on {
  opacity: 1;
  visibility: visible;
}
.overlay.is-on .content {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.overlay .content {
  background: #fff;
  position: absolute;
  top: -50%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 50%;
  height: 68%;
  padding: 7px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.overlay .content img {
  width: 100%;
}

.close {
  position: absolute;
    right: 20px;
    top: 20px;
    font-size: 25px;
    color: white;
    cursor: pointer;
    z-index: 80;
    font-weight: bold;
}
.tel-block {
    display: flex;
}
.tel-block a {
    display: flex;
    align-items: center;
    gap: 5px;
}

/*
Contact popup
*/
.popupContact {
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    z-index: 9999;
}
.slide_in {
    font-size: 16px;
    background: white;
    z-index: 9999;
    -webkit-box-shadow: 0px 0px 15px #0000005c;
    box-shadow: 0px 0px 15px #0000005c;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
    border: 8px solid #fff;
    width: 400px;
    position: absolute;
    bottom: 5rem;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
}
.slide_in.open-form {
    opacity: 1;
    visibility: visible;
}
.head_slidine {
    position: absolute;
    top: 12px;
    right: 15px;
    color: #fff;
    border: 2px solid;
    padding: 3px 9px;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
}
.titleslide {
    font-size: 28px;
    color: #121e24;
    font-weight: 700;
}
.p_slidein {
    margin-top: 7px;
    color: #121e24;
}
hr.sep_slide {
    width: 25%;
    height: 2px;
    background-color: #ff5d28;
    border: none;
    margin-left: 0px;
}
.infos_site {
    margin-top: 25px;
}
.flex-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}
.content-info em {
    margin: 0 7px;
}
.butcontact_slide {
    padding: 12px 10px 14px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #ff5d28;
    color: white;
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #fff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 30px;
}
.butcontact_slide span {
    display: inline-block;
    margin-left: 7px;
    color: #ff5d28;
}
.flex-info span:first-child {
    max-width: 35px;
    flex: 0 0 35px;
    margin-right: 7px;
    text-align: center;
}
.ContactezNous #FormDevis .form-control {
    margin: 5px 0;
}
.bulle_contact {
    background: #ff5d28;
    position: relative;
    z-index: 10000;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 10px #fff;
    border-radius: 50%;
    padding: 5px;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: _or 1s ease-in-out infinite alternate;
}
@keyframes _or {
    to {
        transform: scale(1.08)
    }
}

.download_pdf {
  text-align: center;
}
.download_pdf > a {
    display: block;
    background: #ff5d28;
    color: black;
}
.showroom_photos  {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   grid-gap: 10px;
}
.Mobile .showroom_photos  {
   display: block;
   margin: 10px 0;
}
.showroom_photos img {
    filter: none;
}
.showroom_photos .swipebox {
    display: block;
    height: auto;
    border: 2px solid;
}

.LogoGD img {
    width: 100%;
    height: 167px;
    object-fit: contain;
    border: none;
}

.logp-pg img {
    width: 200px;
    height: 100%;
    filter: invert(0);
}
.deirs_l img.wienerberger {
    width: 150px;
    height: 50px;
    object-fit: contain;
    background: #fff;
    padding: 5px;
}
.deirs_l img.koramic {
    width: 130px;
    height: 50px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
}
.deirs_l img.velux {
    height: 50px;
    width: 150px;
}

.paged {
    filter: invert(0) !important;
    width: 80px !important;
    height: 80px !important;
    margin-right: 1px;
}

.other-Link a {
    color: #ff6331;
    font-size: 20px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
}

.other-Link.flex-info span:last-child a img {
    width: 40px!important;
    height: 40px!important;
    margin-top: 0;
}

img[src="/skins/default/images/img/Logo-Garantie-decenal.webp"],
img[src="/skins/default/images/thumbs-toiture-charpente-recto.webp"],
img[src="/skins/default/images/thumbs-toiture-charpente-verso.webp"] {
    width: 250px;
    height: 167px;
    object-fit: cover;
}

img[src="/skins/default/images/toiture-charpente-recto.webp"],
img[src="/skins/default/images/toiture-charpente-verso.webp"] {
  width: 946px;
  height: 632px;
  object-fit: cover;
}
.showroom_photos img {
    height: 186px;
}
.Mobile figure.brochure_ img {
    width: 100%;
}