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

* {
  padding: 0;
  margin: 0;
  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;
  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, .h4 {
  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;
}

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 {
    background-color: #fff;
    color: #5a595c;
    line-height: 1.928em;
    -webkit-text-stroke-width: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
	
    color: #1c1d1f;
    font-weight: 400;
    letter-spacing: 1.5px;
}
@media(max-width: 767px) {
	h1 {
		font-size: 22px;
	}
}
a, a:hover, a:focus, a:visited {
    text-decoration: none;
    outline: none;
    color: inherit;
}
ul {
    list-style: none outside;
}

@media (min-width: 1200px) {
	.container {
	    max-width: 1400px;
	}
}
img {
	max-width: 100%;
    height: auto;
}

a, input[type='submit'], 
input[type='reset'], 
.radio-label input[type='radio']+span:before {
    transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    -webkit-transition: all .3s linear;
}

/* 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;
}
.slick-arrow {
	top: 50%;
    transform: translateY(-50%);
    position: absolute;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}
.slick-next {
    right: -10px;
}
.slick-prev {
    left: -10px;
}
.slick-arrow:hover,
.slick-arrow:focus {
	outline: none;
	box-shadow: none;
	color: #d8031c;
}

/*
cat
*/
.cat-bo {
    background-image: url(../images/img/bg-pattern.webp);
    background-position: 0 0;
    background-repeat: repeat;
}
.Tablet .box-categorie,
.Desktop .box-categorie {
    margin-top: -8rem;
    display: flex;
    overflow: hidden;
}
.Desktop .item-cat {
  min-width: 290px;
}
.Mobile .box-categorie {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.item-cat {
    margin: 0 25px;
    padding-bottom: 10px;
    background-color: #fff;
}
.item-cat a {
	display: block;
	padding: 7px 7px 0 7px;
	text-align: center;
}
.item-cat a span {
    margin-top: 17px;
    display: block;
    text-transform: uppercase;
}
.Mobile .item-cat a span {
    line-height: 130%;
    font-size: 12px;
}

@media(max-width: 767px) {
	.item-cat {
		margin: 15px 0;
	}
}


/*
Nav
*/
#header {
    border-bottom: 10px solid #d8031c;
}
.Mobile #header {
    position: fixed;
    z-index: 1111;
    width: 100%;
    background: #fff;
    top: 0;
}
.logo-img {
    background: #dcd9d4;
    height: 112px;
    display: block;
    width: 240px;
    flex: 0 0 240px;
    text-align: center;
}
.Mobile .logo-img img {
    width: 170px;
}
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav {
	align-items: center;
    position: relative;
    justify-content: space-between;

    flex-wrap: inherit;
    -ms-flex-wrap: inherit;
}

.logo {
	
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    /*padding: 34px 0 34px 0;*/
    width: 20%;
    display: flex;
    align-items: center;
}
.hidden-area-button {
    display: none;
    align-items: center;
    text-align: center;
    padding-right: 30px;

    width: 120px;
    flex: 0 0 120px;
}
.hidden-area-button strong {
    display: block;
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 10px;
}
@media(max-width: 757px) {
	.hidden-area-button { display: none; }
}
.hidden-area-button a.open-hidden-area {
    width: 18px;
    height: 13px;
    display: block;
    color: #6a6b6c;
    padding-bottom: 3px;
    position: relative;
    margin: auto;
}
.open-hidden-area strong {
    display: block;
}
.hidden-area-button a.open-hidden-area span {
    display: block;
    height: 0;
    border-bottom: 2px solid;
    position: absolute;
    width: 100%;
    margin-top: -1px;
    transition: all .3s ease-out;
    opacity: 1;
    left: 0;
}
.hidden-area-button a.open-hidden-area span.line-1 {
    top: 0;
}
.hidden-area-button a.open-hidden-area span.line-2 {
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
}
.hidden-area-button a.open-hidden-area span.line-3 {
    bottom: 0;
}
.header4 .hidden-area-button a:after {
    height: 13px;
    content: "";
    display: block;
    width: 0;
    border-right: 1px solid #e1e1e1;
    position: absolute;
    left: 49px;
    top: 0;
}
.menu {
    position: relative;
    align-items: stretch;
    display: flex;
    justify-content: center;
    margin-right: 5px;
    border-top: 10px solid #dcd9d4;
}
.nav-list {
	display: table;
    height: 100%;
    padding-left: 0;
    margin: 0;
}
.nav-item {
    display: table-cell;
    vertical-align: middle;
    transition: all 0.4s ease;
    position: relative;
}
li.nav-item.active {
    background: #000;
}
.nav-item >a {
    color: #121213;
    padding: 10px 5px 10px;
    
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: -.5px;
    position: relative;
    display: inline-block;
    transition: color 400ms;
    text-align: center;
    position: relative;
}
li.nav-item.active a {
   color: #fff;
}
#puce-index:after,
#puce-services:after {
    content: "\e900";
    position: absolute;
    font-family: 'icon' !important;
    font-weight: normal;
    margin-left: 9px;
    font-size: 14px;
    color: #d8031c;
}

