* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0px;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto !important;
}

.m-c {
  margin: 0;
}

@font-face {
  font-family: "Bold";
  src: url("../font-text/Roboto-Bold.ttf");
}
@font-face {
  font-family: "Italic";
  src: url("../font-text/Roboto-Italic.ttf");
}
@font-face {
  font-family: "Regular";
  src: url("../font-text/Roboto-Regular.ttf");
}
:root {
  --main-color-one: #025ea9;
  --main-color-two: #50ae50;
  --main-color-two-alt: #358e33;
  --main-color-three: #999999;
  --main-color-four: #f2f2f2;
}

@media screen and (min-width: 1410px) {
  html {
    font-size: 18px;
  }
}
@media screen and (min-width: 1550px) {
  html {
    font-size: 20px;
  }
}
@media screen and (min-width: 1800px) {
  html {
    font-size: 23px;
  }
}
/**/
@media screen and (max-width: 1000px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 900px) {
  html {
    font-size: 13px;
  }
}
@media screen and (max-width: 700px) {
  html {
    font-size: 12px;
  }
}
@media screen and (max-width: 340px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 320px) {
  html {
    font-size: 9px;
  }
}
/* -------------------------------- 
Modules - reusable parts of our design
-------------------------------- */
.img-replace {
  /* replace text with an image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  color: white;
  white-space: nowrap;
}

/* -------------------------------- 
xnugget info 
-------------------------------- */
.cd-nugget-info {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 50px;
  line-height: 50px;
  bottom: 0;
  left: 0;
}

.cd-nugget-info a {
  position: relative;
  font-size: 14px;
  color: #5e6e8d;
  transition: all 0.2s;
}

.no-touch .cd-nugget-info a:hover {
  opacity: 0.8;
}

.cd-nugget-info span {
  vertical-align: middle;
  display: inline-block;
}

.cd-nugget-info span svg {
  display: block;
}

.cd-nugget-info .cd-nugget-info-arrow {
  fill: #5e6e8d;
}

/* -------------------------------- 
popup 
-------------------------------- */
.cd-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.cd-popup.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-popup-container {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 1600px;
  padding: 2.5rem 3.5rem;
  max-width: 1900px;
  background: var(--main-color-two);
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -webkit-backface-visibility: hidden;
  transition-property: transform;
  transition-duration: 0.3s;
}

.cd-popup-container .cd-buttons:after {
  content: "";
  display: table;
  clear: both;
}

.cd-popup-container .cd-buttons li {
  float: left;
  width: 50%;
  list-style: none;
}

.cd-popup-container .cd-buttons a {
  display: block;
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
  color: #FFF;
  transition: background-color 0.2s;
}

.cd-popup-container .cd-buttons li:first-child a {
  background: #fc7169;
  border-radius: 0 0 0 0.25em;
}

.no-touch .cd-popup-container .cd-buttons li:first-child a:hover {
  background-color: #fc8982;
}

.cd-popup-container .cd-buttons li:last-child a {
  background: #b6bece;
  border-radius: 0 0 0.25em 0;
}

.no-touch .cd-popup-container .cd-buttons li:last-child a:hover {
  background-color: #c5ccd8;
}

.cd-popup-container .cd-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
}

.cd-popup-container .cd-popup-close::before, .cd-popup-container .cd-popup-close::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 14px;
  height: 3px;
  background-color: white;
}

.cd-popup-container .cd-popup-close::before {
  transform: rotate(45deg);
  left: 8px;
}

.cd-popup-container .cd-popup-close::after {
  transform: rotate(-45deg);
  right: 8px;
}

.is-visible .cd-popup-container {
  transform: translateY(0);
}

