@import url('https://fonts.googleapis.com/css?family=Roboto');

body,
html {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

nopadding {
    margin: 0;
    padding: 0;
}

h2 {
  font-size: 1.5em;
}

h3 {
    font-size: 1.3em;
}
/*****************
    SECTION 1
    HOME
*****************/

@media (min-width: 1200px) {
    #section_1 {
        height: 180px;
    }
}
@media (max-width: 1200px) {
    #section_1 {
        height: 270px;
    }
}
#section_1 {
  background-image: url(./assets/witech-guadeloupe-maintenance-depannage-electricite-generale-et-industrielle-accueil.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#section_1 #logo {
  /* position: absolute;
    top: 30px; */
  margin-top: 30px;
    max-width: 250px;
}

#section_1 h1 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 2em;
  font-weight: 400;
}

#section_1 #guadeloupe {
  font-size: 1.5em;
    color: #31befd;
  margin: 0px 0px 20px 0px;
}

#bouton_intervention_orange {
  font-size: 1em;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  padding: 10px 20px 10px 20px;
  background-color: #ea6032;
  color: white;

  transition: 0.4s;
}

#bouton_intervention_orange:hover {
  cursor: pointer;
  transform: translateX(1px) translateY(1px);
  transition: 0.4s;
}

#bouton_intervention_orange_smartphone {
  font-size: 0.8em;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  padding: 10px 20px 10px 20px;
  background-color: #ea6032;
  color: white;

  transition: 0.4s;
}

#bouton_intervention_orange_smartphone:hover {
  cursor: pointer;
  transform: translateX(1px) translateY(1px);
  transition: 0.4s;
}

.container-smartphone_header {
  display: none;
}

.smartphone_header {
  padding: 15px;
  padding-left: 30px;
  height: 90px;
  background-image: url(./assets/witech-guadeloupe-maintenance-depannage-electricite-generale-et-industrielle-xs-accueil.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.smartphone_header_content {
  text-align: center;
  padding: 10px 0px 10px 0px;
}

.smartphone_header_content h1 {
  font-size: 1.4em;
}
#guadeloupe_smartphone {
  font-size: 1.2em;
  color: #31befd;
}

@media screen and (max-width: 600px) {
  #section_1 {
    display: none;
  }
  .container-smartphone_header {
    display: initial;
  }
  .smartphone_header_content h2 {
    font-size: 1.5em;
  }
}

/*****************
    SECTION 2
    INTRO
*****************/

#section_2 {
  position: relative;
  padding: 40px 30px 40px 30px;
}

@media (min-width: 1340px) {
    #section_2 .section_2_subsection {
      padding: 0px 50px 0px 50px;
    }
}

@media (max-width: 600px) {
    #section_2 .section_2_subsection {
      padding: 0px 50px 0px 50px;
    }
}

#section_2 .section_2_title {
  font-weight: bold;
  margin-bottom: 30px;
}

#section_2 #icon1_section2 {
  position: absolute;
  top: 0px;
  left: -70px;
  width: 100px;
}
#section_2 #icon2_section2 {
  position: absolute;
  top: 0px;
  left: -40px;
  width: 70px;
}

@media screen and (max-width: 1340px) and (min-width: 601px) {
  #section_2 {
    padding: 20px 30px 20px 30px;
  }
  #section_2 .section_2_subsection {
    margin-top: 100px;
  }
  #section_2 #icon1_section2 {
    position: absolute;
    top: -80px;
    left: 33%;
    width: 100px;
  }
  #section_2 .section_2_subsection {
    margin-top: 100px;
  }
  #section_2 #icon2_section2 {
    position: absolute;
    top: -80px;
    left: 33%;
    width: 70px;
  }
}

@media screen and (max-width: 600px) {
  #section_2 {
    padding: 0 0px 20px 0px;
  }
  #section_2 .section_2_subsection p {
    text-align: justify;
  }
  .section_2_title {
    padding-left: 100px;
    padding-top: 30px;
    font-size: 1em;
    width: 330px;
  }
  .subsection_1 {
    padding-left: 120px;
    padding-top: 30px;
    font-size: 1em;
    width: 330px;
  }
  #section_2 #icon1_section2 {
    position: absolute;
    top: 15px;
    left: 50px;
  }
  #section_2 #icon2_section2 {
    position: absolute;
    top: 20px;
    left: 60px;
  }
}

@media screen and (max-width: 400px) {
  #section_2 {
    padding: 0 0px 20px 0px;
  }
  .section_2_title {
    padding-left: 60px;
    padding-top: 30px;
    font-size: 0.9em;
    width: 100%;
  }
  /* .subsection_1 {
    padding-left: 120px;
    padding-top: 30px;
    font-size: 1em;
    width: 330px;
  } */
  #section_2 #icon1_section2 {
    width: 60px;
    position: absolute;
    top: 30px;
    left: 40px;
  }
  #section_2 #icon2_section2 {
    width: 40px;
    position: absolute;
    top: 30px;
    left: 50px;
  }
}

/*****************
    SECTION 3
    CONTACT
*****************/

#section_3 {
  padding: 50px 20px 50px 20px;
  background-color: #ea6032;
  font-weight: bold;
}

#boutton_intervention_yellow {
  margin-top: 20px;

  font-weight: bold;
  border: none;
  border-radius: 30px;
  padding: 10px 20px 10px 20px;
  background-color: #ffc107;
  color: black;

  transition: 0.4s;
}

#boutton_intervention_yellow:hover {
  cursor: pointer;
  transform: translateX(1px) translateY(1px);
  transition: 0.4s;
}

@media screen and (min-width: 800px) {
  h4 {
    font-size: 2em;
  }
}

/*****************
    SECTION 4
    FEATURES
*****************/

#section_4 #section_4_title {
  font-weight: bold;
  margin: 50px 0 20px 0;
}

#section_4 .feature {
  /* margin: 30px 0 30px 0; */
}

.feature h3 {
  color: #31befd;
}

.feature img {
  margin-bottom: 30px;
}

@media screen and (max-width: 800px) {
  .feature {
    text-align: center;
  }
  #section_4 #section_4_title {
    text-align: center;
    margin: 50px 20px 20px 20px;
  }
}

/*****************
    SECTION 5
    FOOTER
*****************/

footer {
  background-color: #004782;
  padding: 70px 0 70px 0;
  /* text-align: center; */
}

#copyright {
  margin: auto;
}

.div_centered {
  margin: auto;
  width: fit-content;
  display: flex;
}

.footer_icons_contact {
  padding: 10px;
  width: 60px;
}

.footer_contact {
  display: flex;
}

.styled_link {
  color: #ffc107;
}
.styled_link:hover {
  color: #ffc107;
}
.styled_link:visited {
  color: #ffc107;
}

.social {
  margin: auto;
  display: flex;
}

.social i {
  padding: 5px;
  color: #ffc107;
}

@media screen and (max-width: 1150px) {
  footer {
    text-align: center;
  }
  footer #copyright {
    padding-left: 30px;
  }
  .social {
    margin: auto;
    margin-top: 30px;
  }
  .footer_contact {
    display: inline;
  }
}