.nav-submenu {
	display: none;
	top: 100%;
	width: 250px;
    background-color: #fff;
        -webkit-box-shadow: 0 3px 6px 0 rgba(0,0,0,.15);
    box-shadow: 0 3px 6px 0 rgba(0,0,0,.15);

    position: absolute;
    left: 0;
    text-align: left;
    visibility: hidden;
    transition: all 300ms ease-in-out;
    background: #ffffff;
    right: auto;
    padding: 0;
    border: none;
    opacity: 0;
    z-index: -1;
    margin: 0;
}
.nav-item:hover .nav-submenu {
	animation-duration: 300ms;
	animation-name: wpmmfadeInDown;
	display: block;
	visibility: visible;
	opacity: 1;
	z-index: 1;
}
.nav-submenu-item {
    padding: 0 20px;
    position: relative;
}
.nav-submenu-item a {
	font-size: 13px;
	text-transform: capitalize;
    background-color: inherit;
    color: #1c1d1f;
    padding: 10px 0;
    display: block;
    transition: 400ms;
    -webkit-transition: 400ms;
    line-height: 150%;

    background-image: linear-gradient(to right,#bbc4c7 40%,rgba(255,255,255,0) 0%);
    background-position: bottom;
    background-size: 7px 1px;
    background-repeat: repeat-x;
    letter-spacing: normal;
    font-weight: normal!important;
}
.nav-submenu-item:last-child a {

    background-image: none;
}
.nav-submenu-item >a:before {
    content: "";
    width: 1px;
    height: 100%;
    border-left: 2px solid transparent;
    position: absolute;
    left: 0;
    top: 0;
}
.nav-submenu-item:hover >a,
.nav-submenu-item.active >a {
   	color: #8c8f93;
}
.nav-submenu-item:hover >a:before,
.nav-submenu-item.active >a:before {
    border-color: #ce8460;
}

@keyframes wpmmfadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -10px, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.wpmmfadeInDown {
    animation-name: wpmmfadeInDown
}


/* Mobile navigation */
.nav-mobile {
  display: none;
    cursor: pointer;
    width: 80px;
    flex: 0 0 80px;
    font-size: 14px;
    background: #d8031c;
    color: #fff;
    padding-left: 5px;
}
.nav-mobile .icon {
    position: relative;
    width: 20px;
    height: 20px;
}
.nav-mobile .icon::before {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    background-image: url(../images/nav.svg);
    background-size: cover;
}
.nav-click {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  border-left: 1px solid #fff;
  height: 46px;
  width: 50px;
  cursor: pointer;
}

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

.nav-click:hover {
  background-color: #777276;
}

.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) {
	.logo {
		justify-content: space-between;
		align-items: center;
		width: 100%
	}
	.logo-img { 
		background: none; 
		width: 200px;
    	flex: 0 0 200px;
	}
	.menu {
		position: absolute;
	    /*top: 100%;*/
	    width: 100%;
	    margin: 0;
	    display: block;
	    z-index: 900;
	}
  .nav-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
  }

  .nav-list {
    display: none;
    background: #d8031c;
  }

  .nav-item {
    width: 100%;
    display: block;
  }
  li.nav-item.active {
    background: #fff;
  }

  .nav-item > a {
    padding: 15px;
    display: block;
    text-align: left;
    color: #fff;
  }
  li.nav-item.active a {
    color: #000;
  }

  .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 .logo-img { 
    height: auto;
 } 

