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

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

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

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

body {
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
	font-weight: 400;
}
a,
a:hover,
a:focus {
	color: inherit;
	text-decoration: none;
	outline: none;
	box-shadow: none;
}
ul, ol {
	list-style: none;
	padding-left: 0;
	margin: 0;
}
input,
a,
textarea {
	transform: all .3s ease;
	-webkit-transform: all .3s ease;
}
input:focus,
textarea:focus {
	outline: none !important;
	box-shadow: none !important;
}

img {
	max-width: 100%;
  height: auto;
}

h2 {
	font-size: 24px;
}

h3 {
	font-size: 18px;
}

/*
Header
*/
.Mobile #header {
    background: white;
    position: fixed;
    width: 100%;
    z-index: 90;
}
.topNavigation {
    background: #199dc7;
    color: black;
}
#mail, #mail2 { display: none; }
.telcontact > a {
    margin-right: 35px;
    font-size: 24px;
}
.Tablet .telcontact > a {
    display: flex;
    margin-right: 0;
}
.telcontact a img {
    width: 18px;
    margin-top: -5px;
}
.Mobile .telcontact {
    text-align: center;
    padding: 6px 0;
}
.Mobile .telcontact > a {
    margin: 0 5px;
    font-size: 16px;
}

.rappel-top {
    padding: 5px 0;
}
.Mobile .rappel-top {
    padding: 15px 0 0;
    text-align: center;
}
.rappel-top strong {
    font-weight: 500;
    text-align: center;
    display: block;
    color: #000000;
    margin-right: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}
.Mobile .rappel-top strong {
    color: #ffffff;
}
.rappel-top .form-control {
    display: inline-block;
    width: 200px;
    vertical-align: middle;
    font-size: 12px;
    border-radius: .25rem 0 0 .25rem;
    border-right: 0;
    border-color: #242223
}
.btn.btn-submit {
    background: #242223;
    vertical-align: middle;
    margin: 0;
    font-size: 12px;
    padding: .375rem .75rem;
    border-radius: 0 .25rem .25rem 0;
    border-color: #242223;
    border-left: none;
    color: #fff;
}
.middleNavigation {
    padding: 10px 0;
}
.Tablet .middleNavigation .row,
.Mobile .middleNavigation .row {
    justify-content: space-between;
}
.logo {
	width: 240px;
    display: block;
    margin: auto;
}
.Mobile a.logo {
    width: 100%;
}
.Mobile .logo_ql {
    text-align: center;
    margin-top: 15px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}
.logo_ql img {
    display: inline-block;
    width: 90px;
    margin: 0 15px;
}
.Mobile .logo_ql img {
    width: 120px;
    margin: 10px 5px
}
.botNavigation {
    border-top: 1.5px solid #199dc7;
    border-bottom: 1.5px solid #199dc7;
}
@media (min-width: 1200px) {
	.botNavigation .container {
	    max-width: 1400px;
	}
}
@media (min-width: 1400px) {
	.botNavigation .container {
	    max-width: 1500px;
	}
}
.nav-list {
    display: table;
    width: 100%;
}
.nav-item {
    display: table-cell;
    vertical-align: middle;
    padding: 0 5px;
}
.nav-item > a {
    display: block;
    line-height: 130%;
    text-align: center;
    font-size: 16px;
    padding: 10px 0;
}
.nav-item.active > a {
    color: #8c4500;
}

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


/**
Homeslider
*/
.homeslider {
    height: 600px;
    background: #eeeeee;
    position: relative;
}
.sliderImg {
	height: 600px;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}
