@font-face {
  font-family: "Redhatdisplay";
  src: url(../fuentes/RedHatDisplay-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Redhatdisplay";
  src: url(../fuentes/RedHatDisplay-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Redhatdisplay";
  src: url(../fuentes/RedHatDisplay-Black.ttf) format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Redhatdisplay";
  src: url(../fuentes/RedHatDisplay-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
}
::selection {
  background: none;
}
* {
  --azul-menta: #7888d9;
  --rojo-menta: #e47979;
  --naranja-menta: #fbc096;
  --verde-menta: #99dcdb;
  --morado-menta: #c5b3f2;
  --blanco: #fff;
  --gris: #757575;
  --gris-claro: #a3a5b7;
  --negro-fuerte: #080f34;
  --negro-claro: #494b53;
  --fondo-gris: #e7e8f0;
  --azul-fuerte: #001689;
  --azul-segundo: #3750d4;
  --azul-tercero: #d7dbf1;
  --azul-cuarto: #c4c8ee;
  --azul-quinto: #d6dcfd;
  --azul-submenu: #d5dbf1;
  --naranja-oscuro: #ff6b00;
  --naranja-fuerte: #e8833a;
  --naranja-segundo: #ca5500;
  --naranja-tercero: #edb68e;
  --naranja-cuarto: #f3ddce;
  --morado-fuerte: #380499;
  --morado-segundo: #2c0771;
  --morado-tercero: #d6c9ee;
  --morado-cuarto: #e7e3fe;
  --rojo-fuerte: #ea0029;
  --rosa-fuerte: #680c61;
  --celeste: #3d5cc1;
  --celeste-claro: #4aa3ff;
  --negro-texto: #323232;
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  background: none;
  line-height: 20px;
  font-weight: 500;
  font-family: Redhatdisplay, sans-serif;
}
#contenedor-carga {
  width: 100%;
  height: 100vh;
  background: rgb(255, 255, 255);
  position: fixed;
  z-index: 100000;
  transition: all 0.1s ease;
}
#contenedor-carga > div {
  border: 3.5px solid #ccc;
  border-top-color: var(--azul-segundo);
  border-top-style: groove;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  animation: girar 1.5s linear infinite;
}
@keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
header {
  width: 94%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2vh 3%;
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  background: #fff;
}
header > a {
  width: 12.5%;
}
header > a > img {
  width: 100%;
}
footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 0;
  padding-bottom: 12vh;
  position: relative;
  background: #f6f6f6;
  background: url(../imagenes/footer-fondo.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
footer > span {
  display: flex;
  position: absolute;
  top: -4vh;
  right: 43%;
  justify-content: space-between;
  align-items: center;
  padding: 1.5vh 3vh;
  border-radius: 20px;
  border: 1px solid #001689;
  color: #001689;
  background: var(--blanco);
  font-weight: 500;
  font-size: 0.85em;
  cursor: pointer;
}
footer > span > i {
  width: 2.75vh;
  height: 2.75vh;
  background-image: url(https://idesaa.edu.mx/iconos/flecha-arriba-footer.svg);
  background-size: 90%;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 5px;
}
footer > div {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 8vh 0 6vh;
  align-items: center;
}
footer > div > img {
  aspect-ratio: 1/1;
  margin-right: 10%;
}
footer > div > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 25%;
  height: auto;
  padding: 1vh;
}
footer > div > div > span {
  color: #3f3f3f;
  font-weight: 700;
  font-size: 0.85em;
  text-align: left;
  margin-bottom: 2vh;
}
footer > div > div > p {
  font-size: 0.75em;
  color: #3f3f3f;
  font-weight: 400;
}
footer > div > div > li {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer > div > div > li > i {
  width: 2vh;
  height: 2vh;
  background-image: url(../iconos/flecha-derecha-footer.svg);
  background-size: 95%;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 1vh;
}
footer > p {
  position: absolute;
  bottom: 0;
  width: 85%;
  padding: 3vh 7.5%;
  background: linear-gradient(
    45deg,
    rgba(46, 62, 141, 1) 50%,
    rgba(72, 113, 196, 1) 100%
  );
  color: var(--blanco);
  font-weight: 400;
  font-size: 0.65em;
  text-align: center;
  line-height: 1.1;
}
footer > p > a {
  color: var(--blanco);
  text-decoration: none;
  transition: all 0.2s ease;
}
footer > p > a:hover {
  opacity: 0.75;
}
#UNO {
    width: 100%;
    margin: 12vh 0 8vh;
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../imagenes/banner-formacion-profesional.webp);
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: bottom
}
#UNO>img {
    display: none
}
#UNO>h1 {
    font-size: 2.5em;
    color: #323232;
    font-weight: 900;
    margin-left: 15%;
    margin-bottom: 16px;
    line-height: 1.2;
}
#UNO>h2 {
    font-size: 1.7em;
    font-style: italic;
    color: #5b7bff;
    font-weight: 500;
    margin-left: 15%;
    margin-bottom: 4vh;
    line-height: 1
}
#UNO>p:first-of-type {
    font-size: 1.2em;
    color: var(--blanco);
    background: linear-gradient(90deg,rgba(74, 137, 255, 1) 0%, rgba(82, 225, 255, 1) 100%);
    padding: 1vh 5vh;
    font-weight: 500;
    margin-left: 15%;
    line-height: 1.3;
    margin-bottom: 4vh;
    font-style: italic;
    width: fit-content;
    border-radius: 30px;
}
#UNO>p {
    font-size: 0.9em;
    color: #323232;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 25px;
    margin-left: 15%;
}
#UNO>p>br:last-of-type {
    display: none
}
#UNO>span {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-left: 15%;
    width: 20%;
    margin-bottom: 2vh
}
#UNO>span>i {
    width: 6vh;
    height: 6vh;
    background: url(../iconos/icono-evo-formacion-profesional-2.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 5%
}
#UNO>span>p {
    font-size: 1.2em;
    font-weight: 500;
    color: #323232;
    font-style: italic;
}

