:root {
  --anthra: #1a2d41;
  --white: #f7f7f7;
  --blue: #7f94a3;
  --black: #343434;
  --main-font: "Montserrat", sans-serif;
  --title-font: "Cinzel", serif;
}
body,
html {
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: var(--main-font);
  background-color: var(--white);
  font-size: 1.1em;
  color: var(--black);
}
h1,
h2 {
  text-align: center;
}
p {
  text-align: center;
  line-height: 150%;
}
h1 {
  text-transform: uppercase;
  font-family: var(--title-font);
  font-weight: 900;
  font-size: 2.5em;
}
h2 {
  font-size: 1.8em;
}
a {
  color: inherit;
}
a:hover {
  color: var(--blue);
  -webkit-text-decoration-color: var(--anthra);
  text-decoration-color: var(--anthra);
}
.separator-h {
  display: block;
  background-color: var(--blue);
  width: 33%;
  height: 2px;
  opacity: 0.5;
  border-radius: 2px;
  margin: auto;
}
.separator-v {
  display: block;
  background-color: var(--blue);
  width: 2px;
  height: 200px;
  opacity: 0.5;
  border-radius: 2px;
}
img {
  width: 100%;
}
/****************************************
****************FORM**********************/
form {
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/********************************
*********************************/
.section {
  padding: 70px 0;
}
.main-header {
  background-color: var(--anthra);
  padding-bottom: 5px;
}
.logo-container {
  width: 300px;
}
.logo-container,
.nuage-marques {
  margin: auto;
}
.about {
  padding-top: 5px;
  padding-bottom: 20px;
}
.nuage-marques {
  width: 30%;
}
.btn-contact {
  background-color: #34951A;
  width: 250px;
  height: 55px;
  border-radius: 3px;
  margin: auto;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid #47D422;
  cursor: pointer;
  color: white;
}
.btn-contact:hover {
  background-color: var(--white);
  color: var(--anthra);
}
.btn-contact a {
  text-decoration: none;
  font-size: 1.2em;
}
.features_icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-bottom: 75px;
}
.features_icons > div {
  width: 250px;
  height: 250px;
  border-radius: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 5px 5px 1px 1px var(--anthra);
  box-shadow: 5px 5px 1px 1px var(--anthra);
}
.features_icons .fas {
  font-size: 5em;
  color: var(--anthra);
}
.features_img {
  margin: auto;
  height: 300px;
  border-radius: 2px;
}
.features_img img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.features_text {
  padding: 0 200px;
}
.devis_insert {
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.devis h2 {
  padding-top: 45px;
}
.devis_insert img {
  width: calc(100% / 3);
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.location_insert_img {
  height: 350px;
}
.location_insert_text {
  font-size: 1.5em;
  font-weight: 600;
}
.location_insert img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 2px;
}
.marques {
  background-color: white;
}
#location {
  padding: 50px 0 70px 0;
}
#location h3 {
  margin-top: 0;
  text-decoration: underline;
}
.location_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 0 150px 0 150px;
  font-size: 1.3em;
}
footer {
  height: 30px;
  background-color: var(--blue);
  font-size: 0.8em;
  text-align: center;
  padding-top: 15px;
  color: black;
}

/****************************************
*****************************************/
@media all and (max-width: 667px) {
  .section,
  #location {
    padding: 25px 0;
  }
  p {
    text-align: justify;
    line-height: 135%;
  }
  .about p,
  .features_text,
  .devis p {
    padding: 0 8px;
  }
  .features_icons {
    margin-bottom: 30px;
  }
  .features_icons > div {
    width: 115px;
    height: 115px;
    -webkit-box-shadow: 2px 2px 1px 1px var(--anthra);
    box-shadow: 2px 2px 1px 1px var(--anthra);
  }
  .features_icons h2 {
    font-size: 0.9em;
  }
  .features_icons .fas {
    font-size: 1em;
  }
  .features_img {
    height: auto;
  }
  .location_insert {
    height: auto;
  }
  .location_insert_text {
    text-align: center;
    margin: 0;
  }
  .devis_insert img:first-child {
    width: 100%;
  }
  .devis_insert img:nth-child(2),
  .devis_insert img:nth-child(3) {
    display: none;
  }
  .nuage-marques {
    width: auto;
  }
  .location-container {
    padding: 0;
  }
  .separator-v {
    display: none;
  }
}
@media all and (min-width: 667px) and (max-width: 1023px) {
  .features {
    padding-bottom: 0;
  }
  .features_text {
    padding: 0 15px;
  }
  .nuage-marques {
    width: auto;
  }
  .location_insert {
    height: auto;
  }
  .location_container {
    padding: 0;
  }
  .location_container div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
  }
}
@media all and (min-width: 1024px) and (max-width: 1280px) {
  .features {
    padding-bottom: 0;
  }
  .features_text {
    padding: 0 15px;
  }
  .nuage-marques {
    width: 50%;
  }
  .location_insert {
    height: auto;
  }
  .location-container {
    padding: 0;
  }
}
