@charset "UTF-8";
/*******************************************************************************
** 
** Nombre de archivo: estilos.scss
**
** Descripción: Este archivo se debe utilizar para crear estilos, variables, mixin y
**              cualquier tipo de estilo necesario.
**               
*******************************************************************************/
/*******************************************************************************
** 
** Nombre de archivo: variables.scss
**
** Descripción: Este archivo tiene los estilos básicos del template para cursos en forma de variables
**              bajo ningún motivo se deben agregar nuevas variables o eliminar las existentes.
**              En caso de querer agregar nuevas variables utilice el archivo estilos.scss.
**
*******************************************************************************/
@font-face {
  font-family: "Cabin-Bold";
  src: url("../fonts/Cabin-Bold.ttf");
}
@font-face {
  font-family: "Cabin-Regular";
  src: url("../fonts/Cabin-Regular.ttf");
}
@font-face {
  font-family: "Jenevers-Regular";
  src: url("../fonts/TTJenevers-Regular.ttf");
}
.subrayado {
  text-decoration: underline;
}

.openModal {
  background: url(../images/open_bg.png) no-repeat;
  background-size: 100% 100%;
  background-position: top left;
  max-width: 90%;
  max-height: 100vh;
  padding: 0 !important;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.openModal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5% !important;
}
.openModal__content__welcome {
  color: white;
  background-color: #e56a54;
  padding: 1%;
  font-family: "Jenevers-Regular", Times, serif;
  font-size: 32px;
}
@media screen and (max-height: 800px) and (min-width: 1100px) {
  .openModal__content__welcome {
    font-size: 25px;
  }
}
@media only screen and (max-width: 600px) {
  .openModal__content__welcome {
    font-size: 22px;
  }
}
.openModal__content__title {
  margin-top: 3%;
  font-family: "Jenevers-Regular", Times, serif;
  font-size: 67px;
  width: 90%;
  color: white;
  text-align: center;
}
.openModal__content__title span {
  color: #e56a54;
}
@media screen and (max-height: 800px) and (min-width: 1100px) {
  .openModal__content__title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 600px) {
  .openModal__content__title {
    font-size: 30px;
  }
}
.openModal__content__text {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 29px;
  width: 60%;
  align-self: flex-start;
}
@media screen and (max-height: 800px) and (min-width: 1100px) {
  .openModal__content__text {
    font-size: 23px;
  }
}
@media only screen and (max-width: 600px) {
  .openModal__content__text {
    font-size: 20px;
    width: 100%;
  }
}
.openModal__content__list {
  width: 100%;
  background-color: white;
  padding: 1%;
  border-radius: 15px;
}
@media only screen and (max-width: 600px) {
  .openModal__content__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.openModal__content__list__item {
  color: #28334a;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 28px;
  margin-left: 5%;
}
@media screen and (max-height: 800px) and (min-width: 1100px) {
  .openModal__content__list__item {
    font-size: 23px;
  }
}
@media only screen and (max-width: 600px) {
  .openModal__content__list__item {
    font-size: 22px;
    margin-left: 0;
  }
}
.openModal__content__list__item::marker {
  color: #e56a54;
}
.openModal__content__image {
  position: absolute;
  width: 35% !important;
  bottom: 0;
  right: 0;
}
@media screen and (max-height: 800px) and (min-width: 1100px) {
  .openModal__content__image {
    width: 28% !important;
  }
}
@media only screen and (max-width: 600px) {
  .openModal__content__image {
    display: none;
  }
}
.openModal__button {
  width: 25%;
  background: white;
  border-radius: 20px;
  margin: 3%;
  color: #28334a !important;
  font-family: "Jenevers-Regular", Times, serif;
  border: none;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
@media screen and (max-height: 800px) and (min-width: 1100px) {
  .openModal__button {
    margin: 2%;
  }
}
@media only screen and (max-width: 600px) {
  .openModal__button {
    font-size: 18px !important;
    width: 35%;
  }
}
.openModal__button:hover {
  transform: scale(0.95);
}

.normal {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  position: relative;
  border-radius: 25px;
  box-shadow: none !important;
}
.normal__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}
.normal__content__image {
  width: 100% !important;
}
.normal__content__text1 {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  margin: 0 !important;
  background-color: #28334a;
  width: 90%;
  padding: 2% 5%;
}
@media only screen and (max-width: 900px) {
  .normal__content__text1 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .normal__content__text1 {
    font-size: 18px;
  }
}
.normal__content__text2 {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  margin: 0 !important;
  background-color: #28334a;
  width: 90%;
  padding: 5% 10%;
}
@media only screen and (max-width: 900px) {
  .normal__content__text2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .normal__content__text2 {
    font-size: 18px;
  }
}
.normal__button {
  width: 25%;
  background: #e56a54;
  border-radius: 20px;
  margin-top: -3%;
  color: white !important;
  font-family: "Jenevers-Regular", Times, serif;
  border: none;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
@media screen and (max-height: 800px) and (min-width: 1100px) {
  .normal__button {
    margin: 2%;
  }
}
@media only screen and (max-width: 600px) {
  .normal__button {
    font-size: 18px !important;
    width: 35%;
  }
}
.normal__button:hover {
  transform: scale(0.95);
}

.t1g1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #15192b !important;
}
.t1g1__title {
  color: #28334a;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 32px;
  width: 95%;
  margin-top: 1%;
  color: white;
  width: 100%;
}
@media only screen and (max-width: 900px) {
  .t1g1__title {
    font-size: 25px;
  }
}
@media only screen and (max-width: 600px) {
  .t1g1__title {
    font-size: 22px;
  }
}
.t1g1__subtitle {
  color: white;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 27px;
  width: 90%;
  width: 100%;
  font-family: Cabin-Regular;
}
@media only screen and (max-width: 900px) {
  .t1g1__subtitle {
    font-size: 23px;
  }
}
@media only screen and (max-width: 600px) {
  .t1g1__subtitle {
    font-size: 20px;
  }
}
.t1g1__tooltip {
  background-color: #e56a54;
  color: white;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 16px;
  width: 180px;
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3%;
  animation: tooltip 1000ms ease-in-out infinite;
}
.t1g1__tooltip::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -12px;
  left: 80px;
  transform: rotate(45deg);
  background-color: #e56a54;
  z-index: -1;
}
.t1g1__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  perspective: 800px;
  position: relative;
  margin-bottom: 5%;
  margin-top: 5%;
}
.t1g1__container__card {
  position: relative;
  max-width: 700px;
  width: calc(100% + 3rem);
  height: 600px;
  border-radius: 10px;
  transform-style: preserve-3d;
  transition: all 1s ease;
  cursor: pointer;
  border-radius: 23px;
  perspective: 3000px;
}
@media only screen and (max-width: 600px) {
  .t1g1__container__card {
    height: 300px;
  }
}
.t1g1__container__card:hover {
  transform: rotateY(20deg);
}
.t1g1__container__card__front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backface-visibility: hidden;
  overflow: hidden;
}
.t1g1__container__card__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backface-visibility: hidden;
  overflow: hidden;
  transform: rotateY(180deg);
}

