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

.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-family: 'Montserrat', sans-serif;
	font-size: 14px;
      line-height: 24px;
    color: #444444;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
h2 {
    font-size: 20px;
    color: #222222;
}
.Mobile h2,
.Mobile .h2 {
    font-size: 20px;
    line-height: 1.4;
}

img {
    max-width: 100%;
}

.header-container {
    background: #2b6dc3;
    color: white;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    padding: 10px 0;
}
.Mobile .header-top {
  height: inherit;
  padding: 0;
}
.Mobile .tel-block {
    text-align: center;
    background: #1c3e90;
    margin-top: 0;
}
.tel-block a {
    color: inherit;
    margin-right: 10px;
    font-size: 22px;
    letter-spacing: -1px;
    color: white;
}
.tel-block img {
    width: 19px;
    height: 21px;
    margin-top: -4px;
    filter: invert(1);
}
.Tablet .tel-block a {
    padding: 12px 0;
    font-size: 24px;
    letter-spacing: 0;
    display: inline-block;
}
.Mobile .tel-block a {
  font-size: 20px;
    display: inline-block;
    padding: 12px 0;
}
.tel-block a:hover {
	text-decoration: none;
}
.Mobile .header-top .devisGratuit {
    background: #7ea302;
    color: white;
    text-transform: uppercase;
    display: block;
    padding: 15px 15px;
    font-size: 16px;
    text-align: center;
}
.rappel-block strong {
    text-transform: uppercase;
    font-size: 12px;
    color: white;
}
#mail, #mail2 { display: none; }
#rappel_immediat .form-input {
    font-size: 12px;
    background: white;
    border: 1px solid transparent;
    padding: 2px 10px;
    display: inline-block;
    vertical-align: middle;
    width: 155px;
}
#rappel_immediat .btn-submit {
    background: #7ea302;
    font-size: 12px;
    color: black;
    padding: 5px 15px;
    border-radius: 0;
    margin-left: 1px;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 1px;
}

.logo-header {
    background: #f5f5f5;
    display: block;
    width: 280px;
    height: 175px;
    margin-top: 70px;
    position: relative;
    border: 2px solid #2b6dc3;
    border-radius: 0 0 25px 25px;
    margin-right: 5px;
    z-index: 35;
    padding: 10px;
}
.Mobile .logo-header {
    border-radius: 0;
    border: none;
    margin: 0;
    padding: 0;
    width: 150px;
    height: inherit;
    background: white;
}
.logo-header img {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 7px auto 0;
}

/*
Nav
*/
.nav {
    background: #f5f5f5;
    margin-top: -40px;
    position: relative;
    margin-bottom: 35px;
}
.nav-list {
    list-style: none;
    display: table;
    width: 100%;
    padding-left: 0;
    margin: 0;
    /*border-bottom: 2px solid #2b6dc3;*/
    /*text-align: center;*/
}
.Desktop .nav-item {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.nav-item a {
    display: block;
    padding: 10px 5px;
    font-size: 14px;
    color: black;
    line-height: 130%;
    font-weight: bold;
    height: 85px;
}
.nav-item.active a {
        color: white;
    background: #2b6dc3;
}


/* Mobile navigation */
.nav-mobile {
  display: none;
  cursor: pointer;
  background: #739504 url(../images/nav.svg) no-repeat 80px center;
  background-size: 18px;
  height: 50px;
  width: 120px;
  line-height: 50px;
  padding-left: 8px;
  text-transform: uppercase;
  font-size: 20px;
}

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

  .nav {
    width: 100%;
    margin: 0;
  }

  .nav-list {
    display: none;
    box-shadow: 0px 2px 5px 0px #7ea302;
  }

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

  .nav-item > a {
    padding: 15px;
    height: auto;
  }

  .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%;
  }
}
.Tablet .nav-list {
  text-align: right;
}

