@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;600;800&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 12rem;
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 10rem;
  }
}

body {
  background-color: #fff;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #2d3436;
  line-height: 1.75;
}
@media (max-width: 480px) {
  body {
    font-size: 1.8rem;
  }
}

.h1 {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .h1 {
    line-height: 1.4;
  }
}
@media (max-width: 480px) {
  .h1 {
    font-size: 3.5rem;
  }
}

.h2 {
  font-size: 2.6rem;
}
@media (max-width: 768px) {
  .h2 {
    font-size: 2rem;
    line-height: 1.4;
  }
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 3rem;
  border-radius: 50px;
  background-color: #fff;
  text-decoration: none;
  color: inherit;
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn--primary {
  background-color: #4374b9;
  color: #fff;
}
.btn--primary:hover {
  background-color: #28456e;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70vh;
  margin-top: 12rem;
  background-size: cover;
  background-position: top;
}
@media (max-width: 1024px) {
  .hero {
    height: 95vh;
  }
}
@media (max-width: 480px) {
  .hero {
    height: 100vh;
    margin-top: 0rem;
  }
}
.hero .text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 3rem;
  width: 60%;
  color: #fff;
}
.hero .text-box .h2 {
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .hero .text-box {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero .text-box {
    padding-top: 4rem;
    gap: 2rem;
  }
}
.hero--home {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(/assets/hero/hero_home.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/assets/hero/hero_home.jpg);
}
@media (max-width: 480px) {
  .hero--home {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(/assets/hero/hero_home_m.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/assets/hero/hero_home_m.jpg);
  }
}
.hero--servicios {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(/assets/hero/servicios.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/assets/hero/servicios.jpg);
}
.hero--calidad {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), url(/assets/hero/hero_calidad.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/assets/hero/hero_calidad.jpg);
}
.hero--productos {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8))), url(/assets/hero/productos.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(/assets/hero/productos.jpg);
}
.hero--contacto {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8))), url(/assets/hero/contacto.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(/assets/hero/contacto.jpg);
}
@media (max-width: 480px) {
  .hero--contacto {
    height: 70vh;
  }
}

