header {
  width: 100%;
  display: flex;
  margin: 0 auto !important;
  padding: 0 !important;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.img_container {
  width: 100%;
  height: 400px;
}
header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
h1 {
  font-family: raleway;
  margin-top: 1.5em;
  margin-bottom: 1em;
  margin-left: 5%;
  color: #000;
}
h4 {
  margin-left: 5%;
  font-size: 1.5em;
  color: #c4c4c4;
  width: 70%;
}
header p {
  margin-top: 1em;
  margin-bottom: 3em;
  margin-left: 5%;
  width: 80%;
}
.section_benefits h1 {
  text-align: center;
  margin: 3%;
}

.benefits_img_container {
  width: 100%;
  height: 400px;
}
.section_benefits img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.benefits_text {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.section_benefits h3 {
  margin-top: 5%;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
}
.section_benefits p {
  margin-top: 5%;
  margin-bottom: 10%;
  color: #a4a4a4;
}

.section_service h1 {
  text-align: center;
  margin-left: 0;
}
.service {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-bottom: 5%;
}
.section_service .img_container {
  margin-top: 5%;
  margin-bottom: 5%;
  margin-left: 5%;
  width: 40%;
  height: auto;
}
.section_service img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}
.section_service main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 30%;
  margin-right: 5%;
}
article {
  display: flex;
  flex-direction: column;
}
.section_service span {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 1.5em;
}

.section_request {
  background-color: #f7f7f7;
  padding-top: 3%;
  padding-bottom: 3%;
}
.section_request h1 {
  text-align: center;
  margin-left: 0;
}
.section_request main {
  display: flex;
  justify-content: space-around;
  margin: 3%;
  flex-wrap: wrap;
}
.accordion {
  background-color: #fff;
  color: #444;
  font-weight: 600;
  cursor: pointer;
  padding: 2.5em;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 3em;
  text-align: left;
  line-break: loose;
  transition: 0.4s;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
}

.active {
  margin-bottom: 0;
}
.accordion:hover {
  background-color: #fff;
}

.panel {
  padding: 2.5em;
  background-color: #fff;
  display: none;
  overflow: hidden;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
}

.accordion:after {
  content: "\02795"; /* Unicode character for "plus" sign (+) */
  font-size: 1em;
  color: #dc5f40;
}

.opened:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.section_contact {
  padding: 3%;
}
.section_contact h1 {
  text-align: center;
  margin-left: 0;
}

.form-btn {
  width: 15em;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3em;
  color: #fff;
  background: #dc5f40;
  border: none;
  text-align: center;
  border-radius: 5px;
  outline: none;
  margin: auto;
  margin-bottom: 2em;
  text-decoration: none;
}

@media (max-width: 1204px) {

  .img_container {
    width: 100%;
    height: 300px;
  }
  .section_service h1 {
    text-align: center;
    margin-left: 0;
  }
  .service {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .section_service .img_container {
    margin-top: 5%;
    margin-bottom: 5%;
    width: 90%;
    height: 400px;
  }
  .section_service img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .section_service main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 90%;
    margin-bottom: 5%;
    margin-left: 5%;
  }
  article {
    display: flex;
    flex-direction: column;
  }
  .section_service span {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 1.5em;
  }
}