.tels-top {
    display: flex;
    align-items: center;
}
.tels-top span {
    width: 40px;
    flex:0 0 40px;
}
.tels-top a {
    margin-left: 6px;
    font-size: 24px;
    
    letter-spacing: -0.5px;
    display: inline-block;
    margin: 0 15px;
    font-weight: 700;
    color: #000;
}
.tels-top img {
    width: 16px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -3px;
    margin-right: 7px;
}


.Tablet .tels-top,
.Mobile .tels-top {
    justify-content: center;
    background: #e7e7e7;
}
.Tablet .tels-top a,
.Mobile .tels-top a {
    margin: 0 10px;
    font-size: 18px;
    padding: 9px 0;
}


/*
Homeslider
*/
.homeslider {
    height: 588px;
    position: relative;
}
.item-slider {
	background-color: #f7f7f7;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 500px;
}
.captionSlider {
    position: absolute;
    width: 100%;
    top: 60px;
}
.Mobile .captionSlider {
    top: 25%;
    transform: translateY(50%);
}
.titreblock,
.titreblock h1 {
    font-size: 60px;
    line-height: 100%;
    font-weight: 700;
    transform: rotate(-4deg);
    color: #fff;
    text-shadow: 0 2px 4px #000;
}
.Tablet .titreblock,
.Tablet .titreblock h1 {
    font-size: 50px;
}
.text-perso {
    font-size: 30px;
    font-weight: 700;
    transform: rotate(-4deg);
    color: #d8031c;
    text-shadow: 0 2px 4px #fff;
    padding-left: 50px;
    position: relative;
}
.Mobile .text-perso {
    font-size: 20px;
}
.text-perso::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: #d8031c;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    text-shadow: 0 2px 4px #fff;
}
@media(max-width: 767px) {
	.homeslider,
	.item-slider {
		height: 388px;
	}
	.titreblock {
		font-size: 34px;
	}
    .titreblock, 
    .titreblock h1 {
        font-size: 24px;
    }
}
.RappelGratuit {
    margin-left: 25px;
}

/*
Contenu
*/
.block1 {
    padding: 60px 0 40px;
}
.Block1 .item-text h2 {
    color: #000;
}
.Block1 .item-text {
    color: #000;
}
.block2 {
    background-image: url(../images/img/bg-slider.webp);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 100px 0;
    color: #fff;
}
.block2 p {
	margin-bottom: 0
}
.item-text h2,
.item-block4 h2 {
    font-size: 2rem;
    line-height: 1.2em;
    font-weight: bold;
    letter-spacing: 0;
    margin-bottom: 20px;
    text-shadow: 0px 0px 15px rgba(0,0,0,0.11);
    color: #fff;
}

.item-img {
	background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
	box-shadow: 1px 4px 12px rgba(0,0,0,0.09);
}
.item-img img {
	display: block;
    background: #ddd;
    border-radius: 15px;
}
@media(max-width: 767px) {
	.item-text h2,
	.item-block4 h2 {
		font-size: 26px;
	}
	.block2 {
		padding: 30px 0;
	}
	.block2 .row {
		flex-direction: column-reverse;
	}
	.item-img {
		margin-bottom: 15px;
	}
}
.Tablet .item-img {
    margin-bottom: 15px;
  }
.block3 {
	padding: 78px 0;
	background-color: #e9ebed;
    border-top: 10px solid #fff;
}
.item-block3 {
	position: relative;
}
.Desktop .item-block3.text-right {
    max-width: 55%;
}
.Desktop .item-block3.text-left {
    max-width: 55%;
    margin: 0 auto 0 30rem;
}
.circle-d {
    background: #fff;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: 2px solid;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Tablet .item-block3 {
    display: flex;
}
.Tablet .item-block3.text-right {
    text-align: left !important;
}
.Tablet .circle-d {
    position: static;
    max-width: 100px;
    flex: 0 0 100px;
    margin-right: 1rem;
}
.Mobile .circle-d {
	display: none;
}
.Desktop .item-block3.text-left .circle-d {
    left: -130px;
}
.Desktop .item-block3.text-right .circle-d {
    right: -130px;
}

