@font-face {
  font-family: monserrat-bold;
  src: url("../fonts/montserrat-bold.ttf");
}

@font-face {
  font-family: monserrat-extra-bold;
  src: url("../fonts/montserrat-extrabold.ttf");
}

@font-face {
  font-family: monserrat-mediun;
  src: url("../fonts/montserrat-medium.ttf");
}

:root {
  --aqua-princ: #05818d;
  --black: #0e1111;
  --bg-footer: #212323;
  --white-grl: #fff;
  --nav-text: clamp(19px, 2vw, 19px);
  --big-text: clamp(16px, 1.5vw, 16px);
  --banner-text: clamp(64px, 5vw, 64px);
  --ultra-text: clamp(24px, 4vw, 48px);
  --super-text: clamp(24px, 2.5vw, 24px);
  --main-text: clamp(13px, 2vw, 13px);
  --second-text: clamp(11px, 2vw, 13px);
  --third-text: clamp(9px, 2vw, 11px);
  --text-title-section: 30px;
}
body,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: #fff;
}
a:hover {
  color: var(--aqua-princ);
}
body {
  background: var(--black) url("../imgs/bg-body.png") no-repeat;
  font-family: "monserrat-mediun", arial, helvetica;
  font-size: var(--main-text);
  background-size: cover;
  overflow: overlay;
}



::-webkit-scrollbar {
  width: 10px;
  height: 0;
}

::-webkit-scrollbar-thumb {
  border: 3px solid #000;
  border-radius: 1024px;
  box-shadow: inset 0 0 10px 10px rgba(0, 0, 0, 0.25);
  background: var(--aqua-princ);
}
::-webkit-scrollbar-thumb:hover {
  filter: brightness(1.3);
}


.shadow {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 3;
    display: none;
}

main,
header,
nav {
  width: 1400px;
  margin: 0 auto;
}

footer {
  background: var(--bg-footer);
  color: #fff;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
}
.content_footer {
  margin: 0 auto;
  width: 1400px;
  display: flex;
  font-size: var(--main-text);
  padding: 50px 0;
  justify-content: space-around;
  gap: 20px;
}
.content_footer > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 50px;
}
.content_footer > div:first-child {
  border-left: none;
}

section {
  margin: 0 auto;
  padding: 100px 20px;
}
.section_contact {
  padding: 50px 25px 0 25px !important;
}