/*
homeslider
*/
.homeslider {
	position: relative;
  border-bottom: 5px solid #2b6dc3;
    height: 500px;
}
.Mobile .homeslider {
  height: 350px;
  margin-top: 140px;
}
.sliderImg {
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    position: absolute;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

.homeslider .container {
    height: 100%;
    display: table;
    position: relative;
}

.Tablet .captionSlider,
.Desktop .captionSlider {
    display: table-cell;
    vertical-align: middle;
}
.captionSlider::after {
  content: "";
  display: table;
  clear: both;
}
.Tablet .leftText,
.Desktop .leftText {
    float: left;
    width: 50%;
}

.Mobile .leftText {
  float: none;
  width: 100%;
}
.leftText .h1 {
    padding-top: 5rem;
    color: white;
    text-shadow: -1px -1px 6px #0f1d33;
}
.Desktop .leftText .h1 {
  padding-top: 7rem;
}
.Mobile .leftText .h1 {
  font-size: 30px;
}
.rightBlock > div {
    display: table-cell;
    vertical-align: middle;
}
.logoExt {
    display: inline-block;
    background: white;
    padding: 10px;
    border-radius: 5px;
    margin-top: 25px;
}
.logoExt img {
    width: 85px;
    margin: 0 15px;
}
.rightBlock .logoExt {
    background: no-repeat;
    padding: 0;
    margin-top: 0;
    border-radius: 0;
}
.rightBlock .logoExt img {
    margin: 0 5px;
}
.rightBlock .rappel-block {
    padding-left: 25px;
}
.rightText {
    float: right;
    width: 350px;
}
.Tablet .rightText {
  width: 300px;
}
.Devisgratuit {
    background: #f5f5f5;
    border-top: 5px solid #2b6dc3;
    padding: 20px;
}
.Devisgratuit .h3 {
    text-transform: uppercase;
    text-align: center;
}
#FormDevis .form-input {
    display: block;
    background: white;
    border: 1px solid #53321b;
    margin: 5px 0;
    padding: 8px;
    font-size: 12px;
    border-radius: 5px;
    box-shadow: inset -1px 4px 5px 0px #ddd;
    width: 100%;
}
#FormDevis textarea.form-input {
    height: 75px;
}
#FormDevis .btn-submit {
    background: #7ea302;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
}


/*
Cat
*/
.section-cat {
    text-align: center;
}
.titre-item-cat .h2 {
    text-transform: uppercase;
    font-size: 36px;
}
.Mobile .titre-item-cat .h2 {
    font-size: 20px;
}
.categories {
    list-style: none;
    padding-left: 0;
    margin: 0 -7px;
    display: table;
    width: 100%;
}
.Mobile .categories {
  margin: 0;
}
.cat-item {
    display: inline-block;
    width: 25%;
    margin: 7px 0;
    padding: 0 7px;
}
.Tablet .cat-item,
.Mobile .cat-item {
    width: 50%;
    padding: 5px;
}
.cat-item a {
    background-color: #ddd;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    height: 200px;
    position: relative;
}
.cat-item span {
    background: white;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px;
    color: #000;
    font-size: 14px;
    width: 100%;
    border-bottom: 2px solid #2b6dc3;
}
.Mobile .cat-item span {
    font-size: 14px;
    padding: 5px;
}
.cat-item.active a span {
    color: #000000;
    background: #7ea302;
}

/*
Content
*/
.corps {
    padding-bottom: 50px;
}
.Block {
    display: flex;
    margin: 15px 0;
}
.Mobile .Block {
  display: block;
}
.Block.Block0 {
    border-bottom: 1px dashed #ddd;
    padding-bottom: 35px;
    margin-bottom: 35px;
}
.Block p {
  margin-bottom: 0;
}
.Desktop .Block.Block0 > .ImgLeft, 
.Desktop .Block.Block0 > .bloc-une,
.Tablet .Block.Block0 > .ImgLeft, 
.Tablet .Block.Block0 > .bloc-une {
    width: 50%;
    flex: 0 0 50%;
}

