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

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

.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%;
  }
}
.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;
}
.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !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-none {
  display: none !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;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
}

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

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

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

::selection {
    background: #333;
    color: white;
}
body {
    font: 14px/23px 'Lato', sans-serif;
    color: #222;
    margin: 0;
    background: #fff;
    color: #000;
}
a {
    text-decoration: none;
    color: #000;
    -webkit-transition: background-color, color 0.2s linear;
    -moz-transition: background-color, color 0.2s linear;
    transition: background-color, color 0.2s linear;
}
a:hover,
a:focus,
input:hover,
input:focus,
button:hover,
button:focus {
	text-decoration: none;
	color: inherit;
	outline: none;
	text-shadow: none;
	box-shadow: none;
}
h1 {
	font-size: 33px;
	max-width: 60%;
}
@media(max-width: 767px) {
	h1 {
		font-size: 26px;
		max-width: 100%;
	}
}
h2 {
	font-size: 24px;
}
ul {
	list-style: none;
	padding-left: 0;
}
img {
	max-width: 100%;
    height: auto;
}

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


.wrapper {
    padding: 60px 0;
}
.wrapper, 
.wrapper div, 
.wrapper p {
    color: #000;
    font-size: 15px;
    line-height: 30px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}

.header {
    background: white;
    position: absolute;
    top: 0;
    width: 100%;
    height: 58px;
    z-index: 999;
}
.header-logo {
    text-align: center;
}
.header-logo a.logo {
    width: 250px;
    display: inline-block;
    margin: auto;
    background: none;
    padding: 2px;
    background: white;
}
.Desktop .logo {
    margin-top: -6rem;
    display: block;
}

.tel-top_ {
    margin-top: 18px;
    margin-left: -5rem;
}
.tel-top_ a {
    font-size: 18px;
}
.tel-top_ img {
    border-right: 1px solid #000000;
    margin-right: 15px;
    padding-right: 15px;
    width: 30px;
    margin-top: -3px;
}
.tel-top_ em {
    margin: 0 15px;
}
@media(max-width: 767px) {
	.wrapper {
		padding: 30px 0 0;
	}
	.header {
		height: inherit;
		position: fixed;
	}
	.header-logo > .row {
		justify-content: space-between;
		align-items: center;
	}
	.header-logo a.logo {
        background: none;
	    width: inherit;
	    text-align: left;
	    padding-left: 15px;
	}
	.tel-top_ {
	    margin-left: 0;
	    margin-top: 0;
	    background: black;
    	justify-content: center;
	}
	.tel-top_ img {
		border-right: none;
		padding-right: 0;
        filter: invert(1);
        width: 15px;
        margin-right: 5px;
	}
	.tel-top_ a {
	    margin: 15px 0;
        color: white;
	}
}
.Mobile #swipebox-close {
    right: 35%;
    width: 30px;
    height: 30px;
    background-position: 5px 2px;
    transform: translateX(-50%);
}

.Top_rappel {
    text-align: left;
}
#rappel_immediat .input-form {
    background: #efefef;
    display: inline-block;
    width: 200px;
    padding: 1px 15px;
    margin: 0;
    vertical-align: middle;
    height: 30px;
    font-size: 10px;
    border: 1px solid #ddd;
}
#rappel_immediat .btn-rappel {
    display: inline-block;
    width: 45px;
    font-size: 12px;
    height: 30px;
    vertical-align: middle;
    margin: 0;
    margin-left: -3px;
    border-radius: 0 3px 3px 0;
    padding: 2px 5px;
    background-color: black;
    line-height: 120%;
    border: 1px solid black;
    color: white;
}
.Top_rappel strong {
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 10px;
    display: block;
    text-align: center;
}

