:root {
  --green: #007f7b;
  --dark-green: #003a38;
  --black: #000;
  --white: white;
  --light-green: #84bebe;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 100px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

body {
  color: #1d1d1d;
  font-family: Poppins, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.2rem;
}

h1 {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 3.8rem;
}

h2 {
  color: var(--green);
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 3rem;
  font-weight: 200;
  line-height: 3.2rem;
}

h3 {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.4;
}

h4 {
  color: #525252;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8rem;
}

h5 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3rem;
}

p {
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.6rem;
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  color: var(--dark-green);
}

ul {
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 20px;
  line-height: 1.6rem;
}

li {
  margin-bottom: 10px;
}

.navbar {
  z-index: 1000;
  background-color: #fff;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: auto;
  margin-top: 0;
  margin-left: 2%;
  margin-right: 2%;
  padding: 0 0% 5px;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
}

.logo {
  width: auto;
  margin-right: auto;
  position: relative;
  inset: 0 auto auto;
}

.top_navbar_wrapper {
  background-color: #013b3a00;
  background-image: linear-gradient(93deg, #002928, var(--green));
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 50px;
  margin-left: 0%;
  margin-right: 0%;
  padding-right: 3%;
  display: flex;
}

.navbar_wrapper {
  justify-content: flex-end;
  align-items: center;
  padding: 10px 1%;
  display: flex;
  width:100%;
}

.navlink {
  color: var(--black);
  text-transform: uppercase;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 1rem;
  font-weight: 500;
}

.navlink:hover {
  color: #007e7e;
  background-color: #007f7b00;
}

.top_nav_btn {
  color: var(--white);
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.top_nav_btn:hover {
  color: #94ffff;
}

.top_nav_btn.phone {
  margin-right: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.top_btn_icon_div {
  background-color: #007f7b00;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: auto;
  margin-right: 5px;
  display: flex;
}

.top_btn_icon {
  width: 20px;
}

.top_btn_content_div {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: static;
  left: 113px;
}

.top_btn_small_text {
  text-transform: uppercase;
  margin-right: 5px;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1rem;
}

.hero_section {
  height: 97svh;
  margin-top: 0;
  margin-left: 2%;
  margin-right: 2%;
  padding-top: 54px;
  position: relative;
  overflow: hidden;
}

.hero_img_div {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero_img {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
}

.hero_cover_div {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero_cover_img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-left: -39px;
}

.main_taglines_wrapper {
  z-index: 100;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 32%;
  display: flex;
  position: absolute;
  inset: 33% auto auto 8%;
}

.main_tagline {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
}

.main_subheadline {
  color: #c5ffff;
  margin-bottom: 30px;
  margin-right: 5%;
  font-size: 1.4rem;
  font-weight: 200;
  line-height: 2rem;
}

.button {
  background-color: var(--green);
  width: fit-content;
  color: var(--white);
  text-transform: uppercase;
  border-radius: 50px;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 20px 5px 5px;
  font-size: .9rem;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.button:hover {
  color: var(--white);
  background-color: #003a38;
}

.button.top_margin {
  margin-top: 10px;
}

.main_icon_div {
  background-color: #013a38;
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  display: flex;
}

.main_btn_icon {
  width: 20px;
}

.welcome_section {
  padding: 5% 10%;
}

.two_columns_grid {
  grid-column-gap: 3svw;
  grid-row-gap: 3svw;
  padding: 0;
}

.hp_content_cell {
  justify-content: center;
  align-items: flex-start;
  padding-left: 5%;
}

.hp_content_cell.callout {
  justify-content: center;
  align-items: flex-start;
}

.hp_headline {
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 200;
  line-height: 1.2;
}

.hp_headline.white {
  color: var(--white);
}

.welcome_subheadline {
  color: #525252;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4rem;
}

.p_last {
  margin-bottom: 0;
}

.welcome_imgs_wrapper {
  background-image: url('../images/light-green-circle.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 70%;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.welcome_img_div {
  width: 48%;
  height: 350px;
  overflow: hidden;
}

.welcome_img_div._2 {
  margin-top: 20%;
}

.hp_img {
  object-fit: cover;
  width: 100%;
  height: 100% !important;
}

.hp_img img {
  object-fit: cover;
  width: 100%;
  height: 100% !important;
}

.wp-playlist {
  width: 100%;
}


.hp_img._2, .hp_img.cataract {
  object-position: 20% 50%;
}

.circles_decor_wrapper {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.light_green_dot {
  z-index: 10;
  background-color: var(--light-green);
  border-radius: 100%;
  width: 30px;
  height: 25px;
  position: relative;
}

.dark_green_div {
  background-color: var(--green);
  border-radius: 100%;
  width: 30px;
  height: 26px;
  position: absolute;
  left: 20px;
}

.services_section {
  padding: 5% 10%;
  overflow: visible;
}

.services_grid {
  grid-column-gap: 3svw;
  grid-row-gap: 3svw;
  padding: 0;
}

.slide_btns_wrapper {
  width: 100%;
  margin-bottom: 10%;
}

.service_btn {
  border-bottom: 1px solid var(--light-green);
  opacity: 1;
  color: #6a7575;
  flex-flow: column;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  height: 100px;
  margin-top: 0%;
  margin-bottom: 0%;
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8rem;
  text-decoration: none;
  display: flex;
}

.service_btn:hover {
  color: var(--green);
}

.service_btn._1 {
  border-bottom: 1px solid var(--light-green);
  color: #6a7575;
  justify-content: space-around;
  height: 100px;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 400;
}

.service_btn._1:hover {
  color: var(--green);
}

.service_btn._2 {
  color: #6a7575;
  margin-top: 0%;
  margin-bottom: 0%;
  padding-top: 0;
  padding-bottom: 0;
}

.service_btn._2:hover {
  color: var(--green);
}

.service_btn._3 {
  color: #6a7575;
}

.service_btn._3:hover {
  color: var(--green);
}

.service_imgs_cell {
  justify-content: flex-start;
  align-items: stretch;
}

.services_imgs_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.service_img_wrapper {
  z-index: 0;
  border-radius: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.slide_img {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
}

.slide_img._2, .slide_img._4 {
  object-position: 0% 0%;
}

.slide_img._3 {
  object-fit: cover;
  object-position: 15% 50%;
}

.services_img_default_wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: block;
}

.services_img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.service_one {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
}

.service_bubble_wrapper {
  z-index: 50;
  background-color: var(--green);
  border-radius: 100%;
  width: 50%;
  padding-top: 50%;
  position: absolute;
  inset: auto -8% 9% -9%;
  box-shadow: 0 14px 30px 4px #00000045;
}

.services_text {
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  font-size: 1.5vw;
  line-height: 1.4;
  position: static;
  inset: auto;
}

.services_text_div {
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 10%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.service_two {
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}

.service_three {
  z-index: 3;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}

.service_four {
  z-index: 4;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}

.service_five {
  z-index: 5;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}

.hearing_section {
  padding: 5% 10%;
}

.hearing_grid {
  grid-column-gap: 3svw;
  grid-row-gap: 3svw;
  padding: 0;
}

.hp_img_div {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hp_img_div.what {
  height: 500px;
}

.what_section {
  background-color: var(--dark-green);
  color: var(--white);
  background-image: radial-gradient(circle at 20% 20%, #005f5c, #002221);
  margin-left: 2%;
  margin-right: 2%;
  padding: 5%;
}

.what_grid {
  grid-column-gap: 3svw;
  grid-row-gap: 3svw;
  padding: 0;
}

.callouts_grid {
  grid-column-gap: 3svw;
  grid-row-gap: 3svw;
  width: 100%;
  margin-top: 5%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.callout_cell {
  background-color: #0000003b;
  padding: 10%;
}

.callout_headline {
  height: auto;
  color: var(--white);
  margin-bottom: 10px;
  font-size: 2.2rem;
  font-weight: 200;
  line-height: 2.4rem;
}

.callout_list {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8rem;
}

.callout_subheadline {
  color: #9be9e9;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8rem;
}

.callout_subheadline.no_margin {
  margin-bottom: 0;
}

.appointment_callout_wrapper {
  width: auto;
  height: 600px;
  margin: 5% auto -15%;
  position: relative;
  overflow: hidden;
}

.appointment_callout_img_div {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.appointment_img {
  object-fit: cover;
  object-position: 50% 35%;
  width: 100%;
  height: 100%;
}

.appointment_overlay {
  z-index: 5;
  background-image: linear-gradient(#0000004d, #0000004d);
  position: absolute;
  inset: 0%;
}

.appointment_content_wrapper {
  z-index: 10;
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  padding-bottom: 5%;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 5%;
}

.appoitment_callout_div {
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  background-color: #0000001f;
  border: 1px solid #ffffff52;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 7%;
  display: flex;
}

.footer_section {
  justify-content: space-between;
  align-items: stretch;
  padding: 40px 8%;
  display: flex;
}

.quick_links_wrapper {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 20%;
  display: flex;
}

.quick_link {
  text-transform: uppercase;
  margin-bottom: 0;
  margin-left: 3%;
  margin-right: 0%;
  font-size: .8rem;
}

.footer_wrapper {
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 78%;
  margin-top: 0%;
  margin-left: 0;
  margin-right: auto;
  display: flex;
}

.footer_logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer_text {
  text-align: left;
  font-size: .85rem;
}

.soc_media_wrapper {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-top: 8%;
  display: flex;
}

.soc_media_btn {
  width: 24px;
  margin-left: 10px;
  margin-right: 10px;
}

.soc_media_btn:hover {
  opacity: .54;
}

.navlink_dropdown {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
}

.dropdown_toggle {
  color: var(--black);
  margin-top: -.5px;
  padding-left: 15px;
  padding-right: 20px;
}

.dropdown_toggle.w--open {
  color: var(--green);
}

.dropdown_icon {
  margin-right: 5px;
  font-size: .7rem;
}

.navlist.w--open {
  background-color: #fff;
}

.dropdown_link {
  border-top: 1px solid var(--light-green);
  font-size: .9rem;
}

.dropdown_link:hover {
  background-color: var(--green);
  color: var(--white);
}

.dropdown_link._1 {
  background-color: #0000000d;
}

.callout_icon {
  width: 50px;
  margin-bottom: 10px;
}

.center_wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
  display: flex;
}

.buscar_btn {
  width: 24px;
  height: 24px;
  margin-left: 40px;
}

.buscar_btn:hover {
  opacity: .52;
}

.testimonials_section {
  padding: 8% 2% 2%;
}

.testimonials_wrapper {
  background-color: #0000000d;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5%;
  display: flex;
}

.testimonals_content__div {
  width: 48%;
}

.testimonials_slider {
  background-color: #ddd0;
  height: auto;
  margin-top: 5%;
}

.slidenav {
  text-align: right;
  height: 30px;
  padding-top: 10px;
  font-size: .8rem;
  bottom: -30px;
}

.slide_arrow {
  background-color: var(--green);
  border-radius: 100%;
  width: 30px;
  height: 30px;
  font-size: .8rem;
  inset: auto auto -34px 0%;
}

.slide_arrow:hover {
  background-color: var(--light-green);
}

.slide_arrow.right {
  left: 34px;
}

.testimonials_card_div {
  height: 100%;
  padding-bottom: 0%;
  padding-right: 5%;
  position: relative;
}

.testimonials_header_div {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.testimonials_img_div {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  overflow: hidden;
}

.tetimonials_name {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.2rem;
}

.testimonials_text {
  margin-bottom: 0;
  margin-left: 70px;
}

.stars_laceholder {
  width: 100px;
}

.testimonials_main_img_div {
  width: 45%;
  height: 700px;
  margin-top: -10%;
  overflow: hidden;
}

.img-900 .testimonials_main_img_div {
  height: 900px;
}

.testimonials_slide {
  padding-bottom: 5%;
}

@media screen and (max-width: 991px) {
  .navbar {
    margin-left: 0%;
    margin-right: 0%;
  }

  .top_navbar_wrapper {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .navlink {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .top_nav_btn {
    width: 48%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero_img {
    object-position: 55% 0%;
  }

  .hero_cover_div {
    background-color: #001f1eb5;
    width: 50%;
  }

  .hero_cover_img {
    margin-left: 0;
    display: none;
  }

  .main_taglines_wrapper {
    width: 45%;
    left: 5%;
  }

  .main_tagline {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }

  .main_subheadline {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }

  .hp_content_cell {
    padding-left: 0%;
  }

  .hp_headline {
    font-size: 2.4rem;
    line-height: 2.5rem;
  }

  .welcome_subheadline {
    font-size: 1.1rem;
  }

  .hp_img.top {
    object-position: 50% 0%;
  }

  .slide_btns_wrapper {
    margin-bottom: 40px;
  }

  .service_btn {
    height: 80px;
    font-size: 1.5rem;
  }

  .service_btn._1 {
    height: 80px;
  }

  .services_imgs_wrapper {
    height: 450px;
  }

  .service_bubble_wrapper {
    bottom: 23%;
  }

  .services_text {
    font-size: 3vw;
  }

  .hp_img_div.what {
    height: 400px;
  }

  .callouts_grid {
    margin-top: 10%;
  }

  .callout_headline {
    height: 100px;
    font-size: 1.8rem;
    line-height: 2rem;
  }

  .appointment_callout_wrapper {
    height: 500px;
    margin-top: 10%;
  }

  .appointment_content_wrapper {
    width: 90%;
  }

  .footer_section {
    padding-top: 20%;
    padding-bottom: 8%;
  }

  .quick_links_wrapper {
    width: 30%;
  }

  .footer_wrapper {
    width: 65%;
  }

  .navlink_dropdown {
    display: block;
  }

  .dropdown_toggle {
    margin-top: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
  }

  .navlist {
    position: relative;
  }

  .navlist.w--open {
    border-bottom: 1px solid var(--green);
    background-color: #f0f0f0;
  }

  .dropdown_link {
    padding-left: 30px;
  }

  .menu_btn {
    background-color: var(--light-green);
    color: var(--black);
  }

  .menu_btn:hover {
    background-color: var(--green);
    color: var(--white);
  }

  .menu_btn.w--open {
    background-color: var(--dark-green);
    color: var(--white);
  }

  .navmenu {
    background-color: #fff;
  }

  .testimonials_wrapper {
    flex-flow: column;
    padding-top: 10%;
  }

  .testimonals_content__div {
    width: 100%;
    margin-bottom: 10%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .testimonials_main_img_div {
    width: 100%;
    height: 450px;
    margin-top: 0%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 3rem;
    line-height: 3.2rem;
  }

  h2 {
    font-size: 2.4rem;
    line-height: 2.5rem;
  }

  h3 {
    font-size: 1.8rem;
    line-height: 1.9rem;
  }

  h4 {
    font-size: 1.1rem;
    line-height: 1.2rem;
  }

  h5 {
    font-size: .9rem;
    line-height: 1.2rem;
  }

  .navbar {
    position: static;
  }

  .logo {
    padding-left: 0;
  }

  .hero_section {
    height: auto;
    padding-top: 0;
  }

  .hero_img_div {
    /*height: 300px;*/
  }

  .hero_cover_div {
    background-color: #001f1e;
    width: 100%;
    height: 450px;
    padding-top: 0%;
    position: static;
  }

  .main_taglines_wrapper {
    width: 80%;
    margin-top: 46px;
    top: 519px;
    left: 10%;
  }

  .welcome_section, .services_section {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .slide_btns_wrapper {
    margin-bottom: 20px;
  }

  .service_btn {
    height: 70px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.3rem;
  }

  .service_btn._1 {
    height: 70px;
  }

  .services_imgs_wrapper {
    width: 100%;
    height: 350px;
    margin-top: 0%;
  }

  .services_text {
    line-height: 1.3rem;
  }

  .hearing_section {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .callout_headline {
    height: auto;
    margin-bottom: 20px;
  }

  .footer_section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .quick_links_wrapper {
    width: 40%;
  }

  .quick_link {
    text-align: right;
  }

  .footer_wrapper {
    width: 55%;
  }

  .buscar_btn {
    margin-left: 20px;
  }

  .testimonials_main_img_div, .img-900 .testimonials_main_img_div {
    height: 400px;
  }

}

.w-layout-cell > *:not(img):not(.button) {
  width: 100%;
}

@media screen and (max-width: 479px) {

  .top_nav_btn {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero_img_div {
    height: 250px;
  }

  .hero_cover_div {
    height: 500px;
  }

  .main_taglines_wrapper {
    top: 542px;
  }

  .main_tagline {
    margin-bottom: 20px;
    font-size: 2rem;
  }

  .main_subheadline {
    font-size: 1.1rem;
  }

  .hp_content_cell {
    padding-top: 5%;
  }

  .welcome_img_div {
    height: 200px;
  }

  .service_btn {
    height: auto;
    font-size: 1.1rem;
    line-height: 1.4rem;
  }

  .service_btn._1 {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .service_btn._2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .services_imgs_wrapper {
    height: 300px;
  }

  .service_img_wrapper {
    display: none;
  }

  .services_img_default_wrapper {
    display: block;
  }

  .service_bubble_wrapper {
    width: 70%;
    padding-top: 70%;
    bottom: 49%;
    left: 12%;
  }

  .services_text {
    font-size: 4.6vw;
    line-height: 1.2rem;
  }

  .hp_img_div.what {
    height: 250px;
  }

  .what_section {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .appointment_callout_wrapper {
    height: 700px;
    margin-bottom: -33%;
  }

  .appointment_img {
    object-position: 70% 50%;
  }

  .footer_section {
    flex-flow: column;
    padding-top: 37%;
    padding-left: 10%;
    padding-right: 10%;
  }

  .quick_links_wrapper {
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-top: 33px;
  }

  .quick_link {
    margin-bottom: 6px;
  }

  .footer_wrapper {
    flex-flow: wrap;
    width: 100%;
  }

  .buscar_btn {
    margin-left: 20px;
  }

  .testimonals_content__div {
    margin-bottom: 15%;
  }

  .testimonials_header_div {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .testimonials_img_div {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .testimonials_text {
    margin-left: 0;
  }

  .testimonials_main_img_div {
    height: 300px;
  }
}

#w-node-_886fa0b6-a24a-7254-ce0f-5fcdbfa6f8d0-6c2e87c1 {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

#w-node-_07300fc4-e01a-69df-8080-8123be643c2d-6c2e87c1, #w-node-_458398c2-d33a-82cd-0ab7-a39ce5e25a1c-6c2e87c1 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_999ad285-9aff-95d8-809e-fcde58168254-6c2e87c1 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_0d4fff8e-6b42-20cb-3bfc-3e35953ffab7-6c2e87c1 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 991px) {
  #w-node-_886fa0b6-a24a-7254-ce0f-5fcdbfa6f8d0-6c2e87c1, #w-node-_07300fc4-e01a-69df-8080-8123be643c2d-6c2e87c1, #w-node-_458398c2-d33a-82cd-0ab7-a39ce5e25a1c-6c2e87c1, #w-node-_999ad285-9aff-95d8-809e-fcde58168254-6c2e87c1 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_0d4fff8e-6b42-20cb-3bfc-3e35953ffab7-6c2e87c1 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}