#UNO > a {
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 12vh;
  right: 2%;
  z-index: 10;
  text-decoration: none;
}
#UNO > a > div {
  padding: 4vh 3vh;
  background: var(--blanco);
  border: 3px solid #b8dbff;
  position: relative;
  border-radius: 20px;
  margin-right: 5vh;
  transition: all 0.5 ease;
}
#UNO > a > div > p {
  font-size: 0.9em;
  color: var(--negro-texto);
  font-weight: 500;
}
.triangle {
  width: 100px;
  height: 100px;
  overflow: hidden;
  box-shadow: 0 16px 10px -17px rgba(0, 0, 0, 0.5);
}
.triangle:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--blanco);
  transform: rotate(45deg);
  top: 40%;
  right: -4%;
  box-shadow: 2px -2px 0px 1px #b8dbff;
}
#UNO > a > .btn-oculto {
  display: none;
}
#UNO > a > img {
  width: 13vh;
}
#modal-ca{
    width: 15%;
    position: fixed;
    top: 50vh;
    left: 0;
    z-index: 10000;
}
#modal-ca>div{
    width: 100%;
    display: flex;
    position: relative;
    left: -20%;
    z-index: 1;
    opacity: 1;
    transition: all 0.5s ease;
    bottom: 0;
}
#modal-ca>.pop-hidden{
    opacity: 0;
}
#modal-ca>div>img{
    width: 120%;
    cursor: pointer;
}
#modal-ca>aside{
    z-index: 2;
    position: absolute;
    bottom: 0;
    left: -700px;
    height: 300px;
    width: 600px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    transition: left 0.5s ease;
}
#modal-ca>aside::before{
    content: "";
    position: absolute;
    inset: 0;
    background: url(../imagenes/poopup-cursos-abiertos-fondo-open.webp);
    background-size: cover;
    background-position: 40%;
    opacity: 0.97;
    z-index: -1;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}