.title_section {
  font-family: "monserrat-extra-bold", arial;
  font-size: var(--text-title-section);
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

header {
  width: 100%;
  margin: 0 auto;
  background: var(--black);
  border-bottom: 7px solid rgb(5 129 141 / 30%);
  margin-bottom: 25px;
}
.content_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.logo_header {
  margin: 60px 0;
  width: 380px;
}

.visible {
  opacity: 1 !important;
  transform: translate(0vh, 0vh) !important;
}

.fadeTop {
  opacity: 0;
  transform: translate(0, 10vh);
  transition: all 1s;
}

.fadeRight {
  opacity: 0;
  transform: translate(10vh, 0vh);
  transition: all 1s;
}

.fadeLeft {
  opacity: 0;
  transform: translate(-10vh, 0vh);
  transition: all 1s;
}

/* NAV ========================================================================================================================================*/
.nav_header {
}
.nav_header > a {
  color: var(--white-grl);
  border-bottom: 3px solid transparent;
  padding-bottom: 15px;
}

.nav_header > a:hover {
  color: var(--white-grl);
  border-bottom: 3px solid var(--aqua-princ);
}

nav {
  display: flex;
  justify-content: center;
  gap: 100px;
  font-family: "monserrat-extra-bold", arial, helvetica;
  margin-bottom: -5px;
  font-size: var(--nav-text);
  text-transform: uppercase;
  font-weight: 700;
}
.menu_responsive {
  display: none;
}
.menu_responsive_icon {
  display: none;
}

/* SLIDER ==========================================================================================================*/

.title_info_slider {
  font-family: "monserrat-extra-bold", arial, helvetica;
  text-transform: uppercase;
  font-size: 35px;
  line-height: 0.9;
}
.img_title_slide {
}
.banner_slide {
  position: relative;
}
.info_banner_slide {
  position: absolute;
  z-index: 1;
}
.slider_header {
  width: 1200px;
  margin: 0 auto;
}
.slider_header > img {
  width: 100%;
}

.infoSlider {
  width: 300px;
  position: absolute;
  left: 50px;
  top: 50%;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  transform: translateY(-50%);
}

.infoSlider_subtitle {
  margin-top: 20px;
  border-left: 10px solid var(--aqua-princ);
  padding-left: 15px;
  font-size: var(--nav-text);
  width: 350px;
  line-height: initial;
}
.mySlides {
  position: relative;
  width: 100%;
  height: 560px;
}

.redes_slider {
  border-top: 1px solid #3c3c3c;
  width: 102%;
  gap: var(--gap-global20);
  display: flex;
  padding-top: 10px;
  font-size: var(--super-text);
}

.dots_slider {
  position: absolute;
  bottom: 10px;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}

.slideshow-container {
  max-width: 1400px;
  position: relative;
  margin: auto;
  overflow: hidden;
  border-radius: 30px;
}

.mySlides {
  display: none;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  font-weight: bold;
  font-size: 30px;
  transition: 0.6s ease;
  user-select: none;
  top: 50%;
  z-index: 1;
}

.prev {
  left: 10px;
  display: none;
}

.next {
  right: 10px;
  display: none;
}

.prev:hover,
.next:hover {
  color: #ff0;
}

.dot {
  cursor: pointer;
  height: 20px;
  width: 20px;
  margin: 0 7px;
  background-color: var(--white-grl);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  border: 1px solid var(--aqua-princ);
}

.active,
.dot:hover {
  background-color: var(--aqua-princ);
}
.slideshow-container-mini {
  height: 320px;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: none;
}

.slide01 {
  background: url("../imgs/banner_slide_01.webp") no-repeat;
  background-size: cover;
  background-position: center;
}

.slide02 {
  background: url("../imgs/banner_slide_02.webp") no-repeat;
  background-size: cover;
  background-position: center;
}

.slide03 {
  background: url("../imgs/banner_slide_03.webp") no-repeat;
  background-size: cover;
  background-position: center;
}
/* VALORES ================================================================================================================================== */
#valores {
  visibility: hidden;
}
.valores {
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
}
.valor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white-grl);
}
.content_img_valor {
  width: 180px;
  border-radius: 50%;
  border: 8px solid var(--aqua-princ);
  padding: 24px;
}
.img_valor {
  width: -webkit-fill-available;
}
.title_valor {
  font-family: "monserrat-bold";
  font-size: var(--super-text);
  text-transform: uppercase;
  margin-top: 28px;
}
.text_valor {
  font-size: 20px;
  width: 80%;
  text-align: center;
  line-height: initial;
}