.t1g2,
.t7g3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.t1g2__title,
.t7g3__title {
  color: #28334a;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 32px;
  width: 95%;
  color: white;
  width: 100%;
}
@media only screen and (max-width: 900px) {
  .t1g2__title,
  .t7g3__title {
    font-size: 25px;
  }
}
@media only screen and (max-width: 600px) {
  .t1g2__title,
  .t7g3__title {
    font-size: 22px;
  }
}
.t1g2__text,
.t7g3__text {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  margin-top: 3%;
  width: 90%;
}
@media only screen and (max-width: 900px) {
  .t1g2__text,
  .t7g3__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .t1g2__text,
  .t7g3__text {
    font-size: 18px;
  }
}
.t1g2__tooltip,
.t7g3__tooltip {
  background-color: #e56a54;
  color: white;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 16px;
  width: 180px;
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3%;
  animation: tooltip 1000ms ease-in-out infinite;
}
.t1g2__tooltip::after,
.t7g3__tooltip::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -12px;
  left: 80px;
  transform: rotate(45deg);
  background-color: #e56a54;
  z-index: -1;
}
.t1g2__button,
.t7g3__button {
  margin-top: 3%;
  width: 95%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: #0b3563;
  border-radius: 30px;
  max-height: 50px;
  cursor: pointer;
  z-index: 10;
}
.t1g2__button__image,
.t7g3__button__image {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.t1g2__button__image img,
.t7g3__button__image img {
  width: 12% !important;
}
.t1g2__button__arrow,
.t7g3__button__arrow {
  width: 5% !important;
  transition: all 300ms ease-in-out;
}
.t1g2__text2,
.t7g3__text2 {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  width: 95%;
  background: #c5daff;
  padding: 8% 4% 4%;
  margin-top: -2%;
  border-radius: 8px 8px 8px 8px;
  height: 0px;
  opacity: 0;
  overflow: hidden;
  transition: all 300ms ease-in-out;
  color: #2c3246;
}
@media only screen and (max-width: 900px) {
  .t1g2__text2,
  .t7g3__text2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .t1g2__text2,
  .t7g3__text2 {
    font-size: 18px;
  }
}
.t1g2__text2 span,
.t7g3__text2 span {
  font-family: "Cabin-Bold", Times, serif;
}

.t2g1,
.t6g3,
.t7g2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.t2g1__title,
.t6g3__title,
.t7g2__title {
  color: #28334a;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 32px;
  width: 95%;
  color: white;
}
@media only screen and (max-width: 900px) {
  .t2g1__title,
  .t6g3__title,
  .t7g2__title {
    font-size: 25px;
  }
}
@media only screen and (max-width: 600px) {
  .t2g1__title,
  .t6g3__title,
  .t7g2__title {
    font-size: 22px;
  }
}
.t2g1__text,
.t6g3__text,
.t7g2__text {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  margin-top: 2%;
}
@media only screen and (max-width: 900px) {
  .t2g1__text,
  .t6g3__text,
  .t7g2__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .t2g1__text,
  .t6g3__text,
  .t7g2__text {
    font-size: 18px;
  }
}
.t2g1__tooltip,
.t6g3__tooltip,
.t7g2__tooltip {
  background-color: #e56a54;
  color: white;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 16px;
  width: 180px;
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3%;
  animation: tooltip 1000ms ease-in-out infinite;
}
.t2g1__tooltip::after,
.t6g3__tooltip::after,
.t7g2__tooltip::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -12px;
  left: 80px;
  transform: rotate(45deg);
  background-color: #e56a54;
  z-index: -1;
}
.t2g1__button,
.t6g3__button,
.t7g2__button {
  width: 95%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: #0b3563;
  border-radius: 30px;
  max-height: 50px;
  cursor: pointer;
  z-index: 10;
  margin-top: 2%;
}
.t2g1__button__text,
.t6g3__button__text,
.t7g2__button__text {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  width: 85%;
  padding: 0% !important;
  margin: 1% !important;
  cursor: pointer;
}
@media only screen and (max-width: 900px) {
  .t2g1__button__text,
  .t6g3__button__text,
  .t7g2__button__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .t2g1__button__text,
  .t6g3__button__text,
  .t7g2__button__text {
    font-size: 18px;
  }
}
.t2g1__button__arrow,
.t6g3__button__arrow,
.t7g2__button__arrow {
  width: 5% !important;
  transition: all 300ms ease-in-out;
}
.t2g1__text2,
.t6g3__text2,
.t7g2__text2 {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  width: 95%;
  background: #c5daff;
  color: #2c3246;
  border-radius: 8px;
  height: 0px;
  opacity: 0;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
@media only screen and (max-width: 900px) {
  .t2g1__text2,
  .t6g3__text2,
  .t7g2__text2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .t2g1__text2,
  .t6g3__text2,
  .t7g2__text2 {
    font-size: 18px;
  }
}
.t2g1__text2 span,
.t6g3__text2 span,
.t7g2__text2 span {
  font-family: "Cabin-Bold", Times, serif;
}
.t2g1__text2.appear,
.t6g3__text2.appear,
.t7g2__text2.appear {
  padding: 5% 4% 4%;
  margin-top: -2%;
}

.t3g1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #15192b !important;
}
.t3g1__title {
  color: #28334a;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 32px;
  width: 95%;
  color: white;
  width: 100%;
}
@media only screen and (max-width: 900px) {
  .t3g1__title {
    font-size: 25px;
  }
}
@media only screen and (max-width: 600px) {
  .t3g1__title {
    font-size: 22px;
  }
}
.t3g1__text {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  width: 100%;
  margin-top: 3%;
}
@media only screen and (max-width: 900px) {
  .t3g1__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .t3g1__text {
    font-size: 18px;
  }
}
.t3g1__subtitle {
  color: white;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 27px;
  width: 90%;
  color: white;
  width: 100%;
  font-family: Cabin-Regular;
}
@media only screen and (max-width: 900px) {
  .t3g1__subtitle {
    font-size: 23px;
  }
}
@media only screen and (max-width: 600px) {
  .t3g1__subtitle {
    font-size: 20px;
  }
}