.Desktop .nav {
    margin-top: 1rem;
    background: rgb(0 0 0 / 79%);
    border-radius: 7px;
}
.nav-list {
    display: table;
    padding-left: 0;
    margin: 0;
}
.nav-item {
    display: table-cell;
    vertical-align: middle;
    position: relative;
}
.nav-item > a {
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    display: block;
    padding: 5px 10px;
    color: white;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.realisations .nav-item > a { color: #000000; }
.nav-item:hover > a {
    color: #00c2a5;
}
.nav-item.active > a {
    background: #00c2a5;
    border-radius: 7px;
    color: black;
}

.nav-submenu {
    position: absolute;
    top: 120%;
    transition: top 0.3s ease 0s, visibility 0.2s ease 0.2s, opacity 0.2s ease 0.1s;
    -webkit-transition: top 0.3s ease 0s, visibility 0.2s ease 0.2s, opacity 0.2s ease 0.1s;
    -moz-transition: top 0.3s ease 0s, visibility 0.2s ease 0.2s, opacity 0.2s ease 0.1s;
    -ms-transition: top 0.3s ease 0s, visibility 0.2s ease 0.2s, opacity 0.2s ease 0.1s;
    -o-transition: top 0.3s ease 0s, visibility 0.2s ease 0.2s, opacity 0.2s ease 0.1s;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    min-width: 250px;
    left: 0;
    width: 100%;
}
.nav-item:hover .nav-submenu {
    opacity: 1;
    top: 100%;
    transition: top 0.3s ease 0s;
    -webkit-transition: top 0.3s ease 0s;
    visibility: visible;
    -webkit-backface-visibility: visible;
}
.nav-submenu-item {
    background: white;
}
.nav-submenu-item > a {
    padding: 10px 15px;
    display: block;
    border-bottom: 1px solid #ddd;
}
.nav-submenu-item:hover  > a,
.nav-submenu-item.active  > a {
    background: #00c2a5;
    border-bottom-color: #00c2a5;
    color: white
}
.nav-mobile {
	display: none;
	cursor: pointer;
	background: url(../images/nav.svg) no-repeat 87% center;
    background-size: 18px;
    text-align: left;
    width: 90px;
    text-transform: uppercase;
    background-color: #000;
    margin: 0 0 0 auto;
    border: 1px solid #000;
    padding: 5px 13px;
    color: white;
}

/* Mobile navigation, clickable area for revealing <ul> */
.nav-click {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  height: 49px;
  width: 50px;
  cursor: pointer;
}

.nav-click i {
  display: block;
  line-height: 48px;
  position: relative;
  transform: rotate(90deg);
  text-align: center;
  height: 48px;
  font-size: 30px;
  width: 48px;
}

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

/*------------------------------------*\
    Media Queries
\*------------------------------------*/
@media(min-width: 768px) and (max-width: 991px) {
	.nav-mobile {
		margin-top: 35px;
	}
}
@media only screen and (max-width: 991px) {
  .nav-mobile {
    display: block;
  }

  .nav {
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
  }

  .nav-list {
    display: none;
    width: 100%;
  }

  .nav-item {
  	background: #efefef;
    width: 100%;
    display: block;
    padding: 0 15px;
  }

  .nav-item > a {
  	border: none;
    padding: 7px 15px;
    color: #000;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  .nav-item:last-child > a {
    border-bottom: none;
  }
  .nav-item.active > a {
    color: black;
  }

  .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%;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-item:hover > a {
        color: #c33e43;
    }
    .nav-submenu-item > a {
        padding: 5px 15px;
    }
}

.homeslider {
    height: 700px;
    background: #ddd;
    position: relative;
}
.ImgSlider {
    position: absolute;
    height: 100%;
    width: 100%;
}
.itemSlider {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
    height: 700px;
}
.itemSlider:before {
	background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.73) 21%, rgba(94,93,91,.5) 56%, rgba(155,145,136,0) 97%);
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.homeslider .container {
    height: 100%;
    display: table;
    width: 100%;
}
.homeslider .sliderCaption {
    display: table-cell;
    vertical-align: middle;
    padding-top: 5rem;
}
.sliderCaption .h1 {
    color: white;
    font-weight: 700;
    text-shadow: 0 0 12px black;
}
.titleCouvreur {
    background: #00c2a5;
    color: #000;
    padding: 5px 15px;
    font-size: 18px;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
}
.btn.btn-rea {
    background: black;
    margin-left: 10px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 0;
}
.btn.btn-rea:hover {
    border-color: black;
    background: none;
}
.Mobile .btn.btn-rea {
    margin-left: 4px;
    margin-top: 10px;
}
@media(min-width: 992px) {
	.captionDetail {
		margin-top: 8rem;
	}
}
.boxCategories {
	width: 700px;
	margin-top: 3rem;
}
.cat-item a {
    display: block;
    padding: 0 3px;
}
.cat-item span {
    height: 170px;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    width: 170px;
    margin: auto;
    border: 7px solid #fff;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.cat-item:hover span {
    border-color: #00c2a5;
}
.cat-item strong {
    font-size: 11px;
    display: flex;
    padding: 5px 15px;
    background: white;
    height: 55px;
    align-items: center;
    justify-content: center;
    margin-top: -3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: -.5px;
    text-align: center;
    box-shadow: 0px -4px 6px 0px rgb(0 0 0 / 47%);
    line-height: 15px;
}
.logoDivers img {
    margin: 15px 7px;
}

@media(max-width: 767px) {
	.homeslider,
	.itemSlider {
		height: 350px;
	}
	.sliderCaption .h1 {
		font-size: 26px;
	}
	.logoDivers img {
	    width: 80px !important;
	}
	.logoDivers img:last-child {
	    width: 70px;
	}
}
/*
Section contenu
*/
.section1_,
.section2_,
.section4__ {
    margin: 60px 0;
    position: relative;
}
.imgContent {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
}
.content1,
.content3 {
	transform-origin: 100% 25%;
    right: 0;
}

.content2 {
	/*background-color: #f7f7f7;*/
    left: 0;
    transform-origin: 0 25%;
}
.item-text {
    margin: 35px 0;
}
.text-content {
    padding: 35px 0;
}
.row-reverse {
	flex-direction: row-reverse;
}
.imgbg {
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.item-text p {
    margin-bottom: 0;
}
.section5_ {
    background: #f7f7f7;
    padding: 60px 0;
    margin: 60px 0;
}

.bgImg1 {
	position: absolute;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.imgContent.content2 .bgImg1,
.imgContent.content3 .bgImg1 {
	height: 80%;
}
.intervention-block-right {
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
}
.section4__ .intervention-block-right {
    margin-top: 5rem;
}
.intervention-block-right img {
	width: 150px;
	margin: 0 auto 15px;
}
@media(max-width: 767px) {
	.imgContent,
	.bgImg1 {
		position: static;
		height: 250px;
		width: 100%;
	}
	.imgContent.content2 .bgImg1, 
	.imgContent.content3 .bgImg1,
	.item-text .imgbg {
		height: 250px;
		margin-bottom: 15px;
	}
	.section2_ .row {
		flex-direction: column-reverse;
	}
}


/*
right block
*/
.contact-tel .contact-text,
.devis-titre .contact-text {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    position: relative;
}
.contact-tel .tel-block {
    padding: 20px 20px 5px;
    text-align: center;
}
.tel-block > div {
    border: 2px solid #00c2a5;
    margin-bottom: 15px;
    border-radius: 50px;
    display: table;
    width: 100%;
    overflow: hidden;
}
.tel-block > div p {
    margin-bottom: 0;
    display: table-cell;
    vertical-align: middle;
    font-weight: 700;
    padding-top: 5px;
    font-size: 26px;
    padding-bottom: 5px;
}
.Mobile .tel-block > div p {
  font-size: 20px;
}
.tel-block > div > span {
    background: #00c2a5;
    color: white;
    display: table-cell;
    width: 45px;
    font-size: 18px;
    vertical-align: middle;
}
.engagement {
    background: #f7f7f7;
}
.engagement .h4 {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: white;
    letter-spacing: 3px;
    font-size: 16px;
    position: relative;
        background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.engagement .h4:before {
    content: "";
    background-color: rgba(29, 29, 31, 0.59);
    position: absolute;
    width: 100%;
    height: 100%;
}
.engagement .h4 span {
    position: relative;
}
.list-eng {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0;
}

.list-eng li {
    padding-left: 35px;
    margin: 15px 0px;
    font-size: 16px;
    position: relative;
}
.list-eng li:last-child {
    margin-bottom: 0;
}
.list-eng li:before {
  content: "";
  background-image: url(../images/img/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 10px;
  width: 12px;
  height: 12px;
}

#mail, #mail2 { display: none; }
.btn-devis-gratuit {
    background-color: black;
    color: white;
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 5px 35px;

    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.btn-devis-gratuit:hover {
    transform: scale(1.05);
    color: white;
}
.DevisSlider {
    margin-bottom: 35px;
}
.Devigratuit {
    background: #f7f7f7;
    padding: 20px;
}
.sliderCaption .Devigratuit {
    margin-top: 9rem;
    border-radius: 15px;
}
@media(min-width: 768px) and (max-width: 991px) {
	.sliderCaption .Devigratuit {
		margin-top: 0;
	}
}
.call-img {
    display: block;
    margin: auto;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
}
.sliderCaption .call-img {
    margin: -3rem auto 17px;
    border: 2px solid #00c2a5;
}
#Devis_form .form-group {
    margin-bottom: 7px;
}
#Devis_form .form-control {
	font-size: 13px;
	height: calc(1.5em + .75rem + 7px);
}

.compt-item {
    border-right: 1px solid #fff;
}
.slick-track .compt-item:last-child {
    border-right: none;
}
.compt-item a {
    display: block;
    background-color: white;
}
.compt-item img {
    display: block;
    background: #ddd;
}
.compt-item a span {
    display: flex;
    height: 70px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 0 15px;
    line-height: 130%;
    text-align: center;
    letter-spacing: 1px;
}
.headingLogo {
    margin-bottom: 45px;
}
.headingLogo a {
    display: block;
    width: 250px;
    margin: auto;
}
.section5_ .headingLogo a {
    margin-top: 0 !important;
}
.contact-tel {
    background: white;
    border-radius: 0 15px 15px 0;
    padding: 40px 0;
}
@media(max-width: 767px) {
	.contact-tel {
		padding: 0;
	}
	.compt-item a span {
	    letter-spacing: 0;
	    font-size: 13px;
	}
}
@media(max-width: 480px) {
	.compt-item {
		display: inline-block;
		vertical-align: top;
    	width: 50%;
    	margin: 15px 0;
	}
}

#realisations {
    padding-top: 13rem;
    padding-bottom: 60px;
    background: #cec8bc;
}
b.titre-album {
    display: block;
    font-size: 1.7rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
a.swipebox {
    display: flex;
    height: 250px;
    margin: 15px 0;
    align-items: center;
    justify-content: center;
    background: #ded9cf;
    overflow: hidden;
}
.Mobile a.swipebox {
    height: inherit;
} 

/*
Footer
*/
.mapLocation p {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
#Map {
    max-width: 1000px;
    height: 500px;
    margin: 30px auto;
    border: 10px solid #ddd;
    border-radius: 15px;
}
.tel-contact > a {
    padding: 10px 35px;
    background: #00c2a5;
    margin: 0 2px;
    font-size: 24px;
    color: #000000;
}
.tel-contact img {
    margin-right: 15px;
}
.footer {
    background-color: #000000;
    color: white;
    padding: 25px 0;
    text-align: center;
}
.footer > div {
    color: white !important;
}
.footer a {
    text-transform: uppercase;
    color: #00c2a5;
    letter-spacing: 1px;
    font-size: 12px;
}
.footer em {
    margin: 0 15px;
}

@media(max-width: 767px) {
	.tel-contact > a {
		margin: 15px 0;
	    display: block;
	}
}


/**
404
*/
.blog_pageIntrouvable {
    background: #00c2a5;
    position: fixed;
    height: 100%;
    width: 100%;
    font-size: 18px;
    z-index: 200000 !important;
    text-align: center;
    top: 0;
}
.blog_pageIntrouvable .d-flex {
    -ms-flex-pack: center!important;
    justify-content: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}
.blog_pageIntrouvable span {
  color: #ffffff;
}

.blog_pageIntrouvable > div {
  height: 100%;
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    max-width: 100%;
    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: white;
}
.blog_pageIntrouvable a:hover {
    text-decoration: underline;
}
.MentionL {
    background: #3c3c3c;
    padding-top: 16rem;
    padding-bottom: 60px;
}
.MentionL .container > div {
    background: white;
    padding: 40px;
    border: 2px solid #0262b7;
}
.MentionL ol li::marker {
    color: #00c2a5;
}
.MentionL h3 {
    font-size: 18px;
    color: #00c2a5;
}
@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;
  }
  .MentionL .container > div {
    padding-left: 0;
  }
  .MentionL {
    padding-top: 10rem;
    padding-bottom: 30px;
    }

}
#Messages {
    background: black;
    text-align: center;
    position: relative;
    z-index: 9999;
}
#Messages p {
    color: white;
    font-weight: bold;
    margin: 0;
    padding: 25px 0;
}

.container.text-agence {
    text-align: center;
        margin-top: 15px;
    max-width: 760px;
    line-height: 130%;
}