@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.invisible {
  visibility: hidden;
}

.novisible {
  display: none;
}

.no-desktop {
  display: none;
}

.no-responsive {
  display: initial;
}

.no-mobile {
  display: initial;
}

.no-scroll {
  overflow: hidden;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.fleft {
  float: left;
  text-align: left;
}

.tleft {
  text-align: left;
}

.fright {
  float: right;
  text-align: right;
}

.tright {
  text-align: right;
}

.fcenter {
  float: right;
  text-align: right;
}

.tcenter {
  text-align: center;
}

.wfull {
  width: 100%;
}

.w100 {
  max-width: 1600px;
  margin: auto;
  padding: 0 90px;
}

.w80 {
  width: 80%;
  max-width: 1400px;
  margin: auto;
}

.iblock {
  display: inline-block;
}

.flex {
  display: flex;
}

.ofcover {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.ofcontain {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.vcenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} /* siempre dentro de un relative */
.col {
  padding: 0px 3%;
  float: left;
}

.w14 {
  width: 25%;
}

.w13 {
  width: 33%;
}

.w12 {
  width: 50%;
}

.w23 {
  width: 66%;
}

.w34 {
  width: 75%;
}

.w15 {
  width: 20%;
}

.w25 {
  width: 40%;
}

.w35 {
  width: 60%;
}

.w45 {
  width: 80%;
}

.w11 {
  width: 10%;
}

.w21 {
  width: 20%;
}

.w31 {
  width: 30%;
}

.w41 {
  width: 40%;
}

.w51 {
  width: 50%;
}

.w61 {
  width: 60%;
}

.w71 {
  width: 70%;
}

.w81 {
  width: 80%;
}

.w91 {
  width: 90%;
}

.transitionall {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.arrow {
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 2.5px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.overflowhidden {
  overflow: hidden;
}

.bounce-v {
  animation-name: bounce-v;
  animation-timing-function: ease;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes bounce-v {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounce-h {
  animation-name: bounce-h;
  animation-timing-function: ease;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes bounce-h {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-12px);
  }
  100% {
    transform: translateX(0);
  }
}
.marquee {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.marquee .marquee__inner {
  width: fit-content;
  width: -moz-max-content;
  width: intrinsic;
  display: flex;
  position: relative;
  animation: marquee 1s linear infinite;
  height: 100%;
}
.marquee.vertical .marquee__inner {
  width: 100%;
  flex-direction: column;
  animation: marquee-vertical 1s linear infinite;
  height: auto;
}
.marquee.photo {
  width: 100%;
  height: 100%;
}
.marquee.photo .marquee__inner {
  animation: marquee-photo 1s ease-in-out infinite;
  animation-direction: alternate;
  position: absolute;
  top: 0;
}
.marquee.velocidad-1 .marquee__inner {
  animation-duration: 1s;
}
.marquee.velocidad-2 .marquee__inner {
  animation-duration: 2s;
}
.marquee.velocidad-3 .marquee__inner {
  animation-duration: 3s;
}
.marquee.velocidad-4 .marquee__inner {
  animation-duration: 4s;
}
.marquee.velocidad-5 .marquee__inner {
  animation-duration: 5s;
}
.marquee.velocidad-10 .marquee__inner {
  animation-duration: 10s;
}
.marquee.velocidad-15 .marquee__inner {
  animation-duration: 15s;
}
.marquee.velocidad-20 .marquee__inner {
  animation-duration: 20s;
}
.marquee.velocidad-30 .marquee__inner {
  animation-duration: 30s;
}
.marquee.velocidad-60 .marquee__inner {
  animation-duration: 60s;
}
.marquee.one-line {
  white-space: nowrap;
}
.marquee.direction-left .marquee__inner {
  animation-direction: reverse;
}
.marquee.direction-top .marquee__inner {
  animation-direction: reverse;
}
.marquee.stop .marquee__inner {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: translate3d(100vw, 0, 0);
  }
}
@keyframes marquee-vertical {
  0% {
    transform: translate3d(0, -100%, 0);
  }
  100% {
    transform: translate3d(0, 100vw, 0);
  }
}
@keyframes marquee-photo {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
    transform: translate3d(-100%, 0, 0);
  }
}

.pt-1 {
  padding-top: 1vw;
}

.pt-0 {
  padding-top: 0vw;
}

.pb-0 {
  padding-bottom: 0vw;
}

.fit-content {
  width: fit-content;
}

strong {
  font-weight: 600;
}

.archivos {
  display: flex;
  gap: 10px;
  margin-bottom: 2vw;
}

ol, ul {
  line-height: 100%;
}

span {
  line-height: 100%;
}

h5 {
  line-height: 100%;
}

.grecaptcha-badge {
  visibility: collapse !important;
}

.visuallyhidden {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

@font-face {
  font-family: "DIN";
  src: url("../fonts/DIN-Italic.woff2") format("woff2"), url("../fonts/DIN-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DIN";
  src: url("../fonts/DIN-Bold.woff2") format("woff2"), url("../fonts/DIN-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN";
  src: url("../fonts/DIN.woff2") format("woff2"), url("../fonts/DIN.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN";
  src: url("../fonts/DIN-Bold-Italic.woff2") format("woff2"), url("../fonts/DIN-Bold-Italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
/* NEGRO */
/* AZUL PRINCIPAL */
/* VERDE */
/* ROJO */
/* AZUL CLARO */
.flickity-viewport {
  height: 100%;
}

.flickity-prev-next-button {
  background: #1383da;
  width: 25px;
  height: 25px;
  transition: all 0.6s;
}

.flickity-prev-next-button:hover {
  background: #4cb6f7;
}

.flickity-prev-next-button .flickity-button-icon {
  fill: #FFFFFF;
}

.flickity-prev-next-button:disabled {
  display: none;
}

.flickity-page-dots {
  bottom: 20px;
  padding-left: 20px;
  width: auto;
}

.flickity-page-dots .dot {
  background: #1383da;
  border: solid 1px #FFFFFF;
}

.horarios .flickity-page-dots {
  bottom: 20px;
  padding-left: 0;
  width: 100%;
}

.horarios .flickity-page-dots .dot {
  background: none;
  border: solid 1px #000000;
}

BODY {
  line-height: 0;
  font-family: "DIN", Helvetica, Arial, sans-serif;
  font-size: 1.1vw;
  color: #000000;
  background: #FFFFFF;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  /* GENERAL BODY Y CLASES  ------------------------------------------------------------------------------------------------------------------------ */
  /* GENERAL BODY Y CLASES  ------------------------------------------------------------------------------------------------------------------------ */
  /* GENERAL UI  ------------------------------------------------------------------------------------------------------------------------ */
  /* GENERAL UI  ------------------------------------------------------------------------------------------------------------------------ */
  /* GENERAL BLOQUES  ------------------------------------------------------------------------------------------------------------------------ */
  /* GENERAL BLOQUES  ------------------------------------------------------------------------------------------------------------------------ */
  /* SECCIONES ------------------------------------------------------------------------------------------------------------------------ */
  /* SECCIONES ------------------------------------------------------------------------------------------------------------------------ */
}
BODY A {
  text-decoration: none;
  color: #000000;
}
BODY A:hover {
  text-decoration: underline;
}
BODY .button {
  padding: 0.4vw 1.2vw;
  padding-top: 0.6vw;
  border-radius: 50px;
  color: #000000;
  font-size: 100%;
  line-height: 1;
}
BODY .button.black {
  color: #FFFFFF;
  background: #000000;
}
BODY .button.black.border {
  border: 1px solid #FFFFFF;
}
BODY .button.white {
  color: #000000;
  background: #FFFFFF;
}
BODY .button.white.border {
  border: 1px solid #000000;
}
BODY .button.round {
  padding: 0.4vw 0.4vw;
}
BODY .button.strong {
  font-weight: bold;
}
BODY .button.fixed-cta {
  position: fixed;
  bottom: 2vw;
  right: 4vw;
  z-index: 10000;
  box-shadow: 0px 0px 1px #888;
  transition: bottom 0.5s ease;
}
BODY .button.button.sticky {
  position: absolute;
  bottom: 30px;
  z-index: 999999999;
}
BODY .button.tag {
  padding: 0.2vw 0.8vw;
  padding-top: 0.4vw;
}
BODY .button.transparent {
  color: #FFFFFF !important;
}
BODY .button.transparent.border {
  border: 1px solid #FFFFFF;
}
BODY .button.azul {
  color: #FFFFFF !important;
  background-color: #1383da;
}
BODY .button.azul.border {
  border: 1px solid #FFFFFF;
}
BODY .button.blancoAzul {
  color: #1383da !important;
  background-color: #FFFFFF;
}
BODY .button.blancoAzul.border {
  border: #1383da 1px solid;
}
BODY P {
  margin-bottom: 1.4vw;
  line-height: 120%;
}
BODY H1, BODY H2, BODY H3, BODY H4, BODY H5 {
  font-size: 100%;
  font-weight: normal;
  margin-bottom: 1.2vw;
  line-height: 100%;
}
BODY HR {
  border: none;
  border-bottom: 1px solid #000000;
}
BODY ION-ICON {
  position: relative;
  top: 0.2vw;
}
BODY.negative {
  color: #FFFFFF;
}
BODY.negative A {
  color: #FFFFFF;
}
BODY.negative A.button {
  color: #000000;
}
BODY.negative A.button.black {
  color: #FFFFFF;
}
BODY.negative HEADER {
  border-bottom: 1px solid #444444;
}
BODY.negative HEADER .w15 IMG {
  border-right: 0;
}
BODY.negative HEADER .w15 A:hover {
  border: none;
}
BODY.negative HEADER H1, BODY.negative HEADER A:hover {
  border-color: #FFFFFF;
}
BODY .no-negative {
  color: #000000;
}
BODY .no-negative A {
  color: #000000;
}
BODY .no-negative A.button {
  color: #1383da;
}
BODY .no-negative A.button.black {
  color: #000000;
}
BODY .no-negative HEADER {
  border-bottom: 1px solid #444444;
}
BODY .no-negative HEADER .w15 IMG {
  border-right: 0;
}
BODY .no-negative HEADER .w15 A:hover {
  border: none;
}
BODY .no-negative HEADER H1, BODY .no-negative HEADER A:hover {
  border-color: #000000;
}
BODY .no-negative HEADER p {
  color: #000000;
}
BODY .fondoColor1 {
  background: #1383da;
}
BODY .fondoColor2 {
  background: #a2bb4d;
}
BODY .fondoColor3 {
  background: #f6304e;
}
BODY .fondoColor4 {
  background: #4cb6f7;
}
BODY.fondoColor1 {
  background: #1383da;
}
BODY.fondoColor2 {
  background: #a2bb4d;
}
BODY.fondoColor3 {
  background: #f6304e;
}
BODY.fondoColor4 {
  background: #4cb6f7;
}
BODY .fondoColor1, BODY .fondoColor2, BODY .fondoColor3, BODY .fondoColor4 {
  color: #FFFFFF;
}
BODY .fondoColor1 A, BODY .fondoColor2 A, BODY .fondoColor3 A, BODY .fondoColor4 A {
  color: #FFFFFF;
}
BODY .fondoColorBlanco {
  background: #FFFFFF;
  color: #000000;
}
BODY .fondoColorBlanco A {
  color: #000000;
}
BODY .txtTamanio20x {
  font-size: 1800%;
}
BODY .txtTamanio12x {
  font-size: 1000%;
}
BODY .txtTamanio10x {
  font-size: 800%;
}
BODY .txtTamanio5x {
  font-size: 380%;
}
BODY .txtTamanio4x {
  font-size: 320%;
}
BODY .txtTamanio3x {
  font-size: 220%;
}
BODY .txtTamanio2x {
  font-size: 140%;
}
BODY .cajaSombra {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}
BODY .mb-1 {
  margin-bottom: 1vw !important;
}
BODY .mb-2 {
  margin-bottom: 2vw !important;
}
BODY .mb-3 {
  margin-bottom: 3vw !important;
}
BODY .mt-1 {
  margin-top: 1vw !important;
}
BODY .mt-2 {
  margin-top: 2vw !important;
}
BODY .mt-3 {
  margin-top: 3vw !important;
}
BODY .p-0 {
  padding: 0vw !important;
}
BODY .pb-0 {
  padding-bottom: 0vw !important;
}
BODY .pb-1 {
  padding-bottom: 1vw !important;
}
BODY .w-fit {
  width: fit-content;
}
BODY HEADER {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #000000;
  z-index: 10000;
  position: relative; /* position: absolute; width:  100%; z-index: 10000; */
}
BODY HEADER H1, BODY HEADER A:hover {
  display: inline;
  border-bottom: 4px #000000 solid;
  padding-bottom: 0.6vw;
  text-decoration: none;
}
BODY HEADER .w15 IMG {
  width: auto;
  height: 120px;
  padding: 15px;
  z-index: 999;
  border-right: 1px solid #000000;
}
BODY HEADER .w15 A:hover {
  border: none;
}
BODY HEADER .w45.menu {
  width: 80%;
}
BODY HEADER .w45.menu A {
  margin-right: 3.2vw;
  transition: all 0.6s;
}
BODY HEADER .w45.menu A.active {
  font-weight: bold;
  text-decoration: underline;
}
BODY HEADER .w45.menu A.fondoColor2 {
  margin-right: 1.2vw;
}
BODY HEADER .w45.menu ul {
  position: absolute;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4784313725);
  border-bottom: 1px solid #444444;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 30px 15px;
  top: 120px;
}
BODY HEADER .w45.menu ul a {
  transition: all 0.6s;
}
BODY HEADER .w45.menu ul a:hover {
  border: none;
  padding-bottom: 0;
  color: #000000;
}
BODY HEADER .w45.menu .submenu {
  display: flex;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, height 0.3s ease;
}
BODY HEADER .w45.menu .submenu.show {
  opacity: 1;
  height: auto;
}
BODY HEADER .v45.resp-menu {
  display: none;
}
BODY FOOTER {
  color: #FFFFFF;
  background: #1383da;
  display: flex;
  flex-direction: row;
  border-top: 1px solid #444444;
}
BODY FOOTER A {
  color: #FFFFFF;
  margin-right: 0.6vw;
}
BODY FOOTER IMG {
  width: 100%;
  height: auto;
  padding: 60px;
  object-fit: cover;
}
BODY FOOTER P {
  line-height: 140%;
  margin-bottom: 0;
}
BODY FOOTER .w81 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2vw 2vw;
}
BODY FOOTER .w81 .footer-data {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
BODY FOOTER .w81 .footer-data .w31 {
  padding-right: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
BODY FOOTER .w81 .footer-data .w31 P:last-of-type {
  margin-top: 2vw;
}
BODY .general-marquee {
  padding: 0;
}
BODY .general-marquee .marquee-highlights {
  position: relative;
}
BODY .general-marquee .marquee-highlights IMG.desencaje {
  position: absolute;
  bottom: -10vh;
  left: 0;
  width: 40vw;
  z-index: 10000;
}
BODY .general-marquee .marquee-highlights MARQUEE {
  text-transform: uppercase;
  line-height: 100%;
  padding-top: 1.4vw;
  border-top: 1px solid #000000;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000000;
  font-size: 1000%;
}
BODY .general-marquee .marquee-highlights MARQUEE A {
  color: transparent;
  transition: all 0.2s;
}
BODY .general-marquee .marquee-highlights MARQUEE A:hover {
  color: #000000;
  text-decoration: none;
}
BODY .general-marquee .marquee-highlights MARQUEE:last-of-type {
  border-bottom: 1px solid #000000;
}
BODY .general-marquee .marquee-highlights.images MARQUEE {
  height: 45vh;
  display: flex;
  margin: 3vw 0;
  border: none;
}
BODY .general-marquee .marquee-highlights.images IMG {
  display: inline-block;
  height: 100%;
  position: relative;
  margin-left: -8vw;
}
BODY .general-marquee .marquee-highlights.images HR {
  position: absolute;
  width: 100%;
  z-index: 10000;
}
BODY .general-marquee .marquee-highlights.images HR:nth-of-type(1) {
  margin: 3vw 0;
}
BODY .general-marquee .marquee-highlights.images HR:nth-of-type(2) {
  margin: -5vw 0;
}
BODY .general-marquee {
  padding: 0;
  border-bottom: 1px solid #000000;
}
BODY .general-marquee .carousel {
  display: flex;
  flex-direction: column;
}
BODY .general-marquee .carousel IMG.desencaje {
  position: absolute;
  bottom: -10vh;
  left: 0;
  width: 40vw;
  z-index: 10000;
}
BODY .general-marquee .carousel div.marquee {
  position: relative;
  overflow: hidden;
  display: flex;
}
BODY .general-marquee .carousel div.marquee .slide-marquee {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
BODY .general-marquee .carousel div.marquee .slide-marquee a {
  text-transform: uppercase;
  line-height: 100%;
  padding-top: 0.6vw;
  border-top: 1px solid #000000;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000000;
  font-size: 320%;
}
BODY .general-marquee .carousel div.marquee .slide-marquee a:hover {
  color: #000000;
  text-decoration: none;
}
BODY .cursos-detalle-related H2 {
  font-size: 320%;
}
BODY .cursos-detalle-related .general-curso {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
BODY .general-tarifas {
  display: flex;
  flex-direction: row;
  text-align: center;
  flex-wrap: wrap;
}
BODY .general-tarifas H2 {
  text-transform: uppercase;
  display: block;
  position: relative;
}
BODY .general-tarifas H2 SPAN {
  display: block;
  text-align: left;
}
BODY .general-tarifas H2 SPAN:first-of-type {
  font-size: 1000%;
  line-height: 90%;
  position: relative;
  z-index: 10000;
}
BODY .general-tarifas H2 SPAN:first-of-type.detras {
  position: relative;
  z-index: 1;
}
BODY .general-tarifas H2 SPAN:last-of-type {
  font-size: 220%;
  line-height: 140%;
}
BODY .general-tarifas H2 IMG {
  position: absolute;
  top: -3vw;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  width: 90%;
  object-position: center center;
  z-index: 1;
}
BODY .general-tarifas H3 {
  text-transform: uppercase;
  color: #CCCCCC;
  font-size: 220%;
}
BODY .general-tarifas p, BODY .general-tarifas table {
  color: #000000;
}
BODY .general-tarifas table {
  text-align: left;
  width: 90%;
}
BODY .general-tarifas table tr {
  border-bottom: 1px solid #CCCCCC;
}
BODY .general-tarifas table td {
  padding: 5px;
}
BODY .general-faq .general-faq-item {
  border-top: 1px solid #000000;
}
BODY .general-faq .general-faq-item A {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
BODY .general-faq .general-faq-item ION-ICON {
  position: relative;
  top: -0.2vw;
}
BODY .general-faq .general-faq-item H2 {
  margin-top: 1.2vw;
  font-size: 140%;
}
BODY .general-faq .general-faq-item .general-faq-item-content {
  display: none;
  line-height: 120%;
}
BODY .general-faq .general-faq-item:last-of-type {
  border-bottom: 1px solid #000000;
}
BODY .general-curso {
  width: 25vw;
  border-radius: 10px;
  display: block;
  padding: 0.4vw;
  margin-right: 0.8vw;
  margin-bottom: 0.8vw;
}
BODY .general-curso .lugar {
  width: auto;
  padding: 25px 20px 20px;
  position: absolute;
  font-size: 90%;
  font-weight: 600;
  text-transform: uppercase;
}
BODY .general-curso IMG:nth-of-type(1) {
  border-radius: 10px;
  height: 25vh;
}
BODY .general-curso .home-highlights-curso-info {
  padding: 1.2vw;
}
BODY .general-curso .home-highlights-curso-info > * {
  margin-top: 2vw;
}
BODY .general-curso .home-highlights-curso-info h4 {
  line-height: 200%;
  display: flex;
  gap: 15px;
}
BODY .general-curso .home-highlights-curso-info h3 {
  margin-bottom: 0.2vw;
}
BODY .general-curso .home-highlights-curso-profesor {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
BODY .general-curso .home-highlights-curso-profesor .w14 {
  padding: 0;
}
BODY .general-curso .home-highlights-curso-profesor IMG {
  border-radius: 100%;
  width: 6vw;
  height: 6vw;
  margin-right: 1.2vw;
  aspect-ratio: 1/1;
}
BODY .general-curso .home-highlights-curso-profesor H5 {
  margin-bottom: 0;
  font-weight: bold;
}
BODY .general-curso:hover {
  text-decoration: none;
}
BODY MAIN {
  min-height: 80vh;
}
BODY SECTION {
  padding: 4vw 2vw;
}
BODY.home .home-slider {
  padding: 0;
  line-height: 100%;
  margin-top: -120px;
}
BODY.home .home-slider .home-slide {
  display: flex;
  flex-grow: 0;
  height: 100vh;
  width: 100%;
  position: relative;
  padding: 2vw 2vw;
  padding-top: 240px;
}
BODY.home .home-slider .home-slide IMG, BODY.home .home-slider .home-slide VIDEO {
  max-height: 100%;
  width: 100%;
}
BODY.home .home-slider .home-slide .w12 {
  flex: 1 0 0;
  z-index: 1000;
}
BODY.home .home-slider .home-slide .w12:first-of-type {
  padding-right: 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
BODY.home .home-slider .home-slide .w12:first-of-type > * {
  max-width: 70%;
  margin-bottom: 3vw;
}
BODY.home .home-slider .home-slide .home-slide-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
BODY.home .home-highlights {
  padding: 2vw 0;
  padding-bottom: 0;
}
BODY.home .home-highlights .home-highlights-cursos {
  display: flex;
  flex-direction: row;
}
BODY.home .home-highlights .home-highlights-cursos .w14 {
  padding: 2vw 2vw;
  padding-right: 4vw;
}
BODY.home .home-highlights .home-highlights-cursos .w34 {
  padding: 2vw;
}
BODY.home .home-highlights .home-highlights-cursos .home-highlights-ui {
  margin-bottom: 2vw;
}
BODY.home .home-facts {
  display: flex;
  flex-direction: row;
  text-align: center;
  border-bottom: 1px solid #000000;
  padding: 4vw 2vw;
}
BODY.home .home-facts .w12:nth-of-type(2) {
  border-left: 1px solid #000000;
}
BODY.home .home-facts H2 {
  margin-bottom: 0;
  letter-spacing: -10px;
}
BODY.home .home-facts H3 {
  width: 50%;
  margin: auto;
  line-height: 140%;
}
BODY.home .home-quotes {
  border-bottom: 1px solid #000000;
  padding: 4vw 2vw;
}
BODY.home .home-quotes .home-quotes-slide {
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}
BODY.home .home-quotes .home-quotes-slide .home-quotes-quote {
  border-left: 1px solid #000000;
  height: 100%;
  padding: 2vw;
}
BODY.home .home-colaboradores {
  display: flex;
  flex-direction: row;
}
BODY.home .home-colaboradores .w14 {
  padding: 4vw;
  text-align: center;
}
BODY.home .home-colaboradores .w14 IMG {
  height: 10vh;
}
BODY.la-academia {
  z-index: 1;
}
BODY.la-academia .la-academia-block {
  display: flex;
  flex-direction: row;
  position: relative;
}
BODY.la-academia .la-academia-block H2 {
  font-size: 220%;
  line-height: 120%;
}
BODY.la-academia .la-academia-block H3, BODY.la-academia .la-academia-block H4, BODY.la-academia .la-academia-block H5 {
  font-size: 140%;
  line-height: 120%;
}
BODY.la-academia .la-academia-block H2, BODY.la-academia .la-academia-block H3, BODY.la-academia .la-academia-block H4, BODY.la-academia .la-academia-block H5, BODY.la-academia .la-academia-block P {
  padding-right: 4vw;
}
BODY.la-academia .la-academia-block .w12.desencaje {
  position: absolute;
  right: 0;
  top: 120px;
}
BODY.la-academia .la-academia-block .w12.image {
  padding: 4vw;
  display: flex;
}
BODY.la-academia .la-academia-block.reverse {
  flex-direction: row-reverse;
}
BODY.la-academia .la-academia-block.reverse .w12 {
  padding: 0 0 0 4vw;
}
BODY.la-academia .la-academia-block:last-of-type {
  padding-bottom: 0;
}
BODY.la-academia .la-academia-highlights {
  display: flex;
  flex-direction: row;
  text-align: center;
}
BODY.la-academia .la-academia-highlights .w14 {
  padding: 0 2vw;
}
BODY.la-academia .la-academia-highlights H2 {
  font-size: 320%;
  text-transform: uppercase;
}
BODY.la-academia .la-academia-highlights H3 {
  font-size: 126%;
  line-height: 120%;
}
BODY.la-academia .la-academia-highlights A {
  font-weight: bold;
}
BODY.cursos .cursos-intro {
  text-align: center;
}
BODY.cursos .cursos-intro .cursos-intro-filtros {
  margin-top: 2vw;
}
BODY.cursos .cursos-intro .cursos-intro-filtros A {
  margin-right: 0.4vw;
}
BODY.cursos .cursos-intro .cursos-intro-filtros A:hover {
  text-decoration: none;
}
BODY.cursos .cursos-intro .cursos-intro-filtros A.active {
  font-weight: 600;
}
BODY.cursos .cursos-intro H2, BODY.cursos .cursos-intro H3 {
  line-height: 140%;
  margin: 0 20vw;
}
BODY.cursos .cursos-listado .general-curso {
  width: 30.5vw;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
BODY.cursos .cursos-listado .general-curso H5 {
  line-height: 140%;
}
BODY.cursos .cursos-listado .lugar {
  width: auto;
  padding: 25px 20px 20px;
  position: absolute;
  font-size: 90%;
  font-weight: 600;
  text-transform: uppercase;
}
BODY .carnavales-peque h2 {
  color: #000000;
}
BODY .carnavales-peque h3 {
  color: #000000;
}
BODY .carnavales-peque h4 {
  color: #000000;
}
BODY .carnavales-peque p {
  color: #000000;
}
BODY.cursos-detalle .cursos-detalle-header {
  padding: 0;
  min-height: 60vh;
  position: relative;
  position: relative;
  margin-top: -120px;
  padding-top: 120px;
  display: flex;
  align-items: flex-end;
}
BODY.cursos-detalle .cursos-detalle-header .cursos-detalle-header-info {
  position: relative;
  z-index: 2;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2vw 2vw;
  padding-top: 120px;
}
BODY.cursos-detalle .cursos-detalle-header .cursos-detalle-header-info h1 {
  margin-bottom: 0;
}
BODY.cursos-detalle .cursos-detalle-header .cursos-detalle-header-info H2 SPAN {
  display: block;
  line-height: 140%;
}
BODY.cursos-detalle .cursos-detalle-header .cursos-detalle-header-info h3 {
  display: flex;
  gap: 15px;
}
BODY.cursos-detalle .cursos-detalle-header .cursos-detalle-header-bckgrnd {
  position: absolute;
  top: 0;
  z-index: 1;
}
BODY.cursos-detalle .cursos-detalle-body {
  display: flex;
  flex-direction: row;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text {
  padding-right: 8vw;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text H3 {
  font-size: 140%;
  line-height: 140%;
  margin-bottom: 4vw;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text H2 {
  font-weight: bold;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text A {
  font-weight: bold;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text P {
  line-height: 140%;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text OL, BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text UL {
  list-style-position: outside;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text LI {
  margin-top: 2vw;
  padding-top: 2vw;
  border-top: 1px solid #CCCCCC;
  line-height: 140%;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text LI:before {
  font-size: 200%;
  font-weight: 100;
  display: block;
  margin-bottom: 1vw;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text LI.numerado {
  margin-top: 2vw;
  padding-top: 2vw;
  border-top: 1px solid #CCCCCC;
  line-height: 140%;
  counter-increment: item;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text LI.numerado:before {
  content: counter(item);
  font-size: 200%;
  font-weight: 100;
  display: block;
  margin-bottom: 1vw;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text img {
  margin-bottom: 2vw;
  width: 50%;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-slider {
  margin: 2vw 0;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-slider IMG {
  aspect-ratio: 16/9;
  height: auto;
  width: 90%;
  margin-right: 0.8vw;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info {
  margin: 0 4vw;
  position: sticky;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info H2 {
  font-weight: bold;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info H2:nth-of-type(2) {
  margin-top: 2vw;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info H3 {
  margin-top: 2vw;
  text-transform: uppercase;
  font-size: 140%;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info IMG {
  height: auto;
  aspect-ratio: 1/1;
}
BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info A {
  display: block;
  line-height: 120%;
}
BODY.cursos-detalle .cursos-detalle-related H2 {
  font-size: 320%;
}
BODY.cursos-detalle .cursos-detalle-related .general-curso {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
BODY.equipo .equipo-intro {
  display: flex;
  flex-direction: row;
}
BODY.equipo .equipo-intro .w12 {
  position: relative;
}
BODY.equipo .equipo-intro H2 {
  font-size: 320%;
}
BODY.equipo .equipo-intro H3 {
  font-size: 140%;
  line-height: 140%;
}
BODY.equipo .equipo-intro P {
  line-height: 140%;
}
BODY.equipo .equipo-intro IMG {
  padding: 6vw 12vw;
  z-index: 10000;
  position: relative;
}
BODY.equipo .equipo-intro IMG.bckgrnd {
  position: absolute;
  padding: 30px;
  top: 0;
  left: 0;
  z-index: 1;
  max-height: 600px;
}
BODY.equipo .equipo-listado {
  display: flex;
  flex-wrap: wrap;
}
BODY.equipo .equipo-listado .equipo-listado-item {
  padding-right: 2vw;
}
BODY.equipo .equipo-listado .equipo-listado-item IMG {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
}
BODY.equipo .equipo-listado .equipo-listado-item H2 {
  margin: 2vw 0 15px;
  font-weight: bold;
}
BODY.equipo .equipo-listado .equipo-listado-item h2.nombre-profe {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
BODY.equipo .equipo-listado .equipo-listado-item h2.nombre-profe .icono-profe {
  font-size: 120%;
  position: relative;
  top: 0;
}
BODY.equipo .equipo-listado .equipo-listado-item A {
  transition: all 1s;
}
BODY.equipo .equipo-listado .equipo-listado-item a:hover {
  opacity: 0.6;
}
BODY.equipo .equipo-listado.listado-fotos .equipo-listado-item {
  padding-right: 0;
}
BODY.equipo .cursos-detalle-header {
  padding: 0;
  min-height: 60vh;
  position: relative;
  position: relative;
  margin-top: -120px;
  padding-top: 120px;
  display: flex;
  align-items: flex-end;
}
BODY.equipo .cursos-detalle-header .cursos-detalle-header-info {
  position: relative;
  z-index: 2;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2vw 2vw;
  padding-top: 120px;
}
BODY.equipo .cursos-detalle-header .cursos-detalle-header-info h1 {
  margin-bottom: 0;
  color: #FFFFFF;
}
BODY.equipo .cursos-detalle-header .cursos-detalle-header-info H2 SPAN {
  display: block;
  line-height: 140%;
  color: #FFFFFF;
}
BODY.equipo .cursos-detalle-header .cursos-detalle-header-info h3 {
  display: flex;
  gap: 15px;
  color: #FFFFFF;
}
BODY.equipo .cursos-detalle-header .cursos-detalle-header-bckgrnd {
  position: absolute;
  top: 0;
  z-index: 0;
}
BODY.horarios .horarios-intro, BODY.horarios .horarios-info {
  text-align: center;
  width: 50%;
  margin: auto;
}
BODY.horarios .horarios-intro H2, BODY.horarios .horarios-info H2 {
  font-size: 320%;
  line-height: 140%;
}
BODY.horarios .horarios-intro H3, BODY.horarios .horarios-info H3 {
  font-size: 140%;
  line-height: 140%;
}
BODY.horarios .horarios-intro h3.aviso-extra, BODY.horarios .horarios-info h3.aviso-extra {
  margin-bottom: 3vw;
}
BODY.horarios .horarios-tabla {
  padding-top: 2vw;
  padding-bottom: 0;
}
BODY.horarios .horarios-tabla TABLE {
  text-align: center;
  width: 100%;
  line-height: 1;
}
BODY.horarios .horarios-tabla TABLE THEAD TH {
  font-weight: normal;
  text-transform: uppercase;
  font-size: 120%;
  padding-bottom: 1vw;
}
BODY.horarios .horarios-tabla TABLE TBODY TR {
  border-top: 1px solid #000000;
}
BODY.horarios .horarios-tabla TABLE TBODY TR:last-of-type {
  border-bottom: 1px solid #000000;
}
BODY.horarios .horarios-tabla TABLE TBODY TD {
  width: 12.7vw;
  border-left: 1px solid #000000;
  min-height: 10vh;
  padding: 0.8vw;
  font-size: 80%;
  border-collapse: collapse;
}
BODY.horarios .horarios-tabla TABLE TBODY TD span {
  font-size: 90%;
}
BODY.horarios .horarios-tabla TABLE TBODY TD span p {
  margin-bottom: 0;
}
BODY.horarios .horarios-tabla TABLE TBODY TH {
  width: 10vw;
  height: auto;
  padding-top: 10px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
BODY.horarios .horarios-tabla TABLE STRONG {
  display: block;
}
BODY.horarios .horarios-tabla .curso-dot-1093 {
  background-color: #5355D1;
  border-radius: 50px;
  display: block;
  padding: 5px 10px 3px;
  margin-bottom: 5px;
}
BODY.horarios .horarios-tabla .curso-dot-1095 {
  color: #000;
  border: 1px solid #000;
  border-radius: 50px;
  display: block;
  padding: 5px 10px 3px;
  margin-bottom: 5px;
}
BODY.horarios .horarios-tabla .curso-dot-1094 {
  background-color: #F67048;
  border-radius: 50px;
  display: block;
  padding: 5px 10px 3px;
  margin-bottom: 5px;
}
BODY.apuntate .apuntate-content {
  display: flex;
  flex-direction: row;
}
BODY.apuntate .apuntate-content .apuntate-form {
  padding-right: 20vw;
}
BODY.apuntate .apuntate-content .apuntate-form H2 {
  font-size: 380%;
}
BODY.apuntate .apuntate-content .apuntate-form H3 {
  font-size: 140%;
  line-height: 140%;
}
BODY.apuntate .apuntate-content .apuntate-form P {
  margin-bottom: 1vw;
}
BODY.apuntate .apuntate-content .apuntate-form .apuntate-form-row {
  margin-bottom: 2vw;
}
BODY.apuntate .apuntate-content .apuntate-form INPUT, BODY.apuntate .apuntate-content .apuntate-form SELECT {
  font-family: "DIN", Helvetica, Arial, sans-serif;
  background: none;
  border: none;
  color: #FFFFFF;
  padding: 0.4vw 0.8vw;
  font-size: 112%;
}
BODY.apuntate .apuntate-content .apuntate-form INPUT[type=text], BODY.apuntate .apuntate-content .apuntate-form SELECT {
  padding-left: 0;
  display: block;
  border-bottom: 1px solid #444444;
  width: 100%;
  margin-bottom: 2vw;
}
BODY.apuntate .apuntate-content .apuntate-form INPUT[type=button] {
  transition: all 0.6s;
  border-radius: 25px;
  border: 1px solid #444444;
  color: #CCCCCC;
  margin-right: 0.8vw;
}
BODY.apuntate .apuntate-content .apuntate-form INPUT[type=button].active {
  background: #444444;
  color: #FFFFFF;
}
BODY.apuntate .apuntate-content .apuntate-form INPUT[type=submit] {
  border-radius: 25px;
  background: #FFFFFF;
  color: #000000;
  cursor: pointer;
  border: 1px solid #000000;
  transition: all 0.6s;
}
BODY.apuntate .apuntate-content .apuntate-form INPUT[type=submit]:hover {
  border-radius: 25px;
  background: #000000;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
BODY.apuntate .apuntate-content .apuntate-form *:focus {
  outline: none;
}
BODY.apuntate .apuntate-content .apuntate-form INPUT[type=radio] {
  display: none;
}
BODY.apuntate .apuntate-content .apuntate-form input[type=radio]:checked + label {
  background: #444444; /* Color de fondo cuando está activo */
  color: #FFFFFF; /* Color de texto cuando está activo */
  border-color: #444444; /* Cambia el color del borde */
}
BODY.apuntate .apuntate-content .apuntate-form label.button {
  border-radius: 25px;
  border: 1px solid #444444;
  color: #CCCCCC;
  margin-right: 0.8vw;
  padding: 0.4vw 0.8vw;
  font-size: 112%;
  cursor: pointer;
}
BODY.apuntate .apuntate-content .apuntate-form .form-enviado {
  margin-top: 1vw;
}
BODY.apuntate .apuntate-content .apuntate-form .form-enviado .box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
BODY.apuntate .apuntate-content .apuntate-form .form-enviado .box p {
  margin-bottom: 0 !important;
}
BODY.apuntate .apuntate-content .apuntate-info H2 {
  font-weight: bold;
}
BODY.apuntate .apuntate-content .apuntate-info H2:nth-of-type(2) {
  margin-top: 2vw;
}
BODY.apuntate .apuntate-content .apuntate-info A {
  line-height: 120%;
}
BODY.alumnos .alumnos-form {
  text-align: center;
  width: 50%;
  margin: auto;
}
BODY.alumnos .alumnos-form H2 {
  font-size: 380%;
}
BODY.alumnos .alumnos-form H3 {
  font-size: 140%;
  line-height: 140%;
}
BODY.alumnos .alumnos-form INPUT {
  font-family: "DIN", Helvetica, Arial, sans-serif;
  background: none;
  border: none;
  color: #000000;
  padding: 0.4vw 0.8vw;
  font-size: 112%;
}
BODY.alumnos .alumnos-form INPUT[type=text], BODY.alumnos .alumnos-form INPUT[type=password] {
  display: block;
  border-bottom: 1px solid #CCCCCC;
  width: 100%;
  margin-bottom: 2vw;
}
BODY.alumnos .alumnos-form INPUT[type=submit] {
  background: #000000;
  color: #FFFFFF;
  border-radius: 25px;
  margin-bottom: 2vw;
}
BODY.alumnos .alumnos-form A {
  display: block;
  font-size: 80%;
  color: #444444;
  line-height: 140%;
}
BODY.alumnos .alumnos-form *:focus {
  outline: none;
}
BODY.alumnos .alumnos-content {
  text-align: center;
  width: 50%;
  margin: auto;
}
BODY.alumnos .alumnos-content H2 {
  font-size: 380%;
}
BODY.alumnos .alumnos-content H3 {
  font-size: 140%;
  line-height: 140%;
}
BODY.alumnos .alumnos-content A {
  text-decoration: underline;
}
BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content {
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
}
BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content .alumnos-cursos-item-content-clase {
  padding-right: 0.8vw;
  display: block;
}
BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content .alumnos-cursos-item-content-clase IMG {
  width: 100%;
  height: 30vh;
}
BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content .alumnos-cursos-item-content-clase H3 {
  line-height: 140%;
  margin-bottom: 0.6vw;
  margin-top: 0.8vw;
}
BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content .alumnos-cursos-item-content-clase H4 {
  color: #CCCCCC;
}
BODY.alumnos .alumnos-cursos.no-suscrito {
  border-top: 1px solid #000;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
BODY .input-logout {
  border: 0;
  cursor: pointer;
  padding: 0.5vw 1.2vw !important;
}
BODY .input-logout:hover {
  display: inline;
  border-bottom: 4px #000000 solid;
  padding-bottom: 0.6vw;
  text-decoration: none;
}
BODY span.txtMateria {
  color: #7d7d7d;
}
BODY .cursos-detalle-header-info span.txtMateria {
  color: #FFFFFF;
}

/* oO Select2 Oo */
.select2-container--default .select2-selection--single {
  background-color: black;
  color: white;
  border: 1px solid #444444;
  border-radius: 0;
  height: auto;
  padding: 0px 5px;
  margin-bottom: 30px;
}

.select2-container--default .select2-results__option {
  background-color: black;
  color: white;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #333;
  color: white;
}

.select2-container--default .select2-selection--multiple {
  background-color: black;
  color: white;
  border: 1px solid #444444;
  border-radius: 0;
  padding: 5px;
  margin-bottom: 30px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #F67048;
  color: white;
  border: 1px solid #F67048;
  border-radius: 25px;
  padding: 1px 20px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: white;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid #444444 1px;
  outline: 0;
}

.select2-container .select2-search--inline .select2-search__field {
  height: auto !important;
}

/* overlay background */
.fancybox-overlay {
  background: rgba(0, 0, 0, 0.7);
}

#popup-content {
  padding: 0;
}
#popup-content .academia-popup {
  background-color: #FFF;
  width: 100%;
  height: 100%;
  margin: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
#popup-content .academia-popup section {
  display: flex;
  padding: 0;
}
#popup-content .academia-popup section .pop-left {
  display: flex;
  width: 50%;
}
#popup-content .academia-popup section .pop-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#popup-content .academia-popup section .pop-right {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 3vw;
  justify-content: space-between;
}
#popup-content .academia-popup section .pop-right div.textos {
  display: flex;
  flex-direction: column;
}
#popup-content .academia-popup section .pop-right div.textos h3 {
  font-size: 200%;
  line-height: 130%;
}
#popup-content .academia-popup section .pop-right div.textos p {
  font-size: 100%;
  margin-top: 1vw;
  line-height: 150%;
}
#popup-content .academia-popup section .pop-right a {
  font-size: 100%;
  margin: 2vw 0 0;
  width: fit-content;
  transition: all 0.6s;
}
#popup-content .academia-popup section .pop-right a:hover {
  opacity: 0.8;
}
#popup-content button.fancybox-button.fancybox-close-small:hover svg {
  transform: rotate(-90deg);
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4431372549);
  position: absolute;
  z-index: 1;
}

.z-0 {
  z-index: 0 !important;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .no-desktop {
    display: initial;
  }
  BODY {
    font-size: 1.4vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  BODY {
    font-size: 2.3vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  BODY {
    /* oO Select2 Oo */
  }
  BODY .txtTamanio12x {
    font-size: 500%;
    letter-spacing: -1px;
  }
  BODY .txtTamanio20x {
    font-size: 650%;
  }
  BODY .txtTamanio12x {
    font-size: 350%;
  }
  BODY .txtTamanio10x {
    font-size: 500%;
  }
  BODY .txtTamanio5x {
    font-size: 350%;
  }
  BODY .txtTamanio4x {
    font-size: 200%;
  }
  BODY .txtTamanio3x {
    font-size: 140%;
  }
  BODY .txtTamanio2x {
    font-size: 120%;
  }
  BODY .txtTamanio1x {
    font-size: 70%;
  }
  BODY .button {
    padding: 10px 15px;
    font-size: 120%;
    display: flex;
    width: fit-content;
    gap: 5px;
  }
  BODY .button.round {
    padding: 10px 15px;
  }
  BODY .button.fixed-cta {
    bottom: 5vw;
    right: 5vw;
    padding: 10px 15px;
    font-size: 70%;
  }
  BODY .button.tag {
    padding: 5px 10px;
  }
  BODY .button.round.fondoColor1.alumno-icon {
    display: flex;
  }
  BODY .input-logout {
    padding: 5px 10px !important;
  }
  BODY HEADER {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #000000;
    z-index: 10000;
    position: relative;
  }
  BODY HEADER H1, BODY HEADER A:hover {
    display: inline;
    border-bottom: 4px #000000 solid;
    padding-bottom: 0.6vw;
    text-decoration: none;
  }
  BODY HEADER .w15 {
    width: 50%;
    height: 65px;
  }
  BODY HEADER .w15 IMG {
    width: auto !important;
    height: 100%;
    border-right: 1px solid #000000;
  }
  BODY HEADER .w15 A:hover {
    border: none;
  }
  BODY HEADER .w45 {
    display: none;
    opacity: 0;
    transition: all 0.6s;
    height: 65px;
    width: auto;
    min-width: 100%;
    z-index: 9999;
  }
  BODY HEADER .w45 A {
    margin-right: 3.2vw;
    width: 100%;
  }
  BODY HEADER .w45 A.active {
    font-weight: bold;
    text-decoration: underline;
  }
  BODY HEADER .w45 A.fondoColor2 {
    margin-right: 1.2vw;
  }
  BODY HEADER .w45 ul {
    position: relative !important;
    background-color: transparent !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: right;
    padding: 0 !important;
    top: 0 !important;
    margin-right: 3.2vw;
  }
  BODY HEADER .w45 ul li {
    color: #1383da !important;
  }
  BODY HEADER .w45 ul a {
    border: 0;
  }
  BODY HEADER .w45 ul a:last-child {
    border-bottom: 1px solid #000000;
  }
  BODY HEADER .w45 a:hover {
    border: 0 !important;
  }
  BODY HEADER .menu.open {
    position: absolute;
    top: 65px;
    display: flex !important;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    right: 0;
    background-color: #000;
    border-left: 1px solid #444444;
    padding: 30px 15px;
    height: auto;
    opacity: 1;
  }
  BODY HEADER .menu.open a {
    font-size: 100%;
    line-height: 200%;
    color: #000;
  }
  BODY HEADER .menu.open .button {
    padding: 5px 25px;
    width: fit-content;
  }
  BODY HEADER .menu.open .button.round {
    padding: 15px 25px;
    border-radius: 50px;
  }
  BODY HEADER .resp-menu {
    position: absolute;
    width: 50%;
    height: 65px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    right: 0;
  }
  BODY HEADER .resp-menu .action-nav-mov {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
    gap: 25%;
    flex-direction: column;
    margin-right: 15px;
  }
  BODY HEADER .resp-menu .action-nav-mov span {
    height: 1px;
    width: 40px;
    background: #000;
    transition: all 0.6s;
  }
  BODY HEADER .resp-menu .action-nav-mov.open {
    justify-content: center;
  }
  BODY HEADER .resp-menu .action-nav-mov.open span {
    position: absolute;
  }
  BODY HEADER .resp-menu .action-nav-mov.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  BODY HEADER .resp-menu .action-nav-mov.open span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  BODY HEADER .resp-menu .action-nav-mov.open span:nth-child(3) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  BODY HEADER .resp-menu .action-nav-mov.open span:nth-child(4) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  BODY FOOTER {
    color: #FFFFFF;
    background: #000000;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #444444;
    font-size: 120%;
  }
  BODY FOOTER A {
    color: #FFFFFF;
    margin-right: 0.6vw;
  }
  BODY FOOTER IMG {
    width: auto;
    height: 100%;
  }
  BODY FOOTER P {
    line-height: 140%;
    margin-bottom: 0;
  }
  BODY FOOTER P .button {
    margin-bottom: 15px;
  }
  BODY FOOTER .w81 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2vw 2vw;
  }
  BODY FOOTER .w81 .footer-data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  BODY FOOTER .w81 .footer-data .w31 {
    padding-right: 2vw;
    margin-bottom: 5vw;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
  }
  BODY FOOTER .w81 .footer-data .w31 P:last-of-type {
    margin-top: 2vw;
  }
  BODY FOOTER .w21 {
    width: 100%;
    height: 200px;
    max-height: 200px;
  }
  BODY FOOTER .w21 img {
    width: auto;
    height: 100%;
    padding: 15px;
  }
  BODY .general-curso {
    width: 75vw;
    border-radius: 10px;
    background: #FFFFFF;
    display: block;
    padding: 0.4vw;
    margin-right: 4.8vw;
    margin-bottom: 4.8vw;
  }
  BODY .general-curso IMG:nth-of-type(1) {
    border-radius: 10px;
    height: 25vh;
  }
  BODY .general-curso .home-highlights-curso-info {
    padding: 1.2vw;
  }
  BODY .general-curso .home-highlights-curso-info > * {
    margin-top: 2vw;
  }
  BODY .general-curso .home-highlights-curso-info h4 {
    line-height: 200%;
  }
  BODY .general-curso .home-highlights-curso-info h3 {
    margin-bottom: 0.2vw;
  }
  BODY .general-curso .home-highlights-curso-profesor {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  BODY .general-curso .home-highlights-curso-profesor .w14 {
    padding: 0;
    width: auto;
    padding: 5px !important;
    max-width: 80px;
    height: 80px;
  }
  BODY .general-curso .home-highlights-curso-profesor .w34 {
    width: 75%;
    display: flex;
    flex-direction: column;
    margin-left: 15px;
    margin-top: 0 !important;
  }
  BODY .general-curso .home-highlights-curso-profesor IMG {
    border-radius: 100%;
    width: 100px;
    height: 100px;
    margin-right: 1.2vw;
  }
  BODY .general-curso .home-highlights-curso-profesor .tag {
    font-size: 70%;
  }
  BODY .general-curso .home-highlights-curso-profesor span {
    font-size: 70%;
  }
  BODY .general-curso .home-highlights-curso-profesor H5 {
    margin-bottom: 0;
    font-weight: bold;
    font-size: 70%;
  }
  BODY .general-curso:hover {
    text-decoration: none;
  }
  BODY .general-tarifas {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  BODY .general-tarifas .w13 {
    width: 100%;
  }
  BODY .general-tarifas .w12 {
    width: 100%;
  }
  BODY .general-tarifas H2 {
    text-transform: uppercase;
    display: block;
    position: relative;
  }
  BODY .general-tarifas H2 SPAN {
    display: block;
  }
  BODY .general-tarifas H2 SPAN:first-of-type {
    font-size: 650%;
    line-height: 90%;
    position: relative;
    z-index: 10000;
  }
  BODY .general-tarifas H2 SPAN:first-of-type.detras {
    position: relative;
    z-index: 1;
  }
  BODY .general-tarifas H2 SPAN:last-of-type {
    font-size: 350%;
    line-height: 140%;
  }
  BODY .general-tarifas H2 IMG {
    position: absolute;
    top: -3vw;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    width: 90%;
    object-position: center center;
    z-index: 1;
    max-width: 250px;
    max-height: 250px;
  }
  BODY .general-tarifas H3 {
    text-transform: uppercase;
    color: #CCCCCC;
    font-size: 140%;
  }
  BODY .general-faq .general-faq-item {
    border-top: 1px solid #000000;
  }
  BODY .general-faq .general-faq-item A {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
  }
  BODY .general-faq .general-faq-item ION-ICON {
    position: relative;
    top: -0.2vw;
  }
  BODY .general-faq .general-faq-item H2 {
    margin-top: 1.2vw;
    font-size: 120%;
  }
  BODY .general-faq .general-faq-item .general-faq-item-content {
    display: none;
    line-height: 120%;
  }
  BODY .general-faq .general-faq-item:last-of-type {
    border-bottom: 1px solid #000000;
  }
  BODY .general-faq .general-faq-item h3 {
    font-size: 70%;
    padding-bottom: 30px;
  }
  BODY .general-marquee {
    padding: 0;
  }
  BODY .general-marquee .carousel {
    display: flex;
    flex-direction: column;
  }
  BODY .general-marquee .carousel IMG.desencaje {
    position: absolute;
    bottom: -10vh;
    left: 0;
    width: 40vw;
    z-index: 10000;
  }
  BODY .general-marquee .carousel div.marquee {
    position: relative;
    overflow: hidden;
    display: flex;
  }
  BODY .general-marquee .carousel div.marquee .slide-marquee {
    white-space: nowrap;
    display: flex;
    align-items: center;
  }
  BODY .general-marquee .carousel div.marquee .slide-marquee a {
    text-transform: uppercase;
    line-height: 100%;
    padding-top: 1.4vw;
    border-top: 1px solid #000000;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000000;
    font-size: 650%;
  }
  BODY .general-marquee .carousel div.marquee .slide-marquee a:hover {
    color: #000000;
    text-decoration: none;
  }
  BODY #popup-content {
    padding: 0;
  }
  BODY #popup-content .academia-popup section {
    display: flex;
    flex-direction: column-reverse;
  }
  BODY #popup-content .academia-popup section .pop-left {
    width: 100%;
  }
  BODY #popup-content .academia-popup section .pop-right {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  BODY #popup-content .academia-popup section .pop-right div.textos {
    display: flex;
    flex-direction: column;
  }
  BODY #popup-content .academia-popup section .pop-right div.textos h3 {
    font-size: 180%;
    line-height: 130%;
  }
  BODY #popup-content .academia-popup section .pop-right div.textos p {
    font-size: 70%;
    margin-top: 2vw;
  }
  BODY #popup-content .academia-popup section .pop-right a {
    font-size: 70%;
    margin-top: 3vw;
  }
  BODY #popup-content .academia-popup section .pop-right a:hover {
    opacity: 0.8;
  }
  BODY #popup-content button.fancybox-button.fancybox-close-small {
    width: 10%;
    opacity: 1;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  BODY #popup-content button.fancybox-button.fancybox-close-small svg {
    height: 200%;
    width: 200%;
    transition: transform 0.3s ease;
  }
  BODY #popup-content button.fancybox-button.fancybox-close-small:hover svg {
    transform: rotate(-90deg);
  }
  BODY.home .home-slider {
    padding: 0;
    line-height: 100%;
  }
  BODY.home .home-slider .home-slide {
    display: flex;
    flex-grow: 0;
    height: 100vh;
    width: 100%;
    position: relative;
    padding: 2vw 2vw;
    padding-top: 120px;
    flex-direction: column;
  }
  BODY.home .home-slider .home-slide IMG, BODY.home .home-slider .home-slide VIDEO {
    max-height: 100%;
    width: 100%;
  }
  BODY.home .home-slider .home-slide .w12 {
    flex: 1 0 0;
    z-index: 1000;
    width: 100%;
  }
  BODY.home .home-slider .home-slide .w12:first-of-type {
    padding-right: 4vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  BODY.home .home-slider .home-slide .w12:first-of-type > * {
    max-width: 90%;
    margin-bottom: 3vw;
  }
  BODY.home .home-slider .home-slide .home-slide-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
  BODY.home .home-highlights {
    padding: 2vw 15px;
    padding-bottom: 0;
  }
  BODY.home .home-highlights .home-highlights-cursos {
    display: flex;
    flex-direction: column;
  }
  BODY.home .home-highlights .home-highlights-cursos .w14 {
    width: 100%;
    padding: 2vw 2vw;
    padding-right: 4vw;
  }
  BODY.home .home-highlights .home-highlights-cursos .w14 .txtTamanio2x {
    margin-bottom: 15px;
  }
  BODY.home .home-highlights .home-highlights-cursos .w34 {
    width: 100%;
    margin-top: 30px;
    padding: 2vw 0;
  }
  BODY.home .home-highlights .home-highlights-cursos .home-highlights-ui {
    margin: 15px 0 30px;
    display: flex;
    gap: 15px;
  }
  BODY.home .home-highlights .home-highlights-cursos .home-highlights-ui .button.round {
    display: flex;
    flex-direction: row;
    padding: 10px 15px;
    align-items: center;
    justify-content: center;
    width: fit-content;
  }
  BODY.home .home-facts {
    display: flex;
    flex-direction: row;
    text-align: center;
    border-bottom: 1px solid #000000;
    padding: 4vw 2vw;
  }
  BODY.home .home-facts .w12:nth-of-type(2) {
    border-left: 1px solid #000000;
  }
  BODY.home .home-facts H2 {
    margin-bottom: 0;
    letter-spacing: -5px;
  }
  BODY.home .home-facts H3 {
    width: 90%;
    margin: auto;
    line-height: 140%;
  }
  BODY.home .home-quotes {
    border-bottom: 1px solid #000000;
    padding: 4vw 2vw;
  }
  BODY.home .home-quotes .home-quotes-slide {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  BODY.home .home-quotes .home-quotes-slide .home-quotes-quote {
    width: 100%;
    border-left: 0;
    height: 100%;
    padding: 30px 2vw;
  }
  BODY.home .home-quotes .home-quotes-slide .w12 {
    width: 100%;
  }
  BODY.home .home-quotes .home-quotes-slide .w12:first-child {
    border-bottom: 1px solid #000000;
    padding-bottom: 30px;
  }
  BODY.home .home-quotes .home-quotes-slide .home-quotes-ui {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 15px;
  }
  BODY.la-academia {
    z-index: 1;
  }
  BODY.la-academia .la-academia-block {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  BODY.la-academia .la-academia-block H2 {
    font-size: 140%;
    line-height: 120%;
  }
  BODY.la-academia .la-academia-block H3, BODY.la-academia .la-academia-block H4, BODY.la-academia .la-academia-block H5 {
    font-size: 120%;
    line-height: 120%;
  }
  BODY.la-academia .la-academia-block H2, BODY.la-academia .la-academia-block H3, BODY.la-academia .la-academia-block H4, BODY.la-academia .la-academia-block H5, BODY.la-academia .la-academia-block P {
    padding-right: 4vw;
  }
  BODY.la-academia .la-academia-block .w12 {
    width: 100%;
  }
  BODY.la-academia .la-academia-block .w12.desencaje {
    position: relative;
    right: 0;
    top: -350px;
    z-index: -1;
    margin-bottom: -650px;
  }
  BODY.la-academia .la-academia-block .w12.image {
    padding: 4vw;
  }
  BODY.la-academia .la-academia-block.reverse {
    flex-direction: column;
  }
  BODY.la-academia .la-academia-block:last-of-type {
    padding-bottom: 0;
  }
  BODY.la-academia .la-academia-block p {
    font-size: 70%;
  }
  BODY.la-academia .la-academia-highlights {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  BODY.la-academia .la-academia-highlights .w14 {
    padding: 0 2vw;
    width: 100%;
  }
  BODY.la-academia .la-academia-highlights H2 {
    font-size: 200%;
    text-transform: uppercase;
    margin-top: 30px;
  }
  BODY.la-academia .la-academia-highlights H3 {
    font-size: 108%;
    line-height: 120%;
  }
  BODY.la-academia .la-academia-highlights A {
    font-weight: bold;
  }
  BODY.cursos .cursos-intro {
    text-align: center;
  }
  BODY.cursos .cursos-intro .cursos-intro-filtros {
    margin-top: 2vw;
    margin-top: 2vw;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 0 10%;
  }
  BODY.cursos .cursos-intro .cursos-intro-filtros A {
    font-size: 70%;
    margin-right: 0;
    display: flex;
    align-items: center;
  }
  BODY.cursos .cursos-intro .cursos-intro-filtros A:hover {
    text-decoration: none;
  }
  BODY.cursos .cursos-intro .cursos-intro-filtros A.active {
    display: flex;
    align-items: center;
  }
  BODY.cursos .cursos-intro H2, BODY.cursos .cursos-intro H3 {
    width: 100%;
    line-height: 120%;
    margin: 0 0 30px;
  }
  BODY.cursos .cursos-intro h2 {
    line-height: 100%;
    margin: 0 0 15px;
  }
  BODY.cursos .cursos-listado .general-curso {
    width: 96%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  BODY.cursos .cursos-listado .general-curso H5 {
    line-height: 140%;
    font-size: 70%;
  }
  BODY.cursos .cursos-listado .general-curso span {
    font-size: 70%;
  }
  BODY.cursos .cursos-listado .general-curso .tag {
    font-size: 70%;
  }
  BODY.cursos .cursos-listado .lugar {
    width: auto;
    padding: 25px 20px 20px;
    position: absolute;
    font-size: 90%;
    font-weight: 600;
    text-transform: uppercase;
  }
  BODY.cursos-detalle .cursos-detalle-header {
    padding: 0;
    height: 40vh;
    position: relative;
    position: relative;
  }
  BODY.cursos-detalle .cursos-detalle-header .cursos-detalle-header-info {
    position: relative;
    z-index: 2;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2vw 2vw;
  }
  BODY.cursos-detalle .cursos-detalle-header .cursos-detalle-header-info H2 SPAN {
    display: block;
    line-height: 140%;
  }
  BODY.cursos-detalle .cursos-detalle-header .cursos-detalle-header-bckgrnd {
    position: absolute;
    top: 0;
    z-index: 1;
  }
  BODY.cursos-detalle .cursos-detalle-body {
    display: flex;
    flex-direction: column;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content {
    width: 100%;
    font-size: 120%;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text {
    padding-right: 8vw;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text H3 {
    font-size: 70%;
    line-height: 140%;
    margin-bottom: 4vw;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text H2 {
    font-size: 70%;
    font-weight: bold;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text A {
    font-weight: bold;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text P {
    font-size: 70%;
    line-height: 140%;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text OL, BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text UL {
    list-style-position: outside;
    font-size: 70%;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text LI {
    margin-top: 2vw;
    padding-top: 2vw;
    border-top: 1px solid #CCCCCC;
    line-height: 140%;
    counter-increment: item;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text LI:before {
    content: counter(item);
    font-size: 200%;
    font-weight: 100;
    display: block;
    margin-bottom: 1vw;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-slider {
    margin: 2vw 0;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-slider IMG {
    height: 50vh;
    width: 90%;
    margin-right: 0.8vw;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info {
    border-top: 1px solid #000000;
    padding-top: 30px;
    margin: 60px 0 30px 0;
    position: sticky;
    width: 100%;
    font-size: 120%;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info H2 {
    font-weight: bold;
    font-size: 70%;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info H2:nth-of-type(2) {
    margin-top: 2vw;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info p {
    font-size: 70%;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info H3 {
    margin-top: 2vw;
    text-transform: uppercase;
    font-size: 120%;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info IMG {
    height: auto;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info A {
    display: block;
    line-height: 120%;
    font-size: 70%;
  }
  BODY.cursos-detalle .cursos-detalle-related H2 {
    font-size: 140%;
  }
  BODY.cursos-detalle .cursos-detalle-related .general-curso {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  BODY.equipo .equipo-intro {
    display: flex;
    flex-direction: column;
    font-size: 120%;
  }
  BODY.equipo .equipo-intro .w12 {
    position: relative;
    width: 100%;
  }
  BODY.equipo .equipo-intro H2 {
    font-size: 200%;
  }
  BODY.equipo .equipo-intro H3 {
    font-size: 120%;
    line-height: 140%;
  }
  BODY.equipo .equipo-intro P {
    line-height: 140%;
    font-size: 70%;
  }
  BODY.equipo .equipo-intro IMG {
    padding: 6vw 12vw;
    z-index: 5;
    position: relative;
  }
  BODY.equipo .equipo-intro IMG.bckgrnd {
    position: absolute;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 1;
  }
  BODY.equipo .equipo-listado {
    display: flex;
    flex-wrap: wrap;
    font-size: 120%;
  }
  BODY.equipo .equipo-listado .equipo-listado-item {
    width: 100%;
    padding-right: 0;
    padding-top: 60px;
  }
  BODY.equipo .equipo-listado .equipo-listado-item IMG {
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
  }
  BODY.equipo .equipo-listado .equipo-listado-item H2 {
    margin: 2vw 0;
    font-weight: bold;
    font-size: 120%;
  }
  BODY.equipo .equipo-listado .equipo-listado-item p {
    font-size: 70%;
  }
  BODY.equipo .equipo-listado .equipo-listado-item A {
    text-decoration: underline;
  }
  BODY.horarios .horarios-intro, BODY.horarios .horarios-info {
    text-align: center;
    width: 100%;
    margin: auto;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  BODY.horarios .horarios-intro H2, BODY.horarios .horarios-info H2 {
    font-size: 200%;
    line-height: 100%;
  }
  BODY.horarios .horarios-intro H3, BODY.horarios .horarios-info H3 {
    font-size: 120%;
    line-height: 140%;
    margin-bottom: 30px;
  }
  BODY.horarios .horarios-intro h3.aviso-extra, BODY.horarios .horarios-info h3.aviso-extra {
    margin-bottom: 30px;
  }
  BODY.horarios .horarios-tabla {
    width: 100vw;
    overflow-x: auto;
  }
  BODY.horarios .horarios-tabla TABLE {
    text-align: center;
    width: 100%;
    line-height: 1;
    font-size: 120%;
  }
  BODY.horarios .horarios-tabla TABLE THEAD TH {
    font-weight: normal;
    text-transform: uppercase;
    font-size: 70%;
    padding: 0 5px;
    padding-bottom: 1vw;
  }
  BODY.horarios .horarios-tabla TABLE TBODY TR {
    border-top: 1px solid #000000;
  }
  BODY.horarios .horarios-tabla TABLE TBODY TR:last-of-type {
    border-bottom: 1px solid #000000;
  }
  BODY.horarios .horarios-tabla TABLE TBODY TD {
    width: 12.7vw;
    border-left: 1px solid #000000;
    min-height: auto;
    height: auto;
    padding: 0.8vw;
    font-size: 80%;
    border-collapse: collapse;
  }
  BODY.horarios .horarios-tabla TABLE TBODY TD span {
    font-size: 90%;
  }
  BODY.horarios .horarios-tabla TABLE TBODY TD span p {
    margin-bottom: 0;
  }
  BODY.horarios .horarios-tabla TABLE TBODY TH {
    width: 10vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  BODY.horarios .horarios-tabla TABLE STRONG {
    display: block;
  }
  BODY.horarios .horarios-tabla .curso-dot-1093 {
    background-color: #5355D1;
    border-radius: 25px;
    display: block;
    padding: 5px 10px;
    margin-bottom: 5px;
  }
  BODY.horarios .horarios-tabla .curso-dot-1095 {
    color: #000;
    border: 1px solid #000;
    border-radius: 25px;
    display: block;
    padding: 5px 10px;
    margin-bottom: 5px;
  }
  BODY.horarios .horarios-tabla .curso-dot-1094 {
    background-color: #F67048;
    border-radius: 25px;
    display: block;
    padding: 5px 10px 3px;
    margin-bottom: 5px;
  }
  BODY.apuntate .apuntate-content {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
  }
  BODY.apuntate .apuntate-content .apuntate-form {
    padding-right: 0;
    width: 90%;
  }
  BODY.apuntate .apuntate-content .apuntate-form H2 {
    font-size: 200%;
  }
  BODY.apuntate .apuntate-content .apuntate-form H3 {
    font-size: 70%;
    line-height: 140%;
  }
  BODY.apuntate .apuntate-content .apuntate-form P {
    font-size: 70%;
    margin-bottom: 10px;
    margin-top: 30px;
  }
  BODY.apuntate .apuntate-content .apuntate-form .apuntate-form-row {
    margin-bottom: 30px;
  }
  BODY.apuntate .apuntate-content .apuntate-form INPUT, BODY.apuntate .apuntate-content .apuntate-form SELECT {
    font-family: "DIN", Helvetica, Arial, sans-serif;
    background: none;
    border: none;
    color: #FFFFFF;
    padding: 0.4vw 0.8vw;
    font-size: 96%;
    font-size: 70%;
  }
  BODY.apuntate .apuntate-content .apuntate-form INPUT[type=text], BODY.apuntate .apuntate-content .apuntate-form SELECT {
    padding-left: 0;
    display: block;
    border-bottom: 1px solid #444444;
    width: 100%;
    margin-bottom: 2vw;
    margin: 15px 0;
  }
  BODY.apuntate .apuntate-content .apuntate-form INPUT[type=button] {
    transition: all 0.6s;
    border-radius: 25px;
    border: 1px solid #444444;
    color: #CCCCCC;
    margin-right: 0.8vw;
  }
  BODY.apuntate .apuntate-content .apuntate-form INPUT[type=button].active {
    background: #444444;
    color: #FFFFFF;
  }
  BODY.apuntate .apuntate-content .apuntate-form INPUT[type=submit] {
    border-radius: 25px;
    background: #FFFFFF;
    color: #000000;
    cursor: pointer;
    border: 1px solid #000000;
    transition: all 0.6s;
    padding: 10px 15px;
  }
  BODY.apuntate .apuntate-content .apuntate-form INPUT[type=submit]:hover {
    border-radius: 25px;
    background: #000000;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
  }
  BODY.apuntate .apuntate-content .apuntate-form *:focus {
    outline: none;
  }
  BODY.apuntate .apuntate-content .apuntate-form INPUT[type=radio] {
    display: none;
  }
  BODY.apuntate .apuntate-content .apuntate-form input[type=radio]:checked + label {
    background: #444444; /* Color de fondo cuando está activo */
    color: #FFFFFF; /* Color de texto cuando está activo */
    border-color: #444444; /* Cambia el color del borde */
    padding: 5px 15px;
  }
  BODY.apuntate .apuntate-content .apuntate-form label.button {
    border-radius: 25px;
    border: 1px solid #444444;
    color: #CCCCCC;
    margin-right: 0.8vw;
    padding: 5px 15px;
    font-size: 70%;
    cursor: pointer;
  }
  BODY.apuntate .apuntate-content .apuntate-form .form-enviado {
    margin-top: 1vw;
  }
  BODY.apuntate .apuntate-content .apuntate-form .form-enviado .box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  BODY.apuntate .apuntate-content .apuntate-form .form-enviado .box p {
    margin-bottom: 0 !important;
  }
  BODY.apuntate .apuntate-content .apuntate-form label {
    line-height: 120%;
    font-size: 70%;
  }
  BODY.apuntate .apuntate-content .apuntate-info {
    width: 100%;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 70%;
  }
  BODY.apuntate .apuntate-content .apuntate-info H2 {
    font-weight: bold;
  }
  BODY.apuntate .apuntate-content .apuntate-info H2:nth-of-type(2) {
    margin-top: 2vw;
  }
  BODY.apuntate .apuntate-content .apuntate-info A {
    line-height: 120%;
  }
  BODY.apuntate .apuntate-content .apuntate-info .button {
    width: fit-content;
  }
  BODY.alumnos .alumnos-form {
    text-align: center;
    width: 100%;
    margin: 0;
  }
  BODY.alumnos .alumnos-form H2 {
    font-size: 200%;
  }
  BODY.alumnos .alumnos-form H3 {
    font-size: 70%;
    line-height: 140%;
    padding: 0 10%;
  }
  BODY.alumnos .alumnos-form INPUT {
    font-family: "DIN", Helvetica, Arial, sans-serif;
    background: none;
    border: none;
    color: #000000;
    padding: 0.4vw 0.8vw;
    font-size: 96%;
  }
  BODY.alumnos .alumnos-form INPUT[type=text], BODY.alumnos .alumnos-form INPUT[type=password] {
    display: block;
    border-bottom: 1px solid #CCCCCC;
    width: 100%;
    margin-bottom: 2vw;
  }
  BODY.alumnos .alumnos-form INPUT[type=submit] {
    background: #000000;
    color: #FFFFFF;
    border-radius: 25px;
    margin: 2vw 0;
    padding: 5px 15px;
  }
  BODY.alumnos .alumnos-form A {
    display: block;
    font-size: 80%;
    color: #444444;
    line-height: 140%;
  }
  BODY.alumnos .alumnos-form *:focus {
    outline: none;
  }
  BODY.alumnos .alumnos-content {
    text-align: center;
    width: 100%;
    margin: 0;
  }
  BODY.alumnos .alumnos-content H2 {
    font-size: 200%;
    width: 100%;
  }
  BODY.alumnos .alumnos-content H3 {
    font-size: 70%;
    width: 100%;
    line-height: 140%;
    padding: 0 10%;
  }
  BODY.alumnos .alumnos-content A {
    text-decoration: underline;
  }
  BODY.alumnos .alumnos-cursos {
    width: 100%;
  }
  BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content {
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
  }
  BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content .alumnos-cursos-item-content-clase {
    width: 50%;
    padding-right: 0.8vw;
    display: block;
    margin-bottom: 30px;
  }
  BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content .alumnos-cursos-item-content-clase IMG {
    width: 100%;
    height: 30vh;
  }
  BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content .alumnos-cursos-item-content-clase H3 {
    line-height: 140%;
    margin-bottom: 0.6vw;
    margin-top: 0.8vw;
    padding-bottom: 0;
  }
  BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content .alumnos-cursos-item-content-clase H4 {
    color: #CCCCCC;
    font-size: 70%;
  }
  BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content h3.wfull {
    padding-bottom: 10px;
  }
  BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content .archivos {
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content .archivos a {
    padding: 15px 15px;
    width: max-content;
  }
  BODY.alumnos .alumnos-cursos.no-suscrito {
    border-top: 1px solid #000;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  BODY .select2-search__field {
    height: max-content;
  }
  BODY .select2-container .select2-search--inline .select2-search__field {
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  BODY.negative HEADER .resp-menu .action-nav-mov span {
    background: #FFF;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  BODY HEADER .menu.open {
    background-color: #FFF;
  }
}
@media (max-width: 768px) {
  .no-desktop {
    display: initial;
  }
  BODY {
    font-size: 1.4vw;
  }
}
@media (max-width: 768px) and (orientation: portrait) {
  BODY {
    font-size: 3.2vw;
  }
}
@media (max-width: 768px) {
  BODY {
    /* oO Select2 Oo */
  }
  BODY .button {
    padding: 10px 15px;
  }
  BODY .button.round {
    padding: 10px 15px;
  }
  BODY .button.fixed-cta {
    bottom: 5vw;
    right: 5vw;
    padding: 10px 15px;
    font-size: 140%;
  }
  BODY .button.tag {
    padding: 8px 10px 5px 10px;
  }
  BODY .button.round.fondoColor1.alumno-icon {
    display: flex;
  }
  BODY .input-logout {
    padding: 5px 10px !important;
  }
  BODY .txtTamanio12x {
    font-size: 500%;
    letter-spacing: -1px;
  }
  BODY .txtTamanio20x {
    font-size: 800%;
  }
  BODY .txtTamanio12x {
    font-size: 500%;
  }
  BODY .txtTamanio10x {
    font-size: 800%;
  }
  BODY .txtTamanio5x {
    font-size: 380%;
  }
  BODY .txtTamanio4x {
    font-size: 320%;
  }
  BODY .txtTamanio3x {
    font-size: 220%;
  }
  BODY .txtTamanio2x {
    font-size: 140%;
  }
  BODY .txtTamanio1x {
    font-size: 100%;
  }
  BODY HEADER {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #000000;
    z-index: 10000;
    position: relative;
  }
  BODY HEADER H1, BODY HEADER A:hover {
    display: inline;
    border-bottom: 4px #000000 solid;
    padding-bottom: 0.6vw;
    text-decoration: none;
  }
  BODY HEADER .w15 {
    width: 50%;
    height: 100px;
  }
  BODY HEADER .w15 IMG {
    width: auto !important;
    height: 100px;
    border-right: 1px solid #000000;
  }
  BODY HEADER .w15 A:hover {
    border: none;
  }
  BODY HEADER .w45 {
    display: none;
    opacity: 0;
    transition: all 0.6s;
    height: 100px;
    width: auto;
    min-width: 100%;
    z-index: 9999;
  }
  BODY HEADER .w45 A {
    margin-right: 3.2vw;
  }
  BODY HEADER .w45 A.active {
    font-weight: bold;
    text-decoration: underline;
  }
  BODY HEADER .w45 A.fondoColor2 {
    margin-right: 1.2vw;
  }
  BODY HEADER .w45 ul {
    position: relative !important;
    background-color: transparent !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: right;
    padding: 0 !important;
    top: 0 !important;
    margin-right: 0;
  }
  BODY HEADER .w45 ul li {
    color: #1383da !important;
  }
  BODY HEADER .w45 ul a {
    border: 0;
  }
  BODY HEADER .w45 ul a:last-child {
    border-bottom: 1px solid #000000;
  }
  BODY HEADER .w45 a:hover {
    border: 0 !important;
  }
  BODY HEADER .menu.open {
    position: absolute;
    top: 100px;
    display: flex !important;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    right: 0;
    background-color: #000;
    border-left: 1px solid #444444;
    padding: 30px 15px;
    height: auto;
    opacity: 1;
  }
  BODY HEADER .menu.open a {
    font-size: 150%;
    line-height: 200%;
    color: #000;
  }
  BODY HEADER .menu.open .button {
    padding: 5px 25px;
    width: fit-content;
  }
  BODY HEADER .menu.open .button.round {
    padding: 15px 25px;
    border-radius: 50px;
  }
  BODY HEADER .resp-menu {
    position: absolute;
    width: 50%;
    height: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    right: 0;
  }
  BODY HEADER .resp-menu .action-nav-mov {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
    gap: 25%;
    flex-direction: column;
    margin-right: 15px;
  }
  BODY HEADER .resp-menu .action-nav-mov span {
    height: 1px;
    width: 40px;
    background: #000;
    transition: all 0.6s;
  }
  BODY HEADER .resp-menu .action-nav-mov.open {
    justify-content: center;
  }
  BODY HEADER .resp-menu .action-nav-mov.open span {
    position: absolute;
  }
  BODY HEADER .resp-menu .action-nav-mov.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  BODY HEADER .resp-menu .action-nav-mov.open span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  BODY HEADER .resp-menu .action-nav-mov.open span:nth-child(3) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  BODY HEADER .resp-menu .action-nav-mov.open span:nth-child(4) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  BODY FOOTER {
    color: #FFFFFF;
    background: #000000;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #444444;
  }
  BODY FOOTER A {
    color: #FFFFFF;
    margin-right: 0.6vw;
  }
  BODY FOOTER IMG {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  BODY FOOTER P {
    line-height: 140%;
    margin-bottom: 0;
  }
  BODY FOOTER .w81 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2vw 2vw;
  }
  BODY FOOTER .w81 .footer-data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  BODY FOOTER .w81 .footer-data .w31 {
    padding-right: 2vw;
    margin-bottom: 5vw;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
  }
  BODY FOOTER .w81 .footer-data .w31 P:last-of-type {
    margin-top: 2vw;
  }
  BODY FOOTER .w21 {
    width: 100%;
    height: 200px;
    max-height: 200px;
  }
  BODY FOOTER .w21 img {
    width: auto;
    height: 100%;
    padding: 15px;
  }
  BODY .general-curso {
    width: 75vw;
    border-radius: 10px;
    background: #FFFFFF;
    display: block;
    padding: 0.4vw;
    margin-right: 4.8vw;
    margin-bottom: 4.8vw;
  }
  BODY .general-curso IMG:nth-of-type(1) {
    border-radius: 10px;
    height: 25vh;
  }
  BODY .general-curso .home-highlights-curso-info {
    padding: 1.2vw;
  }
  BODY .general-curso .home-highlights-curso-info > * {
    margin-top: 2vw;
  }
  BODY .general-curso .home-highlights-curso-info h4 {
    line-height: 200%;
  }
  BODY .general-curso .home-highlights-curso-info h3 {
    margin-bottom: 0.2vw;
  }
  BODY .general-curso .home-highlights-curso-profesor {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  BODY .general-curso .home-highlights-curso-profesor .w14 {
    padding: 0;
    width: auto;
    padding: 2vw !important;
    max-width: 80px;
    height: 80px;
  }
  BODY .general-curso .home-highlights-curso-profesor .w34 {
    width: 75%;
    display: flex;
    flex-direction: column;
    margin-left: 15px;
    margin-top: 0 !important;
  }
  BODY .general-curso .home-highlights-curso-profesor IMG {
    border-radius: 100%;
    width: 10vw;
    height: 10vw;
    margin-right: 1.2vw;
  }
  BODY .general-curso .home-highlights-curso-profesor H5 {
    margin-bottom: 0;
    font-weight: bold;
  }
  BODY .general-curso:hover {
    text-decoration: none;
  }
  BODY .general-tarifas {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  BODY .general-tarifas .w13 {
    width: 100%;
  }
  BODY .general-tarifas .w12 {
    width: 100%;
  }
  BODY .general-tarifas H2 {
    text-transform: uppercase;
    display: block;
    position: relative;
  }
  BODY .general-tarifas H2 SPAN {
    display: block;
    z-index: 2;
    position: relative;
  }
  BODY .general-tarifas H2 SPAN:first-of-type {
    font-size: 800%;
    line-height: 90%;
    position: relative;
    z-index: 10000;
  }
  BODY .general-tarifas H2 SPAN:first-of-type.detras {
    position: relative;
    z-index: 1;
  }
  BODY .general-tarifas H2 SPAN:last-of-type {
    font-size: 380%;
    line-height: 140%;
  }
  BODY .general-tarifas H2 IMG {
    position: absolute;
    top: -3vw;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 0;
    width: 90%;
    object-position: center center;
    z-index: 1;
  }
  BODY .general-tarifas H3 {
    text-transform: uppercase;
    color: #CCCCCC;
    font-size: 220%;
  }
  BODY .general-faq .general-faq-item {
    border-top: 1px solid #000000;
  }
  BODY .general-faq .general-faq-item A {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
  }
  BODY .general-faq .general-faq-item ION-ICON {
    position: relative;
    top: -0.2vw;
  }
  BODY .general-faq .general-faq-item H2 {
    margin-top: 1.2vw;
    font-size: 140%;
  }
  BODY .general-faq .general-faq-item .general-faq-item-content {
    display: none;
    line-height: 120%;
  }
  BODY .general-faq .general-faq-item:last-of-type {
    border-bottom: 1px solid #000000;
  }
  BODY .general-faq .general-faq-item h3 {
    font-size: 120%;
    padding-bottom: 30px;
  }
  BODY .general-marquee {
    padding: 0;
  }
  BODY .general-marquee .carousel {
    display: flex;
    flex-direction: column;
  }
  BODY .general-marquee .carousel IMG.desencaje {
    position: absolute;
    bottom: -10vh;
    left: 0;
    width: 40vw;
    z-index: 10000;
  }
  BODY .general-marquee .carousel div.marquee {
    position: relative;
    overflow: hidden;
    display: flex;
  }
  BODY .general-marquee .carousel div.marquee .slide-marquee {
    white-space: nowrap;
    display: flex;
    align-items: center;
  }
  BODY .general-marquee .carousel div.marquee .slide-marquee a {
    text-transform: uppercase;
    line-height: 100%;
    padding-top: 1.4vw;
    border-top: 1px solid #000000;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000000;
    font-size: 800%;
  }
  BODY .general-marquee .carousel div.marquee .slide-marquee a:hover {
    color: #000000;
    text-decoration: none;
  }
  BODY #popup-content {
    padding: 0;
  }
  BODY #popup-content .academia-popup section {
    display: flex;
    flex-direction: column-reverse;
  }
  BODY #popup-content .academia-popup section .pop-left {
    width: 100%;
  }
  BODY #popup-content .academia-popup section .pop-right {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  BODY #popup-content .academia-popup section .pop-right div.textos {
    display: flex;
    flex-direction: column;
  }
  BODY #popup-content .academia-popup section .pop-right div.textos h3 {
    font-size: 180%;
    line-height: 130%;
  }
  BODY #popup-content .academia-popup section .pop-right div.textos p {
    font-size: 100%;
    margin-top: 2vw;
  }
  BODY #popup-content .academia-popup section .pop-right a {
    font-size: 100%;
    margin-top: 3vw;
  }
  BODY #popup-content .academia-popup section .pop-right a:hover {
    opacity: 0.8;
  }
  BODY #popup-content button.fancybox-button.fancybox-close-small {
    width: 10%;
    opacity: 1;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  BODY #popup-content button.fancybox-button.fancybox-close-small svg {
    height: 200%;
    width: 200%;
    transition: transform 0.3s ease;
  }
  BODY #popup-content button.fancybox-button.fancybox-close-small:hover svg {
    transform: rotate(-90deg);
  }
  BODY.home .home-slider {
    padding: 0;
    line-height: 100%;
  }
  BODY.home .home-slider .home-slide {
    display: flex;
    flex-grow: 0;
    height: 100vh;
    width: 100%;
    position: relative;
    padding: 2vw 2vw;
    flex-direction: column;
    padding-top: 180px;
  }
  BODY.home .home-slider .home-slide IMG, BODY.home .home-slider .home-slide VIDEO {
    max-height: 100%;
    width: 100%;
  }
  BODY.home .home-slider .home-slide .w12 {
    flex: 1 0 0;
    z-index: 1000;
    width: 100%;
  }
  BODY.home .home-slider .home-slide .w12:first-of-type {
    padding-right: 4vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  BODY.home .home-slider .home-slide .w12:first-of-type > * {
    max-width: 90%;
    margin-bottom: 3vw;
  }
  BODY.home .home-slider .home-slide .home-slide-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
  BODY.home .home-highlights {
    padding: 2vw 15px;
    padding-bottom: 0;
  }
  BODY.home .home-highlights .home-highlights-cursos {
    display: flex;
    flex-direction: column;
  }
  BODY.home .home-highlights .home-highlights-cursos .w14 {
    width: 100%;
    padding: 2vw 2vw;
    padding-right: 4vw;
  }
  BODY.home .home-highlights .home-highlights-cursos .w14 .txtTamanio2x {
    margin-bottom: 15px;
  }
  BODY.home .home-highlights .home-highlights-cursos .w34 {
    width: 100%;
    margin-top: 30px;
    padding: 2vw 0;
  }
  BODY.home .home-highlights .home-highlights-cursos .home-highlights-ui {
    margin: 15px 0 30px;
    display: flex;
    gap: 15px;
  }
  BODY.home .home-highlights .home-highlights-cursos .home-highlights-ui .button.round {
    display: flex;
    flex-direction: row;
    padding: 10px 15px;
    align-items: center;
    justify-content: center;
    width: fit-content;
  }
  BODY.home .home-facts {
    display: flex;
    flex-direction: row;
    text-align: center;
    border-bottom: 1px solid #000000;
    padding: 4vw 2vw;
  }
  BODY.home .home-facts .w12:nth-of-type(2) {
    border-left: 1px solid #000000;
  }
  BODY.home .home-facts H2 {
    margin-bottom: 0;
    letter-spacing: -5px;
  }
  BODY.home .home-facts H3 {
    width: 90%;
    margin: auto;
    line-height: 140%;
  }
  BODY.home .home-quotes {
    border-bottom: 1px solid #000000;
    padding: 4vw 2vw;
  }
  BODY.home .home-quotes .home-quotes-slide {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  BODY.home .home-quotes .home-quotes-slide .home-quotes-quote {
    width: 100%;
    border-left: 0;
    height: 100%;
    padding: 30px 2vw;
  }
  BODY.home .home-quotes .home-quotes-slide .w12 {
    width: 100%;
  }
  BODY.home .home-quotes .home-quotes-slide .w12:first-child {
    border-bottom: 1px solid #000000;
    padding-bottom: 30px;
  }
  BODY.la-academia {
    z-index: 1;
  }
  BODY.la-academia .la-academia-block {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  BODY.la-academia .la-academia-block H2 {
    font-size: 220%;
    line-height: 120%;
  }
  BODY.la-academia .la-academia-block H3, BODY.la-academia .la-academia-block H4, BODY.la-academia .la-academia-block H5 {
    font-size: 140%;
    line-height: 120%;
  }
  BODY.la-academia .la-academia-block H2, BODY.la-academia .la-academia-block H3, BODY.la-academia .la-academia-block H4, BODY.la-academia .la-academia-block H5, BODY.la-academia .la-academia-block P {
    padding-right: 4vw;
  }
  BODY.la-academia .la-academia-block .w12 {
    width: 100%;
  }
  BODY.la-academia .la-academia-block .w12.desencaje {
    position: relative;
    right: 0;
    top: -8vh;
    z-index: -1;
    margin-bottom: -150px;
  }
  BODY.la-academia .la-academia-block .w12.image {
    padding: 4vw;
  }
  BODY.la-academia .la-academia-block.reverse {
    flex-direction: column;
  }
  BODY.la-academia .la-academia-block:last-of-type {
    padding-bottom: 0;
  }
  BODY.la-academia .la-academia-block p {
    font-size: 130%;
  }
  BODY.la-academia .la-academia-highlights {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  BODY.la-academia .la-academia-highlights .w14 {
    padding: 0 2vw;
    width: 100%;
  }
  BODY.la-academia .la-academia-highlights H2 {
    font-size: 320%;
    text-transform: uppercase;
    margin-top: 30px;
  }
  BODY.la-academia .la-academia-highlights H3 {
    font-size: 126%;
    line-height: 120%;
  }
  BODY.la-academia .la-academia-highlights A {
    font-weight: bold;
  }
  BODY.cursos .cursos-intro {
    text-align: center;
  }
  BODY.cursos .cursos-intro .cursos-intro-filtros {
    margin-top: 2vw;
    margin-top: 2vw;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  BODY.cursos .cursos-intro .cursos-intro-filtros A {
    font-size: 140%;
    margin-right: 0;
    display: flex;
    align-items: center;
    padding-top: 12px;
  }
  BODY.cursos .cursos-intro .cursos-intro-filtros A:hover {
    text-decoration: none;
  }
  BODY.cursos .cursos-intro .cursos-intro-filtros A.active {
    display: flex;
    align-items: center;
  }
  BODY.cursos .cursos-intro H2, BODY.cursos .cursos-intro H3 {
    width: 100%;
    line-height: 120%;
    margin: 0 0 30px;
  }
  BODY.cursos .cursos-intro h2 {
    line-height: 100%;
    margin: 0 0 15px;
  }
  BODY.cursos .cursos-listado .general-curso {
    width: 96%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  BODY.cursos .cursos-listado .general-curso H5 {
    line-height: 140%;
  }
  BODY.cursos .cursos-listado .lugar {
    width: auto;
    padding: 25px 20px 20px;
    position: absolute;
    font-size: 90%;
    font-weight: 600;
    text-transform: uppercase;
  }
  BODY.cursos-detalle .cursos-detalle-header {
    padding: 0;
    height: 40vh;
    position: relative;
    position: relative;
  }
  BODY.cursos-detalle .cursos-detalle-header .cursos-detalle-header-info {
    position: relative;
    z-index: 2;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2vw 2vw;
  }
  BODY.cursos-detalle .cursos-detalle-header .cursos-detalle-header-info H2 SPAN {
    display: block;
    line-height: 140%;
  }
  BODY.cursos-detalle .cursos-detalle-header .cursos-detalle-header-bckgrnd {
    position: absolute;
    top: 0;
    z-index: 1;
  }
  BODY.cursos-detalle .cursos-detalle-body {
    display: flex;
    flex-direction: column;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content {
    width: 100%;
    font-size: 120%;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text {
    padding-right: 8vw;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text H3 {
    font-size: 140%;
    line-height: 140%;
    margin-bottom: 4vw;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text H2 {
    font-weight: bold;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text A {
    font-weight: bold;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text P {
    line-height: 140%;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text OL, BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text UL {
    list-style-position: outside;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text LI {
    margin-top: 2vw;
    padding-top: 2vw;
    border-top: 1px solid #CCCCCC;
    line-height: 140%;
    counter-increment: item;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-text LI:before {
    content: counter(item);
    font-size: 200%;
    font-weight: 100;
    display: block;
    margin-bottom: 1vw;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-slider {
    margin: 2vw 0;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-content .cursos-detalle-body-slider IMG {
    height: 50vh;
    width: 90%;
    margin-right: 0.8vw;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info {
    border-top: 1px solid #000000;
    padding-top: 30px;
    margin: 60px 0 30px 0;
    position: sticky;
    width: 100%;
    font-size: 120%;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info H2 {
    font-weight: bold;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info H2:nth-of-type(2) {
    margin-top: 2vw;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info H3 {
    margin-top: 2vw;
    text-transform: uppercase;
    font-size: 140%;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info IMG {
    height: 30vh;
  }
  BODY.cursos-detalle .cursos-detalle-body .cursos-detalle-body-info A {
    display: block;
    line-height: 120%;
  }
  BODY.cursos-detalle .cursos-detalle-related H2 {
    font-size: 320%;
  }
  BODY.cursos-detalle .cursos-detalle-related .general-curso {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  BODY.equipo .equipo-intro {
    display: flex;
    flex-direction: column;
    font-size: 120%;
  }
  BODY.equipo .equipo-intro .w12 {
    position: relative;
    width: 100%;
  }
  BODY.equipo .equipo-intro H2 {
    font-size: 320%;
  }
  BODY.equipo .equipo-intro H3 {
    font-size: 140%;
    line-height: 140%;
  }
  BODY.equipo .equipo-intro P {
    line-height: 140%;
  }
  BODY.equipo .equipo-intro IMG {
    padding: 6vw 12vw;
    z-index: 10000;
    position: relative;
  }
  BODY.equipo .equipo-intro IMG.bckgrnd {
    position: absolute;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 1;
  }
  BODY.equipo .equipo-listado {
    display: flex;
    flex-wrap: wrap;
    font-size: 120%;
  }
  BODY.equipo .equipo-listado .equipo-listado-item {
    width: 100%;
    padding-right: 0;
    padding-top: 60px;
  }
  BODY.equipo .equipo-listado .equipo-listado-item IMG {
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
  }
  BODY.equipo .equipo-listado .equipo-listado-item H2 {
    margin: 2vw 0;
    font-weight: bold;
    font-size: 120%;
  }
  BODY.equipo .equipo-listado .equipo-listado-item A {
    text-decoration: underline;
  }
  BODY.horarios .horarios-intro, BODY.horarios .horarios-info {
    text-align: center;
    width: 100%;
    margin: auto;
    margin-bottom: 30px;
  }
  BODY.horarios .horarios-intro H2, BODY.horarios .horarios-info H2 {
    font-size: 320%;
    line-height: 100%;
  }
  BODY.horarios .horarios-intro H3, BODY.horarios .horarios-info H3 {
    font-size: 140%;
    line-height: 140%;
    margin-bottom: 30px;
  }
  BODY.horarios .horarios-intro h3.aviso-extra, BODY.horarios .horarios-info h3.aviso-extra {
    margin-bottom: 30px;
  }
  BODY.horarios .horarios-tabla {
    width: 100vw;
    overflow-x: auto;
  }
  BODY.horarios .horarios-tabla TABLE {
    text-align: center;
    width: 100%;
    line-height: 1;
  }
  BODY.horarios .horarios-tabla TABLE THEAD TH {
    font-weight: normal;
    text-transform: uppercase;
    font-size: 100%;
    padding: 0 5px;
    padding-bottom: 1vw;
  }
  BODY.horarios .horarios-tabla TABLE TBODY TR {
    border-top: 1px solid #000000;
  }
  BODY.horarios .horarios-tabla TABLE TBODY TR:last-of-type {
    border-bottom: 1px solid #000000;
  }
  BODY.horarios .horarios-tabla TABLE TBODY TD {
    width: 12.7vw;
    border-left: 1px solid #000000;
    min-height: auto;
    height: auto;
    padding: 0.8vw;
    font-size: 80%;
    border-collapse: collapse;
  }
  BODY.horarios .horarios-tabla TABLE TBODY TD span {
    font-size: 90%;
  }
  BODY.horarios .horarios-tabla TABLE TBODY TD span p {
    margin-bottom: 0;
  }
  BODY.horarios .horarios-tabla TABLE TBODY TH {
    width: 10vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  BODY.horarios .horarios-tabla TABLE STRONG {
    display: block;
  }
  BODY.horarios .horarios-tabla .curso-dot-1093 {
    background-color: #5355D1;
    border-radius: 25px;
    display: block;
    padding: 5px 10px;
    margin-bottom: 5px;
  }
  BODY.horarios .horarios-tabla .curso-dot-1095 {
    color: #000;
    border: 1px solid #000;
    border-radius: 25px;
    display: block;
    padding: 5px 10px;
    margin-bottom: 5px;
  }
  BODY.horarios .horarios-tabla .curso-dot-1094 {
    background-color: #F67048;
    border-radius: 25px;
    display: block;
    padding: 5px 10px 3px;
    margin-bottom: 5px;
  }
  BODY.apuntate .apuntate-content {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
  }
  BODY.apuntate .apuntate-content .apuntate-form {
    padding-right: 0;
    width: 90%;
  }
  BODY.apuntate .apuntate-content .apuntate-form H2 {
    font-size: 380%;
  }
  BODY.apuntate .apuntate-content .apuntate-form H3 {
    font-size: 140%;
    line-height: 140%;
  }
  BODY.apuntate .apuntate-content .apuntate-form P {
    margin-bottom: 10px;
    margin-top: 30px;
  }
  BODY.apuntate .apuntate-content .apuntate-form .apuntate-form-row {
    margin-bottom: 30px;
  }
  BODY.apuntate .apuntate-content .apuntate-form INPUT, BODY.apuntate .apuntate-content .apuntate-form SELECT {
    font-family: "DIN", Helvetica, Arial, sans-serif;
    background: none;
    border: none;
    color: #FFFFFF;
    padding: 0.4vw 0.8vw;
    font-size: 112%;
    font-size: 120%;
  }
  BODY.apuntate .apuntate-content .apuntate-form INPUT[type=text], BODY.apuntate .apuntate-content .apuntate-form SELECT {
    padding-left: 0;
    display: block;
    border-bottom: 1px solid #444444;
    width: 100%;
    margin-bottom: 2vw;
    margin: 15px 0;
  }
  BODY.apuntate .apuntate-content .apuntate-form INPUT[type=button] {
    transition: all 0.6s;
    border-radius: 25px;
    border: 1px solid #444444;
    color: #CCCCCC;
    margin-right: 0.8vw;
  }
  BODY.apuntate .apuntate-content .apuntate-form INPUT[type=button].active {
    background: #444444;
    color: #FFFFFF;
  }
  BODY.apuntate .apuntate-content .apuntate-form INPUT[type=submit] {
    border-radius: 25px;
    background: #FFFFFF;
    color: #000000;
    cursor: pointer;
    border: 1px solid #000000;
    transition: all 0.6s;
    padding: 10px 15px;
  }
  BODY.apuntate .apuntate-content .apuntate-form INPUT[type=submit]:hover {
    border-radius: 25px;
    background: #000000;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
  }
  BODY.apuntate .apuntate-content .apuntate-form *:focus {
    outline: none;
  }
  BODY.apuntate .apuntate-content .apuntate-form INPUT[type=radio] {
    display: none;
  }
  BODY.apuntate .apuntate-content .apuntate-form input[type=radio]:checked + label {
    background: #444444; /* Color de fondo cuando está activo */
    color: #FFFFFF; /* Color de texto cuando está activo */
    border-color: #444444; /* Cambia el color del borde */
    padding: 5px 15px;
  }
  BODY.apuntate .apuntate-content .apuntate-form label.button {
    border-radius: 25px;
    border: 1px solid #444444;
    color: #CCCCCC;
    margin-right: 0.8vw;
    padding: 5px 15px;
    font-size: 112%;
    cursor: pointer;
  }
  BODY.apuntate .apuntate-content .apuntate-form .form-enviado {
    margin-top: 1vw;
  }
  BODY.apuntate .apuntate-content .apuntate-form .form-enviado .box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  BODY.apuntate .apuntate-content .apuntate-form .form-enviado .box p {
    margin-bottom: 0 !important;
  }
  BODY.apuntate .apuntate-content .apuntate-form label {
    line-height: 120%;
  }
  BODY.apuntate .apuntate-content .apuntate-info {
    width: 100%;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  BODY.apuntate .apuntate-content .apuntate-info H2 {
    font-weight: bold;
  }
  BODY.apuntate .apuntate-content .apuntate-info H2:nth-of-type(2) {
    margin-top: 2vw;
  }
  BODY.apuntate .apuntate-content .apuntate-info A {
    line-height: 120%;
  }
  BODY.apuntate .apuntate-content .apuntate-info .button {
    width: fit-content;
  }
  BODY.alumnos .alumnos-form {
    text-align: center;
    width: 100%;
    margin: 0;
  }
  BODY.alumnos .alumnos-form H2 {
    font-size: 380%;
  }
  BODY.alumnos .alumnos-form H3 {
    font-size: 140%;
    line-height: 140%;
  }
  BODY.alumnos .alumnos-form INPUT {
    font-family: "DIN", Helvetica, Arial, sans-serif;
    background: none;
    border: none;
    color: #000000;
    padding: 0.4vw 0.8vw;
    font-size: 112%;
  }
  BODY.alumnos .alumnos-form INPUT[type=text], BODY.alumnos .alumnos-form INPUT[type=password] {
    display: block;
    border-bottom: 1px solid #CCCCCC;
    width: 100%;
    margin-bottom: 2vw;
  }
  BODY.alumnos .alumnos-form INPUT[type=submit] {
    background: #000000;
    color: #FFFFFF;
    border-radius: 25px;
    margin: 2vw 0;
    padding: 5px 15px;
  }
  BODY.alumnos .alumnos-form A {
    display: block;
    font-size: 80%;
    color: #444444;
    line-height: 140%;
  }
  BODY.alumnos .alumnos-form *:focus {
    outline: none;
  }
  BODY.alumnos .alumnos-content {
    text-align: center;
    width: 100%;
    margin: 0;
  }
  BODY.alumnos .alumnos-content H2 {
    font-size: 380%;
    width: 100%;
  }
  BODY.alumnos .alumnos-content H3 {
    font-size: 140%;
    width: 100%;
    line-height: 140%;
  }
  BODY.alumnos .alumnos-content A {
    text-decoration: underline;
  }
  BODY.alumnos .alumnos-cursos {
    width: 100%;
  }
  BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content {
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
  }
  BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content .alumnos-cursos-item-content-clase {
    width: 50%;
    padding-right: 0.8vw;
    display: block;
    margin-bottom: 30px;
  }
  BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content .alumnos-cursos-item-content-clase IMG {
    width: 100%;
    height: 30vh;
  }
  BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content .alumnos-cursos-item-content-clase H3 {
    line-height: 140%;
    margin-bottom: 0.6vw;
    margin-top: 0.8vw;
    padding-bottom: 0;
  }
  BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content .alumnos-cursos-item-content-clase H4 {
    color: #CCCCCC;
  }
  BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content h3.wfull {
    padding-bottom: 10px;
  }
  BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content .archivos {
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  BODY.alumnos .alumnos-cursos .alumnos-cursos-item .alumnos-cursos-item-content .archivos a {
    padding: 15px 15px;
    width: max-content;
  }
  BODY.alumnos .alumnos-cursos.no-suscrito {
    border-top: 1px solid #000;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  BODY .select2-search__field {
    height: max-content;
  }
  BODY .select2-container .select2-search--inline .select2-search__field {
    height: auto;
  }
}
@media (max-width: 768px) {
  BODY.negative HEADER .resp-menu .action-nav-mov span {
    background: #FFF;
  }
}
@media (max-width: 768px) {
  BODY HEADER .menu.open {
    background-color: #FFF;
  }
}

/*# sourceMappingURL=app.css.map */