#modal-ca>aside.abierto{
    left: 0;
}
#modal-ca>aside>i{
    background: url(../iconos/popup-cursos-abiertos-btn-close.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 85px;
    right: 1.5vh;
    width: 3vh;
    height: 4vh;
    cursor: pointer;
}
#modal-ca>aside>div{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 42%;
    margin-right: 5%;
    margin-bottom: 4vh;
}
#modal-ca>aside>div>p{
    font-size: 1.7em;
    font-weight: 700;
    text-align: center;
    color: var(--negro-cursos);
    line-height: 1;
    margin-bottom: 2vh;
}
#modal-ca>aside>div>span{
    font-size: 0.9em;
    color: var(--negro-cursos);
    font-weight: 500;
    text-align: center;
}
#modal-ca>aside>div>div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2vh;
}
#modal-ca>aside>div>div>button{
    text-decoration: none;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 500;
    text-align: center;
    width: 60%;
    color: var(--blanco);
    background: #2c56cd;
    border: none;
    min-height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    font-family: Redhatdisplay, sans-serif;
}
#modal-ca>aside>div>div>a:hover,
#modal-ca>aside>div>div>button:hover{
    background: #1462e5;
}
#DOS {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5vh;
}
#DOS>div>p {
    font-size: 1em;
    line-height: 1.3;
    font-weight: 400;
    width: 45%;
    text-align: center;
    color: var(--negro-cursos);
    margin-bottom: 2vh
}
#DOS>div>p:first-of-type{
    font-size: 2em;
}
#DOS>div>p>span {
    font-weight: 700
}
#DOS>div {
    width: 65%;
    display: flex
}
#DOS>div:first-of-type {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
#DOS>div>div>div {
    display: flex;
    height: auto !important;
    flex-direction: column;
}
#DOS>div>div>div>div {
    display: flex;
    flex-direction: column;
    width: 100%;
}
#DOS>div>div>div>div:has(.cursos>a:nth-child(1):nth-last-child(1)) {
    width: 100%
}
#DOS>div>div>div>div:has(.cursos>a:nth-child(2):nth-last-child(1)) {
    width: 100%
}
#DOS>div>div>div>div:has(.cursos>a:nth-child(3):nth-last-child(1)) {
    width: 100%
}
#DOS>div>div>div>div:has(.cursos>a:nth-child(4):nth-last-child(1)) {
    width: 100%
}
#DOS>div>div>div>div>.titulo>h3 {
    margin: 1vw 0;
    color: #3d5cc1;
    text-align: left;
    font-weight: 700;
    font-size: 1.2em;
}
#DOS>div>div>div>div>.cursos {
    display: flex;
    padding-bottom: 1.5vw;
    flex-direction: column;
}
#DOS>div>div>div>div>.cursos>a {
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    color: #323232;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-top: 2px solid var(--fondo-gris);
}
#DOS>div>div>div>div>.cursos>a:last-of-type{
    border-bottom: 2px solid var(--fondo-gris);
}
#DOS>div>div>div>div>.cursos>a:hover {
    background-color: #f9faff
}
#DOS>div>div>div>div>.cursos>a>div {
    display: flex;
    align-items: center;
    width: 20%;
}
#DOS>div>div>div>div>.cursos>a>div:first-of-type {
    width: 45%;
    border-right: 2px solid var(--fondo-gris);
}
#DOS>div>div>div>div>.cursos>a>div:nth-of-type(2) {
    width: 30%;
}
#DOS>div>div>div>div>.cursos>a>div>img {
    width: 20px;
    height: 20px;
}
#DOS>div>div>div>div>.cursos>a>div:first-of-type>img {
    width: 15px;
    height: 15px;
}
#DOS>div>div>div>div>.cursos>a>div:last-of-type>img {
    width: 15px;
    height: 15px;
}
#DOS>div>div>div>div>.cursos>a>div>p {
    font-size: .8em;
    font-weight: 500;
    margin-left: 1vw
}
#DOS>div>div>div>div>.cursos>a>div>p>span,
#DOS>div>div>div>div>.cursos>a>div>p>span>span {
    font-weight: 700
}
#DOS>div>div>div>div>.cursos>a>div:last-of-type>p>span {
    color: #2f96ff;
    font-weight: 500
}
#DOS>img:nth-of-type(1) {
    margin-bottom: 1vw
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
    display: none
}
#TRES{
    width: 100%;
    background: url(../imagenes/banner-membresia-formacion-profesional.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding: 13vh 0 13vh;
}
#TRES>div{
    width: 30%;
    display: flex;
    flex-direction: column;
    margin-right: 15%;
}
#TRES>div>p{
    font-size: 0.9em;
    color: var(--negro-cursos);
    font-weight: 500;
    margin-bottom: 5vh;
    line-height: 1.2;
    width: 100%;
}
#TRES>div>p:last-of-type{
    white-space: nowrap;
}
#TRES>div>p:first-of-type{
    font-size: 1.5em;
}
#TRES>div>p>span{
    color: #1da2ff;
    font-weight: 700;
}
#TRES>div>h2{
    font-size: 2.5em;
    color: var(--negro-cursos);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1vh;
}
#TRES>div>span{
    font-size: 1em;
    font-weight: 600;
    color: var(--negro-cursos);
    font-style: italic;
}
#TRES>div>ul{
    margin: 3vh 0 3vh 4%;
}
#TRES>div>ul>li{
    font-size: 0.9em;
    font-weight: 500;
    color: var(--negro-cursos);
    margin-bottom: 1vh;
}
#TRES>div>ul>li::marker{
    color: #9cefff;
}
#TRES>div>button{
    font-size: 0.9em;
    color: var(--negro-cursos);
    font-weight: 600;
    width: fit-content;
    background: #c3e6ff;
    padding: 1vh 5vh;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}