.t3g2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #c5daff !important;
  flex-direction: column;
}
.t3g2__image {
  width: 80% !important;
  position: relative;
}
.t3g2 .fix {
  display: flex;
  width: 100%;
  height: 10px;
  background-color: #c5daff;
  margin-top: -5px;
  z-index: 999;
}

.t3g3,
.t3g4,
.t3g5,
.t3g6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}
.t3g3__title,
.t3g4__title,
.t3g5__title,
.t3g6__title {
  color: #28334a;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 32px;
  width: 95%;
  margin-top: 4%;
  color: white;
}
@media only screen and (max-width: 900px) {
  .t3g3__title,
  .t3g4__title,
  .t3g5__title,
  .t3g6__title {
    font-size: 25px;
  }
}
@media only screen and (max-width: 600px) {
  .t3g3__title,
  .t3g4__title,
  .t3g5__title,
  .t3g6__title {
    font-size: 22px;
  }
}
.t3g3__title2,
.t3g4__title2,
.t3g5__title2,
.t3g6__title2 {
  align-self: flex-start;
  padding: 1% 3% 1% 5%;
  background: white;
  border-radius: 0px 10px 10px 0px;
  color: #cb5842;
  font-family: Cabin-Bold !important;
  margin-top: 3%;
  width: -moz-fit-content;
  width: fit-content;
}
.t3g3__text1,
.t3g4__text1,
.t3g5__text1,
.t3g6__text1 {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  margin: 2% 0%;
}
@media only screen and (max-width: 900px) {
  .t3g3__text1,
  .t3g4__text1,
  .t3g5__text1,
  .t3g6__text1 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .t3g3__text1,
  .t3g4__text1,
  .t3g5__text1,
  .t3g6__text1 {
    font-size: 18px;
  }
}
.t3g3__text2,
.t3g4__text2,
.t3g5__text2,
.t3g6__text2 {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  width: 85%;
  margin: 1% 4% 4% auto;
}
@media only screen and (max-width: 900px) {
  .t3g3__text2,
  .t3g4__text2,
  .t3g5__text2,
  .t3g6__text2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .t3g3__text2,
  .t3g4__text2,
  .t3g5__text2,
  .t3g6__text2 {
    font-size: 18px;
  }
}