.Mobile .homeslider,
.Mobile .sliderImg,
.Mobile .fullscreen {
    height: 500px;
}
.fullscreen {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 600px;
}
.homeslider .container,
.homeslider .container > .row {
	height: 100%;
}
.btn-rea {
    background: #199dc7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    color: black;
    padding: 7px 35px;
    transition: box-shadow .3s ease-out;
}
.btn-rea:hover {
    box-shadow: 6px 5px black
}
.captionSlider,
.Devisgratuit {
    height: 100%;
}
.Mobile .Devisgratuit {
    padding-top: 25px;
}
.Devisgratuit > div {
    position: relative;
}
.captionSlider > div {margin-bottom: 3rem;}
.Mobile .captionSlider > div {
    margin-bottom: 0;
    margin-top: 8rem;
}
.captionSlider h1 {
	background: rgba(0, 0, 0, 0.23);
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    padding-right: 20px;
    font-size: 50px;
    border-left: 15px solid #199dc7;
    padding-left: 25px;
}
.Tablet .captionSlider h1 {
    font-size: 36px;
}
.Mobile .captionSlider h1 {
    font-size: 26px;
}
.item-devis {
    background: white;
    padding: 40px;
    position: relative;
    margin: -15px 15px 0 0;
}
.Devisgratuit > div.col-12:before {
    content: "";
    position: absolute;
    border: 5px solid #199dc7;
    width: 93%;
    height: 100%;
    top: 20px;
    left: 25px;
}
.Devisgratuit h3 {
    
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}
.Devisgratuit .form-control {
    margin: 5px 0;
    font-size: 14px;
    padding: 16px;
    border: 2px solid #ddd;
}
.Devisgratuit .form-control:focus {
    border-color: #199dc7;
}

.btn-devis {
    background: #242223;
    color: white;
    display: block;
    width: 85%;
    margin: 15px auto 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border-radius: 25px;
    padding: 10px;
}
.categories {
    padding-top: 25px;
}
.cat-item {
    padding: 0 5px;
}
.Mobile .cat-item {
    padding: 0;
}
.Mobile .carousel-cat {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
    padding: 0 15px;
}
.cat-item > a {
    display: flex;
    height: 250px;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
}
.Mobile .cat-item > a {
    background-size: cover;
    height: 200px;
}
.cat-item > a span {
    display: flex;
    background: rgba(255, 255, 255, 0.52);
    padding: 15px;
    
    text-transform: uppercase;
    font-size: 16px;
    height: 78px;
    align-items: center;
    justify-content: center;
}
/* Mobile navigation */
.nav-mobile {
    display: none;
    cursor: pointer;
    background: #000000 url(../images//nav.svg) no-repeat 80% center;
    background-size: 18px;
    height: 40px;
    width: 90px;
    line-height: 41px;
    text-align: left;
    padding-left: 12px;
    color: white;
    text-transform: uppercase;
    margin-right: 15px;
}

