<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,
*::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;
}
.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;
}
.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;
}
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}

.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 &gt; .col,
.no-gutters &gt; [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%;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-none {
    display: none !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;
  }
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  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;
}

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

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

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 16px;
  color: #525456; 
  line-height: 26px;
  font-weight: 400;
}

a,
a:hover{
    text-decoration: none !important;  }
p {
  color: #4C4C4C;
}
h1, h2 {
  color: #4C4C4C;
}
ul {
  list-style: none;
    padding-left: 0;
}
#wrapper {
  overflow: hidden;
}
@keyframes hauteurin {
  from {
    height: 0px; }
  to {
    height: 100%; } }
@media(min-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 5em;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1400px; 
  } 
}
img {
    max-width: 100%;
}

.mentions h2 {
    padding-top: 50px !important;
}


/*HEADER*/

.header {
	width: 100%;
    position: fixed;
    z-index: 1111;
    top: 0;
}
.top-head .container {
  overflow: hidden;
}
.top-head {
  background: #303030;
    position: relative;
    height: 60px;
}
.tel-top {
  display: flex;
    margin-top: -7px;
}
.tel-top a {
  color: #fff;
    font-size: 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 3px;
}
.tel-top a:last-child {
  margin-left: 12px;
}
.tel-top a i {
  margin-right: 5px;
}
.etre-rpl {
  display: flex;
    justify-content: flex-end;
    align-items: center;
    /*background: F*/
    position: relative;
    z-index: 1;
    padding: 11px 0;
    margin-top: -6px;
}
.etre-rpl:before {
    content: '';
    position: absolute;
    background: #5013d0
    background: linear-gradient(90deg, #5013d0 50%, #5013d0 81%);
    transform: skewX(-25deg);
    height: 100%;
    width: 100%;
    z-index: -1;
    left: -18px;
    top: 0;
}
.etre-rpl:after {
    content: '';
    position: absolute;
    background: #5013d0
    background: linear-gradient(90deg, #5013d0 32%, #5013d0 81%);
    height: 100%;
    width: 100%;
    z-index: -1;
    right: -200px;
    top: 0;
}
.etre-rpl &gt; strong {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid #ddd;
}
.title-rpl {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .5px;
  margin-right: 25px;
}
.etre-rpl input {
  background: #fff;
    border: none;
    font-size: 12px;
    padding: 8px 15px;
    width: 240px;
    width: 280px;
    border-radius: 25px;
}
.btn-ok{
  padding: 8px 20px !important;
    background: #dc3545 !important;
    color: #fff;
    border-radius: 0;
    width: auto !important;
    margin-left: -63px;
}
.btn-ok:hover {
  color: #fff;
}
.bot-head {
  padding-top: 25px;
  background: #fff;
}
.navbar-brand img {
	    width: 210px;
    height: 105px;
    object-fit: contain;
    max-width: inherit;
}
.bot-head .navbar-brand {
  margin-top: -28px;
}
@media(max-width: 767px){
  .bot-head .navbar-brand {
    margin-top: 0;
  }
  .navbar-brand img {
    width: 175px;
  }
} 
.nav-link {
     padding: 15px 5px !important;
    margin: 0;
    color: #000 !important;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    transition: all .4s;
    line-height: 150%;
    position: relative;
    display: block;
    text-align: center;
}
.nav-item.active .nav-link,
.nav-link:hover {
  color: #5013d0 !important;
  transition: all .4s;
  position: relative;
}
@media (min-width: 992px) {
  .nav-item.active .nav-link:before,
  .nav-link:before{
      transition: 0.3s;
      content: '';
      position: absolute;
      background: #5013d0
      height: 5px;
      transform: translateY(10px);
      left: 0;
      opacity: 0;
      bottom: 0;
      width: 100%;
  }
  .nav-item.active .nav-link,
  .nav-link:hover{
      background: none;
      color: #f88db1;
      text-decoration: none;
  }
  .nav-item.active .nav-link:before,
  .nav-link:hover:before{
      opacity: 1;
      transform: translateY(0px);
  }
  .nav-item .nav-link:after {
    position: absolute;
    bottom: -18px;
    font-size: 17px;
    padding: 3px 11px;
    left: 44%;
    transform: translateX(-50%);
    text-transform: none;
    color: #fff;
  }
  /*.nav-item:nth-child(4) .nav-link:after {
    content: "10â‚¬/mÂ²";
    background: #FF9800;
  }*/
  /*.nav-item:nth-child(3) .nav-link:after,
  .nav-item:nth-child(6) .nav-link:after {
    content: "5â‚¬/mÂ²";
    background: #8BC34A;
  }*/
}

.nav-submenu {

  display: none;
  position: absolute;
  z-index: 1;
  background: #303030;
  transition: all .4s;
  max-width: 250px;
}
.nav-item:hover .nav-submenu {
  display: block;
}
.nav-submenu-item {
    border-bottom: 1px solid;
}
.nav-submenu-item:last-child {
    border-bottom: none;
}
.nav-submenu-item a {
    color: #fff;
    font-size: 14px;
    padding: 6px 10px;
    display: block;
    transition: all .4s;
    line-height: 150%;
}
.nav-submenu-item.active a,
.nav-submenu-item a:hover {
  color: #fff
}

@media (max-width: 1199px) {
  .etre-rpl input {
    width: auto;
  }
  .bot-head {
      padding-top: 22px;
  }
  .nav-link {
    font-size: 14px;
    margin: 0 4px;
  }
}
@media (max-width: 767px) {
	.bot-head {
	    padding-top: 0;
	}
}
/*@media(min-width: 1800px) {
  .nav-link {
    font-size: 18px;
  }
}*/

.navbar-toggler {
  border: none;
  padding: 8px;
}
.navbar-toggler:fucus {
  outline: none;
}
.btn-menu {
  font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}
span.btn-toggle {
  display: block;
    background: #303030;
    width: 100%;
    height: 1px;
    margin-bottom: 6px;
}
.btn-toggle.btn-toggle-l {
  margin-bottom: 0;
}

@media (max-width: 991px) {
	.navbar-brand {
	    margin-right: 0;
	}
  .tel-top {
      margin-top: -30px;
  }
  .etre-rpl {
    display: block;
    text-align: right;
    padding: 6px 0 12px;
    margin-top: 20px;
  }
  .title-rpl {
    margin-right: 0;
  }
  .menu-left {
      right: 0 !important;
  }
  .menu {
    z-index: 12;
    margin-right: 0;
    position: fixed !important;
    display: block !important;
    width: 50% !important;
    top: 160px;
    right: -100%;
    height: 100vh !important;
    transition: all 0.6s;
    background: #fff;
  }
  .nav-link {
    margin: 0;
    padding: 12px !important;
  }
  .nav-item:hover .nav-submenu {
      display: block;
      width: 100%;
  }
}
@media (max-width: 991px) {
  .top-head {
    height: 65px;
  }
  .tel-top {
      margin-top: 10px;
      position: relative;
      z-index: 1;
      justify-content: center;
  }
  .etre-rpl {
    display: none;
  }
  .menu {
    width: 60% !important;
  }
}
@media (max-width: 575px) {
  .menu {
    width: 100% !important;
  }
}

.banner,
.banner-img {
  position: relative;
  overflow: hidden;
}
/*.Desktop .banner,
.Desktop .banner-img {
  height: 100vh;
}*/
.img-banner {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  height: 100vh !important;
}
.Mobile .img-banner,
.Mobile .banner {
  height: 500px !important;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
  max-height: 755px;}
.Mobile .slick-list{ max-height: 500px;}
.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-slide {
    display: none;
    float: left;
    height: 100%;
    /*min-height: 480px;*/
}
.slick-initialized .slick-slide {
    display: block;
}

.caption-banner {
	position: absolute;
    top: 32%;
    width: 100%;
}
.Mobile .caption-banner{top: 23px;}
.c-banner {
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.title-ban {
	font-size: 50px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    position: relative;
    line-height: 60px;
    
    margin-bottom: 50px;
  text-shadow: 1px 1px 2px black;}
.title-ban:before {
	content: '';
    position: absolute;
    border-left: 8px solid #5013d0
    height: 100%;
    left: 0;
}
.Mobile .title-ban{font-size: 26px;
                margin-bottom: 0 !important;}
.txt-urgence {
	color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
text-shadow: 1px 1px 2px black;}
.btn-contact {
	text-transform: uppercase;
    color: #fff;
    background: #5013d0
    padding: 18px 36px;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: all .2s;
}
.btn-contact {
    background: #dc3545 !important;
}
.Mobile .btn-contact {
    display: inherit;
    margin-top: 10px;
}

.btn-contact:hover {
	color: #5013d0
	background: transparent;border: 1px solid #fff;
}
.Devisgratuit {
	background: #fff;
    padding: 40px 20px;
}
.Mobile.Devisgratuit {
padding-top: 55%;
}
.titre-form {
	color: #5013d0;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 22px;
    display: block;
}
.slide-devis input,
.slide-devis textarea,
.ContactezNous input,
.ContactezNous textarea {
	border-radius: 0;
    font-size: 14px;
    margin-bottom: 8px;
}
.slide-devis span {
	display: block;
    position: relative;
}
.btn-form {
	display: block;
    margin-left: auto;
    background: #5013d0
    border-radius: 4px;
    background-color: #5013d0;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px 24px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}
@media (max-width: 1199px) {
	.title-ban {
		font-size: 38px;
	}
	.txt-urgence {
		font-size: 20px;
	}
  .Mobile .txt-urgence{text-shadow: 1px 1px 2px black;
}}
	.titre-form {
		font-size: 24px;
	}
}
@media (max-width: 991px) {
	.c-banner {
		display: block;
	}
}
@media (max-width: 575px) {
  .title-ban {
    line-height: 40px;
  }
}

/**** Content ****/

.content p {
  font-size: 14px;
  line-height: 22px;
}
.bloc1 {
  padding: 3em 0;
}
.Mobile .bloc1 {
  padding: 0em 0;
}
.title1 {
	padding-right: 2em;
}
.txt1 {
	border-left: 1px solid #dadada;
    padding-left: 2em;
}
.bloc1 h1 {
  text-align: right !important;
    color: #5013d0
    font-size: 30px;
    position: relative;
}
.Mobile .bloc1 h1{
  text-align: left !important;
  font-size: 24px;
}
.bloc1 p {
   margin-bottom: 0;
}

.title-cat {
  background: #5013d0
  margin-bottom: 4em;
  padding: 1em 0;
}
.title-cat span {
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    
    letter-spacing: .5px;
}

.bloc-cat {
  padding: 0 0 3em;
}
.Desktop .bloc-cat{padding: 23px 0 3em;}
.item-cat {
  margin: 0 18px;
}
.item-cat img {
  width: 100%;
  position: relative;
}
.item-comp {
  position: relative;
    display: block;
}
a.item-comp:before {
    content: '';
    position: absolute;
    border: 1px solid #fff;
    z-index: 1;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
}
a.item-comp:after {
  content: '';
  position: absolute;
  width: 100%;
    height: 100%;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    transform: scale(0);
    transition: all 0.3s;
}
a.item-comp:hover:after {
  transform: scale(1);
}
.item-comp span {
  position: absolute;
    bottom: 0;
    font-weight: 600;
    font-size: 0;
    color: #fff;
    padding: 15px;
    line-height: 30px;
    width: 100%;
    transition: all .4s;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    transform: scale(0);
    transition: all 0.3s;
}
a.item-comp:hover span {
  font-size: 20px;
  transform: scale(1);
}

.bloc2 {
  padding: 3em 0;
  background: #f5f5f5;
}

.bloc2-txt {
	display: flex;
    justify-content: space-between;
}
.bloc2--l,
.bloc2--r {
	width: 48%;
}
.bloc2-txt img {
	width: 100%;
	margin-bottom: 2em;
}
.bloc2 h2 {
      color: #4C4C4C;
    margin-bottom: 5px;
    font-size: 18px;
    text-transform: initial;
    text-align: left;
    padding: 15px;
}
.Mobile .bloc2 h2 {
  margin-top: 12px;
}
/*.bloc--txt-nav {
	background: #fff;
    border: 1px solid #ECECEC;
    padding: 4em 0 3.5em;
}*/
.text-inline &gt; .row {
  margin-top: 15px;
  margin-bottom: 15px;
}
.tabs {
    position: relative;
    margin-bottom: 50px;
}

.tabs &gt; input,
.tabs &gt; label {
    width: 50%;
    height: 85px;
    line-height: 85px;
    position: absolute;
    left: 0;
}

.tabs &gt; input {
    cursor: pointer;
    filter: alpha(opacity=0);
    opacity: 0;
    position: absolute;
    z-index: 99;
}

.tabs &gt; label {
    background: #5013d0;
    text-align: center;
    overflow: hidden;
}
.tabs &gt; label h2 {
    color: white;
}

.tabs &gt; label i,
.tabs &gt; label {
    -webkit-transition: all .5s;
       -moz-transition: all .5s;
         -o-transition: all .5s;
            transition: all .5s;
}

.tabs &gt; input:hover + label {
    background: #dc3545;

}

.tabs &gt; input:checked + label {
    background: #fff;
}

.tabs &gt; input:checked + label h2,
.tabs &gt; input:hover + label h2 {
    color: #000000;
}

#tab-1, #tab-1 + label {
    top: 0;
}

#tab-2, #tab-2 + label {
    top: 85px;
}

#tab-3, #tab-3 + label {
    top: 170px;
}