/*estilos extra*/
.container-form-popup {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.box-form-m-popup {
  width: 75%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.box-social-m-popup {
  width: 25%;
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.box-social-m-popup img {
  width: 46%;
}

.b-m-f-p-0 {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1.25rem 5rem;
}

/**/
.title-popup-m1,
.title-popup-m2 {
  color: white;
}

.title-popup-m1 {
  font-family: "Bold";
  font-size: 1.19rem;
}

.title-popup-m2 {
  font-family: "Regular";
  font-size: 0.94rem;
}

/**/
.box-social-footer-p {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  margin-top: 3rem;
  padding: 0 4.38rem;
}

.box-social-footer-p a {
  color: white;
  font-size: 1.69rem;
  transition: all 0.3s ease;
}

.box-social-footer-p a:hover {
  transform: translateY(-0.2em);
}

.box-salir-popup {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.81rem;
}

.box-salir-popup a {
  font-family: "Regular";
  background-color: white;
  color: var(--main-color-two);
}

.btn-popup {
  position: relative !important;
  z-index: 25 !important;
  width: 25% !important;
  padding: 0.25rem;
  border-radius: 0.31rem;
  font-size: 0.81rem;
}

@media screen and (max-width: 700px) {
  .cd-popup-container {
    padding: 1rem !important 0.5rem;
  }

  .box-form-m-popup {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .box-social-m-popup {
    display: none;
  }

  .b-m-f-p-0 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 !important;
  }

  .box-salir-popup {
    display: none;
  }

  .title-popup-m1 {
    font-size: 1.7rem;
  }

  .title-popup-m2 {
    font-family: "Regular";
    font-size: 1rem;
  }

  .box-social-footer-p {
    margin-top: 3rem;
    padding: 0 2rem;
  }

  .box-social-footer-p a {
    font-size: 2.6rem;
  }
}
.btns-mobile {
  background-color: var(--main-color-two);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 100;
}

.btn-call,
.btn-cotizar {
  color: white;
  padding: 1.2rem 0;
  font-size: 1.2rem;
  font-family: "Regular";
}

.btn-call {
  text-decoration: none;
}

.line-btn-mobile {
  height: 30px;
  width: 2px;
  background-color: white;
}

.main-form-pop-up {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 1rem;
}

.main-form-pop-up-view {
  display: flex;
}

.child-form-pop-up {
  width: 100%;
  background-color: var(--main-color-white);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
}

.child-form-pop-up .title-form-banner-principal {
  color: var(--main-color);
}

.btn-close {
  position: absolute;
  right: -10px;
  top: -20px;
  color: var(--main-color-white);
  background-color: var(--main-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}

.btn-whatsapp-mobile {
  background-color: #25d366;
  position: fixed;
  top: 65%;
  right: 5px;
  width: 55px;
  height: 55px;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 3rem;
  color: white;
}

.btn-whatsapp-mobile i {
  line-height: 0;
}

.child-form-pop-up form input,
.child-form-pop-up form textarea {
  color: var(--main-dark);
}

@media screen and (max-width: 980px) {
  body {
    margin-bottom: 45px;
  }

  .btns-mobile,
.btn-whatsapp-mobile {
    display: flex;
  }
}
.section-header-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.child-section-header {
  max-width: 1600px;
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0.63rem;
  margin-bottom: 0.63rem;
  overflow: hidden;
}

.one-section-header {
  width: 40%;
}

.two-section-header {
  width: 36%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.three-section-header {
  width: 24%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.two-section-header,
.three-section-header {
  font-family: "Regular";
  font-size: 0.81rem;
  color: var(--main-color-three);
}

.one-section-header img {
  width: 26%;
  height: auto !important;
}

.two-section-header img {
  width: 1.38rem;
  height: auto;
  margin-right: 0.31rem;
}

.three-section-header img {
  width: 1.38rem;
  height: auto;
  margin-right: 0.5rem;
}

.bg-pc {
  display: block;
}

.bg-mb {
  display: none;
}

@media screen and (max-width: 700px) {
  .bg-pc {
    display: none;
  }

  .bg-mb {
    display: block;
  }

  .child-section-header {
    width: 90%;
    margin-top: 0.7rem;
    margin-bottom: 0.7rem;
  }

  .two-section-header {
    display: none;
  }

  .three-section-header {
    display: none;
  }

  .one-section-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .one-section-header img {
    width: 25%;
    height: auto !important;
  }
}
.section-banner-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.child-section-banner {
  max-width: 1900px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.box-ab-s-banner {
  width: 52%;
  position: absolute;
}

.box-ab-s-banner h1 {
  color: white;
  text-align: center;
  font-family: "Regular";
  font-size: 1.38rem;
  font-weight: normal;
}

.h1-bold-banner {
  font-family: "Bold";
  font-size: 3.44rem;
}

.box-btn-banner-ab {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.19rem;
}

.btn-banner1,
.btn-banner2 {
  border: 0.06rem solid white;
  width: 20%;
  text-align: center;
  padding: 0.63rem 0;
  border-radius: 0.63rem;
  font-family: "Regular";
  font-size: 0.81rem;
}

.btn-banner2 {
  background-color: white;
  margin-left: 1.5rem;
  transition: all 0.5s ease;
  color: var(--main-color-two-alt);
}

.btn-banner1 {
  background-color: transparent;
  margin-right: 1.5rem;
  color: white;
  transition: all 0.5s ease;
}

.btn-banner1:hover {
  background-color: white;
  color: var(--main-color-two);
}

.btn-banner2:hover {
  background-color: transparent;
  color: white;
}

/*foco*/
.box-foco-banner {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: -8.75rem;
  z-index: 5;
  overflow: hidden;
}

.box-foco-banner img {
  width: 25%;
  height: auto;
}

@media screen and (max-width: 700px) {
  .box-ab-s-banner {
    width: 90%;
  }

  .h1-bold-banner {
    font-size: 3.3rem;
  }

  .btn-banner2 {
    background-color: transparent;
    margin-left: 1.5rem;
    transition: all 0.5s ease;
    color: white;
    width: 42%;
    padding: 0.7rem 0;
    border-radius: 0.7rem;
    font-size: 1.4rem;
  }

  .btn-banner1 {
    display: none;
  }

  /*foco*/
  .box-foco-banner {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: -7rem;
    z-index: 5;
  }

  .box-foco-banner img {
    width: 100%;
  }
}
.section-modelos-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.child-section-modelos {
  max-width: 1600px;
  width: 65%;
  margin-top: 2.5rem;
  margin-bottom: 3.75rem;
  overflow: hidden;
}

.one-modelos-main {
  width: 100%;
  padding-right: 22.881rem;
  margin-bottom: 3.75rem;
}

.title-section-modelos {
  color: var(--main-color-one);
  font-family: "Bold";
  font-size: 2.06rem;
}

.sub-title-section-modelos {
  color: var(--main-color-three);
  font-family: "Regular";
  font-size: 1.28rem;
  margin-top: 0.62rem;
}

.two-modelos-main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.box-bano-modelos {
  border: 0.06rem solid var(--main-color-four);
  width: 45%;
  height: auto;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0.62rem 1.25rem 1.25rem 1.25rem;
}

.box-bano-modelos img {
  width: 40%;
  margin-top: 0.94rem;
  transition: all 0.5s ease;
}

.box-bano-modelos img:hover {
  transform: scale(1.1) rotate(2deg);
}

.title-box-bano-modelos {
  color: var(--main-color-one);
  font-family: "Bold";
  font-size: 1.31rem;
  margin-top: 1.25rem;
}

.container-text-bano-modelos {
  width: 59%;
  margin-top: 1.25rem;
}

.text-tiny-box-bano-modelos {
  font-family: "Italic";
  font-size: 0.88rem;
  color: var(--main-color-one);
  margin-bottom: 0.44rem;
}

.descrip-container-text-bano-modelos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--main-color-three);
  font-family: "Regular";
  font-size: 0.81rem;
  margin-bottom: 0.38rem;
}

.descrip-container-text-bano-modelos1 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  color: var(--main-color-three);
  font-family: "Regular";
  font-size: 0.81rem;
  margin-bottom: 0.38rem;
}

.circulo-icono {
  font-size: 1.56rem;
  margin: -0.44rem -0.63rem -0.5rem;
}

.container-btn-bano-modelos {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 3.13rem;
}

.container-btn-bano-modelos1 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 0.63rem;
}

.container-btn-bano-modelos a,
.container-btn-bano-modelos1 a {
  background: var(--main-color-two);
  border: 0.06rem solid var(--main-color-two);
  color: white;
  width: 26%;
  text-align: center;
  padding: 0.5rem 0;
  font-family: "Regular";
  font-size: 0.88rem;
  border-radius: 0.38rem;
  transition: all 0.5s ease;
}

.container-btn-bano-modelos a:hover,
.container-btn-bano-modelos1 a:hover {
  background: transparent;
  color: var(--main-color-two);
}

@media screen and (max-width: 700px) {
  .child-section-modelos {
    width: 90%;
    margin-top: 3rem;
    margin-bottom: 1rem;
  }

  .one-modelos-main {
    width: 100%;
    padding-right: 1rem;
    margin-bottom: 3.5rem;
  }

  .two-modelos-main {
    flex-wrap: wrap;
  }

  .box-bano-modelos {
    border: 0.06rem solid var(--main-color-four);
    width: 100%;
    padding: 1rem 2.5rem 2.5rem 2.5rem;
    margin-bottom: 2.2rem;
  }

  .box-bano-modelos img {
    width: 60%;
    margin-top: 1rem;
  }

  .title-box-bano-modelos {
    color: var(--main-color-one);
    font-family: "Bold";
    font-size: 1.7rem;
    margin-top: 1.7rem;
  }

  .container-text-bano-modelos {
    width: 79%;
  }

  .text-tiny-box-bano-modelos {
    font-size: 1.1rem;
    margin-bottom: 0.44rem;
  }

  .descrip-container-text-bano-modelos {
    font-size: 1rem;
    margin-bottom: 0.38rem;
  }

  .container-btn-bano-modelos {
    justify-content: center;
    margin-top: 3.13rem;
  }

  .container-btn-bano-modelos1 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.63rem;
  }

  .container-btn-bano-modelos a,
.container-btn-bano-modelos1 a {
    width: 38%;
    padding: 0.7rem 0;
    font-size: 1.4rem;
    border-radius: 0.7rem;
  }
}
.section-cuadros-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--main-color-four);
}