.item-block4 {
	background-color: #d8031c;
    padding: 60px 50px;
    margin: -55px auto 0;
    color: #fff;
    position: relative;
}	
.item-block4:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #d8031c;
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
}
.item-block4 ul {
    padding-left: 0;
}
.item-block4 ul > li {
    position: relative;
    padding-left: 73px;
    margin-bottom: 35px;
    text-transform: capitalize;
    font-size: 18px;
}
.item-block4 ul > li:before {
    content: "";
    width: 56px;
    min-width: 56px;
    height: 56px;
    display: inline-block;
    line-height: 54px;
    border: 1px solid #f0bfae;
    background-color: #e9ac97;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    text-shadow: 0px 0px 8px rgba(185,117,92,1);
}
.shadow-img {
	display: block;
    border-radius: 20px;
    background: #fff;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 8px rgba(185,117,92,1);
}
.shadow-img img {
	width: 100%;
}

.block5 {
	background-size: cover;
    background-repeat: repeat;
    background-color: rgba(0, 0, 0, 0);
    background-attachment: fixed;
    position: relative;
    padding: 60px 0;
}
.block5:before {
	content: "";
	position: absolute;
	background-color: rgba(0,0,0,0.8);
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
.text-rightb h2 {
	font-size: 28px
}
.item-block5 {
	position: relative;
}
.item-block5 h2 span {
    display: block;
    font-size: 24px;
    color: #d8031c;
}
.item-block5 h2 {
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 40px;
}
.item-block5 figure {
    position: relative;
    overflow: hidden;
    margin: 15px 0;
}
.item-block5 figure img {
    -webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    -ms-transition: all 1.5s ease;
    transition: all 1.5s ease;
    display: block;
    background: #868686;
    height: 250px;
    object-fit: cover;
}
.Tablet .item-block5 figure img,
.Mobile .item-block5 figure img {
    height: auto;
}
.item-block5 figure:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.item-block5 .image-overlay {
	color: #fff;
    position: absolute;
    opacity: 0;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.item-block5 figure:hover .image-overlay {
    opacity: 1;
}
.image-overlay:before {
    position: absolute;
    content: "";
    display: block;
    background: rgba(0,0,0,.7);
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    right: 0;
    bottom: 0;

    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    -ms-transition: all .3s linear;
    transition: all .3s linear;
}
.item-block5 figure:hover .image-overlay:before {
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
}
.image-overlay .links {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    text-align: center;
}
.image-overlay .links .h4 {
    position: absolute;
    margin: 0;
    width: 80%;
    height: auto;
    padding: 0;
    font-size: 20px;
    bottom: 30px;
    left: 30px;
    right: auto;
    text-align: left;
}
.image-overlay .links:after {
	content: '';
    position: absolute;
    width: 0;
    height: 200%;
    left: 0;
    top: -76%;
    margin: -5px 0 0 -5px;
    -webkit-transform-origin: 0 0;
    -webkit-transform: rotate(20deg);
    -moz-transform-origin: 0 0;
    -moz-transform: rotate(30deg);
    -ms-transform-origin: 0 0;
    -ms-transform: rotate(30deg);
    transform-origin: 0 0;
    transform: rotate(30deg);
    z-index: 0;
}
.image-overlay .links:after {
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    transition: all .4s ease-out;
}
.image-overlay .links .h4 a {
	
	color: #fff;
	font-weight: 700;
    background: none;
    width: auto;
    margin: 0;
    padding: 0 15px 5px 0;
    font-size: inherit;
    border: 0;
    border-radius: 0;
    height: auto;
    line-height: normal;
    bottom: auto;
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
}
.item-block5 figure:hover .image-overlay .links .h4 a {
    background: none;
    transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
}
.image-overlay .links .h4 a:before {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 1px;
    bottom: -10px;
    background: #fff;
    left: 0;
    right: auto;

    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    -ms-transition: all .3s linear;
    transition: all .3s linear;
}
.item-block5 figure:hover .image-overlay .links .h4 a:before {
    width: 100%;
}

.block6 {
    padding: 100px 0 60px;
}
.block8 .Block {
    padding: 100px 0 0;
}
.block9 .Block {
    padding: 0 0 60px;
}
.Mobile .block6 h2 {
    font-size: 24px;
    margin-top: 25px;
}
.block6 .shadow-img {
    box-shadow: 0px 0px 8px rgb(195, 195, 195);
}
.block6 ul {
padding-left: 0;
}
.block6 ul li {
	position: relative;
	padding-left: 25px;
}
.block6 ul li:before {
	content: "\e876";
	position: absolute;
	font-family: 'icon' !important;
	left: 0;
	color: #d8031c;
}

.btn {
    border-radius: 5px;
    box-shadow: 0 10px 20px 0 rgba(0,0,0,.15);
    -webkit-box-shadow: 0 10px 20px 0 rgba(0,0,0,.15);
    font-size: 14px;
    margin-top: 30px;
    padding: 15px 36px 12px;
}
.btn.btn-rea {
    background: #d8031c;
    color: #fff;
    font-size: 20px;
    margin-top: 60px;
    margin-left: 15px;
}

#mail, #mail2 { display: none; }
.RappelGratuit .h3 {
    font-size: 14px;
}
#rappel_immediat .input-form {
    padding: 1px 10px;
}
.btn-rappelGratuit {
   background: #d8031c;
    border: 1px solid #d8031c;
    color: #fff;
    cursor: pointer;
}
.titre-album {
    display: block;
    font-size: 36px;
    margin-bottom: 26px;
    padding-top: 50px;
    color: #000;
}

#mr {
	margin-top: 40px;
}
.Mobile #mr {
	flex-direction: column-reverse;
}