/* NUESTROS SERVICIOS ================================================================================================================================= */
.content_cards_services {
  display: flex;
  justify-content: space-around;
}
.content_card_service {
  width: 299px;
  height: 510px;
  overflow: hidden;
  position: relative;
  filter: drop-shadow(2px 4px 6px black);
}
.card_service {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.5s;
  transform-style: preserve-3d;
  cursor: pointer;
  border-radius: 30px;
}
.info_card_service {
  position: absolute;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.img_info_card_service {
  width: 30%;
}
.title_info_card_service {
  font-family: "monserrat-extra-bold", arial;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 17px;
}
.title_info_card_service > p {
  display: none;
}

.content_card_service:hover .card_service {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}
.front,
.back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.front {
  color: #fff;
}
.service1 {
  background: url(../imgs/card-service-01.webp);
  background-size: 110%;
  background-position: center;
}
.service2 {
  background: url(../imgs/card-service-04.webp);
  background-size: 110%;
  background-position: center;
}
.service3 {
  background: url(../imgs/card-service-03.webp);
  background-size: 110%;
  background-position: center;
}
.service4 {
  background: url(../imgs/card-service-02.webp);
  background-size: 110%;
  background-position: center;
}
.back {
  color: white;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  font-size: var(--main-text);
  display: flex;
  flex-direction: column;
  padding: 20px;
}

/* NUESTROS CLIENTES ====================================================================================================================== */
#clientes {
  visibility: hidden;
}
.content_ours_clients {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.content_ours_clients > img {
  width: 13%;
}

/* REDES  ============================================================================================================================================= */
.susc_footer {
  outline: none;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 8px;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.susc_footer > input {
  outline: none;
  background: none;
  border: none;
  color: #fff;
  flex: 1;
}
.susc_footer > i {
  line-height: 0;
  font-size: 21px;
  cursor: pointer;
}

.susc_ok {
  background: teal;
  border-radius: 9px;
  padding: 10px;
  width: 100%;
  text-align: center;
  display: none;
}

.animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
 }
 @-webkit-keyframes flash {
  0%, 50%, 100% {
  opacity: 1;
  }
 25%, 75% {
  opacity: 0;
  }
 }
 @keyframes flash {
  0%, 50%, 100% {
  opacity: 1;
  }
 25%, 75% {
  opacity: 0;
  }
 }
 .flash {
  -webkit-animation-name: flash;
  animation-name: flash;
 }

.redes_footer {
  display: flex;
  gap: 40px;
}
.red_footer {
  display: flex;
  gap: 5px;
  cursor: pointer;
  align-items: center;
}
.red_footer:hover {
  color: var(--aqua-princ);
}
.red_footer > img {
  width: 30px;
}
.red_footer > span {
}

.logo_footer {
  /* width: fit-content; */
  max-width: 100%;

}

.links_footer {
  display: flex;
  flex-direction: column;
}
.links_footer > a {
  color: #fff;
}
.links_footer > a:hover {
  color: var(--aqua-princ);
}

/* QUIENES SOMOS ==================================================================================================================================== */
.banner_int {
  position: relative;
  width: 1400px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
}
.banner_int > img {
  width: -webkit-fill-available;
}
.info_banner_int {
  color: #fff;
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 75px;
  gap: 20px;
  background: url("../imgs/circle_banner.svg") no-repeat;
  background-position: right;
  background-size: cover;
}
.info_banner_int > img {
  width: 80%;
}
.info_banner_int > span {
  text-align: justify;
  font-size: 16px;
}

/* MISION Y VISION ================================================================================================================================= */
.mision_vision {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.content_mv {
  display: flex;
  justify-content: center;
  align-items: center;
}
.img_mv {
  width: 30vw;
  height: 30vw;
  border-radius: 50%;
  border: 15px solid var(--aqua-princ);
  margin: 0 29px;
}
.img_mision {
  background: url("../imgs/mision.webp");
  background-size: cover;
  background-position: center;
}
.img_vision {
  background: url("../imgs/vision.webp");
  background-size: cover;
  background-position: center;
}
.border_info_mv {
  width: 38vw;
  height: 38vw;
  border: 1vw solid var(--aqua-princ);
  border-radius: 50%;
  background: url(../imgs/bg_dot_aqua.svg) no-repeat;
  background-size: 80%;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}
.info_mv {
  color: #fff;
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info_mv > img {
  width: 100%;
}
.info_mv > span {
  text-align: justify;
  font-size: var(--big-text);
}

/* SERVICIOS PAGE =================================================================================================================================== */
.banner_img_title {
  position: absolute;
  width: 50%;
  top: 50%;
  left: 5%;
  width: 60%;
  transform: translateY(-50%);
}
.content_service {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.service {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
}
.service:nth-child(odd) {
  flex-direction: row-reverse;
}

.img_service_01 {
  background: url("../imgs/img-service-01.webp") no-repeat;
  background-position: center;
  background-size: cover;
}
.img_service_02 {
  background: url("../imgs/img-service-03.webp") no-repeat;
  background-position: center;
  background-size: cover;
}
.img_service_03 {
  background: url("../imgs/img-service-02.webp") no-repeat;
  background-position: center;
  background-size: cover;
}
.img_service_04 {
  background: url("../imgs/img-service-04.webp") no-repeat;
  background-position: center;
  background-size: cover;
}
.img_service {
  border-radius: 50%;
  width: 350px;
  height: 350px;
  position: relative;
  display: block;
  border: 10px solid var(--aqua-princ);
}
.icon_service {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--aqua-princ);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-10%, -35%);
}
.icon_service > img {
  width: 50%;
}
.service_info {
  width: 500px;
  color: #fff;
  font-size: var(--big-text);
  display: flex;
  gap: 5px;
  flex-direction: column;
  align-items: flex-start;
}
.service_info_title {
  font-family: "monserrat-extra-bold";
  text-transform: uppercase;
  font-size: var(--super-text);
}
.service_info > a {
  background: var(--aqua-princ);
  padding: 5px 20px;
  border-radius: 20px;
  margin-top: 10px;
}
.service_info > a:hover {
  background: var(--white-grl);
  color: var(--aqua-princ);
}

/* PAGE SERVICIO IMPERMEABILIZACION ================================================================================================================ */
.page_services_content {
  width: 1200px;
}
.page_impermeabilizacion_info_content {
  display: flex;
  align-items: center;
  gap: 30px;
}
.page_impermeabilizacion_info_content > img {
  width: 700px;
}
.page_impermeabilizacion_info_text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.page_impermeabilizacion_info_text > img {
}
.page_impermeabilizacion_info_text > span {
  color: #fff;
  font-size: var(--nav-text);
}

.contact_asesor {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: var(--nav-text);
  gap: 20px;
}
.contact_asesor > span {
}
.contact_asesor_btn {
  background: var(--aqua-princ);
  padding: 5px 20px;
  font-family: "monserrat-extra-bold";
  font-size: var(--text-title-section);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.contact_asesor_btn:hover {
  background: #fff;
  color: var(--aqua-princ);
}
.contact_asesor_btn > i {
  line-height: 0;
  font-size: var(--ultra-text);
}
.contact_asesor_btn > span {
  line-height: 21px;
  width: 230px;
}

/* CONTACTOS.PHP =================================================================================================================================== */
.title_section_contact {
  margin: 0 auto 60px auto;
  text-align: center;
  color: #fff;
  font-family: "monserrat-extra-bold", arial;
  font-size: var(--ultra-text);
  text-transform: uppercase;
}
.contacts_content {
  display: flex;
  gap: 30px;
}
.contact_info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 15px;
  color: #fff;
}
.contact_info > input {
  outline: none;
  background: #212529;
  color: #fff;
  border: none;
  padding: 15px 20px;
  border-radius: 50px;
}
.contact_info > textarea {
  outline: none;
  border: none;
  border-radius: 25px;
  background: #212529;
  resize: none;
  color: #fff;
  padding: 30px;
}
.contact_content_btns {
  display: flex;
  color: #fff;
  align-items: center;
}
.contact_content_btns > * {
  font-family: "monserrat-extra-bold" !important;
  font-size: var(--nav-text) !important;
}
.contact_content_btns > div > i {
  font-family: "monserrat-extra-bold" !important;
  font-size: var(--nav-text) !important;
}
.contact_content_btns > input {
  background: var(--aqua-princ);
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  border: none;
  line-height: 1;
}
.contact_content_btns > input:hover {
  color: var(--aqua-princ);
  background: #fff;
}
.contact_content_btns_line {
  width: 5px;
  height: 80%;
  margin: 0 10px;
  background:#292929;
  color: #292929;
  border-radius: 30px;
}

.contact_map_content {
  flex: 1;
  border-radius: 25px;
  overflow: hidden;
}
.contact_map {
  width: 100%;
  height: 100%;
}

.error_form_contact{
  background: #8bc34a;
  border-radius: 15px;
  padding: 10px 20px;
  margin: 10px 0;
  color: #000;
  opacity: 1;
  display: none;
}

.deleteErrorFormContact {
  animation: deleteErrorFormContact 2s linear;
}

@keyframes deleteErrorFormContact {
  from { opacity: 1;}
  to { opacity: 0;}
}

.info_message_send {
  background: var(--aqua-princ);
  padding: 25px;
  border-radius: 50px;
  z-index: 4;
  position: absolute;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #FFF;
  font-size: var(--second-text);
  text-align: center;
}
.info_message_send> i{
  font-size: var(--banner-text);
}
.info_message_send> span{}
.info_message_send> button{
  border: none;
  padding: 10px 25px;
  border-radius: 40px;
  font-size: var(--big-text);
  font-weight: 700;
  background: rgba(0,0,0,0.3);
  color: #FFF;
}
.info_message_send> button:hover{
  background: #000;
}


.banner_contact_content {
  width: 100%;
  text-align: center;
  color: #fff;
  margin: 60px auto;
}
.banner_contact_content h1 {
  font-family: "monserrat-extra-bold", arial;
  font-size: var(--banner-text);
  text-transform: uppercase;
}
.banner_contact_icons {
  display: flex;
  padding-bottom: 30px;
}
.banner_contact_icons > div {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner_contact_icons > div i {
  font-size: var(--ultra-text);
  border-radius: 100px;
  border: 2px solid #fff;
  display: flex;
  height: 80px;
  width: 80px;
  align-items: center;
  justify-content: center;
}
.banner_contact_texts {
  display: flex;
  padding: 0;
}
.banner_contact_texts > span {
  flex: 1;
  font-size: var(--big-text);
  display: flex;
  border-left: 2px solid #fff;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.banner_contact_texts > span > i {
  display: none;
}
.banner_contact_texts > span:first-child {
  border-left: none;
}
.banner_quienes_somos {
  height: auto;
  background: url("../imgs/banner_quienes_somos.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 600px;
}

/* RESPONSIVE ====================================================================================================================================== */
@media (max-width: 1400px) {
  header {
    margin-bottom: 0;
  }
  .content_service {
    padding: 50px 20px;
    gap: 10vh;
  }

  .service {
    width: 100%;
    gap: 30px;
  }

  .mision_vision {
    width: 100%;
  }
  .img_mv {
    width: 30vw;
    height: 30vw;
    margin: 0 20px;
  }
  .border_info_mv {
    width: 38vw;
    height: 38vw;
  }
  .info_mv > span {
    font-size: var(--second-text);
  }
  .slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: 0;
  }

  main,
  header,
  nav {
    width: 100%;
  }

  .content_card_service {
    width: 23%;
    height: 330px;
  }
  .content_footer {
    width: 100%;
  }
  .content_footer > div:first-child {
    display: none;
  }
  .content_footer > div:nth-child(2) {
    border-left: none;
  }

  .banner_int {
    width: 100%;
    border-radius: 0;
  }

  .info_banner_int > span {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .page_impermeabilizacion_info_text > img {
    width: 60%;
  }
  .contact_asesor {
    margin-top: 50px;
  }
  .page_impermeabilizacion_info_content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
  }
  .page_impermeabilizacion_info_content > img {
    width: 80%;
    margin: 0 auto;
  }
  .page_services_content {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .banner_img_title {
    left: 10%;
    width: 80%;
  }
  .banner_quienes_somos {
    height: 400px;
  }
  .page_services_content {
    width: 100%;
    margin: 0 auto;
  }

  .mision_vision > div:last-child {
    flex-direction: column;
  }
  .content_mv {
    flex-direction: column-reverse;
    gap: 50px;
  }

  .icon_service {
    width: 15vw;
    height: 15vw;
  }

  .service_info {
    width: 50vw;
  }

  .img_service {
    width: 35vw;
    height: 35vw;
    border-width: 5px;
  }

  .border_info_mv {
    width: 60vw;
    height: 60vw;
  }

  .img_mv {
    width: 60vw;
    height: 60vw;
    margin: 0;
  }

  .info_mv > span {
    font-size: var(--main-text);
  }

  .content_cards_services {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .content_card_service {
    width: 90%;
    margin: 0 auto;
    height: 160px;
  }
  .info_card_service {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .img_info_card_service {
    width: 13%;
  }
  .content_footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .content_footer > div:nth-child(3) {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .logo_footer {
    width: 50%;
  }
  .content_footer > div {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .susc_footer {
    width: 100%;
  }
  .valores {
    flex-direction: column;
    gap: 20px;
  }
  .content_img_valor {
    width: 40%;
  }
  .title_valor {
    margin-top: 0;
  }
  .text_valor {
    font-size: 12px;
  }
  .title_valor {
    margin-top: 0;
    font-size: var(--big-text);
  }
  section {
    padding: 40px 0;
  }

  .nav_header {
    display: none;
  }
  .menu_responsive_icon {
    display: block;
    color: #fff;
    font-size: 50px;
    margin: 10px;
    line-height: 0;
    cursor: pointer;
  }
  .menu_responsive {
    display: none;
    position: absolute;
    z-index: 1;
    background: var(--black) url("../imgs/bg-body.png") no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding:0;
    font-size: var(--nav-text);
    flex-direction: column;
    height: 100%;
    border-top: 5px solid rgb(5 129 141 / 50%);
  }
  .menu_responsive > a {
    padding: 10px 20px;
    text-transform: capitalize;
  }
  .menu_responsive > a:not(.menu_responsive > a:last-child) {
    border-bottom: 1px solid var(--aqua-princ);
  }
  .menu_responsive > a:hover {
    background: var(--aqua-princ);
    color: #fff;
    font-weight: 700;
  }
  .content_header {
    flex-direction: row;
    justify-content: space-between;
  }
  .logo_header {
    width: 70%;
    margin: 30px 0;
  }

  .content_card_service:hover .card_service {
    transform: none;
    -webkit-transform: none;
  }
  .info_card_service {
    padding: 15px;
  }
  .title_info_card_service {
    text-align: justify;
  }
  .title_info_card_service > p {
    display: block;
    font-size: 11px;
    font-family: "monserrat-mediun";
    text-transform: initial;
  }

  .valores {
    gap: 30px;
  }

  .valor {
    gap: 5px;
  }

  .infoSlider {
    width: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .infoSlider_subtitle {
    width: 100%;
    text-align: justify;
    text-shadow: 0 0 3px #000;
  }

  footer {
    padding: 0;
  }

  .info_banner_int {
    width: 60%;
  }

  .info_banner_int > span {
    font-size: 13px;
  }
}
@media (max-width: 800px) {
  .contact_content_btns_line {
    display: none;
}

  .contact_asesor_btn > span {
    font-size: 15px;
    width: auto;
  }
  .contacts_content {
    flex-direction: column;
  }
  .contact_map {
    height: 300px;
  }
  .banner_contact_texts > span > i {
    display: block;
    border: 2px solid #fff;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    padding: 15px;
  }

  .banner_contact_icons {
    display: none;
  }
  .banner_contact_texts {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .banner_contact_texts > span {
    border-top: 2px solid #fff;
    border-left: none;
    padding-top: 20px;
    font-size: var(--main-text);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
  .banner_contact_texts > span:first-child {
    border-top: none;
    padding-top: 0;
  }
  .contact_asesor_btn {
    display: flex;
    justify-content: center;
  }

  .contact_content_btns > input {
    justify-content: center;
  }
  .contact_content_btns {
    display: flex;
    color: #fff;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 700px) {
  .info_banner_int {
    width: 75%;
  }
  .info_banner_int > img {
    width: 60%;
  }
  .info_banner_int {
    background: url("../imgs/circle_banner.svg") no-repeat;
    background-position: center;
    background-size: 200%;
    width: 100%;
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .border_info_mv {
    width: 80vw;
    height: 80vw;
  }

  .img_mv {
    width: 80vw;
    height: 80vw;
    margin: 0;
  }
}