#tab-4, #tab-4 + label {
    top: 255px;
}

.tab-content {
    background: #fff;
    padding: 20px 20px;
    width: 50%;
    min-height: 340px;
    margin: 0 0 0 auto;
}

.tab-content section {
    width: 100%;
    display: none;
}

.tab-content section div {
    margin-top: 15px;
    font-size: 100px;
    font-weight: 100;
    text-align: center;
}

#tab-1:checked ~ .tab-content #tab-item-1  {
    display: block;
}

#tab-2:checked ~ .tab-content #tab-item-2  {
    display: block;
}

#tab-3:checked ~ .tab-content #tab-item-3  {
    display: block;
}

#tab-4:checked ~ .tab-content #tab-item-4 {
    display: block;
}

/* effect-1 */

.effect-1 &gt; input:checked + span {
    background: #fff;
}

.right-bloc {
	padding-left: 2em;
}
.right-bloc .title-foot {
	color: #303030;
	border-bottom: 1px solid #d2d2d2;
	font-size: 20px;
}
.list-eng li {
	color: #4C4C4C;
    padding-left: 25px;
    font-size: 14px;
    transition: all .3s;
    position: relative;
}
.list-eng li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url(../images/img/icon.webp);
    background-size: cover;
    filter: invert(75%);
}
.rpl-r,
.contacts-r {
	margin-top: 2em;
}
.rpl-r input,
.rpl-foot input {
	border-radius: 0;
    border: none;
    width: 100%;
    font-size: 14px;
    padding: 15px;
        border-radius: 25px;
}
.rpl-r .btn-ok {
	padding: 12px 0 !important;
    background: #5013d0 !important;
    font-size: 18px;
    width: 25% !important;
    margin-left: -97px;
}
.txt-r-ang {
	background: #fff;
    padding: 25px 0;
    margin-top: 3em;
}
.contacts-r a {
	display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #404040;
}
.contacts-r a i {
	margin-right: 10px;
}