.Mobile .DevisGratuit {
    background: #ddd;
    padding: 20px;
}
#Devis_form .input-form,
.form-input {
    display: block;
    width: 100%;
    margin: 5px 0;
    padding: 5px 10px;
    box-shadow: inset -1px 4px 6px #ddd;
    border: 1px solid #cacaca;
    border-radius: 7px;
}
input.btn.btn-devis,
input.btn.btn-submit {
    background: #d8031c;
    width: 100%;
    margin-top: 5px;
    color: #fff;
}

.toogleDevis { 
	position: absolute;
    z-index: 100;
    background: #fff;
    padding: 20px;
    width: 385px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.58);
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.58);
    left: 60%;
    top: 192px;
}
.toogleDevis .h3 {
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;    
}

.titreDevis-slider {
    display: flex;
    align-items: center;
    justify-content: center; 
}
.titreDevis-slider > span {
    border: 2px solid #d8031c;
    border-radius: 100%;
    overflow: hidden; 
    width: 80px;
    height: 80px;
    margin-right: 15px;
}
.titreDevis-slider > .h3 {
    font-size: 18px;
    margin-bottom: 0;
}
.titreDevis-slider > .h3 em {
    display: block;
    font-size: 13px;
    margin-top: 8px;
    text-transform: none;
    font-style: normal;
}

/*
Footer
*/
#footer {
	background-color: #e9ebed;
	padding-top: 60px;
}
#footer .h3 {
    font-weight: 700;
    font-size: 24px;
    padding-left: 10px;
    border-left: 2px solid #d8031c;
    margin-bottom: 30px;
    display: block;
}
.lien-footer {
    column-count: 3;
    -webkit-column-count: 3;
    padding-left: 0;
    padding-bottom: 60px;
    margin: 0;
    
}
@media(max-width: 767px) {
	.lien-footer {
		column-count: 1;
		-webkit-column-count: 1;
	}
	.item-block3.text-right,
	.item-block3.text-left {
	    max-width: 100%;
	    text-align: left !important;
	    margin: 0;
	}
	.item-block4 {
	    background-color: #d8031c;
	    padding: 30px 20px;
	}
}
.item-lien {
	margin-bottom: 20px;
    font-size: 14px;
}
.item-lien a {
	display: block;
    padding: 0 10px 0 15px;
    line-height: 130%;
    position: relative;
}
.item-lien a:before {
	content: "";
    position: absolute;
    left: 0;
    background-image: url(../images/img/left.webp);
    background-size: cover;
    width: 12px;
    height: 12px;
    top: 50%;
    transform: translateY(-50%);
    filter: contrast(0.5);
}
#footer-info {
    background: #d8031c;
    padding: 20px 0;
}
#footer-info a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 700;
}
#footer--copyright {
    color: #ffffff;
    font-size: 15px;
}
.logoAgence {
    margin-left: 10px;
}