.t4g1,
.t8g1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #2c3246 !important;
}
.t4g1__text,
.t8g1__text {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  width: 100%;
}
@media only screen and (max-width: 900px) {
  .t4g1__text,
  .t8g1__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .t4g1__text,
  .t8g1__text {
    font-size: 18px;
  }
}
.t4g1__button,
.t8g1__button {
  width: 40% !important;
  transition: all 300ms ease-in-out;
}
.t4g1__button:hover,
.t8g1__button:hover {
  transform: scale(0.95);
}

.t5g1,
.t6g1,
.t7g1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #2c3246 !important;
}
.t5g1__title,
.t6g1__title,
.t7g1__title {
  color: #28334a;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 32px;
  width: 95%;
  width: 100%;
  color: white;
}
@media only screen and (max-width: 900px) {
  .t5g1__title,
  .t6g1__title,
  .t7g1__title {
    font-size: 25px;
  }
}
@media only screen and (max-width: 600px) {
  .t5g1__title,
  .t6g1__title,
  .t7g1__title {
    font-size: 22px;
  }
}
.t5g1__subtitle,
.t6g1__subtitle,
.t7g1__subtitle {
  color: #28334a;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 32px;
  width: 95%;
  width: 100%;
  color: white;
  font-family: Cabin-Regular;
}
@media only screen and (max-width: 900px) {
  .t5g1__subtitle,
  .t6g1__subtitle,
  .t7g1__subtitle {
    font-size: 25px;
  }
}
@media only screen and (max-width: 600px) {
  .t5g1__subtitle,
  .t6g1__subtitle,
  .t7g1__subtitle {
    font-size: 22px;
  }
}
.t5g1__text,
.t6g1__text,
.t7g1__text {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  width: 100%;
}
@media only screen and (max-width: 900px) {
  .t5g1__text,
  .t6g1__text,
  .t7g1__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .t5g1__text,
  .t6g1__text,
  .t7g1__text {
    font-size: 18px;
  }
}
.t5g1__image,
.t6g1__image,
.t7g1__image {
  width: 100% !important;
}