@media (max-width: 991px) {
	.right-bloc {
		display: none;
	}
}

@media (max-width: 575px) {
	.bloc2-txt {
	    display: block;
	}
	.bloc2--l,
	.bloc2--r {
	    width: 100%;
	}
	.nav-pills .nav-link {
		padding: 10px !important;
		margin-bottom: 12px;
	}
}
.logo-foot img {
	    width: 210px;
    height: 105px;
    object-fit: contain;
    margin-bottom: 25px;
    background-color: #fff;
}


/**** Footer *****/

.top-foot {
	background: #dc3545;
	padding: 3em 0;
	display: block;
}
.title-foot {
	margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    position: relative;
    display: block;
    letter-spacing: 1px;
    padding-bottom: 16px;
    border-bottom: 1px solid #89898c;
}
.title-foot:before {
    content: '';
    position: absolute;
    border-bottom: 2px solid #5013d0
    width: 60px;
    bottom: -1px;
}
.txt-agence {
	color: #fff;
    margin-bottom: 0;
    /* font-size: 14px; */
    margin-bottom: 15px;
}
.txt-agence a {
    color: #fff;
    text-decoration: underline !important;
}
.middle-foot {
	background: #0e0e0e;
    padding: 4em 1px;
}
.item-lien {
	margin-bottom: 6px;
}
.item-lien a {
	color: #e0e2e4;
    padding-left: 25px;
    font-size: 14px;
    transition: all .3s;
    position: relative;
    display: block;
    line-height: 150%;
}
.Mobile .item-lien a {
    padding-top: 13px;
    padding-bottom: 14px;
}
.Mobile .item-lien a:before {
    top: 13px;
}
.item-lien a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/img/icon.webp);
  background-size: cover;
}
.item-lien a:hover {
	color: #5013d0
}
#Map {
	height: 264px;
	margin-bottom: 15px;
}
.ico-Map {
	float: left;
    margin-right: 5px;
    background: #fff;
    color: #5013d0;
   width: 18px !important;
    height: 18px !important;
    border-radius: 4px;
    text-align: center;
    padding-top: 1px;
}
.bot-foot {
	background: #5013d0
    padding: 15px 0;
}