.highlights {
  padding: 8rem 0;
}
.highlights ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}
.highlights ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  padding: 3rem;
  min-height: 16rem;
  min-width: 20%;
  border-radius: 10px;
  text-align: center;
  line-height: 1.5;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  cursor: default;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.highlights ul li .icon {
  font-size: 3.5rem;
}
@media (max-width: 1024px) {
  .highlights ul li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 80%;
    padding: 2rem;
    min-height: 10rem;
  }
}
@media (max-width: 480px) {
  .highlights ul li {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .highlights ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}

.cards .container {
  display: -ms-grid;
  display: grid;
  gap: 5rem;
  -ms-grid-columns: 1fr 5rem 1fr 5rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1024px) {
  .cards .container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cards .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.cards .card:hover img {
  -webkit-filter: brightness(60%);
          filter: brightness(60%);
}
.cards .card__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.cards .card__header .h2 {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  color: #fff;
}
@media (max-width: 480px) {
  .cards .card__header .h2 {
    width: 90%;
    line-height: 1.4;
  }
}
.cards .card__header img {
  width: 100%;
  -webkit-filter: brightness(30%);
          filter: brightness(30%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cards .card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  padding: 2rem 4rem;
  height: auto;
}
.cards .card__content ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.cards .card__content ul ion-icon {
  -webkit-transform: translateY(15%);
          transform: translateY(15%);
}
@media (max-width: 1024px) {
  .cards .card {
    width: 80%;
    margin: auto;
  }
}
@media (max-width: 480px) {
  .cards .card {
    width: 100%;
  }
}

.language-bar {
  position: fixed;
  z-index: 999999999999;
  top: 40px;
  right: 50px;
  width: 60px;
  height: 30px;
}

.language-btn,
.language-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  height: 100%;
  width: 100%;
  background-color: #fff;
  font-family: inherit;
  font-size: 1.5rem;
  color: #2d3436;
  text-decoration: none;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.language-btn img,
.language-link img {
  height: 20px;
}

.language-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.language-link.active {
  -webkit-transform: translateY(55%);
          transform: translateY(55%);
}

.language-btn.active {
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
}

@media (max-width: 1024px) {
  .language-bar {
    top: 45px;
    left: auto;
    right: 100px;
  }
}
@media (max-width: 768px) {
  .language-bar {
    top: 25px;
    left: auto;
    right: 80px;
  }
}
.container {
  width: 80%;
  max-width: 1600px;
  margin: auto;
}
@media (max-width: 1024px) {
  .container {
    width: 90%;
  }
}

.section {
  padding: 10rem 0;
}
@media (max-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
  width: 100%;
  padding: 1rem 0;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}
.header__logo img {
  height: 10rem;
  width: auto;
}
@media (max-width: 768px) {
  .header__logo img {
    height: 6rem;
  }
}
.header nav {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  list-style: none;
  background: #fff;
}
@media (max-width: 1024px) {
  .header nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .header nav.active {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.header__btn {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  background-color: #fff;
  font-size: 4rem;
  color: inherit;
}
@media (max-width: 1024px) {
  .header__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer {
  padding: 5rem 0 1rem 0;
  background-color: #192a56;
  color: #fff;
}
.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
.footer .p {
  text-align: center;
}
.footer span {
  font-size: 1.2rem;
  text-align: center;
}
.footer .btn {
  color: #2d3436;
}

.home .info .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}
.home .info .container .text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
}
.home .info .container .text-box .h2 {
  line-height: 1;
  text-transform: uppercase;
}
.home .info .container .text-box .h2 span {
  font-size: 1.8rem;
  font-weight: 600;
}
.home .info .container .text-box .h2.last {
  margin-top: 3rem;
}
.home .info .container .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .info .container .img-box img {
  width: 80%;
}
.home .info .container .img-box img.img--lg {
  width: 100%;
}
@media (max-width: 1024px) {
  .home .info .container .img-box {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 1024px) {
  .home .info .container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.home .productos .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5rem 2fr;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .home .productos .container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.home .productos .text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
.home .productos .text-box .h2 {
  text-transform: uppercase;
}
.home .productos .text-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  list-style: none;
}
.home .productos .text-box ul li button {
  padding: 4rem 0;
  width: 100%;
  border-radius: 10px;
  border: none;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  font-size: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.home .productos .text-box ul li button.active, .home .productos .text-box ul li button:hover {
  background-color: #4374b9;
  color: #fff;
}
@media (max-width: 1024px) {
  .home .productos .text-box ul li button {
    padding: 2rem 0;
  }
}
@media (max-width: 1024px) {
  .home .productos .text-box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.home .productos .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.home .productos .img-box img {
  display: none;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .productos .img-box img.active {
  display: block;
}

.servicios .servicio .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60%;
  text-align: center;
}
@media (max-width: 1024px) {
  .servicios .servicio .container {
    width: 80%;
  }
}

.calidad .info .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}
.calidad .info .container .text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
}
.calidad .info .container .text-box .h2 {
  line-height: 1;
  text-transform: uppercase;
}
.calidad .info .container .text-box .h2 span {
  font-size: 1.8rem;
  font-weight: 600;
}
.calidad .info .container .text-box .h2.last {
  margin-top: 3rem;
}
@media (max-width: 1024px) {
  .calidad .info .container .text-box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.calidad .info .container .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.calidad .info .container .img-box img {
  width: 80%;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .calidad .info .container .img-box img {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .calidad .info .container .img-box {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 1024px) {
  .calidad .info .container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 8rem;
  }
}

.productos .intro .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60%;
  text-align: center;
}
@media (max-width: 1024px) {
  .productos .intro .container {
    width: 90%;
  }
}
.productos .producto .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  min-height: 57rem;
}
.productos .producto .container .text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  margin-top: auto;
  margin-bottom: auto;
}
.productos .producto .container .text-box .h2 {
  text-align: right;
}
@media (max-width: 1024px) {
  .productos .producto .container .text-box .h2 {
    text-align: center;
  }
}
.productos .producto .container .text-box ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 2rem;
}
.productos .producto .container .text-box ul ion-icon {
  -webkit-transform: translateY(15%);
          transform: translateY(15%);
}
@media (max-width: 1024px) {
  .productos .producto .container .text-box ul {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.productos .producto .container .text-box--right .h2 {
  text-align: left;
}
@media (max-width: 1024px) {
  .productos .producto .container .text-box--right .h2 {
    text-align: center;
  }
}
.productos .producto .container .text-box--right ul {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1024px) {
  .productos .producto .container .text-box--right ul {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.productos .producto .container .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.productos .producto .container .img-box img {
  width: 80%;
}
@media (max-width: 1024px) {
  .productos .producto .container .img-box img {
    width: 60%;
  }
}
@media (max-width: 480px) {
  .productos .producto .container .img-box img {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .productos .producto .container .img-box {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 1024px) {
  .productos .producto .container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.contacto__info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10rem;
}
@media (max-width: 768px) {
  .contacto__info {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.contacto .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
.contacto .text__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.8rem;
}
@media (max-width: 768px) {
  .contacto .text__group {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.contacto .phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}
.contacto .phone__icon {
  font-size: 2.2rem;
}
.contacto .h2 {
  color: #4374b9;
}
.contacto .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
.contacto .form input,
.contacto .form textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem;
  border: 2px solid #e6e6e6;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  font-size: inherit;
  resize: none;
}
@media (max-width: 768px) {
  .contacto .form input,
  .contacto .form textarea {
    text-align: center;
  }
}
.contacto .form input:focus,
.contacto .form textarea:focus {
  outline: 2px solid #4374b9;
}
.contacto .map {
  padding: 5rem 0;
}
.contacto .map iframe {
  border: none;
  border-radius: 10px;
  width: 100%;
  height: 50rem;
}

.gracias {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 80vh;
}
.gracias .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  text-align: center;
}