.Block .bloc-une {
    padding-left: 25px;
}
.Mobile .Block .bloc-une {
  padding-left: 0;
}
.ImgLeft,
.ImgFull {
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.Mobile .ImgLeft img,
.Mobile .ImgFull img {
    width: 100%;
    margin-bottom: 15px;
}
.Mobile .ImgLeft,
.Mobile .ImgFull {
  background:none !important;
}
.Desktop .Block> .ImgFull,
.Desktop .Block> .ImgFull {
    width: 25%;
    flex: 0 0 25%;
}
.Tablet .Block> .ImgFull,
.Tablet .Block> .ImgFull {
    width: 35;
    flex: 0 0 35%;
}

.Services {
    background: #2b6dc3;
    padding: 80px 0;
}
.Mobile .Services {
    padding: 30px 0;
}
.Titre {
    color: #ffefe8;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 35px;
}
.Mobile .Titre {
    margin-bottom: 7px;
}
.Desktop .Liens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}
.Liens a,
.Liens a:hover {
    display: block;
    color: white;
}
.Liens a:hover {
    text-decoration: underline;
}
.Tablet .Liens a {
  width: 50%;
}
.Mobile .Liens a {
  width: 100%;
  margin: 0;
    padding: 12px 0;
}
.footer-lo img {
    padding-top: 25px;
    padding-bottom: 25px;
    width: 230px;
    margin: auto;
    display: inline-block;
}
.Desktop .footer-lo img {
    width: 300px;
}

/*
Footer
*/
#footer {
    background: #f5f5f5;
}
.Mobile #footer {
  padding-bottom: 3em;
}
.copyright {
  border-top: 2px solid #bdbbba;
  text-align: center;
  margin-bottom: 0;
  padding: 20px 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.copyright a {
  color: #913509;
}
.Mobile .copyright a {
    display: block;
    padding-top: 7px;
}
#footer .adresse {
    margin-bottom: 5px;
    font-size: 16px;
}
#footer .tel {
    font-size: 24px;
}
.Desktop #footer .tel span {
    padding: 0 10px;
}
.Mobile #footer .tel span {
    display: block;
}
.Mobile p.tel a {
    display: block;
    padding: 12px 0;
}

.tel-block {
  text-align: center;
    margin-top: -12px;
}
.Tablet .tel-block {
    text-align: right;
    background: white;
    padding: 0 20px 0 0;
}
.btn-rea {
  background: #7ea302;
    text-transform: uppercase;
    letter-spacing: 1px !important;
    padding: 0.375rem 1.75rem;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 1rem;
    display: inline-block;
    font-weight: bold;
    color: black;
}
.titre-album {
  display: block;
    width: 100%;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 2em 0;
}
#footer .btn-rea {
  display: block;
    text-align: center;
    color: #fff;
    padding: 10px 0;
    font-size: 14px !important;
    position: fixed;
    bottom: 0;
}
a,
a:hover {
    color: inherit;
    text-decoration: none;
}
.Mobile header.header-container {
  background: white;
    position: fixed;
    top: 0;
    z-index: 1;
    width: 100%;
}
.swipebox img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}
.page-mention {
    padding: 0 50px;
}
.Mobile .page-mention {
    padding: 0 20px;
}
.Mobile.mentions h2 {
    margin-top: 25px;
}
.Mobile .h3,
.Mobile h3 {
    font-size: 18px;
}

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

.blog_pageIntrouvable > div {
  height: 100%;
}
.blog_pageIntrouvable h1 {
    font-size: 200px;
    color: #ffffff;
}
.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;
}
@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;
  }
}

div#Messages {
    text-align: center;
    padding: 15px 10px 0;
    font-size: 16px;
    font-weight: 500;
}
.Mobile div#Messages {
    position: absolute;
    top: 115px;
    z-index: 9;
    background: #fff;
    font-size: 14px;
}
.section-map {
    margin: 20px 0;
}
div#Map {
    width: 100%;
    height:350px;
    margin: auto;
}
#Map img.leaflet-tile {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
a.mailBlock {
    font-size: 16px;
    margin-top: 5px;
    display: inline-block;
}
.Mobile a.mailBlock {
    padding: 12px 0;
    display: block;
    text-align: center;
}
a.mailBlock img {
    width: 14px;
}

@media(max-width: 767px) {
  .telMobile a {
    color: black;
    font-size: 18px;
    font-weight: 700;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 10px 0;
    display: inline-block;
    vertical-align: middle;
    margin: 15px 0;
  }
  .telMobile em {
    color: black;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
    font-size: 24px;
  }
}