.adr {
	color: #e8e8e8;
    font-size: 16px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer .tel-top {
    display: flex;
    margin-top: 15px;
}
.copyright {
	text-align: center;
	padding: 20px 0;
	color: #303030;
}
.copyright a {
	color: #5013d0
}
.d-md {
	display: none;
}
@media (max-width: 991px) {
	.top-foot {
		display: block;
    text-align: center;
	}
	.txt-agence {
		color: #fff;
		font-size: 14px;
	}
	.footer .tel-top {
		display: block;
	}
  .footer .tel-top a {
    margin: 8px 0;
  }
	.footer .tel-top a:last-child {
	    margin-left: 0;
	}
	#Map {
	    height: 250px;
	}
	.d-md {
		display: block;
	}
	.rpl-foot input {
		width: 80%;
	}
	.footer .btn-ok {
		background: #5013d0 !important;
	    width: 20% !important;
	    padding: 15px !important;
	}
}

@media (max-width: 767px) {
	.txt-agence {
	    margin-bottom: 18px;
	}
	.rpl-r input {
		width: 80%;
	}
	.rpl-r .btn-ok {
		width: 20%;
	}
}

.ville-list {
  column-count: 2;
  -webkit-column-count: 2;
}
.Mobile .ville-list {
  column-count: 1;
  -webkit-column-count: 1;
}
.Tablet .middle-foot .col-lg-3 ul {
  column-count: 2;
  -webkit-column-count: 2;
}
#v-pills-tab {
    position: relative;
    z-index: 2;
}
#v-pills-tabContent {
    background: #fff;
    padding: 20px;
}
@media(min-width: 768px) {
  .text-sld {
    max-width: 55%;
    flex: 0 0 55%;
  }
}
@media(min-width: 992px) {
  #v-pills-tabContent {
    height: 100%;
  }
}

