* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.whatsapp {
  width: 70px;
  height: 70px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  border-radius: 100%;
  background-color: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.whatsapp a {
  text-decoration: none;
  color: #fff;
  font-size: 35px;
}

span.Color {
  color: #FD7402;
}

.nav_container {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #001D26;
}
.nav_container .text_nav {
  padding: 0px 10px;
}
.nav_container .text_nav img {
  height: 90px;
}
.nav_container .call_nav {
  padding: 0px 10px;
}
.nav_container .call_nav h2 {
  font-family: "Rubik";
  font-weight: 300;
  font-size: 25px;
  color: #fff;
}
.nav_container .call_nav h2 a {
  font-family: "Raleway";
  letter-spacing: 3px;
  color: #bfbfbf;
  text-decoration: none;
  position: relative;
}
.nav_container .call_nav h2 a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background-color: #FD7402;
  bottom: -4px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
.nav_container .call_nav h2 a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.main_container {
  width: 100%;
  min-height: calc(100vh - 100px);
  background-image: url("../img/main-img.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.main_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.main_container .text_main {
  width: 50%;
  padding: 10px;
  z-index: 10;
}
.main_container .text_main h2 {
  color: #fff;
  font-family: "Raleway";
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 6px;
}
.main_container .text_main ul {
  list-style-type: circle;
  color: #fff;
  padding: 10px 0px 0px 15px;
}
.main_container .text_main ul li {
  font-family: "Rubik";
  letter-spacing: 3px;
  font-weight: 200;
  padding: 5px;
}
.main_container .form_main {
  width: 50%;
  height: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.main_container .form_main form {
  width: 55%;
  height: 100%;
  padding: 15px 0px;
  border-radius: 10px;
  box-shadow: 0 0 6px 0 rgba(225, 225, 225, 0.5);
  background: rgba(225, 225, 225, 0.3);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main_container .form_main form .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.main_container .form_main form .form h2 {
  color: #001D26;
  font-family: "Raleway";
  font-weight: 100;
  font-size: 20px;
}
.main_container .form_main form .form h3 {
  color: #fff;
  font-family: "Rubik";
  font-weight: 100;
  font-size: 17px;
  padding: 5px 8px;
}
.main_container .form_main form .form .grupo {
  position: relative;
  margin: 15px;
}
.main_container .form_main form .form .grupo input, .main_container .form_main form .form .grupo textarea {
  background: none;
  color: #fff;
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  resize: none;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #001D26;
}
.main_container .form_main form .form .grupo input:focus, .main_container .form_main form .form .grupo textarea:focus {
  outline: none;
  color: #fff;
}
.main_container .form_main form .form .grupo input:focus ~ label, .main_container .form_main form .form .grupo input:valid ~ label, .main_container .form_main form .form .grupo textarea:focus ~ label, .main_container .form_main form .form .grupo textarea:valid ~ label {
  position: absolute;
  top: -14px;
  font-size: 12px;
  color: #001D26;
}
.main_container .form_main form .form .grupo label {
  color: #fff;
  font-family: "Raleway";
  font-weight: 100;
  font-size: 15px;
  position: absolute;
  left: 5px;
  top: 10px;
  transition: 0.3s ease all;
  pointer-events: none;
}
.main_container .form_main form .form .grupo .barra {
  position: relative;
  display: block;
  width: 100%;
}
.main_container .form_main form .form .grupo .barra::before {
  content: "";
  height: 2px;
  width: 0;
  bottom: 0;
  position: absolute;
  background: #001D26;
  transition: 0.3s ease all;
  left: 0%;
}
.main_container .form_main form .form .grupo input:focus ~ .barra::before, .main_container .form_main form .form .grupo textarea:focus ~ .barra::before {
  width: 100%;
}
.main_container .form_main form .form .boton {
  font-family: "Rubik";
  font-weight: 100;
  background-color: #001D26;
  display: block;
  width: 150px;
  height: 60px;
  border: none;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  margin: auto;
  transition: 0.3s ease all;
}
.main_container .form_main form .form .boton:hover {
  transform: scale(1.1);
}

.beneficios_section {
  width: 100%;
  height: 80vh;
  background-color: #181818;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.beneficios_section .tittle_beneficios {
  padding: 15px;
  text-align: center;
}
.beneficios_section .tittle_beneficios h2 {
  color: #FD7402;
  font-size: 45px;
  font-family: "Raleway";
  letter-spacing: 5px;
  font-weight: 500;
  padding: 5px;
}
.beneficios_section .tittle_beneficios p {
  width: 60%;
  margin: auto;
  color: #fff;
  font-family: "Rubik";
}
.beneficios_section .box_beneficios {
  width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.beneficios_section .box_beneficios .item_beneficios {
  width: 380px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #001D26;
  padding: 15px;
  border-radius: 10px;
}
.beneficios_section .box_beneficios .item_beneficios i {
  color: #fff;
  font-size: 55px;
  padding-bottom: 15px;
}
.beneficios_section .box_beneficios .item_beneficios h3 {
  font-family: "Rubik";
  font-weight: 100;
  color: #fff;
  letter-spacing: 5px;
  font-size: 15px;
}

.info_us {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #001D26;
  overflow: hidden;
}
.info_us .text_info {
  width: 80%;
  padding: 25px;
}
.info_us .text_info h2 {
  font-family: "Raleway";
  font-size: 35px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 5px;
}
.info_us .text_info p {
  font-family: "Rubik";
  font-weight: 100;
  font-size: 15px;
  letter-spacing: 5px;
  color: #bfbfbf;
  padding-top: 10px;
}
.info_us .img_info {
  width: 60%;
  height: 100%;
  margin: 0px 120px 0px 0px;
}
.info_us .img_info img {
  width: 100%;
  height: 100%;
}

.section_destacados {
  width: 100%;
  min-height: 100vh;
  background-color: #181818;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section_destacados .texto_destacados {
  padding: 15px;
  text-align: center;
}
.section_destacados .texto_destacados h2 {
  font-family: "Raleway";
  color: #fff;
  letter-spacing: 5px;
  font-size: 45px;
  font-weight: 500;
}
.section_destacados .texto_destacados h4 {
  font-family: "Rubik";
  color: #bfbfbf;
  font-weight: 100;
  font-size: 20px;
  letter-spacing: 5px;
  padding-top: 15px;
}
.section_destacados .contenedor_destacados {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 25px;
}
.section_destacados .contenedor_destacados .item_destacados {
  width: 380px;
  height: 400px;
  background-color: #001D26;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  margin: 15px;
}
.section_destacados .contenedor_destacados .item_destacados img {
  width: 380px;
  height: 280px;
  margin-top: 0px;
  margin-bottom: 15px;
}
.section_destacados .contenedor_destacados .item_destacados .item_texto {
  text-align: center;
  padding: 2px;
}
.section_destacados .contenedor_destacados .item_destacados .item_texto h3 {
  font-family: "Raleway";
  color: #FD7402;
  font-size: 18px;
  font-weight: 100;
  padding-bottom: 5px;
  padding: 5px;
  letter-spacing: 5px;
}
.section_destacados .contenedor_destacados .item_destacados .item_texto .contact {
  width: 200px;
  text-decoration: none;
  color: #FD7402;
  background-color: #2A496B;
  font-family: "Rubik";
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 3px;
  padding: 8px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
}
.section_destacados .contenedor_destacados .item_destacados .item_texto .contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 100%;
  background-color: rgba(29, 51, 74, 0.6);
  transition: 0.5s all ease-in-out;
  border-radius: 8px;
}
.section_destacados .contenedor_destacados .item_destacados .item_texto .contact:hover::after {
  width: 100%;
}

.contact_article {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #001D26;
  overflow: hidden;
}
.contact_article .text_contact {
  width: 80%;
  padding: 25px;
}
.contact_article .text_contact h2 {
  font-family: "Raleway";
  font-size: 35px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 5px;
}
.contact_article .text_contact p {
  font-family: "Rubik";
  font-weight: 100;
  font-size: 15px;
  letter-spacing: 5px;
  color: #bfbfbf;
  padding-top: 10px;
}
.contact_article .img_contact {
  width: 60%;
  height: 100%;
  margin-left: 120px;
}
.contact_article .img_contact img {
  width: 100%;
  height: 100%;
}

.container_footer {
  width: 100%;
  height: 100vh;
}
.container_footer .map_footer {
  width: 100%;
  height: 500px;
}
.container_footer .map_footer iframe {
  width: 100%;
  height: 100%;
}
.container_footer .container_footer_items {
  width: 100%;
  height: calc(100vh - 500px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #181818;
}
.container_footer .container_footer_items .item_footer {
  width: 390px;
  height: 150px;
  border-radius: 15px;
  background-color: #001D26;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.container_footer .container_footer_items .item_footer h3 {
  color: #FD7402;
  font-family: "Raleway";
  font-weight: 30px;
  text-align: center;
  letter-spacing: 5px;
  font-weight: 100;
  margin-bottom: 10px;
}
.container_footer .container_footer_items .item_footer a {
  text-decoration: none;
  color: #fff;
  font-family: "Rubik";
  font-weight: 100;
  font-size: 15px;
  letter-spacing: 3px;
  position: relative;
  margin-bottom: 8px;
}
.container_footer .container_footer_items .item_footer a::before {
  content: "";
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  border-radius: 2px;
  background-color: #FD7402;
  position: absolute;
  transition: all 0.3s ease-in-out;
}
.container_footer .container_footer_items .item_footer a:hover::before {
  width: 100%;
}
.container_footer .container_footer_items .item_footer ul li {
  color: #fff;
  font-family: "Rubik";
  font-weight: 100;
  font-size: 15px;
  margin-bottom: 8px;
  letter-spacing: 3px;
}

.main_gracias {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/gracias_img.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.main_gracias::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.main_gracias .texto_main {
  padding: 10px;
  z-index: 2;
  text-align: center;
}
.main_gracias .texto_main h1 {
  font-family: "Raleway";
  color: #FD7402;
  font-size: 35px;
  letter-spacing: 8px;
  padding-bottom: 15px;
}
.main_gracias .texto_main h2 {
  font-family: "Rubik";
  color: #fff;
  font-size: 28px;
  letter-spacing: 5px;
  padding-bottom: 35px;
}
.main_gracias .texto_main .boton {
  background-color: #FD7402;
  color: #fff;
  padding: 15px;
  text-decoration: none;
  font-family: "Raleway";
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}
.main_gracias .texto_main .boton:hover {
  background-color: #fff;
  color: #FD7402;
  border-radius: 12px;
}

@media screen and (max-width: 992px) {
  .nav_container {
    width: 100%;
  }
  .nav_container .text_nav {
    width: 50%;
    text-align: center;
  }
  .nav_container .text_nav h1 {
    font-size: 15px;
  }
  .nav_container .call_nav {
    width: 50%;
    text-align: center;
  }
  .nav_container .call_nav h2 {
    font-size: 15px;
  }
  .main_container .text_main {
    width: 40%;
  }
  .main_container .text_main h2 {
    font-size: 25px;
  }
  .main_container .text_main ul li {
    font-size: 15px;
  }
  .main_container .form_main {
    width: 60%;
  }
  .main_container .form_main form {
    width: 70%;
  }
  .beneficios_section {
    height: auto;
  }
  .beneficios_section .tittle_beneficios h2 {
    font-size: 30px;
  }
  .beneficios_section .tittle_beneficios p {
    font-size: 15px;
  }
  .beneficios_section .box_beneficios {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }
  .beneficios_section .box_beneficios .item_beneficios {
    width: 320px;
    margin: 5px;
  }
  .info_us {
    height: 70vh;
  }
  .info_us .text_info {
    width: 100%;
  }
  .info_us .img_info {
    display: none;
  }
  .section_destacados {
    height: auto;
  }
  .section_destacados .contenedor_destacados {
    margin-bottom: 8px;
  }
  .section_destacados .contenedor_destacados .item_destacados {
    width: 320px;
    margin: 5px;
  }
  .contact_article {
    height: auto;
  }
  .contact_article .img_contact {
    display: none;
  }
  .container_footer .container_footer_items {
    height: auto;
    flex-wrap: wrap;
    padding-top: 8px;
    margin-bottom: 8px;
  }
  .container_footer .container_footer_items .item_footer {
    width: 320px;
    margin: 5px;
  }
}
@media screen and (max-width: 768px) {
  .nav_container {
    width: 100%;
  }
  .nav_container .text_nav {
    width: 50%;
    text-align: center;
  }
  .nav_container .text_nav h1 {
    font-size: 15px;
  }
  .nav_container .call_nav {
    width: 50%;
    text-align: center;
  }
  .nav_container .call_nav h2 {
    font-size: 15px;
  }
  .main_container .text_main {
    width: 40%;
  }
  .main_container .text_main h2 {
    font-size: 25px;
  }
  .main_container .text_main ul li {
    font-size: 15px;
  }
  .main_container .form_main {
    width: 60%;
  }
  .main_container .form_main form {
    width: 70%;
  }
  .beneficios_section {
    height: auto;
  }
  .beneficios_section .tittle_beneficios h2 {
    font-size: 30px;
  }
  .beneficios_section .tittle_beneficios p {
    font-size: 15px;
  }
  .beneficios_section .box_beneficios {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }
  .beneficios_section .box_beneficios .item_beneficios {
    width: 320px;
    margin: 5px;
  }
  .info_us {
    height: 70vh;
  }
  .info_us .text_info {
    width: 100%;
  }
  .info_us .img_info {
    display: none;
  }
  .section_destacados {
    height: auto;
  }
  .section_destacados .contenedor_destacados {
    margin-bottom: 8px;
  }
  .section_destacados .contenedor_destacados .item_destacados {
    width: 320px;
    margin: 5px;
  }
  .contact_article {
    height: auto;
  }
  .contact_article .img_contact {
    display: none;
  }
  .container_footer .container_footer_items {
    height: auto;
    flex-wrap: wrap;
    padding-top: 8px;
    margin-bottom: 8px;
  }
  .container_footer .container_footer_items .item_footer {
    width: 320px;
    margin: 5px;
  }
}
@media screen and (max-width: 578px) {
  .nav_container {
    height: 180px;
    justify-content: center;
    flex-direction: column;
  }
  .nav_container .text_nav h1 {
    font-size: 20px;
  }
  .nav_container .call_nav h2 {
    font-size: 18px;
  }
  .main_container {
    height: auto;
    flex-direction: column;
  }
  .main_container .text_main {
    width: 80%;
  }
  .main_container .text_main h2 {
    font-size: 35px;
  }
  .main_container .form_main {
    width: 100%;
    margin-bottom: 15px;
  }
  .main_container .form_main form {
    width: 70%;
  }
  .beneficios_section {
    height: auto;
  }
  .beneficios_section .tittle_beneficios {
    width: 100%;
  }
  .beneficios_section .tittle_beneficios p {
    width: 90%;
  }
  .beneficios_section .box_beneficios {
    margin-bottom: 15px;
  }
  .beneficios_section .box_beneficios .item_beneficios {
    margin: 5px;
  }
  .info_us {
    height: 70vh;
  }
  .info_us .text_info {
    width: 100%;
  }
  .info_us .text_info h2 {
    font-size: 28px;
  }
  .info_us .text_info p {
    font-size: 15px;
    width: 100%;
  }
  .info_us .img_info {
    display: none;
  }
  .section_destacados {
    height: auto;
  }
  .section_destacados .texto_destacados {
    width: 100%;
  }
  .section_destacados .texto_destacados h2 {
    font-size: 28px;
  }
  .section_destacados .texto_destacados p {
    font-size: 15px;
  }
  .section_destacados .contenedor_destacados {
    margin-bottom: 15px;
  }
  .section_destacados .contenedor_destacados .item_destacados {
    margin: 5px;
  }
  .contact_article {
    height: auto;
  }
  .contact_article .img_contact {
    display: none;
  }
  .contact_article .text_contact {
    width: 100%;
  }
  .contact_article .text_contact h2 {
    font-size: 25px;
  }
  .contact_article .text_contact p {
    font-size: 15px;
    width: 100%;
  }
  .container_footer {
    height: auto;
  }
  .container_footer .container_footer_items {
    height: 100%;
    flex-wrap: wrap;
  }
  .container_footer .container_footer_items .item_footer {
    margin: 5px;
  }
}

/*# sourceMappingURL=estilos.css.map */