.child-section-cuadros {
  max-width: 1600px;
  width: 65%;
  margin-top: 4.38rem;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.box-title-s-cuadros {
  width: 100%;
  margin-bottom: 5rem;
}

.title-s-cuadros1 {
  padding: 0 10.94rem;
  color: var(--main-color-three);
  font-family: "Regular";
  font-size: 1.25rem;
  text-align: center;
}

.title-s-cuadros2 {
  color: var(--main-color-one);
  font-family: "Bold";
  font-size: 2.06rem;
  text-align: center;
}

.box-main-cuadros-s-cuadros {
  width: 100%;
}

.box1-cuadro1-s-cuadros {
  width: 100%;
  display: flex;
  justify-content: center;
}

.box1-cuadro1-s-cuadros div {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.box1-cuadro1-s-cuadros div img {
  width: 100%;
  height: auto;
}

.info1-box1-s-cuadros {
  color: var(--main-color-one);
  font-family: "Bold";
  font-size: 2.06rem;
  padding-left: 3.13rem;
}

.info2-box1-s-cuadros {
  color: var(--main-color-three);
  font-family: "Regular";
  font-size: 0.81rem;
  padding-left: 3.13rem;
  padding-right: 4.38rem;
  padding-top: 0.44rem;
}

.info0-box1-s-cuadros {
  color: var(--main-color-three);
  font-family: "Regular";
  font-size: 0.81rem;
  padding-left: 3.13rem;
}

.info1-box1-s-cuadros1 {
  color: var(--main-color-one);
  font-family: "Bold";
  font-size: 2.06rem;
}

.info2-box1-s-cuadros1 {
  color: var(--main-color-three);
  font-family: "Regular";
  font-size: 0.81rem;
  padding-right: 4.38rem;
  padding-top: 0.44rem;
}

.info0-box1-s-cuadros1 {
  color: var(--main-color-three);
  font-family: "Regular";
  font-size: 0.81rem;
}

.color-blue-cuadros {
  color: var(--main-color-one);
}

@media screen and (max-width: 700px) {
  .child-section-cuadros {
    width: 90%;
    margin-top: 3rem;
    margin-bottom: 1rem;
  }

  .box-title-s-cuadros {
    margin-bottom: 4rem;
  }

  .title-s-cuadros1 {
    padding: 0 1.5rem;
    color: var(--main-color-three);
    font-family: "Regular";
    font-size: 1.25rem;
    text-align: center;
  }

  .title-s-cuadros2 {
    color: var(--main-color-one);
    font-family: "Bold";
    font-size: 2.06rem;
    text-align: center;
  }

  .box1-cuadro1-s-cuadros {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 3.2rem;
  }

  .box1-cuadro1-s-cuadros div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .b2 {
    order: 1;
  }

  .b1 {
    order: 2;
  }

  .box1-cuadro1-s-cuadros div img {
    margin-bottom: 1.2rem;
  }

  .info1-box1-s-cuadros {
    font-size: 2.06rem;
    padding-left: 0;
  }

  .info2-box1-s-cuadros {
    font-size: 1.3rem;
    padding-left: 0;
    padding-right: 0;
  }

  .info1-box1-s-cuadros1 {
    font-size: 2.06rem;
    text-align: end;
    width: 100%;
  }

  .info2-box1-s-cuadros1 {
    font-size: 1.3rem;
    padding-top: 0.44rem;
    width: 100%;
    text-align: end;
    padding-right: 0;
  }

  .info0-box1-s-cuadros1 {
    font-size: 1.3rem;
    width: 100%;
    text-align: end;
  }

  .info0-box1-s-cuadros {
    font-size: 1.3rem;
    padding-left: 0;
  }
}
.section-contador-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--main-color-four);
}