#TRES>p{
    font-size: 0.7em;
    color: var(--negro-cursos);
    font-weight: 500;
    position: absolute;
    bottom: 5vh;
    left: 35%;
    line-height: 1.2;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  display: none;
}
.modal {
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}
.modal > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 30%;
  padding: 5vh 3%;
  border-radius: 20px;
  position: relative;
  background: var(--blanco);
  overflow: hidden;
}
.modal > div > span {
  position: absolute;
  top: 1%;
  right: 3%;
  font-size: 1.2em;
  color: var(--gris-claro);
  cursor: pointer;
}
.modal > div > h3 {
  color: #203170;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 2vh;
}
.modal > div > p {
  font-size: 0.9em;
  color: #323232;
}
.modal > div > aside {
  width: 100%;
  background: var(--blanco);
  padding: 3vh 0%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 25px;
  justify-content: flex-start;
  z-index: 1000;
  margin: 0;
}
.modal > div > aside > form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal > div > aside > form > input,
.modal > div > aside > form > div > input {
  height: 15px;
  margin-bottom: 10px;
  border: 1px solid var(--blanco);
  border-radius: 20px;
  background-color: var(--fondo-gris);
  color: var(--negro-claro);
  letter-spacing: 1px;
  width: 83%;
  padding: 8px 8.5%;
  font-size: 0.85em;
  line-height: 1;
  outline: none;
}
.modal > div > aside > form > input:focus,
.modal > div > aside > form > div > input:focus {
  border: 1px solid var(--azul-tercero);
}
.modal > div > aside > form > div > input {
  width: 31%;
  padding: 8px 8.5%;
}
.modal > div > aside > form > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal > div > aside > form > aside {
  background: var(--fondo-gris);
  width: 90%;
  height: 30px;
  padding: 0 5%;
  border-radius: 20px;
  border: 1px solid var(--blanco);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  transition: all 0.2s ease;
  position: relative;
}
.modal > div > aside > form > .selectabierto {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.modal > div > aside > form > aside:hover {
  border: 1px solid var(--azul-tercero);
}
.modal > div > aside > form > aside > ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  background: var(--blanco);
  list-style: none;
  overflow: scroll;
  position: absolute;
  top: 100%;
  left: 0;
  height: 200px;
  padding: 0;
  z-index: 1100;
  overflow-x: hidden;
}
.modal > div > aside > form > aside > ul::-webkit-scrollbar {
  display: none;
}
.modal > div > aside > form > aside > ul > li {
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 10px 10.5%;
  width: 79%;
  font-size: 0.85em;
  text-align: left;
  color: var(--gris);
}
.modal > div > aside > form > aside > ul > li:hover {
  background: var(--gris);
  color: var(--blanco);
}
.modal > div > aside > form > aside > p {
  font-size: 0.85em;
  color: var(--gris);
  text-align: left;
  padding-left: 4.5%;
  cursor: pointer;
  width: 85%;
  font-weight: 400;
}
.modal > div > aside > form > aside > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10%;
  transform: rotate(90deg);
  cursor: pointer;
}
.modal > div > aside > form > aside > div > object {
  width: 40%;
  transition: all 0.2s ease;
  margin: 0;
}
.modal > div > aside > form > aside > div > object:nth-of-type(1) {
  transform: rotate(90deg);
}
.modal > div > aside > form > aside > div > object:nth-of-type(2) {
  transform: rotate(270deg);
}
.modal > div > aside > form > aside > div:hover > object {
  color: var(--azul-segundo);
}
.modal > div > aside > form > .radio-check {
  margin-bottom: 2vh;
  flex-direction: column;
}
.modal > div > aside > form > .radio-check > p {
  font-size: 0.7em;
  width: 90%;
  padding-right: 5px;
  color: var(--negro-cursos);
}
.modal > div > aside > form > .radio-check > p > span {
  color: var(--rojo-fuerte);
}
.modal > div > aside > form > .radio-check > div {
  display: flex;
  justify-content: flex-start;
  width: 94%;
  align-items: flex-start;
  flex-direction: row;
}
.modal > div > aside > form > .radio-check > div > input {
  display: none;
}
.modal > div > aside > form > .radio-check > div > label {
  color: var(--negro-cursos);
  padding: 5px 5px 5px 5px;
  position: relative;
  font-size: 0.7em;
  border-radius: 3px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.modal > div > aside > form > .radio-check > div > label::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: none;
  border: 3px solid #747475;
  display: inline-block;
  margin-right: 0.5vh;
}
.modal
  > div
  > aside
  > form
  > .radio-check
  > div
  > input:checked
  + label::before {
  background: #747475;
}
.modal > div > aside > form > span {
  font-weight: 500;
  font-size: 0.65em;
  color: var(--rojo-fuerte);
  align-self: flex-start;
  margin-left: 5%;
  margin-bottom: 2vh;
}
.modal > div > aside > form > #checkbox {
  justify-content: center;
  align-items: flex-start;
  margin: 35px 0;
}
.modal > div > aside > form > #checkbox > input {
  display: none;
}
.modal > div > aside > form > #checkbox > p {
  font-size: 0.85em;
  color: var(--negro-claro);
  font-weight: 500;
  text-align: left;
  width: 80%;
  margin-left: 5%;
}
.modal > div > aside > form > #checkbox > label {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: none;
  border: 3px solid var(--gris);
  display: flex;
  cursor: pointer;
}
.modal > div > aside > form > #checkbox > label:hover {
  border: 5px solid var(--gris);
}
.modal > div > aside > form > #checkbox > input:checked + label {
  background: var(--gris);
}
.modal > div > aside > form > #checkbox > p > a {
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--negro-claro);
  color: var(--negro-claro);
}
.modal > div > aside > form > #checkbox > p > a:hover {
  color: var(--negro-cursos);
  border-bottom: 1px solid var(--negro-cursos);
}
.modal > div > aside > form > #envio > input[type="submit"] {
  position: relative;
  margin-bottom: 0;
  width: 30%;
  padding: 1.5vh 0;
  border: 2px solid #75c4ff;
  border-radius: 100px;
  transition: all 0.2s ease;
  color: var(--blanco);
  background: #75c4ff;
  font-weight: 500;
  font-size: 0.85em;
  letter-spacing: 2px;
  height: auto;
  text-transform: uppercase;
}
.modal > div > aside > form > #envio > input[type="submit"]:hover {
  background: var(--blanco);
  color: #75c4ff;
}
.modal > div > aside > form > #envio > p {
  width: 60%;
  text-align: left;
  font-weight: 500;
  font-size: 0.7em;
  color: var(--negro-cursos);
}
.modal > div > aside > form > #envio > p > a {
  color: var(--negro-cursos);
  font-weight: 700;
}
@media screen and (min-aspect-ratio: 5/4) and (max-aspect-ratio: 4/3) and (min-width: 1000px) {
  #UNO {
    height: 45vh;
  }
}
@media screen and (min-aspect-ratio: 4/3) and (max-aspect-ratio: 3/2) and (min-width: 1000px) {
  #UNO {
    height: 50vh;
  }
}
@media screen and (min-aspect-ratio: 3/2) and (max-aspect-ratio: 17/10) and (min-width: 1000px) {
  #UNO {
    height: 60vh;
  }
}
@media screen and (min-aspect-ratio: 17/10) and (max-aspect-ratio: 16/9) and (min-width: 1000px) {
  #UNO {
    height: 65vh;
  }
}
@media screen and (max-width: 1230px) {
  #DOS > div {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  header {
    align-items: center;
    justify-content: center;
    padding: 0 3%;
  }
  header > a {
    width: 60%;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 4vw 0;
    margin: 0;
  }
  header > a > img {
    object-fit: scale-down;
  }
  footer {
    justify-content: center;
    background: rgb(246, 246, 246);
  }
  footer > div {
    flex-direction: column;
    align-items: flex-start;
    width: 90%;
    padding: 8vh 0 10vh;
  }
  footer > div > img {
    width: 45%;
    margin-left: 27.5%;
  }
  footer > div > div {
    width: 100%;
  }
  footer > div > div > h5 {
    color: #3f3f3f;
    font-weight: 700;
    font-size: 1em;
    text-align: left;
    margin-bottom: 2vh;
  }
  footer > div > div > p:last-of-type > br {
    display: none;
  }
  #UNO {
        margin: 12vh 0 6vh 0;
        padding: 5vh 0 10vh 0;
        justify-content: flex-start;
        align-items: center;
        height: 90vh;
        background: url(../imagenes/banner-formacion-profesional-movil.webp);
        background-size: cover;
        position: relative;
        background-repeat: no-repeat;
        background-position: bottom
    }
    #UNO>img {
        display: flex;
        width: 100%;
        margin-bottom: 5vh
    }
    #UNO>h1 {
        font-size: 2em;
        text-align: center;
        margin-bottom: 2vh;
        margin-left: 0
    }
    #UNO>h2 {
        font-size: 1.5em;
        text-align: center;
        margin-bottom: 2vh;
        margin-left: 0
    }
    #UNO>p {
        font-size: 1em;
        font-weight: 500;
        width: 90%;
        text-align: center;
        margin-bottom: 0;
        margin-left: 0
    }
    #UNO>p:first-of-type {
        font-size: 1.5em;
        position: initial;
        margin-left: 0
    }
    #UNO>p>br:last-of-type {
        display: initial
    }
    #UNO>span {
        width: 70%;
        margin-left: 0;
        justify-content: center;
        margin-bottom: 2.5vh
    }
    #UNO>span>i {
        width: 6.5vh;
        height: 6.5vh
    }
    #UNO>span>p {
        font-size: 1.4em
    }

  #UNO > a {
    position: absolute;
    bottom: -6.5vh;
    right: 5%;
  }
  #UNO > .btn-fixed {
    position: fixed;
    bottom: 15vh;
  }
  #UNO > a > div {
    margin-right: 3vh;
    border-radius: 10px;
  }
  #UNO > a > img {
    width: 10vh;
  }
    #modal-ca{
        width: 45%;
        margin-top: -10vw;
    }
    #modal-ca>div{
        height: 22vh;
        left: -10vh;
        background: url(../imagenes/poopup-cursos-abiertos-fondo-close-movil.webp);
        background-position: right;
        background-size: cover;
        background-repeat: no-repeat;
    }
    #modal-ca>div>img{
        display: none;
    }
    #modal-ca>aside{
        top: -18vh;
        left: -100vw;
        width: 95vw;
        border-radius: 25px;
        justify-content: center;
        align-items: flex-end;
        height: 60vh;
    }
    #modal-ca>aside::before{
        content: "";
        position: absolute;
        inset: 0;
        background: url(../imagenes/poopup-cursos-abiertos-fondo-open-movil.webp);
        background-size: cover;
        background-position: center;
        opacity: 0.95;
        z-index: -1;
        border-radius: 25px;
    }
    #modal-ca>aside>i{
        top: 30.5vh;
    }
    #modal-ca>aside.abierto{
        left: 2.5vw;
    }
    #modal-ca>aside>div{
        width: 80%;
        margin-right: 0;
        margin-bottom: 3vh;
    }
    #modal-ca>aside>div>div>button{
        min-height: 2.5em;
        border-radius: 10px;
    }
    #modal-ca>aside>img{
        display: none;
    }
    #DOS>div {
        width: 75%
    }
    #DOS>#swiper-abiertos{
        padding-top: 7vh;
    }
    #DOS>div>.carrusel-prev {
        background-image: url(https://idesaa.edu.mx/iconos/icono-izquierda.svg);
        background-size: 90%;
        background-position: center;
        background-repeat: no-repeat;
        left: 20vw
    }
    #DOS>div>.carrusel-next {
        background-image: url(https://idesaa.edu.mx/iconos/icono-derecha.svg);
        background-size: 90%;
        background-position: center;
        background-repeat: no-repeat;
        right: 20vw
    }
    #DOS>div>.carrusel-prev,
    #DOS>div>.carrusel-next {
        display: flex;
        top: 3%;
        width: 5vh;
        height: 5vh
    }
    #DOS>div>p {
        width: 85%;
        margin-bottom: 5vh
    }
    #DOS>div>p>span {
        font-weight: 700
    }
    #DOS>div>div>div>div>.cursos,
    #DOS>div>div>div {
        flex-direction: column
    }
    #DOS>div>div>div>div>.cursos>a {
        margin-bottom: 2vh;
        flex-direction: column;
    }
    #DOS>div>div>div>div>.titulo>h3 {
        min-height: unset;
        margin-bottom: 2vh;
        text-align: center;
    }
    #DOS>div>div>div>div:has(.cursos>a:nth-child(1):nth-last-child(1)),
    #DOS>div>div>div>div:has(.cursos>a:nth-child(2):nth-last-child(1)),
    #DOS>div>div>div>div:has(.cursos>a:nth-child(3):nth-last-child(1)),
    #DOS>div>div>div>div:has(.cursos>a:nth-child(4):nth-last-child(1)),
    #DOS>div>div>div>div>.cursos>a {
        width: auto
    }
    #DOS>div>div>div>div>.cursos {
        border-bottom: none
    }
    #DOS>div>div>div>div>.cursos>a,
    #DOS>div>div>div>div {
        border-left: none;
        border-right: none !important;
        border-bottom: none;
        border-top: 1px solid #e6e6e6;
        padding-top: 2vh;
    }
    #DOS>div>div>div>div>.cursos>a:first-of-type,
    #DOS>div>div>div>div:first-of-type {
        border-top: none;
        border-right: none !important
    }
    #DOS>div>div>div>div>.cursos>a:last-of-type{
        border-bottom: none;
    }
    #DOS>div>div>div>div>.cursos>a>div,
    #DOS>div>div>div>div>.cursos>a>div:first-of-type,
    #DOS>div>div>div>div>.cursos>a>div:nth-of-type(2){
        align-items: center;
        justify-content: center;
        width: 100%;
        border: none;
    }
    #DOS>div>div>div>div>.cursos>a>div:nth-of-type(2){
        margin: 1vh 0;
    }
    #DOS>div>div>div>div>.cursos>a>div>p {
        margin-left: 0;
        text-align: center;
    }
    #DOS>div>div>div>div>.cursos>a>div>img {
        width: 9%
    }
    #DOS>div>div>div>div>.cursos>a>div:last-of-type>img {
        width: 8%;
        margin: 0 .5%
    }
    #DOS>div>div>div>div>.cursos>a>div:first-of-type>img {
        display: none;
    }
    #DOS>img:nth-of-type(3) {
        display: unset
    }
    #DOS>img:first-of-type,
    #DOS>img:nth-of-type(2) {
        display: none
    }
    #TRES{
        align-items: center;
        flex-direction: column;
        justify-content: flex-start;
        padding: 5vh 0 65vh;
        background: url(../imagenes/banner-membresia-formacion-profesional-movil.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
    }
    #TRES>div{
        width: 90%;
        margin-right: 0;
    }
    #TRES>p{
        bottom: 35vh;
        left: 60%;
        width: 38%;
        line-height: 1.4;
    }
    #TRES>div>p:last-of-type{
        white-space: normal;
    }
    #TRES>div>p>br{
        display: none;
    }
    #TRES>div>p>span{
        display: flex;
        margin-top: 1vh;
    }
  .modal {
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
  }
  .modal > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 80%;
    padding: 5vh 5% 0;
    border-radius: 20px;
    position: relative;
    background: var(--blanco);
    overflow: hidden;
  }
  .modal > div > span {
    position: absolute;
    top: 1%;
    right: 3%;
    font-size: 1.2em;
    color: var(--gris-claro);
    cursor: pointer;
  }
  .modal > div > h3 {
    color: #203170;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 2vh;
  }
  .modal > div > p {
    font-size: 0.9em;
    color: var(--negro-texto);
  }
  .modal > div > aside {
    width: 85%;
    background: var(--blanco);
    padding: 3vh 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 25px;
    justify-content: flex-start;
    z-index: 1000;
    margin: 2vh 0% 2vh 0%;
    border: 1px solid var(--fondo-gris);
  }
  .modal > div > aside > form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .modal > div > aside > form > input,
  .modal > div > aside > form > div > input {
    height: 15px;
    margin-bottom: 10px;
    border: 1px solid var(--blanco);
    border-radius: 20px;
    background-color: var(--fondo-gris);
    color: var(--negro-claro);
    letter-spacing: 1px;
    width: 75%;
    padding: 8px 8.5%;
    font-size: 0.85em;
    line-height: 1;
    outline: none;
  }
  .modal > div > aside > form > input:focus,
  .modal > div > aside > form > div > input:focus {
    border: 1px solid var(--azul-tercero);
  }
  .modal > div > aside > form > div > input {
    width: 31%;
    padding: 8px 8.5%;
  }
  .modal > div > aside > form > div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }
  .modal > div > aside > form > aside {
    background: var(--fondo-gris);
    width: 82%;
    height: 30px;
    padding: 0 5%;
    border-radius: 20px;
    border: 1px solid var(--blanco);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    transition: all 0.2s ease;
    position: relative;
  }
  .modal > div > aside > form > .selectabierto {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .modal > div > aside > form > aside:hover {
    border: 1px solid var(--azul-tercero);
  }
  .modal > div > aside > form > aside > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background: var(--blanco);
    list-style: none;
    overflow: scroll;
    position: absolute;
    top: 100%;
    left: 0;
    height: 200px;
    padding: 0;
    z-index: 1100;
    overflow-x: hidden;
  }
  .modal > div > aside > form > aside > ul::-webkit-scrollbar {
    display: none;
  }
  .modal > div > aside > form > aside > ul > li {
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 10px 10.5%;
    width: 79%;
    font-size: 0.85em;
    text-align: left;
    color: var(--gris);
  }
  .modal > div > aside > form > aside > ul > li:hover {
    background: var(--gris);
    color: var(--blanco);
  }
  .modal > div > aside > form > aside > p {
    font-size: 0.85em;
    color: var(--gris);
    text-align: left;
    padding-left: 4.5%;
    cursor: pointer;
    width: 85%;
    font-weight: 400;
  }
  .modal > div > aside > form > aside > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
    transform: rotate(90deg);
    cursor: pointer;
  }
  .modal > div > aside > form > aside > div > object {
    width: 40%;
    transition: all 0.2s ease;
    margin: 0;
  }
  .modal > div > aside > form > aside > div > object:nth-of-type(1) {
    transform: rotate(90deg);
  }
  .modal > div > aside > form > aside > div > object:nth-of-type(2) {
    transform: rotate(270deg);
  }
  .modal > div > aside > form > aside > div:hover > object {
    color: var(--azul-segundo);
  }
  .modal > div > aside > form > .radio-check > p {
    font-size: 0.7em;
    width: 85%;
    padding: 0 10px;
    color: var(--negro-cursos);
  }
  .modal > div > aside > form > .radio-check > p > span {
    color: var(--rojo-fuerte);
  }
  .modal > div > aside > form > .radio-check > div {
    display: flex;
    justify-content: space-between;
    width: 90%;
    align-items: flex-start;
    flex-direction: column;
  }
  .modal > div > aside > form > .radio-check > div > input {
    display: none;
  }
  .modal > div > aside > form > .radio-check > div > label {
    color: var(--negro-cursos);
    padding: 5px 5px 5px 5px;
    position: relative;
    font-size: 0.7em;
    border-radius: 3px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
  }
  .modal > div > aside > form > .radio-check > div > label::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: none;
    border: 3px solid #747475;
    display: inline-block;
    margin-right: 0.5vh;
  }
  .modal
    > div
    > aside
    > form
    > .radio-check
    > div
    > input:checked
    + label::before {
    background: #747475;
  }
  .modal > div > aside > form > span {
    font-weight: 500;
    font-size: 0.65em;
    color: var(--rojo-fuerte);
    align-self: flex-start;
    margin-left: 5%;
    margin-bottom: 2vh;
  }
  .modal > div > aside > form > #checkbox {
    justify-content: center;
    align-items: flex-start;
    margin: 35px 0;
  }
  .modal > div > aside > form > #checkbox > input {
    display: none;
  }
  .modal > div > aside > form > #checkbox > p {
    font-size: 0.85em;
    color: var(--negro-claro);
    font-weight: 500;
    text-align: left;
    width: 80%;
    margin-left: 5%;
  }
  .modal > div > aside > form > #checkbox > label {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: none;
    border: 3px solid var(--gris);
    display: flex;
    cursor: pointer;
  }
  .modal > div > aside > form > #checkbox > label:hover {
    border: 5px solid var(--gris);
  }
  .modal > div > aside > form > #checkbox > input:checked + label {
    background: var(--gris);
  }
  .modal > div > aside > form > #checkbox > p > a {
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--negro-claro);
    color: var(--negro-claro);
  }
  .modal > div > aside > form > #checkbox > p > a:hover {
    color: var(--negro-cursos);
    border-bottom: 1px solid var(--negro-cursos);
  }
  .modal > div > aside > form > #envio > input[type="submit"] {
    position: relative;
    margin-bottom: 0;
    width: 30%;
    padding: 1.5vh 0;
    border: 2px solid #75c4ff;
    border-radius: 100px;
    transition: all 0.2s ease;
    color: var(--blanco);
    background: #75c4ff;
    font-weight: 500;
    font-size: 0.85em;
    letter-spacing: 2px;
    height: auto;
    text-transform: uppercase;
  }
  .modal > div > aside > form > #envio > input[type="submit"]:hover {
    background: var(--blanco);
    color: #75c4ff;
  }
  .modal > div > aside > form > #envio > p {
    width: 80%;
    text-align: left;
    font-weight: 500;
    font-size: 0.7em;
    color: var(--negro-cursos);
    margin-bottom: 2vh;
  }
  .modal > div > aside > form > #envio > p > a {
    color: var(--negro-cursos);
    font-weight: 700;
  }
}
@media screen and (max-aspect-ratio: 2/3) and (min-aspect-ratio: 3/5) and (max-width: 750px) {
  #DOS > div > div > div > img {
    width: 6%;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  #DOS > div > img {
    aspect-ratio: 1 / 2;
  }
}
