@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");
@font-face {
  font-family: "DINPro";
  src: url("/asset/style/font/DINPro.otf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "DINPro-bold";
  src: url("/asset/style/font/DINPro-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}
* {
  margin: 0;
  box-sizing: border-box;
}

.contenedor {
  width: 90%;
  max-width: 1396px;
  margin: 0 auto;
  overflow: hidden;
}

.whatsapp_contacto {
  position: fixed;
  bottom: 30px;
  right: 50px;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s;
}
.whatsapp_contacto:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .whatsapp_contacto {
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s;
  }
  .whatsapp_contacto img {
    width: 80%;
    height: 80%;
  }
  .whatsapp_contacto:hover {
    transform: scale(1.1);
  }
}
.header_faq {
  background-image: url(../../img/faq/faq-header.webp);
  height: 368px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: 80px;
}
.header_faq::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background-color: #00557E;
}
.header_faq .faq_body_header {
  position: relative;
  color: #ffffff;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.header_faq .faq_body_header .faq_titulo {
  font-size: 65px;
  font-family: "DINPro-bold";
}
.header_faq .faq_body_header .faq_sub {
  font-size: 22px;
  width: 60%;
  font-family: "DINPro";
}
.header_faq .faq_rectangles {
  width: 100%;
  overflow: hidden;
}
.header_faq .faq_rectangles img {
  vertical-align: top;
}

.faq_preguntas {
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.faq_preguntas .faq_contenedor {
  background-image: url(http://127.0.0.1:5502/asset/img/faq/faq_fondo2.svg);
  background-repeat: no-repeat;
  background-size: 2049px 722px;
  background-position: right;
  height: 894px;
  width: 100%;
  position: relative;
  z-index: 102;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.faq_preguntas .faq_contenedor .forma1 {
  position: absolute;
  z-index: 101;
  left: 0;
  top: 154px;
}
.faq_preguntas .faq_contenedor .forma2 {
  position: absolute;
  z-index: 100;
  top: 40px;
  left: 0;
  display: none;
}
.faq_preguntas .faq_contenedor .cards_contenedor {
  position: relative;
  z-index: 110;
  width: 90%;
  display: flex;
  justify-content: center;
}
.faq_preguntas .faq_contenedor .cards_contenedor .accordion {
  margin-top: 50px;
  width: 76%;
}
.faq_preguntas .faq_contenedor .cards_contenedor .accordion p {
  font-size: 14px;
}
.faq_preguntas .faq_contenedor .cards_contenedor .accordion .accordion-item {
  margin-bottom: 1em;
  box-shadow: 0px 3px 6px #00000029;
  outline: none !important;
}
.faq_preguntas .faq_contenedor .cards_contenedor .accordion .accordion-item h2 {
  font-family: "DINPro-bold";
  font-size: 22px;
  outline: none !important;
}
.faq_preguntas .faq_contenedor .cards_contenedor .accordion .accordion-item h2 .accordion-button {
  color: #00557E;
  height: 30px;
}