* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: whitesmoke;
  font-size: 16px;
  font-family: "Dosis", sans-serif;
  color: #393d42;
  overflow-x: hidden;
}

::-moz-selection {
  background-color: #1a6699;
  color: whitesmoke;
}

::selection {
  background-color: #1a6699;
  color: whitesmoke;
}

::-webkit-scrollbar {
  width: 0.75em;
  background-color: whitesmoke;
}

::-webkit-scrollbar-track {
  background-color: whitesmoke;
}

::-webkit-scrollbar-thumb {
  border-radius: 0.5em;
  background-color: #357fb2;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #1a6699;
}

.goTopArrow {
  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;
  width: 3em;
  border-radius: 50%;
}

.goTopButton {
  z-index: 2;
  position: fixed;
  bottom: 2em;
  right: 2em;
  background-color: #d2d2d2;
  border: #d2d2d2 solid 0.125em;
  border-radius: 50%;
  -webkit-box-shadow: 0 0em 1em #393d42;
  box-shadow: 0 0em 1em #393d42;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.goTopButton:hover {
  background-color: whitesmoke;
  border: whitesmoke solid 0.125em;
  border-radius: 50%;
}

header {
  -webkit-transform: translateZ(1000px);
  transform: translateZ(1000px);
  z-index: 2;
  position: sticky;
  top: 0;
  left: 0;
  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;
  height: 13vh;
  padding: 1.5em 8em 1.5em 8em;
  background-color: whitesmoke;
  -webkit-box-shadow: 0 0 1em #9fa3a9;
  box-shadow: 0 0 1em #9fa3a9;
}

header .menuH {
  display: none;
}

header .brand {
  width: 20em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .brand img {
  width: 100%;
}

header .brand:hover {
  -webkit-transform: scale(1.025);
  -ms-transform: scale(1.025);
  transform: scale(1.025);
}

header nav ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4em;
}

header nav ul li a {
  text-decoration: none;
  color: #357fb2;
  font-size: 1.5rem;
}

header nav ul li a:hover {
  text-decoration: none;
  font-weight: bold;
  color: #1a6699;
}