.t5g2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}
.t5g2__section {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-self: center;
  margin-bottom: 0;
}
.t5g2__section__image {
  width: 100% !important;
}
.t5g2__section__container {
  position: absolute;
  width: 35%;
  top: 55%;
  left: 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.t5g2__section__container__tooltip {
  background-color: #e56a54;
  color: white;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 16px;
  width: 180px;
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3%;
  animation: tooltip 1000ms ease-in-out infinite;
  margin-bottom: 10%;
}
.t5g2__section__container__tooltip::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -12px;
  left: 80px;
  transform: rotate(45deg);
  background-color: #e56a54;
  z-index: -1;
}
.t5g2__section__container__btn {
  width: 100%;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.t5g2__section__container__btn:hover {
  transform: scale(0.95);
}

.t5g4,
.t7g4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}
.t5g4__subtitle,
.t7g4__subtitle {
  color: white;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 27px;
  width: 90%;
  margin: 3%;
}
@media only screen and (max-width: 900px) {
  .t5g4__subtitle,
  .t7g4__subtitle {
    font-size: 23px;
  }
}
@media only screen and (max-width: 600px) {
  .t5g4__subtitle,
  .t7g4__subtitle {
    font-size: 20px;
  }
}
.t5g4__tooltip,
.t7g4__tooltip {
  background-color: #e56a54;
  color: white;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 16px;
  width: 180px;
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3%;
  animation: tooltip 1000ms ease-in-out infinite;
}
.t5g4__tooltip::after,
.t7g4__tooltip::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -12px;
  left: 80px;
  transform: rotate(45deg);
  background-color: #e56a54;
  z-index: -1;
}
.t5g4__container,
.t7g4__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  perspective: 800px;
  position: relative;
  margin-bottom: 5%;
  margin-top: 5%;
}
.t5g4__container__card,
.t7g4__container__card {
  position: relative;
  max-width: 700px;
  width: 100%;
  height: 650px;
  border-radius: 10px;
  transform-style: preserve-3d;
  transition: all 1s ease;
  cursor: pointer;
  border-radius: 23px;
  perspective: 3000px;
}
@media only screen and (max-width: 600px) {
  .t5g4__container__card,
  .t7g4__container__card {
    height: 340px;
  }
}
.t5g4__container__card:hover,
.t7g4__container__card:hover {
  transform: rotateY(20deg);
}
.t5g4__container__card__front,
.t7g4__container__card__front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backface-visibility: hidden;
  overflow: hidden;
}
.t5g4__container__card__back,
.t7g4__container__card__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backface-visibility: hidden;
  overflow: hidden;
  transform: rotateY(180deg);
}

.t5g3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #2c3246 !important;
}
.t5g3__subtitle {
  color: white;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 27px;
  width: 90%;
  margin: 3%;
  width: 100%;
}
@media only screen and (max-width: 900px) {
  .t5g3__subtitle {
    font-size: 23px;
  }
}
@media only screen and (max-width: 600px) {
  .t5g3__subtitle {
    font-size: 20px;
  }
}
.t5g3__tooltip {
  background-color: #e56a54;
  color: white;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 16px;
  width: 180px;
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3%;
  animation: tooltip 1000ms ease-in-out infinite;
}
.t5g3__tooltip::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -12px;
  left: 80px;
  transform: rotate(45deg);
  background-color: #e56a54;
  z-index: -1;
}
.t5g3__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  perspective: 800px;
  position: relative;
  margin-bottom: 5%;
  margin-top: 5%;
}
.t5g3__container__card {
  position: relative;
  max-width: 700px;
  width: calc(100% + 3rem);
  height: 720px;
  border-radius: 10px;
  transform-style: preserve-3d;
  transition: all 1s ease;
  cursor: pointer;
  border-radius: 23px;
  perspective: 3000px;
}
@media only screen and (max-width: 600px) {
  .t5g3__container__card {
    height: 540px;
  }
}
@media only screen and (max-width: 400px) {
  .t5g3__container__card {
    height: 440px;
  }
}
.t5g3__container__card:hover {
  transform: rotateY(20deg);
}
.t5g3__container__card__front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backface-visibility: hidden;
  overflow: hidden;
}
.t5g3__container__card__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backface-visibility: hidden;
  overflow: hidden;
  transform: rotateY(180deg);
}