.imgContent {
    height: 100%;
    background: #ddd;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.logo_axa {
  width: 98px;
    margin-right: 20px;
}

.page-realisation {
    padding-top: 15%;
    padding-bottom: 60px
}
.btn-rea,
.btn-rea:hover {
    background: #5013d0;
    color: #fff;
    padding: 18px 36px;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: all .2s;
    text-transform: uppercase;
    border: none;
}
.Mobile .btn-rea {
    display: inherit;
    padding: 6px 2px ;}

a.swipebox {
    display: flex;
    height: 250px;
    overflow: hidden;
    margin: 15px 0;
}
a.swipebox img {
    width: 100%;
    flex: 0 0 100%;
    object-fit: cover;
}
@media(max-width: 767px) {
  a.swipebox {
    height: inherit;
  }
}




/**
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: #5013d0;
}

.blog_pageIntrouvable &gt; div {
  height: 100%;
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: #000000;
}
.introuv {
    font-size: 80px;
    color: #504444;
    margin-bottom: 49px;
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #000000;
}
.blog_pageIntrouvable a {
    color: #5013d0;
}
.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;
  }
}

.Mobile .text-sld {
    text-align: center;
    margin-top: 180px;}
.Mobile .text-inline img{
  width: 100%;
  height: 275px;
  object-fit: cover;
}
.swipebox img {
    width: 100%;
    flex: 0 0 100%;
    object-fit: cover;
    height: 250px;
}

.text-urg {
    color: #fff;
    margin-top: -7px;
    position: relative;
    z-index: 0;
}
.Mobile .text-urg,
.Tablet .text-urg {
    margin-top: 0;
    padding-top: 4px;
    text-align: center;
}
.text-urg::before {
    content: "";
    position: absolute;
    background: #5013d0;
    width: 120%;
    height: 235%;
    z-index: -1;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}
.Mobile .text-urg::before,
.Tablet .text-urg::before {
    width: 120%;
    height: 100%;
    top: 7px;
}
.Mobile .item-comp span,
.Tablet .item-comp span {
    transform: scale(1);
    font-size: 18px;
}
.tel-top img {
    width: 18px;
    height: 18px;
}
.contacts-r img {
    filter: invert(75%);
    width: 30px;
    height: 30px;
}
.categories {
    display: flex;
    overflow: hidden;
}
.Desktop .item-cat {
  min-width: 274px;
}
.Mobile .item-cat {
  min-width: 300px;
}
.Tablet .text-sld {
  max-width: 100%;
  flex: 0 0 100%;
}
.Tablet .banner,
.Tablet .banner-img {
  height: 500px;
}
.Tablet .caption-banner {
  top: 37%;
}
.nav-pills .nav-link.active, .nav-pills .show&gt;.nav-link {
    background-color: #dc3545;
}
.adr img {
    width: 40px;
    height: 40px;
}
.etre-rpl img,
.item-cat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bloc2-txt img {
    height: 231px;
    object-fit: cover;
}
.Mobile .bloc2-txt img {
    height: 197px;
}
.Mobile.mentions .Devisgratuit,
.Tablet.mentions .Devisgratuit,
.Mobile.realisations .Devisgratuit,
.Tablet.realisations .Devisgratuit {
    display: none !important;
}
.Mobile .page-realisation,
.Tablet .page-realisation {
    padding-top: 210px;
    padding-bottom: 25px;
}
div#Messages {
    background: #5013d0;
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    position: absolute;
    z-index: 11111;
    width: 100%;
}
.Mobile div#Messages,
.Tablet div#Messages {
  padding: 5px;
  font-size: 15px;
}
div#Messages p {
    margin: 0;
    color: #fff;
}
.canvas {
    margin-top: 15px;
    text-align: right;
}
.canvas img {
    width: 100px;
    height: 100px;
}
.Desktop .btn_,
.Tablet .btn_ {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ContactezNous b {
    margin-right: 10px;
}
.mail_ {
    margin: 10px 0;
}
.ContactezNous a {
    display: inline-block;
    margin-right: 10px;
    color: inherit;
}
.Mobile .ContactezNous h1 {
  font-size: 24px;
}
.Mobile .ContactezNous a {
    display: block;
}
.ContactezNous #FormDevis {
  display: block;
  padding: 0;
}
div#contenu-home,
.ContactezNous {
    padding: 30px 0;
}
.page-mention {
    padding-top: 13rem;
}
.ContactezNous {
    padding-top: 13rem;
    background: #ececec;
}
.ContactezNous .btn-submit {
    position: relative;
    right: 0;
    top: 10px;
    width: 200px;
    font-size: 14px;
    cursor: pointer;
}
#mail, #mail2 {
    display: none;
}

.ContactezNous b {
    display: block;
}
.nav-list {
    display: table;
    padding-left: 35px;
    margin: 0;
}
li.nav-item {
    display: table-cell;
}
.nav-click {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  border-left: 1px solid #8B2870;
  height: 49px;
  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: #6E1656;
}

.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) {
  .navbar-toggler {
    display: block;
  }
  .nav {
    justify-content: space-between;
    align-items: center;
  }
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: 100%;
    padding-left: 0;
  }

  li.nav-item {
    width: 100%;
    display: block;
  }

  .nav-item &gt; a {
    padding: 15px;
  }

  .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%;
  }
}
</pre></body></html>