header nav ul li .green {
  border-radius: 50px;
  padding: 0.3em 0.5em 0.3em 0.5em;
  color: whitesmoke;
  background-color: #8ac166;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

header nav ul li .green:hover {
  font-weight: normal;
  color: whitesmoke;
  background-color: #53ab3c;
}

h1 {
  text-align: center;
  width: 90%;
  margin: auto;
  margin-bottom: 0.9em;
  font-size: 4.5rem;
  color: #8ac166;
}

h1.blue {
  color: #357fb2;
}

.slider {
  position: relative;
  overflow: hidden;
  height: 87vh;
  -webkit-box-shadow: 0 0 1em #9fa3a9;
  box-shadow: 0 0 1em #9fa3a9;
}

.slider .container {
  width: calc(100% * 6);
  height: 92%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.slider .container img {
  width: calc(100% / 6);
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.slider .flechas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 92%;
  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;
}

.slider .flechas .flecha {
  width: 2.5em;
  opacity: 0.8;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.slider .flechas .flecha.I {
  margin-left: 5em;
}

.slider .flechas .flecha.D {
  margin-right: 5em;
}

.slider .flechas .flecha:hover {
  cursor: pointer;
  opacity: 1;
}

.slider .puntos {
  width: 100%;
  height: 8%;
  list-style-type: none;
  background-color: #64738c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider .puntos .punto {
  z-index: 1;
  width: 1em;
  height: 1em;
  margin: 1em;
  border-radius: 50%;
  -webkit-box-shadow: 0 0em 1em black;
  box-shadow: 0 0em 1em black;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.slider .puntos .punto:hover {
  cursor: pointer;
  background-color: #9fa3a9;
}

.slider .puntos .punto.activo {
  background-color: #8ac166;
  -webkit-box-shadow: 0 0 1em #53ab3c;
  box-shadow: 0 0 1em #53ab3c;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.modulos {
  margin-top: 15vh;
}

.modulos .cards {
  width: 90%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3em;
}

.card {
  position: relative;
  width: 16em;
  height: 20em;
}

.card .face {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.5em;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 1em #9fa3a9;
  box-shadow: 0 0 1em #9fa3a9;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.card .front {
  -webkit-transform: perspective(1000px) rotateY(0deg);
  transform: perspective(1000px) rotateY(0deg);
  background-color: whitesmoke;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.card .front img {
  width: 60%;
}

.card .front h2 {
  text-align: center;
  font-size: 2rem;
  color: #64738c;
}

.card .back {
  -webkit-transform: perspective(1000px) rotateY(180deg);
  transform: perspective(1000px) rotateY(180deg);
  background-color: #64738c;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.card .back p {
  font-size: 1.05rem;
  color: whitesmoke;
}

.card .back p span {
  margin-right: 0.2em;
  color: #8ac166;
}

.card:hover .front {
  -webkit-transform: perspective(1000px) rotateY(180deg);
  transform: perspective(1000px) rotateY(180deg);
}

.card:hover .back {
  -webkit-transform: perspective(1000px) rotateY(360deg);
  transform: perspective(1000px) rotateY(360deg);
}

.nosotros {
  margin-top: 15vh;
  padding: 15vh 0 2vh 0;
  background-color: #eeeeee;
}

.nosotros .boards {
  width: 90%;
  margin: auto;
  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: 2em;
}

.board {
  position: relative;
  width: 90%;
  height: 12em;
  overflow: hidden;
  -webkit-box-shadow: 0 0 1em #9fa3a9;
  box-shadow: 0 0 1em #9fa3a9;
  border-radius: 10px;
}

.board .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2em;
  background-color: whitesmoke;
  border-radius: 10px;
  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;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-mask-image: #fff;
  mask-image: #fff;
}

.board .cover h2 {
  font-size: 2.5rem;
  color: #64738c;
  text-align: center;
}

.board .content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #8ac166;
  border-radius: 10px;
  -webkit-mask-image: #fff;
  mask-image: #fff;
}

.board .content.blue {
  background-color: #357fb2;
}

.board .content .board-img {
  width: 30%;
  height: 100%;
  overflow: hidden;
  -webkit-box-shadow: 0 0em 1em #393d42;
  box-shadow: 0 0em 1em #393d42;
}

.board .content .board-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.board .content .board-text {
  width: 70%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.board .content .board-text::-webkit-scrollbar {
  background-color: #8ac166;
}

.board .content .board-text::-webkit-scrollbar-track {
  background-color: #8ac166;
}

.board .content .board-text::-webkit-scrollbar-thumb {
  background-color: whitesmoke;
}

.board .content .board-text::-webkit-scrollbar-thumb:hover {
  background-color: #d2d2d2;
}

.board .content .board-text p {
  font-size: 1.3rem;
  color: whitesmoke;
  text-align: center;
  padding: 1em 2em 1em 2em;
}

.board .content .board-text.right {
  direction: rtl;
}

.board .content .board-text.right p {
  direction: ltr;
}

.board .content .board-text.right::-webkit-scrollbar {
  background-color: #357fb2;
}

.board .content .board-text.right::-webkit-scrollbar-track {
  background-color: #357fb2;
}

.contactanos {
  padding-top: 13vh;
  background-color: #eeeeee;
}

.contacto {
  height: 87vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacto .redes,
.contacto .mail {
  width: 50%;
  height: 100%;
  padding-top: 13vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contacto .redes h2,
.contacto .mail h2 {
  text-align: center;
  margin-bottom: 5vh;
  font-size: 3.5rem;
  color: #64738c;
}

.contacto .redes {
  background-color: whitesmoke;
}

.contacto .redes ul {
  list-style-type: none;
}

.contacto .redes ul li {
  font-size: 2rem;
  margin-bottom: 1em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contacto .redes ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: #64738c;
}

.contacto .redes ul li a img {
  width: 1.5em;
  margin-right: 1em;
}

.contacto .redes ul li:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.contacto .mail {
  background-color: #eeeeee;
}

.contacto .mail form {
  width: 100%;
  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: 0.5em;
}

.contacto .mail form .fix {
  width: 40%;
  height: 8em;
  overflow: hidden;
  border-radius: 5px;
}

.contacto .mail form .cell {
  height: 2.5em;
  width: 40%;
  outline: none;
  border: none;
  border-radius: 5px;
  background-color: whitesmoke;
  padding-left: 1em;
  padding-right: 1em;
  font-family: "Dosis", sans-serif;
  font-size: 1.1rem;
  color: #64738c;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.contacto .mail form .cell::-webkit-scrollbar-thumb {
  background-color: #64738c;
}

.contacto .mail form .cell::-webkit-scrollbar-thumb:hover {
  background-color: #1a6699;
}

.contacto .mail form .cell.msg {
  resize: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.contacto .mail form .cell:focus {
  background-color: #64738c;
  color: whitesmoke;
}

.contacto .mail form .cell:focus::-webkit-input-placeholder {
  color: #d2d2d2;
}

.contacto .mail form .cell:focus::-moz-placeholder {
  color: #d2d2d2;
}

.contacto .mail form .cell:focus:-ms-input-placeholder {
  color: #d2d2d2;
}

.contacto .mail form .cell:focus::-ms-input-placeholder {
  color: #d2d2d2;
}

.contacto .mail form .cell:focus::placeholder {
  color: #d2d2d2;
}

.contacto .mail form .cell:focus::-webkit-scrollbar {
  background-color: #64738c;
}

.contacto .mail form .cell:focus::-webkit-scrollbar-track {
  background-color: #64738c;
}

.contacto .mail form .cell:focus::-webkit-scrollbar-thumb {
  background-color: whitesmoke;
}

.contacto .mail form .cell:focus::-webkit-scrollbar-thumb:hover {
  background-color: #d2d2d2;
}

.contacto .mail form .submit {
  width: 5em;
  height: 2.5em;
  margin-top: 1em;
  background-color: #64738c;
  border-style: none;
  border: none;
  border-radius: 5px;
  font-family: "Dosis", sans-serif;
  font-size: 1.1rem;
  color: whitesmoke;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.contacto .mail form .submit:hover {
  background-color: #1a6699;
  cursor: pointer;
}

::-webkit-input-placeholder {
  color: #9fa3a9;
}

::-moz-placeholder {
  color: #9fa3a9;
}

:-ms-input-placeholder {
  color: #9fa3a9;
}

::-ms-input-placeholder {
  color: #9fa3a9;
}

::placeholder {
  color: #9fa3a9;
}

footer {
  background-color: #9fa3a9;
  -webkit-box-shadow: 0 0 1em #9fa3a9;
  box-shadow: 0 0 1em #9fa3a9;
}

.creator {
  padding-top: 3em;
  margin-bottom: 1.8em;
  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;
}

.creator h3 {
  margin-right: 2em;
  font-size: 1.3rem;
  color: #393d42;
}

.creator h3 span {
  margin-left: 0.3em;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.creator h3 span:hover {
  color: #1a6699;
  text-shadow: 0 0 0.5em #357fb2;
}

.creator ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25em;
}

.creator ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  -webkit-box-shadow: 0 0em 1em #393d42;
  box-shadow: 0 0em 1em #393d42;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.creator ul li a:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  background-color: #53ab3c;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-filter: drop-shadow(0 0 0.5em #53ab3c);
  filter: drop-shadow(0 0 0.5em #53ab3c);
}

.creator ul li a img {
  width: 2.8em;
}

.copy {
  padding-bottom: 2.5em;
  font-size: 1.2rem;
  text-align: center;
  color: #393d42;
}

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

  .contacto .redes,
  .contacto .mail {
    padding-top: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 1279px) {
  header {
    height: 10em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1em;
  }

  .slider {
    height: 73.5vh;
  }

  .modulos {
    margin-top: 11em;
  }

  .nosotros {
    margin-top: 11em;
    padding-top: 11em;
    padding-bottom: 0;
  }

  .contactanos {
    padding-top: 10em;
  }

  .contacto .mail form .fix {
    width: 60%;
  }

  .contacto .mail form .cell {
    width: 60%;
  }
}

@media screen and (max-width: 960px) {
  .slider {
    height: 60vh;
  }

  .slider .container {
    height: 88%;
  }

  .slider .puntos {
    height: 12%;
  }

  .contacto {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
  }

  .contacto .redes,
  .contacto .mail {
    width: 100%;
    height: 50%;
    padding: 5em;
  }
}

@media screen and (max-width: 800px) {
  .board {
    height: 25em;
  }

  .board .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .board .content .board-img {
    width: 100%;
    height: 40%;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .board .content .board-text {
    width: 100%;
    height: 60%;
  }
}

@media screen and (max-width: 667px) {
  header {
    height: 7em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0;
    padding: 0;
  }

  header .menuH {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 2.5em;
    margin-left: 3em;
    opacity: 0.5;
  }

  header .menuH:hover {
    cursor: pointer;
  }

  header nav ul {
    position: absolute;
    top: 0;
    left: -100%;
    -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: 1.5em;
    background-color: whitesmoke;
    padding: 2em 2em 2.5em 2em;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 1em #9fa3a9;
    box-shadow: 0 0 1em #9fa3a9;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .slider {
    height: 50vh;
  }

  .slider .flechas .flecha.I {
    margin-left: 2em;
  }

  .slider .flechas .flecha.D {
    margin-right: 2em;
  }

  .modulos {
    margin-top: 8em;
  }

  .nosotros {
    margin-top: 8em;
    padding-top: 8em;
  }

  .contactanos {
    padding-top: 7em;
  }

  .contacto .mail form .fix {
    width: 80%;
  }

  .contacto .mail form .cell {
    width: 80%;
  }

  footer .creator {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1em;
  }

  footer .creator h3 {
    margin: 0;
  }
}

@media screen and (max-width: 500px) {
  header .brand {
    width: 15em;
  }

  .contacto .redes ul li {
    font-size: 1.5rem;
  }

  .contacto .mail form .fix {
    width: 100%;
  }

  .contacto .mail form .cell {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  header .menuH {
    margin-left: 1em;
  }

  .slider {
    height: 40vh;
  }

  .slider .flechas .flecha.I {
    margin-left: 1em;
  }

  .slider .flechas .flecha.D {
    margin-right: 1em;
  }
}