@media only screen and (min-width: 479px) {
  .res-d-xs {
    display: block !important;
  }

  .res-di-xs {
    display: inline !important;
  }

  .res-df-xs {
    display: flex !important;
  }
}
@media only screen and (min-width: 959px) {
  .res-d-sm {
    display: block !important;
  }

  .res-di-sm {
    display: inline !important;
  }

  .res-df-sm {
    display: flex !important;
  }
}
@media only screen and (min-width: 1280px) {
  .res-d-md {
    display: block !important;
  }

  .res-di-md {
    display: inline !important;
  }

  .res-df-md {
    display: flex !important;
  }
}
@media only screen and (min-width: 1600px) {
  .res-d-lg {
    display: block !important;
  }

  .res-di-lg {
    display: inline !important;
  }

  .res-df-lg {
    display: flex !important;
  }
}
@media only screen and (min-width: 479px) {
  .res-h-xs {
    display: none !important;
  }
}
@media only screen and (min-width: 959px) {
  .res-h-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 1280px) {
  .res-h-md {
    display: none !important;
  }
}
@media only screen and (min-width: 1600px) {
  .res-h-lg {
    display: none !important;
  }
}
@font-face {
  font-family: "Akrobat Regular";
  src: url("../font/Akrobat-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Akrobat Black";
  src: url("../font/Akrobat-Black.otf") format("opentype");
}
@font-face {
  font-family: "Akrobat Bold";
  src: url("../font/Akrobat-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Akrobat Extra Bold";
  src: url("../font/Akrobat-ExtraBold.otf") format("opentype");
}
html, body {
  margin: 0;
  font-family: "Akrobat Regular", Helvetica, Arial, Lucida, sans-serif;
}

header {
  width: 100%;
  z-index: 2;
  background-color: black;
}
@media only screen and (min-width: 959px) {
  header {
    position: fixed;
    top: 0;
  }
}
header .container {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "logo main-title main-img";
  height: 150px;
}
@media only screen and (min-width: 1280px) {
  header .container {
    grid-template-columns: 330px 1fr 1fr;
  }
}
header .logo {
  position: relative;
  grid-area: logo;
  max-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}
@media only screen and (min-width: 959px) {
  header .logo {
    justify-content: flex-start;
    align-items: end;
  }
}
header .logo img {
  max-height: 130px;
  max-width: 60vw;
}
@media only screen and (min-width: 959px) {
  header .logo img {
    position: relative;
    bottom: -70px;
    max-height: 150px;
    max-width: 24vw;
  }
}
header .main-title {
  grid-area: main-title;
  display: none;
  align-items: center;
}
@media only screen and (min-width: 959px) {
  header .main-title {
    display: flex;
  }
}
header .main-title img {
  width: 35vw;
  max-width: 566px;
}
header .banner {
  display: none;
  justify-content: center;
  align-items: end;
}
@media only screen and (min-width: 1280px) {
  header .banner {
    display: flex;
  }
}
header .banner img {
  max-width: 33vw;
  max-height: 150px;
}
header .mobile-menu-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 959px) {
  header .mobile-menu-container {
    display: none;
  }
}
header .mobile-menu-container img.hamburger {
  width: 40px;
}
header .mobile-menu-container img.hamburger:hover {
  cursor: pointer;
}

.nav-container {
  display: none;
}
@media only screen and (max-width: 959px) {
  .nav-container {
    width: 80%;
    margin: 0 auto;
  }
}
.nav-container nav a {
  font-family: "Akrobat Extra Bold", Helvetica, Arial, Lucida, sans-serif;
  font-size: 20px;
  color: #0073b9;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.nav-container nav a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 959px) {
  .nav-container nav {
    display: grid;
    grid-gap: 10px;
    justify-content: center;
    align-items: center;
    background-color: black;
    text-align: center;
    padding-top: 10px;
    border-top: 3px solid #25BCE7;
  }
  .nav-container nav a {
    color: #25BCE7;
  }
}
@media only screen and (min-width: 959px) {
  .nav-container nav {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 60px;
    justify-content: end;
    align-items: center;
    margin-right: 250px;
  }
}
@media only screen and (min-width: 1280px) {
  .nav-container nav {
    margin-right: 400px;
  }
}
@media only screen and (min-width: 1600px) {
  .nav-container nav {
    margin-right: 600px;
  }
}
@media only screen and (min-width: 959px) {
  .nav-container {
    display: block !important;
    position: fixed;
    top: 0;
    z-index: 1;
    background-color: white;
    padding-top: 10px;
    margin-top: 150px;
    width: 100%;
  }
}

main {
  max-width: 1281px;
  margin-bottom: 130px;
  padding: 10px;
}
@media only screen and (min-width: 959px) {
  main {
    margin-top: 190px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 70px;
  }
}
main .section-anchor {
  display: block;
  position: relative;
  top: 0;
  visibility: hidden;
}
@media only screen and (min-width: 959px) {
  main .section-anchor {
    top: -200px;
  }
}
main section {
  min-height: 75vh;
}
main section .section-title {
  font-family: "Akrobat Bold", Helvetica, Arial, Lucida, sans-serif;
}
@media only screen and (min-width: 959px) {
  main section .section-title {
    margin-top: 0;
  }
}
main section .section-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
}
@media only screen and (min-width: 959px) {
  main section .section-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1280px) {
  main section .section-content {
    grid-template-columns: 2fr 2fr 1fr;
    grid-gap: 40px;
  }
}
main section .section-content .section-img img {
  max-width: 90vw;
}
@media only screen and (min-width: 959px) {
  main section .section-content .section-img img {
    max-width: 40vw;
    max-height: 500px;
  }
}
main section .section-content .section-img2 {
  display: none;
}
main section .section-content .section-img2 img {
  max-width: 100%;
}
@media only screen and (min-width: 1280px) {
  main section .section-content .section-img2 {
    display: block;
  }
}
main #sectionNettoyage .section-img2 img {
  position: absolute;
  right: 40px;
  bottom: 80px;
  max-width: 360px;
}
main #sectionAvantages {
  position: relative;
}
main #sectionAvantages .section-img2 {
  position: absolute;
  left: 840px;
  top: 30px;
}
main #sectionAvantages .section-img2 img {
  width: 400px;
  max-width: none;
}
main #sectionContact form {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
@media only screen and (min-width: 959px) {
  main #sectionContact form {
    position: relative;
    top: -40px;
  }
}
main #sectionContact form input, main #sectionContact form textarea {
  background-color: #eee;
  padding: 16px;
  font-size: 14px;
  color: #999;
  border-width: 0;
  font-family: "Akrobat Bold", Helvetica, Arial, Lucida, sans-serif;
}
main #sectionContact form input:focus, main #sectionContact form textarea:focus {
  border-color: #2d3940;
  color: #3e3e3e;
}
main #sectionContact form .names {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
@media only screen and (min-width: 959px) {
  main #sectionContact form .names {
    grid-template-columns: 1fr 1fr;
  }
}
main #sectionContact form button {
  width: 115px;
  height: 50px;
  justify-self: right;
  padding: 0.3em 1em;
  background-color: white;
  font-size: 100%;
  font-weight: 400;
  color: #000000 !important;
  border: 2px solid;
  border-color: black;
  border-radius: 18px;
  letter-spacing: 2px;
  font-family: "Akrobat Black", Helvetica, Arial, Lucida, sans-serif !important;
  text-transform: uppercase !important;
}
main #sectionContact form button:hover {
  background-color: rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  background-color: black;
}
footer .container {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  justify-content: center;
  align-items: center;
  max-width: 1366px;
  height: 110px;
  margin: 0 auto;
}
@media only screen and (min-width: 1280px) {
  footer .container {
    grid-template-columns: 1fr 1fr;
    grid-gap: 100px;
    position: relative;
    left: -40px;
  }
}
footer .container .coords-copyright .coords {
  display: block;
  text-align: center;
  color: white;
  font-family: "Akrobat Regular", Helvetica, Arial, Lucida, sans-serif;
  letter-spacing: 2px;
  margin-right: 0;
}
@media only screen and (min-width: 1280px) {
  footer .container .coords-copyright .coords {
    display: flex;
    justify-content: center;
    align-items: baseline;
  }
}
footer .container .coords-copyright .coords .street {
  color: #999;
}
footer .container .coords-copyright .coords .phone-p1 {
  color: white;
}
footer .container .coords-copyright .coords .phone-p2 {
  color: #25bce7;
  font-weight: 700;
  font-size: 19px;
}
footer .container .companies {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
footer .container .companies img {
  height: 40px;
}
@media only screen and (min-width: 1280px) {
  footer .container .companies img {
    justify-content: flex-start;
    height: 86px;
  }
}
footer .container .copyright {
  text-align: center;
}
@media only screen and (min-width: 959px) {
  footer .container .copyright {
    margin-top: 10px;
  }
}
footer .container .copyright, footer .container .copyright a {
  color: #25BCE7;
  font-size: 1.1em;
  text-decoration: none;
}

.contact-message {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.jcarousel-container {
  position: relative;
  width: 350px;
  height: 210px;
}
@media only screen and (min-width: 959px) {
  .jcarousel-container {
    width: 500px;
    height: 300px;
  }
}

.jcarousel-pagination {
  width: 240px;
  left: calc(50% - (240px / 2));
  position: absolute;
  bottom: 10px;
}
@media only screen and (min-width: 959px) {
  .jcarousel-pagination {
    left: calc(50% - (240px / 2));
    width: 500px;
  }
}
.jcarousel-pagination a {
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 7px;
  margin-right: 10px;
  text-indent: -9999px;
  outline: none;
}
.jcarousel-pagination a.active {
  background-color: white;
}

/*
This is the visible area of you carousel.
Set a width here to define how much items are visible.
The width can be either fixed in px or flexible in %.
Position must be relative!
*/
.jcarousel {
  position: relative;
  overflow: hidden;
  z-index: -1;
  width: 350px;
  height: 210px;
}
@media only screen and (min-width: 959px) {
  .jcarousel {
    width: 500px;
    height: 300px;
  }
}

/*
This is the container of the carousel items.
You must ensure that the position is relative or absolute and
that the width is big enough to contain all items.
*/
.jcarousel ul {
  width: 10000em;
  position: relative;
  /* Optional, required in this case since it's a <ul> element */
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
.jcarousel li {
  /* Required only for block elements like <li>'s */
  float: left;
}
.jcarousel li img {
  object-fit: cover;
  object-position: center center;
  width: 350px;
  height: 210px;
}
@media only screen and (min-width: 959px) {
  .jcarousel li img {
    width: 500px;
    height: 300px;
  }
}

/*# sourceMappingURL=style.css.map */