.child-section-contador {
  max-width: 1300px;
  width: 65%;
  margin-top: 1.56rem;
  margin-bottom: 2.19rem;
}

.contadores_principal {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.contador {
  width: 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contador div {
  color: var(--main-color-two);
  font-family: "Bold";
  font-size: 2.19rem;
}

.contador p {
  color: var(--main-color-three);
  font-family: "Regular";
  font-size: 0.82rem;
  text-align: center;
}

.box-mas-contador {
  display: flex;
  align-items: center;
}

.contador-img {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.contador-img img {
  width: 2.81rem;
  height: auto;
  margin-right: -0.19rem;
  margin-bottom: -0.13rem;
}

.contador-img p {
  color: var(--main-color-one);
  font-family: "Bold";
  font-size: 1.25rem;
  margin-bottom: -0.7rem;
  margin-right: -4.38rem;
}

.ocultar-c {
  opacity: 0;
}

.animar-c {
  animation: aparecer 1.3s;
}

@keyframes aparecer {
  0% {
    opacity: 0;
    transform: translateY(6.25rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 700px) {
  .child-section-contador {
    width: 90%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .contadores_principal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contador {
    width: 100%;
    margin-bottom: 3.5rem;
  }

  .contador div {
    font-size: 3rem;
  }

  .contador p {
    font-size: 1.2rem;
    margin-top: 0.63rem;
  }

  .box-mas-contador p {
    font-size: 2.5rem !important;
    margin-top: 0 !important;
  }

  .contador-img img {
    width: 5rem;
  }

  .contador-img p {
    font-size: 1.5rem;
    margin-bottom: -0.8rem;
    margin-right: -6rem;
  }
}
.section-q-somos-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.child-section-q-somos {
  max-width: 1900px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.one-section-q-somos {
  width: 32.5%;
}

.two-section-q-somos {
  width: 50%;
}

.title-section-q-somos {
  color: var(--main-color-one);
  font-family: "Bold";
  font-size: 2.06rem;
}

.sub-title-section-q-somos {
  color: var(--main-color-three);
  font-family: "Regular";
  font-size: 0.81rem;
  padding-right: 5rem;
  margin-top: 0.63rem;
}

@media screen and (max-width: 700px) {
  .child-section-q-somos {
    flex-wrap: wrap;
  }

  .one-section-q-somos {
    width: 100%;
    order: 2;
    padding: 0 1.5rem;
  }

  .two-section-q-somos {
    width: 100%;
    order: 1;
  }

  .title-section-q-somos {
    font-size: 2.06rem;
    margin-top: 1.5rem;
  }

  .sub-title-section-q-somos {
    font-size: 1.3rem;
    padding-right: 0;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}
.section-llamanos-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.child-section-llamanos {
  max-width: 1900px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.box-ab-llamanos {
  width: 65%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: flex-start;
}

.one-box-ab-llamanos {
  width: 73%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.two-box-ab-llamanos {
  width: 43%;
  display: flex;
  align-items: flex-end;
  margin-left: -4.38rem;
  margin-right: -5rem;
}

.text1-s-llamanos {
  font-family: "Bold";
  color: white;
  font-size: 2.06rem;
}

.text2-s-llamanos {
  font-family: "Regular";
  color: white;
  font-size: 1.28rem;
  padding-right: 9.06rem;
  margin-top: 0.19rem;
}

.text3-s-llamanos {
  font-family: "Bold";
  color: var(--main-color-two);
  font-size: 2.09rem;
  background-color: white;
  padding: 0.63rem 2.38rem;
  border-radius: 0.75rem;
  margin-top: 1.56rem;
}

@media screen and (max-width: 700px) {
  .child-section-llamanos {
    background: url(../img/grandes/5-m.jpg);
    background-size: cover;
    background-position: center;
  }

  .box-ab-llamanos {
    width: 90%;
    height: auto;
    position: inherit;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .one-box-ab-llamanos {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .two-box-ab-llamanos {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
  }

  .two-box-ab-llamanos img {
    width: 67%;
    transform: scaleX(-1);
  }

  .text1-s-llamanos {
    font-size: 2.06rem;
    text-align: center;
    margin-top: 6rem;
    padding: 0 1rem;
  }

  .text2-s-llamanos {
    font-size: 1.3rem;
    padding-right: 0;
    margin-top: 0.19rem;
    text-align: center;
  }

  .text3-s-llamanos {
    font-size: 1.9rem;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    margin-top: 1.3rem;
    width: 100%;
    text-align: center;
    margin-bottom: 2.5rem;
  }
}
.section-slider-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--main-color-four);
}

.child-section-slider {
  max-width: 1700px;
  width: 65%;
  margin-top: 5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.title-slider {
  color: var(--main-color-two);
  font-family: "Bold";
  text-align: center;
  font-size: 2.06rem;
  margin-bottom: 3.13rem;
}

.box-main-c-slider {
  width: 45%;
}

.box-main-c-slider100 {
  width: 100%;
  height: auto;
}

.text-card-testimonio {
  color: var(--main-color-three);
  font-family: "Regular";
  font-size: 0.81rem;
  text-align: center;
}

.box-photo-name {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 2.5rem;
  margin-top: 1.56rem;
}

.box-photo-name img {
  width: 4.38rem;
}

.box-photo-name p {
  color: var(--main-color-one);
  font-family: "Bold";
  font-size: 1.28rem;
  line-height: 0.94rem;
  margin-left: 1.25rem;
}

.box-photo-name p span {
  color: var(--main-color-three);
  font-family: "Italic";
  font-size: 0.81rem;
}

@media screen and (max-width: 700px) {
  .child-section-slider {
    width: 90%;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
  }

  .title-slider {
    margin-bottom: 2.5rem;
  }

  .box-main-c-slider {
    width: 90%;
  }

  .text-card-testimonio {
    font-size: 1.2rem;
  }

  .box-photo-name {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .box-photo-name img {
    width: 70%;
  }

  .box-photo-name p {
    font-size: 2rem;
    line-height: 1.5rem;
    margin-left: 0;
    text-align: center;
    margin-top: 2rem;
  }

  .box-photo-name p span {
    font-size: 1.2rem;
    text-align: center;
  }
}
.section-servicios-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.child-section-servicios {
  max-width: 1600px;
  width: 65%;
  margin-top: 5rem;
  margin-bottom: 3.75rem;
  overflow: hidden;
}

.title-section-servicios {
  color: var(--main-color-one);
  font-family: "Bold";
  font-size: 2.06rem;
  width: 70%;
  margin-bottom: 2.5rem;
}

.container-main-servicios {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.container-main-servicios div {
  width: 19.8%;
  background-color: var(--main-color-four);
  overflow: hidden;
}

.container-main-servicios div p {
  font-family: "Regular";
  color: var(--main-color-three);
  text-align: center;
  font-size: 0.81rem;
  margin-top: 0.81rem;
  margin-bottom: 0.63rem;
}

.container-main-servicios div img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.container-main-servicios div img:hover {
  transform: scale(1.05);
}

.container-main-servicios div div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.container-main-servicios div div a {
  background-color: var(--main-color-two);
  border: 0.06rem solid var(--main-color-two);
  color: white;
  font-family: "Regular";
  font-size: 0.81rem;
  padding: 0.56rem 0.94rem;
  border-radius: 0.38rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  transition: all 0.5s ease;
}

.container-main-servicios div div a:hover {
  background-color: white;
  color: var(--main-color-two);
}

.pad-ext-s-s {
  margin-top: 1.19rem !important;
  margin-bottom: 1.19rem !important;
}

@media screen and (max-width: 700px) {
  .child-section-servicios {
    width: 90%;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .title-section-servicios {
    width: 100%;
  }

  .container-main-servicios {
    flex-wrap: wrap;
  }

  .container-main-servicios div {
    width: 49.8%;
    overflow: hidden;
    margin-bottom: 0.2rem;
  }

  .container-main-servicios div p {
    font-size: 1.1rem;
    margin-top: 0.81rem;
    margin-bottom: 0.63rem;
  }

  .container-main-servicios div div a {
    font-size: 1.1rem;
    padding: 0.6rem 0.94rem;
    border-radius: 0.7rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    transition: all 0.5s ease;
  }

  .pad-ext-s-s {
    margin-top: 1.39rem !important;
    margin-bottom: 1.39rem !important;
  }
}
.section-footer-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--main-color-two);
}

.child-section-footer {
  max-width: 1600px;
  width: 65%;
  margin-top: 1.88rem;
  margin-bottom: 1.56rem;
  display: flex;
  justify-content: flex-start;
}

.one-section-footer,
.two-section-footer {
  width: 50%;
}

.two-section-footer {
  padding: 1.88rem;
}

.two-section-footer p {
  color: white;
  font-family: "Bold";
  font-size: 1.31rem;
}

.subtitle-footer-two {
  font-size: 0.81rem !important;
  font-family: "Regular" !important;
}

.form-footer {
  width: 100%;
  margin-top: 1.06rem;
}

.box-input-form {
  width: 100%;
  position: relative;
  margin-bottom: 0.63rem;
  color: var(--main-color-three);
  border: 0;
}

.box-input-form input {
  width: 100%;
  padding: 0.75rem 2.5rem;
  font-family: "Regular";
  font-size: 0.81rem;
  border-radius: 0.63rem;
  border: 0.06rem solid white;
  background: white;
  color: var(--main-color-three);
  outline: none;
}

.box-input-form img {
  width: 0.94rem;
  height: auto;
  z-index: 5;
  position: absolute;
  left: 3.5%;
  top: 0.81rem;
}

.box-input-form textarea {
  width: 100%;
  padding: 0.75rem 2.5rem;
  font-family: "Regular";
  font-size: 0.81rem;
  border-radius: 0.63rem;
  border: 0;
  outline: none;
}

.box-form-btn-m {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.box-form-btn-m input {
  background-color: transparent;
  border: 0.06rem solid white;
  color: white;
  border-radius: 0.63rem;
  font-family: "Regular";
  font-size: 0.81rem;
  padding: 0.75rem 2.19rem;
  transition: all 0.5s ease;
  cursor: pointer;
}

.box-form-btn-m input:hover {
  background-color: white;
  color: var(--main-color-two);
  border: 0.06rem solid white;
}

.one-section-footer {
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.one-section-footer img {
  width: 45%;
  height: auto;
  margin-bottom: 1.88rem;
}

.box-single-date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.94rem;
}

.box-single-date img {
  width: 1.44rem;
  height: auto;
  margin-bottom: 0;
  margin-right: 0.63rem;
}

.box-single-date p {
  font-family: "Regular";
  font-size: 0.81rem;
  color: white;
}

.box-social-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 55%;
  margin-top: 1.25rem;
}

.box-social-footer a {
  color: white;
  font-size: 1.69rem;
  transition: all 0.3s ease;
}

.box-social-footer a:hover {
  transform: translateY(-0.2em);
}

/**/
.copy-footer {
  background-color: var(--main-color-two-alt);
  text-align: center;
  font-family: "Regular";
  padding: 1.56rem 0;
  font-size: 0.81rem;
  color: white;
}

@media screen and (max-width: 700px) {
  .child-section-footer {
    width: 90%;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .two-section-footer {
    display: none;
  }

  .one-section-footer {
    width: 100%;
  }

  .one-section-footer {
    padding-left: 0;
  }

  .one-section-footer img {
    width: 60%;
    margin-bottom: 3.5rem;
  }

  .box-single-date {
    margin-bottom: 2.5rem;
  }

  .box-single-date img {
    width: 2rem !important;
    margin-bottom: 0 !important;
  }

  .box-single-date p {
    font-size: 1.1rem;
  }

  .box-social-footer a {
    font-size: 2.4rem;
  }

  /**/
  .copy-footer {
    padding: 1.7rem 0;
    font-size: 1.1rem;
    color: white;
  }

  /**/
  .box-input-form {
    margin-bottom: 0.8rem;
  }

  .box-input-form input {
    padding: 0.9rem 3rem;
    font-size: 1.1rem;
  }

  .box-input-form img {
    width: 1.1rem;
    height: auto;
    z-index: 5;
    position: absolute;
    left: 4%;
    top: 1.1rem;
  }

  .box-input-form textarea {
    padding: 0.9rem 3rem;
    font-size: 1.1rem;
  }

  .box-form-btn-m input {
    font-size: 1.2rem;
  }
}