.respuesta span {
  text-align: left !important;
}

.ahorcado__pista {
  display: none;
}

.ahorcado__juego__palabra {
  background-color: #c5daff;
  padding: 0.5rem;
}
.ahorcado__juego__palabra span {
  font-family: Cabin-Regular;
  text-transform: uppercase;
  color: #0b3563;
}

#imagen {
  margin-top: 1%;
  margin-bottom: 3%;
  background-color: white;
  border-radius: 8px;
}

.ahorcado__question {
  margin-top: 0;
}

.pista {
  margin-top: 0;
}

.ahorcado__header {
  display: none !important;
}

.colorresultado {
  margin-bottom: 4%;
  text-transform: uppercase;
}

.drag__main__header__kind {
  display: none;
}

.drag__main__header__turn {
  text-align: center;
  width: 100%;
  color: #15192b;
}

.drag__main__section1__text {
  background-color: #3f72db !important;
}

.contenedor.drag {
  background-color: white !important;
  background-image: url("../images/drag_bg.png");
  background-size: 50%;
  background-position: bottom left;
}

.solucionera {
  font-family: Cabin-Regular;
}

.t5g5 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
  background-color: #2c3246 !important;
}
.t5g5__slider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 5%;
}
.t5g5__slider__images {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.t5g5__slider__images__image {
  width: 100% !important;
}
.t5g5__slider__buttons {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-top: -5%;
}
.t5g5__slider__buttons__button {
  width: 26% !important;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.t5g5__slider__buttons__button:hover {
  transform: scale(0.95);
}

.t6g1 {
  background-color: #3f72db !important;
}

.t6g2,
.t7g5 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}
.t6g2__section,
.t7g5__section {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.t6g2__section__image,
.t7g5__section__image {
  width: 100%;
}
.t6g2__section__container,
.t7g5__section__container {
  position: absolute;
  top: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 35%;
}
@media only screen and (max-width: 600px) {
  .t6g2__section__container,
  .t7g5__section__container {
    width: 70%;
  }
}
.t6g2__section__container__tooltip,
.t7g5__section__container__tooltip {
  background-color: #e56a54;
  color: white;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 16px;
  width: 180px;
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3%;
  animation: tooltip 1000ms ease-in-out infinite;
}
.t6g2__section__container__tooltip::after,
.t7g5__section__container__tooltip::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -12px;
  left: 80px;
  transform: rotate(45deg);
  background-color: #e56a54;
  z-index: -1;
}
.t6g2__section__container__button,
.t7g5__section__container__button {
  width: 100%;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.t6g2__section__container__button:hover,
.t7g5__section__container__button:hover {
  transform: scale(0.95);
}

.t6g2 {
  background-color: #15192b !important;
}

.t6g4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.t6g4__text {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  width: 100%;
}
@media only screen and (max-width: 900px) {
  .t6g4__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .t6g4__text {
    font-size: 18px;
  }
}
.t6g4__image {
  width: 100% !important;
}
.t6g4__tooltip {
  background-color: #e56a54;
  color: white;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 16px;
  width: 180px;
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3%;
  animation: tooltip 1000ms ease-in-out infinite;
  margin-bottom: 5%;
}
.t6g4__tooltip::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -12px;
  left: 80px;
  transform: rotate(45deg);
  background-color: #e56a54;
  z-index: -1;
}
.t6g4__button {
  width: 95% !important;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.t6g4__button:hover {
  transform: scale(0.95);
}

.normal__content__text1, .normal__content__text2 {
  background-color: #c5daff;
  color: #0b3563;
}

.t7g1 {
  background-color: #3f72db !important;
}

.t7g5 {
  background-color: #15192b !important;
}

.t8g2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
  overflow: hidden;
  position: relative;
}
.t8g2__title {
  color: #28334a;
  font-family: "Cabin-Bold", Times, serif;
  font-size: 32px;
  width: 95%;
  margin: 5% 0 3%;
  width: calc(100% - 3rem);
  color: white;
  z-index: 99;
}
@media only screen and (max-width: 900px) {
  .t8g2__title {
    font-size: 25px;
  }
}
@media only screen and (max-width: 600px) {
  .t8g2__title {
    font-size: 22px;
  }
}
.t8g2__section {
  width: calc(100% - 3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 20%;
  padding-bottom: 1.5rem;
  position: relative;
  z-index: 4;
}
@media (max-width: 600px) {
  .t8g2__section {
    padding-right: 0;
  }
}
.t8g2__section__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .t8g2__section__container {
    width: 100%;
  }
}
.t8g2__section__container__title1 {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  width: 100%;
  position: relative;
  z-index: 4;
}
@media only screen and (max-width: 900px) {
  .t8g2__section__container__title1 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .t8g2__section__container__title1 {
    font-size: 18px;
  }
}
.t8g2__section__container__text2 {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  width: 100%;
  z-index: 4;
  padding-left: 10%;
  margin: 4% 0;
}
@media only screen and (max-width: 900px) {
  .t8g2__section__container__text2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .t8g2__section__container__text2 {
    font-size: 18px;
  }
}
.t8g2__section__image {
  position: absolute;
  width: 40% !important;
  right: 0;
  bottom: 0;
  z-index: 999;
}
@media only screen and (max-width: 600px) {
  .t8g2__section__image {
    display: none;
  }
}
.t8g2__button {
  color: white;
  font-family: "Cabin-Regular", Times, serif;
  font-size: 25px;
  width: 90%;
  width: 35%;
  background: #e56a54;
  border-radius: 20px;
  margin: 3%;
  color: white !important;
  font-family: "Cabin-Bold", Times, serif;
  border: none;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
@media only screen and (max-width: 900px) {
  .t8g2__button {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .t8g2__button {
    font-size: 18px;
  }
}
@media screen and (max-height: 800px) and (min-width: 1100px) {
  .t8g2__button {
    margin: 2%;
  }
}
@media only screen and (max-width: 600px) {
  .t8g2__button {
    font-size: 18px !important;
    width: 70%;
  }
}
.t8g2__button:hover {
  transform: scale(0.95);
}

.logo {
  position: absolute;
  z-index: 99;
  top: 1rem;
  right: 0;
  width: 25%;
}
@media (max-width: 600px) {
  .logo {
    position: relative;
    margin: 0 0 1rem auto;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 150px;
  }
}

.menu i {
  background-color: #28334a !important;
}

.fondo-caja {
  display: block;
  width: calc(100% + 3rem);
  border-radius: 0 0 14px 14px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  height: 10000px;
  position: absolute;
  bottom: 0;
  left: -1.5rem;
  background-color: #15192b;
  z-index: 1;
}

@keyframes tooltip {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@media only screen and (max-width: 740px) {
  .menuName {
    font-size: 15px !important;
  }
}

.rotate {
  transform: rotate(180deg);
}

.appear {
  height: -moz-fit-content;
  height: fit-content;
  opacity: 1;
}

.ahorcado__header__item2__question, .ahorcado__header__item1__oport {
  font-family: Cabin-Bold;
}

.t4g1__button,
.t8g1__button {
  width: 30% !important;
  transition: all 300ms ease-in-out;
}
@media (max-width: 600px) {
  .t4g1__button,
  .t8g1__button {
    width: 100% !important;
    max-width: 180px;
  }
}

.arrastrable div img {
  max-width: 2000px;
}

.cerrar {
  font-family: Cabin-Regular;
  font-size: 26px !important;
  color: #cb5842 !important;
  background-color: white;
  border: 1px solid #cb5842;
}

#pop-uno {
  background-color: #28334a;
}
#pop-uno .openModal {
  background-image: none;
  background-color: #28334a;
  box-shadow: none;
}
#pop-uno .openModal div {
  padding: 0 !important;
}
#pop-uno .cerrar {
  width: -moz-fit-content;
  width: fit-content;
}

.openModal__content__image {
  position: relative;
  width: 60% !important;
}
@media (max-height: 720px) and (orientation: landscape) {
  .openModal__content__image {
    width: 40% !important;
    display: block;
  }
}
@media (max-width: 600px) {
  .openModal__content__image {
    width: 100% !important;
    display: block;
  }
}