.main__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  background-color: #E32D13;
  color: #ffffff;
  border-radius: 24px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
}
.main__button:hover {
  background-color: #F5724A;
}
@media (max-width: 1004px) {
  .main__button {
    font-size: 13px;
    padding: 12px;
  }
}

.secondary__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  background-color: #ffffff;
  color: #E32D13;
  border-radius: 24px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
  width: -moz-max-content;
  width: max-content;
}
.secondary__button:hover {
  background-color: #FEF4EE;
  color: #E32D13;
}

.card__templante {
  display: flex;
  gap: 24px;
  padding: 24px;
  border-radius: 24px;
  outline: 1px solid #E1E8EC;
}
.card__templante img {
  width: 48px;
  height: 48px;
}
.card__templante div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card__templante div h3 {
  color: #1F262D;
  font-size: 24px;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
}
.card__templante div p {
  color: #1F262D;
  font-size: 18px;
  font-family: "Mulish", sans-serif;
  font-size: 400;
}

.tag_container {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 4px;
  padding: 4px 12px;
  background-color: #FEF4EE;
  border-radius: 16px;
}
.tag_container .icon_tag {
  width: 12px;
  height: 12px;
}
.tag_container p {
  display: block;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: #E32D13;
  font-size: 12px;
}

* {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

header {
  width: 100%;
  margin-top: 24px;
  top: 0px;
  left: 0;
  z-index: 99;
  position: fixed;
}
header .header-nav {
  max-width: 1240px;
  padding: 12px 12px 12px 24px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 48px;
  background-color: #ffffff;
}
@media (max-width: 1240px) {
  header .header-nav {
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
  }
}

main {
  width: 100%;
  position: relative;
  z-index: 0;
}
main .banner__image .imagen_bannner {
  position: relative;
  width: 100%;
}
main .banner__image .imagen_bannner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1004px) {
  main .banner__image .imagen_bannner img {
    display: none;
  }
}
main .banner__image .imagen_bannner .banner-mobile {
  display: none;
}
@media (max-width: 1004px) {
  main .banner__image .imagen_bannner .banner-mobile {
    display: flex;
  }
}
main .banner__image .imagen_bannner .info__container {
  position: absolute;
  top: 100px;
  width: 100%;
  height: -webkit-fill-available;
  display: flex;
  align-items: center;
}
main .banner__image .imagen_bannner .info__container .container {
  width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1240px) {
  main .banner__image .imagen_bannner .info__container .container {
    width: 100%;
    margin: 0 16px;
  }
}
main .banner__image .imagen_bannner .info__container .container .info {
  width: 421px;
  height: -moz-max-content;
  height: max-content;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1004px) {
  main .banner__image .imagen_bannner .info__container .container .info {
    width: 100%;
  }
}
main .banner__image .imagen_bannner .info__container .container .info h1 {
  font-size: 48px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #ffffff;
}
main .banner__image .imagen_bannner .info__container .container .info p {
  font-size: 24px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: #ffffff;
}
main .benefits__info {
  width: 100%;
  margin-top: 120px;
  margin-bottom: 60px;
}
main .benefits__info .flex-container {
  display: flex;
  gap: 32px;
  width: 1240px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 1240px) {
  main .benefits__info .flex-container {
    width: auto;
    margin: 0 16px;
  }
}
@media (max-width: 1004px) {
  main .benefits__info .flex-container {
    margin: 0 16px;
    flex-direction: column;
  }
}
main .benefits__info .flex-container .info_section-2 p {
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  color: #0072BC;
  font-weight: 500;
}
main .benefits__info .flex-container .info_section-2 h2 {
  margin-top: 16px;
  font-size: 32px;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
}
main .benefits__info .flex-container .grid__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  width: 66.67%;
  gap: 24px;
}
@media (max-width: 1240px) {
  main .benefits__info .flex-container .grid__cards {
    width: 100%;
  }
}
main .offer__Section {
  width: 100%;
  margin: 60px 0;
}
main .offer__Section .container_offer {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  padding: 24px;
  border-radius: 24px;
  outline: 1px solid #E1E8EC;
  align-items: center;
}
@media (max-width: 1240px) {
  main .offer__Section .container_offer {
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
  }
}
@media (max-width: 1004px) {
  main .offer__Section .container_offer {
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
    flex-direction: column;
  }
}
main .offer__Section .container_offer .image__photo {
  width: auto;
}
@media (max-width: 1004px) {
  main .offer__Section .container_offer .image__photo {
    width: 100%;
  }
}
main .offer__Section .container_offer .text_contianer {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
main .map_section {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
}
main .map_section .map_container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  height: 367px;
}
@media (max-width: 1004px) {
  main .map_section .map_container {
    height: -moz-max-content;
    height: max-content;
  }
}
@media (max-width: 1240px) {
  main .map_section {
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
    height: -moz-max-content;
    height: max-content;
  }
}
@media (max-width: 1004px) {
  main .map_section {
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
    flex-direction: column;
    height: -moz-max-content;
    height: max-content;
  }
}
main .map_section img {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 1004px) {
  main .map_section img {
    display: none;
    position: relative;
  }
}
main .map_section .map_mobile {
  display: none;
}
@media (max-width: 1004px) {
  main .map_section .map_mobile {
    display: flex;
    width: 100%;
  }
}
main .map_section .info_ubicacion {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 32px 24px 24px;
  height: 367.297px;
  justify-content: center;
}
@media (max-width: 1004px) {
  main .map_section .info_ubicacion {
    padding: 24px 16px 24px 16px;
    position: relative;
  }
}
main .map_section .info_ubicacion p {
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  color: #0072BC;
  font-weight: 500;
}
main .map_section .info_ubicacion h3 {
  font-size: 32px;
  font-weight: 600;
  color: #1F262D;
}
main .map_section .info_ubicacion .info_data {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
main .map_section .info_ubicacion .info_data .data_map {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
main .map_section .info_ubicacion .info_data .data_map p {
  font-size: 18px;
  color: #4A6070;
  font-weight: 600;
}
main .map_section .info_ubicacion .info_data .data_map span {
  font-size: 16px;
  font-weight: 400;
  color: #4A6070;
}
main .testimonials__section {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
}
main .testimonials__section .testimonials__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2px;
}
@media (max-width: 1004px) {
  main .testimonials__section .testimonials__container {
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
    flex-direction: column;
    height: -moz-max-content;
    height: max-content;
  }
}
@media (max-width: 1240px) {
  main .testimonials__section .testimonials__container {
    margin-left: 16px;
    margin-right: 16px;
  }
}
main .testimonials__section .testimonials__container p {
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  color: #0072BC;
  font-weight: 500;
}
main .testimonials__section .testimonials__container h3 {
  font-size: 32px;
  font-weight: 600;
  color: #1F262D;
  margin-bottom: 60px;
}
main .testimonials__section .testimonials__container .grid__tesstimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 1004px) {
  main .testimonials__section .testimonials__container .grid__tesstimonials {
    grid-template-columns: 1fr;
  }
}
main .testimonials__section .testimonials__container .grid__tesstimonials .testimonials {
  border-radius: 24px;
  padding: 24px;
  outline: 1px solid #E1E8EC;
}
main .testimonials__section .testimonials__container .grid__tesstimonials .testimonials .perfil_container {
  display: flex;
  gap: 10px;
}
main .testimonials__section .testimonials__container .grid__tesstimonials .testimonials .perfil_container img {
  width: 48px;
}
main .testimonials__section .testimonials__container .grid__tesstimonials .testimonials .perfil_container div {
  display: flex;
  flex-direction: column;
}
main .testimonials__section .testimonials__container .grid__tesstimonials .testimonials .perfil_container div span {
  font-size: 18px;
  color: #1F262D;
}
main .testimonials__section .testimonials__container .grid__tesstimonials .testimonials .perfil_container div p {
  font-size: 18px;
  font-weight: 400;
  color: #4A6070;
}
main .testimonials__section .testimonials__container .grid__tesstimonials .testimonials p {
  font-size: 24px;
  font-weight: 600;
  color: #1F262D;
}

footer {
  width: 100%;
  background-color: #F0F8FF;
}
footer .foote_conteiner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
}
@media (max-width: 1004px) {
  footer .foote_conteiner {
    margin-left: 16px;
    margin-right: 16px;
    flex-direction: column;
    height: -moz-max-content;
    height: max-content;
  }
}
@media (max-width: 1240px) {
  footer .foote_conteiner {
    margin-left: 16px;
    margin-right: 16px;
  }
}
footer .foote_conteiner span {
  font-size: 18px;
  color: #4A6070;
  font-weight: 400;
}
@media (max-width: 1004px) {
  footer .foote_conteiner span {
    margin-bottom: 16px;
  }
}
footer .foote_conteiner div {
  display: flex;
  gap: 24px;
}
@media (max-width: 1004px) {
  footer .foote_conteiner div {
    justify-content: space-between;
  }
}
footer .foote_conteiner div p {
  font-size: 18px;
  font-weight: 400;
  color: #4A6070;
}/*# sourceMappingURL=styles.css.map */