.box-agence {
    background: #ddd;
    padding: 20px;
}

.btn-fb {
    background: url(../images/img/facebook.svg) no-repeat center;
    background-size: contain;
    margin-top: 9px;
    margin-right: 15px;
    display: inline-block;
    width: 40px;
    height: 40px;
}
.btn-fb:hover {
    opacity: .5;
}

.Mobile h1,
.Mobile .h1 {
    font-size: 24px;
}
.Mobile h2,
.Mobile .h2 {
    font-size: 22px;
}
.Mobile h3,
.Mobile .h3 {
    font-size: 20px;
}

/**
404
*/
.blog_pageIntrouvable {
    background: #ffffff;
    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: #000000;
}

.blog_pageIntrouvable > div {
  height: 100%;
}
.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: #000;
}
.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;
  }
  #noMobile { display: none; }
  #noDesktop, #fixedRight { display: block; }
  .telMobile a {
    color: #fff;
    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 em {
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
    font-size: 24px;
  }
}

#Messages {
    background: #000;
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding: 25px 0;
}
.Mobile div#Messages {
    position: absolute;
    z-index: 11111;
    font-size: 15px;
    padding: 5px;
    width: 100%;
}
.Tablet div#Messages {
    padding: 10px;
}
#Messages p {   
    margin: 0;   
}
.swipebox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    overflow: hidden;
    margin: 15px 0;
    border: 1px solid #ddd;
}
.Mobile .swipebox {
    height: inherit;
}

.Mobile #swipebox-close {
    right: 35%;
    width: 30px;
    height: 30px;
    background-position: 5px 2px;
    transform: translateX(-50%);
}

b.titre-album {
    display: block;    
    color: #000;    
    font-size: 1.5rem;    
    margin-bottom: 1.5rem;
}

.Mobile .captionSlider .btn.btn-rea {
    font-size: 16px;
    margin-top: 25px;
    padding: 10px 20px;
}
.Mobile .block6,
.Mobile .block3,
.Mobile .block8 .Block,
.Mobile .block1 {
    padding: 40px 0;
}
.Mobile #footer {
    padding-top: 40px;
}
.swipebox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.Mobile .titre-album {
    padding-top: 165px;
}
.page-mention {
    padding: 40px 0;
}
.Mobile .page-mention {
    padding: 165px 10px 25px;
}

.ContactezNous b {
    margin-right: 10px;
}
.mail_ {
    margin: 10px 0;
}
.ContactezNous a {
    display: inline-block;
    margin-right: 10px;
    color: inherit;
}
.ContactezNous .h1 {
  font-size: 32px;
}
.Mobile .ContactezNous .h1 {
  font-size: 24px;
}
.Mobile .ContactezNous a {
    display: block;
}
.ContactezNous #FormDevis {
    display: block;
    padding: 20px 0 0;
}
.Desktop .ContactezNous #FormDevis {
    max-width: 75%;
    margin: auto;
}
div#contenu-home,
.ContactezNous {
    padding: 40px 0;
    color: #333;
}
.Desktop .ContactezNous {
    text-align: center;
}
.Mobile div#contenu-home,
.Mobile .ContactezNous{
    padding: 165px 0 40px;
}
.txt-c {
    margin: auto;
}
.Tablet .toogleDevis {
  width: 44%;
  z-index: 1111;
  left: 73%;
  transform: translateX(-50%);
  display: none;
}
.Desktop ul.Liens {
    column-count: 2;
}
.Mobile ul.Liens {
    margin-bottom: 40px;
}
input.btn.btn-devis {
    padding: 10px 0;
}
.Tablet .DevisGratuit {
  padding: 0 40px;
}
.Tablet .titreDevis-slider { 
  justify-content: flex-start;
}