/* Mobile navigation, clickable area for revealing <ul> */
.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) {
  .nav-mobile {
    display: block;
  }

  .botNavigation {
    position: absolute;
    width: 100%;
    z-index: 20;
    background: white;
  }
  .botNavigation .container {
    padding: 0;
  }
  .nav {
    width: 100%;
  }

  .nav-list {
    display: none;
  }

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

  .nav-item > a {
    text-align: left;
  }

  .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%;
  }
}
/*
Contenu
*/
.Contenu {
    padding-top: 80px;
}
.Mobile .Contenu {
    padding-top: 20px;
    background-color: #f7f7f7;
    margin-top: 20px;
}
.Services {
    padding: 80px 0;
}
.Mobile .Services {
    padding-bottom: 20px;
}
.Titre {
	display: block;
    position: relative;
    padding: 50px 0 50px;
    text-align: center;
}
.Mobile .Titre {
    padding-top: 50px;
}
.Titre:before {
    content: "";
    position: absolute;
    border-top: 1px solid #7ac7de;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.Mobile .Titre:before {
    top: 53%;
}
.Titre span {
    background: #484848;
    color: white;
    position: relative;
    padding: 0 50px;
    font-size: 36px;
    display: inline-block;
    max-width: 80%;
}
.Mobile .Titre span {
    padding: 0 10px;
    font-size: 20px;
    max-width: 90%;
}
ul.Liens {
    margin-left: -5px !important;
    margin-right: -5px !important;
}
ul.Liens li {
    padding: 5px !important;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
ul.Liens li a {
    display: flex;
    border: 1px solid;
    padding: 5px 10px;
    line-height: 130%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    align-items: center;
    height: 100%;
    justify-content: center;
    text-align: center;
    color: #ffffff
}
.Mobile ul.Liens li a {
    padding: 14px 10px;
}
ul.Liens li:hover a {
    background: #ffffff;
    border-color: #ffffff;
    color: black;
}

.mainright .Devisgratuit {
    background: #efefef;
    padding: 20px;
    margin-bottom: 30px;
}
#Map {
	height: 400px;
    margin-top: 15px;
    border: 5px solid #efefef;
}
.list-services {
    margin: 30px 0;
}
.list-services .h3 {
    background: #000;
    padding: 15px;
    font-size: 22px;
    color: white;
}
.item-serv li {
    background: #efefef;
    padding: 10px 15px;
    margin: 3px 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.item-serv li.active {
    background: #199dc7;
}
.item-serv li:hover {
    border-left: 7px solid #199dc7;
}
.item-serv li a {
    display: block;
}
.MapRight {
    margin-bottom: 30px;
}
.MapRight .h3 {
    font-size: 22px;
}
.MapRight > span {
    background: #199dc7;
    color: black;
    padding: 5px 35px;
    display: inline-block;
    margin-bottom: 10px;
}
.contact-tel {
    border: 2px solid #199dc7;
    margin-bottom: 30px;
}
.tel-block {
    padding: 20px 20px 5px;
    text-align: center;
    font-size: 27px;
}
.tel-block > div {
    border: 2px solid #283139;
    margin-bottom: 15px;
    border-radius: 50px;
    display: table;
    width: 100%;
    overflow: hidden;
}
.tel-block span img {
    filter: invert(1);
    width: 16px;
}
.contact-text {
    background: #199dc7;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    padding: 15px;
    position: relative;
}
.contact-text:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #fff;
    position: absolute;
    top: 0;
    left: 35px;
}
.tel-block > div p {
    margin-bottom: 0;
    display: table-cell;
    vertical-align: middle;
    padding-top: 5px;
    
    padding-bottom: 5px;
}
.Mobile .tel-block > div p {
  font-size: 20px;
}
.tel-block > div > span {
    background: #283139;
    color: white;
    display: table-cell;
    width: 75px;
    font-size: 18px;
    vertical-align: middle;
}
.imgbg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left bottom;
    height: 100%;
}
.engagement {
    background: #f7f7f7;
    margin-bottom: 30px;
    padding: 20px;
}
.engagement .h4,
.location .h4 {
    height: 100px;
    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,
.location .h4:before {
    content: "";
    background-color: rgba(29, 29, 31, 0.59);
    position: absolute;
    width: 100%;
    height: 100%;
}
.engagement .h4 span,
.location .h4 span {
    position: relative;
}
.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-size: contain;
  background-position: center;
  position: absolute;
  left: 10px;
  width: 16px;
  height: 16px;
}
.intervention-block-right {
    background: #f7f7f7;
    margin-bottom: 30px;
    padding: 40px 20px 20px;
}
.text-intervention h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
}
.intervention-block-right img {
    max-width: 100%;
    width: 150px;
}
.serv_content {
    background-color: #484848;
    margin-top: 70px;
}

/*
Footer
*/
#footer {
    background: #199dc7;
    color: black;
    padding: 25px 0;
}
.Mobile #footer {
    text-align: center;
}
#footer p {
    margin-bottom: 0;
}
p.adresse {
    font-size: 18px;
}
.Mobile p.adresse {
    font-size: 14px;
}
p.tel {
    font-size: 20px;
    
}
/*p.tel img {
    filter: invert(1);
    
}*/

p.tel span {
    margin: 0 10px;
    display: inline-block;
}
.Mobile p.tel {
    font-size: 16px;
}
.Mobile p.tel {
    margin: 15px 0 !important;
    border-top: 1px solid;
    padding: 15px 0;
    border-bottom: 1px solid;
}
.btn:hover {
    color: #fff;
    text-decoration: none;
}

/**
404
*/
.blog_pageIntrouvable {
    background: #199dc7;
    position: fixed;
    height: 100%;
    width: 100%;
    font-size: 18px;
    z-index: 10000 !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: #ffffff;
}

.blog_pageIntrouvable > div {
  height: 100%;
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: #242223;
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #242223;
}
.blog_pageIntrouvable a {
    color: white;
}
.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; }
}

#realisations {
    padding: 60px 0;
}
body.Mobile.mentions .wrap,
.Mobile #realisations {
    padding-top: 12rem;
}
.swipebox {
    background: white;
    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;
}

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