@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap");
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

h1,
h2 {
  font-weight: 700;
  padding-bottom: 0.4em;
  line-height: 1em;
}

h3 {
  font-weight: 700;
  font-size: 1.7em;
  color: #7b6cff;
}

h1 {
  font-size: 2.2em;
  text-align: center;
}
@media (max-width: 479px) {
  h1 {
    font-size: 1.6em;
  }
}

h2 {
  font-size: 2em;
  text-align: center;
  font-weight: 300;
}

ol,
ul {
  list-style: none;
}

p {
  margin-bottom: 1.5em;
}

img {
  width: 100%;
  height: auto;
}

body {
  font-family: Montserrat;
  font-size: calc(112.5% + 0.1vw);
  position: relative;
  color: #111111;
  line-height: 1.5em;
  overflow-x: hidden;
  text-align: justify;
}

a {
  color: #e35296;
}

section {
  padding: 0;
  margin: 0;
}

.minmax,
#cultural #columnasE,
#musical .bandeja {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  -ms-grid-columns: (minmax(max-content, 1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(-webkit-max-content, 1fr));
  grid-template-columns: repeat(auto-fit, minmax(max-content, 1fr));
}

.lineaLatP {
  padding-left: 1em;
}

.gridGeneral,
#who,
#cultural,
#musical,
#relativo,
#meet,
#comite,
#forma,
#fruit,
#board,
#courses,
footer,
footer .bandeja {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 10% 1fr 10%;
  grid-template-columns: 10% 1fr 10%;
}

.grid2col,
#who .bandeja,
#forma .bandeja,
#board .bandeja,
#contact {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.logocanta {
  width:500px;
}

@media (max-width: 1023px) {
  .grid2col,
  #who .bandeja,
  #forma .bandeja,
  #board .bandeja,
  #contact {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 479px) {
  .grid2col,
  #who .bandeja,
  #forma .bandeja,
  #board .bandeja,
  #contact {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .logocanta {
    width:300px;
  }
}

.menu-toggle {
  position: fixed;
  right: 2vh;
  top: 2vh;
  z-index: 520;
  width: 30px;
  height: 22px;
  background: transparent;
  border-top: 4px solid;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 4px solid;
  color: #de9031;
  font-size: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.menu-toggle:before,
.menu-toggle:after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

button.is-active {
  border-color: transparent;
  border-left: none;
}

button.is-active:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

button.is-active:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

button {
  border: none;
  cursor: pointer;
  outline: none;
  vertical-align: middle;
}

.anima,
.btn,
#menuFull #izq ul li,
#menuFull #derUl ul li a,
#inicio .btn,
#inicio #izq ul li,
#relativo #adela {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

@-webkit-keyframes menuAbierto {
  100% {
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
  0% {
    width: 100%;
    opacity: 0;
  }
}

@keyframes menuAbierto {
  100% {
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
  0% {
    width: 100%;
    opacity: 0;
  }
}

@-webkit-keyframes menuCerrado {
  100% {
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
  0% {
    width: 100%;
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes menuCerrado {
  100% {
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
  0% {
    width: 100%;
    opacity: 0;
    visibility: hidden;
  }
}

.btn {
  display: block;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: #e35296;
  padding: 0.5em 1em;
  text-align: center;
  border-radius: 5em;
  margin: 2em 1.5em;
}

.btn:hover {
  background: #2938a1;
}

@media (max-width: 479px) {
  .btn {
    margin: 1em 0.5em;
  }
}

#menuFull {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr;
  grid-template-columns: 1fr 3fr;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 500;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
}

#menuFull #izq {
  padding: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 120px;
}

@media (max-width: 479px) {
  #menuFull #izq {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    grid-column: 1/-1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #menuFull #izq #warner {
    width: 70px;
    display: none;
  }
  #menuFull #izq #logo {
    width: 7em;
    height: auto;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

#menuFull #izq ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

@media (max-width: 479px) {
  #menuFull #izq ul {
    margin-top: 0.5em;
  }
}

#menuFull #izq ul li {
  padding: 0.4em;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 70px;
}

@media (max-width: 479px) {
  #menuFull #izq ul li {
    max-width: 50px;
  }
}

#menuFull #izq ul li:hover {
  /* IE 9 */
  transform: rotate(-20deg);
  -webkit-transform: rotate(-20deg);
}

#menuFull #derUl {
  background: #2938a1 url(../img/copeteMenu.svg) no-repeat;
  background-position: -1px -5px;
  background-size: auto 101%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 479px) {
  #menuFull #derUl {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    grid-column: 1/-1;
    background: #2938a1 url(../img/copeteMenuCel.svg) no-repeat;
    background-position: left 100.3%;
  }
}

#menuFull #derUl ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 479px) {
  #menuFull #derUl ul {
    padding: 2em 0.5em;
  }
}

#menuFull #derUl ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 1.1em;
}

@media (max-width: 479px) {
  #menuFull #derUl ul li {
    margin-bottom: 0.5em;
  }
}

#menuFull #derUl ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: calc(112.5% + 0.5vw);
}

@media (max-width: 479px) {
  #menuFull #derUl ul li a {
    font-size: 1em;
  }
}

#menuFull #derUl ul li a:hover {
  color: #e35296;
  text-decoration: underline;
}

.menuFullAbierto {
  -webkit-animation: menuAbierto 1.2s ease forwards;
  animation: menuAbierto 1.2s ease forwards;
}

.desanimaMenu {
  animation: menuCerrado 1s ease forwards reverse;
}

#inicio {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr;
  grid-template-columns: 1fr 3fr;
}

@media (max-width: 479px) {
  #inicio {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

#inicio .btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: #e35296;
  padding: 0.5em 1em;
  text-align: center;
  border-radius: 5em;
  margin: 2em 1.5em;
}

#inicio .btn:hover {
  background: #2938a1;
}

#inicio #der {
  grid-column: 2/-1;
  min-width: 100%;
}

@media (max-width: 479px) {
  #inicio #der {
    grid-column: 1/-1;
  }
}

#inicio #der #sliderInicio img {
  margin-left: -1px;
}

#inicio #izq {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / span 1;
  padding: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 120px;
}

#inicio #izq ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

#inicio #izq ul li {
  padding: 0.4em;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 70px;
}

#inicio #izq ul li:hover {
  /* IE 9 */
  transform: rotate(-20deg);
  -webkit-transform: rotate(-20deg);
}

@media (max-width: 479px) {
  #inicio #izq {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    grid-column: 1/-1;
  }
  #inicio #izq #logo {
    max-width: 60%;
    height: auto;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

#who {
  padding: 0 15%;
  min-height: 100vh;
}

@media (max-width: 479px) {
  #who {
    padding: 0%;
  }
}

#who img {
  grid-column: 1 / -1;
  margin-bottom: -2px;
}

#who .bandeja {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
}

#who .bandeja h1 {
  margin-top: 2em;
  color: #2938a1;
}

#who .bandeja h1,
#who .bandeja h2 {
  grid-column: 1/-1;
}

#who #a,
#who #b {
  position: relative;
}

@media (max-width: 479px) {
  #who #a,
  #who #b {
    padding: 1em;
  }
}

#who #a h2,
#who #b h2 {
  color: #fffb21;
  font-size: 3em;
  font-weight: 700;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

@media (max-width: 479px) {
  #who #a h2,
  #who #b h2 {
    display: none;
  }
}

@media (max-width: 1023px) {
  #who #a h2,
  #who #b h2 {
    display: none;
  }
}

@media (min-width: 1600px) {
  #who #a h2,
  #who #b h2 {
    bottom: 10%;
  }
}

#who #b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 1023px) {
  #who #b {
    margin-top: 0;
  }
}

#who #b h2 {
  top: 15% !important;
}

@media (max-width: 479px) {
  #who #b {
    margin-top: 0 !important;
    display: block;
  }
}

/* @supports (-webkit-touch-callout: none) {
  #who {
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(30%, #7b6cff),
      to(#3a2cb8)
    );
    background: linear-gradient(180deg, #7b6cff 30%, #3a2cb8 100%);
  }
} */

#cultural img {
  grid-column: 1 / -1;
}

#cultural #columnasE {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#cultural #columnasE img {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
  padding: 1em;
}

@media (max-width: 479px) {
  #cultural #columnasE img {
    grid-column: 1/-1;
    padding: 0 !important;
  }
}

@media (max-width: 1023px) {
  #cultural #columnasE img {
    padding: 1em 5em;
    grid-column: 1/ -1;
  }
}

#cultural #columnasE p {
  grid-column: 3/ -1;
}

@media (max-width: 479px) {
  #cultural #columnasE p {
    grid-column: 1/-1;
  }
}

@media (max-width: 1023px) {
  #cultural #columnasE p {
    grid-column: 1/-1;
  }
}

#cultural .bandeja {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  display: inherit;
}

#cultural .bandeja p {
  padding: 0em 15%;
}

@media (max-width: 479px) {
  #cultural .bandeja p {
    padding: 1em 1em 0;
  }
}

#cultural .bandeja h1 {
  margin-top: 2em;
  color: #e35296;
}

@media (max-width: 479px) {
  #cultural .bandeja h1 {
    margin-top: 1em;
  }
}

@media (max-width: 1023px) {
  #cultural .bandeja h1 {
    margin-top: 0.5em;
  }
}

#cultural .bandeja h1,
#cultural .bandeja h2 {
  grid-column: 1/-1;
}

#cultural .bandeja h2 {
  margin-bottom: 2em;
}

#cultural #baseBlanca {
  transform: translateY(2px);
  -webkit-transform: translateY(2px);
}

#musical {
  margin-bottom: 4em;
  margin-top: 5em;
}

#musical .bandeja {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
}

#musical .bandeja h1 {
  color: #e35296;
  grid-column: 1/-1;
}

#musical .bandeja img {
  grid-column: 1/-1;
}

#musical .bandeja .a {
  grid-column: 1 / -1;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

#musical .bandeja .b {
  grid-column: 1 / -1;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-bottom: 6em;
}

#musical h3,
#musical p {
  -ms-grid-column: 2;
  grid-column: 2;
}

#musical #videoMusical {
  grid-column: 1/-1;
  position: relative;
}

#musical #videoMusical:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 200px;
  background: url("../img/copeteVideo.svg") no-repeat 0% -5px;
  z-index: 900;
}

#musical #videoMusical:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 200px;
  background: url("../img/baseVideo.svg") no-repeat 100% 102%;
  z-index: 900;
  bottom: -2px;
}

#musical span {
  color: #de9031;
  font-style: italic;
}

#musical .c,
#musical .d {
  grid-column: 1/-1;
  margin-top: 5em;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#musical .c .flexLogoU,
#musical .d .flexLogoU {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#musical .c .flexLogoU img,
#musical .d .flexLogoU img {
  width: 50%;
  height: auto;
}

@media (max-width: 479px) {
  #musical .c .flexLogoU img,
  #musical .d .flexLogoU img {
    width: 70%;
    padding-bottom: 1em;
  }
}

@media (max-width: 479px) {
  #musical .c .flexLogoU,
  #musical .d .flexLogoU {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
}

#musical .c .lineaLatP,
#musical .d .lineaLatP {
  margin: 2.5em;
}

#musical .c {
  padding-right: 7%;
}

@media (max-width: 479px) {
  #musical .c {
    padding-right: 0%;
  }
}

#musical .d {
  padding-left: 7%;
}

@media (max-width: 479px) {
  #musical .d {
    padding-left: 0%;
  }
  #musical .d .lineaLatP {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

#musical .e {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
}

#musical .e h3 {
  margin: 0em 0 4em;
}

@media (max-width: 479px) {
  #musical .e p {
    padding-right: 0%;
  }
}

#musical .finMusical .lineaLatP {
  grid-column: 1 / -1;
}

@media (max-width: 479px) {
  #musical .finMusical .lineaLatP {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1023px) {
  #musical .finMusical .lineaLatP {
    grid-column: 1/-1;
  }
}

@media (min-width: 1600px) {
  #musical .finMusical .lineaLatP {
    -ms-grid-column: 2;
    -ms-grid-column-span: 4;
    grid-column: 2 / 6;
  }
}

#musical #boton {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#relativo {
  grid-column: 1/-1;
  position: relative;
}

#relativo #adela {
  position: absolute;
  width: 80px;
  height: 80px;
  right: 7%;
  top: 50%;
  z-index: 500;
  margin-top: -40px;
}

@media (max-width: 479px) {
  #relativo #adela {
    display: none;
    width: 50px;
    height: 50px;
    top: auto;
    bottom: 3.5%;
    left: 50%;
  }
}

#relativo #adela:hover {
  transform: rotate(-25deg);
  -webkit-transform: rotate(-25deg);
}

#sliderMusical {
  grid-column: 2/-1;
  margin: 3em 0;
  position: relative;
}

@media (max-width: 479px) {
  #sliderMusical {
    grid-column: 1/-1;
  }
}

#sliderMusical .recuadro {
  grid-column: 1/-1;
  background-color: #de9031;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5%;
  border-radius: 5em 0 0 5em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 2px;
}

@media (max-width: 479px) {
  #sliderMusical .recuadro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#sliderMusical .recuadro .numero {
  color: #fffb21;
  font-weight: 700;
  padding: 0.8em;
  font-size: 4.5em;
}

#sliderMusical .recuadro .texto {
  padding-right: 20%;
}

@media (max-width: 479px) {
  #sliderMusical .recuadro .texto {
    padding: 0 10%;
  }
}

#sliderMusical .recuadro .texto span {
  color: #fffb21;
  font-weight: bold;
  font-style: normal;
}

.logosExtras {
  padding-top: 3em;
  margin: 0 auto;
  max-width: 250px;
  height: auto;
  padding: 1em;
}

.slider {
  grid-column: 1/-1;
  padding: 5em 0;
}

#meet h1 {
  color: #e35296;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  margin-top: 2em;
}

#meet h2 {
  color: #2938a1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  margin-bottom: 2em;
}

#meet .bandeja {
  display: inherit;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [5];
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1023px) {
  #meet .bandeja {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  #meet .bandeja {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

#meet .nino {
  background-color: #fff;
  color: #2938a1;
  text-align: center;
  padding: 1em;
  margin: 0.8em;
  border-radius: 20vh;
}

#meet .nino:last-child {
  margin-bottom: 5em;
}

#meet .nino:nth-child(5n + 1) {
  transform: none;
  -webkit-transform: none;
}

#meet .nino:nth-child(5n + 2) {
  transform: translateY(4em);
  -webkit-transform: translateY(4em);
}

#meet .nino:nth-child(5n + 3) {
  transform: none;
  -webkit-transform: none;
}

#meet .nino:nth-child(5n + 4) {
  transform: translateY(4em);
  -webkit-transform: translateY(4em);
}

#meet .nino:nth-child(5n + 5) {
  transform: none;
  -webkit-transform: none;
}

@media (max-width: 1023px) {
  #meet .nino:nth-child(2n + 1) {
    transform: none;
    -webkit-transform: none;
  }
  #meet .nino:nth-child(2n + 2) {
    transform: translateY(4em);
    -webkit-transform: translateY(4em);
  }
}

@media (max-width: 479px) {
  #meet .nino:nth-child(2n + 1) {
    transform: none;
    -webkit-transform: none;
  }
  #meet .nino:nth-child(2n + 2) {
    transform: none;
    -webkit-transform: none;
  }
}

#meet .nino img {
  -ms-clip-path: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  max-width: 300px;
}

#meet .nino .pais {
  color: #de9031;
  font-size: 1.1em;
  font-weight: bold;
  padding: 0.8em 0;
}

#meet .nino .pais .flag {
  width: 30px;
  height: auto;
}

#meet .nino .nombre {
  font-size: 1em;
  padding-bottom: 0.5em;
  font-weight: bold;
}

#meet .nino .des {
  border-top: 1px solid #fff;
}

#meet .nino .des img {
  margin-top: 0.5em;
  max-width: 40px;
  height: auto;
  -webkit-clip-path: none;
  clip-path: none;
}

#comite {
  margin: 0;
  background-color: #2938a1;
  grid-template-columns: 15% 1fr 15% !important;
}

#comite h1 {
  color: #fff;
  grid-column: 1/-1;
  padding: 1em 0;
}

#comite img {
  grid-column: 1/-1;
  width: 100%;
}

#comite img:first-child {
  margin-top: -1px;
}

#comite img:last-child {
  margin-bottom: -2px;
}

#comite .bandeja {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#comite p {
  color: #fff;
}

#comite .elcomite {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1em;
  text-align: center;
}

#comite .elcomite img {
  -ms-clip-path: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  max-width: 250px;
}

@media (max-width: 479px) {
  #comite .elcomite img {
    max-width: 100px;
  }
}

#comite .elcomite h3 {
  color: #fff;
}

#forma {
  margin-top: 8em;
}

#forma h1 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  padding-bottom: 2em;
  color: #e35296;
}

#forma h2 {
  color: #de9031;
  font-weight: bold;
  font-size: 1.3em;
  margin-bottom: 2em;
}

#forma .bandeja {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  display: -ms-grid;
  display: grid;
}

#forma .bandeja #canciones {
  color: #2938a1;
  padding: 0 3em;
}

@media (max-width: 479px) {
  #forma .bandeja #canciones {
    padding: 0;
  }
}

@media (max-width: 1023px) {
  #forma .bandeja #canciones {
    padding: 0 1em 0;
  }
}

#forma .bandeja #canciones ul {
  margin-bottom: 3em;
}

@media (max-width: 479px) {
  #forma .bandeja #canciones ul li {
    padding-bottom: 0.5em;
  }
}

#forma .bandeja #canciones #album {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

@media (max-width: 479px) {
  #forma .bandeja #canciones #album {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0em;
  }
}

@media (max-width: 1023px) {
  #forma .bandeja #canciones #album {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0em;
  }
}

#forma .bandeja #canciones #album img {
  padding: 0.1em;
  margin-top: 1em;
}

@media (max-width: 479px) {
  #forma .bandeja #canciones #album img {
    padding: 0;
  }
}

#forma .bandeja #canciones #album #stream {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 479px) {
  #forma .bandeja #canciones #album #stream {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}

#forma .bandeja #canciones #album #stream p,
#forma .bandeja #canciones #album #stream h3 {
  grid-column: 1/-1;
  color: #de9031;
  font-weight: bold;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding: 0.5em 0;
}

#forma .bandeja #canciones #album #stream a {
  padding: 0.3em;
  -webkit-box-flex: 1;
  -ms-flex: 1 3 auto;
  flex: 1 3 auto;
}

@media (min-width: 1600px) {
  #forma .bandeja #canciones #album #stream a {
    display: block;
    max-width: 200px;
    padding: 0.8em;
    height: 6.5em;
  }
}

#forma .bandeja #formulario {
  border-left: solid 3px #de9031;
  padding: 0 3em;
  position: relative;
}

@media (max-width: 479px) {
  #forma .bandeja #formulario {
    padding: 0;
    border-left: none;
  }
}

.condiciones,
.condiciones1 {
  position: absolute;
  top: 70%;
  left: 0%;
  width: 100%;
  height: 250px;
  overflow-y: scroll;
  background: #2938a1;
  color: #fff;
  padding: 1em;
  border: #de9031 solid 3px;
  visibility: hidden;
}

.condiciones h2,
.condiciones1 h2 {
  font-size: 1.2em !important;
  color: #fff !important;
  text-align: left !important;
  padding-top: 0.3em !important;
  margin-bottom: 0 !important;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input,
textarea {
  background: #2938a1;
  border: none;
  padding: 0.5em;
  color: #fff;
  font-size: 1.1em;
  margin: 0 0 1em;
  border-radius: 0.7em;
  width: 100%;
}

input[type="submit"] {
  background: #de9031;
}

::-webkit-input-placeholder {
  color: #fff;
}

:-ms-input-placeholder {
  color: #fff;
}

::-ms-input-placeholder {
  color: #fff;
}

::placeholder {
  color: #fff;
}

#fruit {
  margin-bottom: 7em;
}

#fruit img {
  grid-column: 1 / -1;
  margin-bottom: -2px;
}

#fruit h1 {
  color: #e35296;
  margin: 3em 0 2em 0;
  grid-column: 1/-1;
}

@media (max-width: 479px) {
  #fruit h1 {
    margin: 1em;
  }
}

#fruit .bandeja {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  display: inherit;
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1023px) {
  #fruit .bandeja {
    padding: 0 3em;
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 479px) {
  #fruit .bandeja {
    padding: 0 1em;
    text-align: center;
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
  }
}

#fruit .bandeja #txt {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2 / span 2;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding-bottom: 2em;
}

#fruit .bandeja p {
  padding: 0 1em;
}

@media (max-width: 1023px) {
  #fruit .bandeja p {
    padding-right: none;
  }
}

@media (max-width: 479px) {
  #fruit .bandeja p {
    padding: 0em;
  }
}

#fruit .bandeja img {
  padding: 0 2em;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3 / span 2;
}

@media (max-width: 1023px) {
  #fruit .bandeja img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
  }
}

@media (max-width: 479px) {
  #fruit .bandeja img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
  }
}

#fruit .bandeja img:last-child {
  grid-column: 1/-1;
  -webkit-transform: translateY(-150px);
  transform: translateY(-150px);
  padding: 0 15% 2em;
}

@media (min-width: 1024px) and (max-width: 1599px) {
  #fruit .bandeja img:last-child {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media (max-width: 1023px) {
  #fruit .bandeja img:last-child {
    grid-column: 1/-1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    padding: 1em 0;
  }
}

@media (max-width: 479px) {
  #fruit .bandeja img:last-child {
    grid-column: 1/-1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    padding: 0;
  }
}

#board {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(30%, #2938a1),
    to(#051459)
  );
  background: linear-gradient(180deg, #2938a1 30%, #051459 100%);
  color: #fff;
}

#board img {
  grid-column: 1 / -1;
  margin-bottom: -2px;
}

#board h1 {
  margin: 2em 0;
  grid-column: 1/-1;
}

#board .bandeja {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  display: inherit;
}

#board .bandeja img {
  -ms-clip-path: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  max-width: 150px;
}

#board .bandeja .director {
  margin-top: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 479px) {
  #board .bandeja .director {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

#board .bandeja .director .txt {
  padding: 1em;
  height: auto;
}

#board .bandeja .director .txt p {
  margin-bottom: 0;
}

#board .bandeja .director h3 {
  color: #fff;
  font-weight: bold;
}

#courses h1,
#courses h2 {
  color: #e35296;
  grid-column: 1/-1;
}

@media (max-width: 479px) {
  #courses h1 {
    margin-top: 3em;
  }
}

#courses h2 {
  margin-bottom: 4em;
}

#courses #loscursos {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 1023px) {
  #courses #loscursos {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 479px) {
  #courses #loscursos {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

#courses #loscursos .curso {
  position: relative;
  border-radius: 2em;
  padding: 1em 1em 2em;
  background-color: #e35296;
  margin: 1em;
  color: #fff;
  text-align: center;
  font-size: 0.9em;
}

#courses #loscursos .curso h3 {
  color: #fff;
  border-bottom: solid 1px #fff;
  padding: 0.5em;
  margin-bottom: 0.5em;
}

@media (max-width: 479px) {
  #courses #loscursos .curso h3 {
    font-size: 1.2em;
  }
}

#courses #loscursos .curso img {
  position: absolute;
  max-width: 70px;
  top: -5em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

@media (min-width: 1024px) and (max-width: 1599px) {
  #courses #loscursos .curso h3 {
    font-size: 1.2em;
  }
}

@media (max-width: 1023px) {
  #courses #loscursos .curso {
    margin-top: 5em;
  }
  #courses #loscursos .curso:last-child {
    margin-top: 5em;
  }
  #courses #loscursos .curso:first-child {
    margin-top: 2em;
  }
}

@media (max-width: 479px) {
  #courses #loscursos .curso {
    margin-top: 5em;
  }
  #courses #loscursos .curso:first-child {
    margin-top: 2em;
  }
}

#courses p {
  border-top: solid 1px #e35296;
  text-align: center;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  padding: 2em;
  margin-top: 2em;
}

#diplomatic h1 {
  color: #e35296;
  margin-top: 3em;
}

#diplomatic img {
  margin-bottom: -15px;
}

#contact {
  position: relative;
  display: -ms-grid;
  display: grid;
}

@media (max-width: 479px) {
  #contact {
    margin-top: 3em;
  }
}

#contact h1 {
  color: #e35296;
}

#contact #portada {
  border-radius: 0 10vw 10vw 0;
  background: url(../img/contactoLat.jpg) no-repeat;
  background-size: 50%;
  background-position: left center;
  background-attachment: fixed;
}

@supports (-webkit-touch-callout: none) {
  #contact #portada {
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
  }
}

@media (max-width: 1023px) {
  #contact #portada {
    min-height: 40vh;
    border-radius: 0em;
    margin-bottom: 3em;
    background-size: cover;
  }
}

@media (max-width: 479px) {
  #contact #portada {
    min-height: 40vh;
    border-radius: 0em;
    margin-bottom: 3em;
    background-position: center center;
    background-attachment: scroll;
  }
}

#contact #contacto {
  padding: 0 20%;
}

#contact #contacto p {
  color: #7b6cff;
  font-weight: bold;
  padding-bottom: 0.5em;
  border-bottom: solid 2px #de9031;
}

footer img {
  grid-column: 1/-1;
  -ms-grid-column-align: center;
  justify-self: center;
  margin-bottom: -2px;
}

footer .logoPie {
  max-width: 150px;
  margin-top: 10em;
}

footer .bandeja {
  grid-column: 1/-1;
  display: inherit;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(30%, #de9031),
    to(#e66b3d)
  );
  background: linear-gradient(180deg, #de9031 30%, #e66b3d 100%);
}

footer .bandeja .bandejaul {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  border-top: solid 1px #fff;
}

footer .bandeja .bandejaul #payments {
  padding: 2em 35%;
}

@media (max-width: 479px) {
  footer .bandeja .bandejaul #payments {
    padding: 2em 0%;
  }
}

@media (max-width: 1023px) {
  footer .bandeja .bandejaul #payments {
    padding: 2em 15%;
  }
}

footer .bandeja #newsletter,
footer .bandeja ul,
footer .bandeja h1,
footer .bandeja p {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
}

footer .bandeja #newsletter {
  padding: 0 25%;
  margin: 3em 0;
}

@media (max-width: 479px) {
  footer .bandeja #newsletter {
    padding: 0 0.5em;
    font-size: 0.7em;
  }
}

footer .bandeja #newsletter #campoNews,
footer .bandeja #newsletter #mc_embed_signup_scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .bandeja #newsletter #campoNews input[type="email"],
footer .bandeja #newsletter #mc_embed_signup_scroll input[type="email"] {
  -webkit-box-flex: 3;
  -ms-flex: 3 0 600px;
  flex: 3 0 600px;
  border-radius: 1em 0 0 1em;
}

footer .bandeja #newsletter #campoNews input[type="submit"],
footer .bandeja #newsletter #mc_embed_signup_scroll input[type="submit"] {
  background: #2938a1;
  color: #fff;
  cursor: pointer;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  border-radius: 0 1em 1em 0;
}

footer .bandeja #newsletter .mc-field-group {
  min-width: 150px;
  width: 80%;
}

footer .bandeja #newsletter #mc_embed_signup {
  width: 100%;
}

footer .bandeja #newsletter #mc_embed_signup form {
  width: 100%;
}

footer .bandeja #newsletter h3 {
  color: #fff;
  text-align: center;
  padding: 1em 0;
}

footer .bandeja #newsletter input {
  background: #fff;
  color: #2938a1;
}

footer .bandeja ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
  padding: 2em 0;
}

@media (max-width: 479px) {
  footer .bandeja ul {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1600px) {
  footer .bandeja ul li {
    max-width: 85%;
  }
}

footer .bandeja #payments li {
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

footer .bandeja #payments li img {
  max-width: 50px;
}

footer .bandeja p {
  color: #fff;
  text-align: center;
  font-size: 0.8em;
}

footer .bandeja h1 {
  color: #fff;
  margin-bottom: 1em;
}

.video {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#msj,
#msjVideo {
  color: #de9031;
  font-weight: bold;
  font-size: 1.1em;
}

#msjVideo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 11px;
}

#msjVideo p {
  font-weight: bold;
  font-size: 1.1em;
  padding: 0.5em;
  margin-bottom: 0;
}

.lds-ring {
  position: relative;
  width: 80px;
  height: 80px;
  display: none;
}

.mostrarSpin {
  display: inline-block;
}

.lds-ring div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #de9031 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
  animation-delay: -0.15s;
}

@-webkit-keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#demo {
  margin-top: 5em;
  grid-column: 1/-1;
}

#mundo {
  grid-column: 1/-1;
  margin-top: 5em;
  height: 5000px;
  z-index: 0;
}

#mundo img {
  min-height: 100%;
  width: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.terminos a {
  color: #fff;
}

.letras h1 {
  margin-top: 0em !important;
  color: #2938a1;
  font-size: 2.5em;
}

@media (max-width: 479px) {
  .letras h1 {
    font-size: 2em;
  }
}
/*# sourceMappingURL=style.css.map */
h5 {
  color: #fff;
  font-style: oblique;
  margin-top: 5px;
}
.zeke {
  font-size: calc(66% + 0.3vw);
  margin-top: 40px;
}
#copeteMeet {
  grid-column: 1 / -1;
}
@media (max-width: 479px) {
  #inicio #izq {
    padding-top: 3em !important;
  }
  #who h1 {
    margin-top: 0 !important;
  }
  #cultural .bandeja h2 {
    margin-bottom: 0.5em !important;
    font-size: 1.3em !important;
  }
  #cultural {
    margin-top: 1em !important;
  }
  #courses h1 {
    margin-top: 0 !important;
  }
  #courses h2 {
    /* margin-bottom: 0 !important; */
    font-size: 1.3em !important;
  }
  #diplomatic h1 {
    margin: 1.5em 0 0 0 !important;
  }
  #diplomatic .slider {
    padding: 2em 0 !important;
  }
  #musical .slider {
    padding: 2em 0px !important;
  }
  #meet .nino:last-child {
    margin-bottom: 1em !important;
  }
  .owl-dots {
    display: none;
  }
  #cookie1 {
    height: 24vh;
  }
  #esqIma {
    display: none !important;
  }
  #celIma{
    display: block!important;
  }

}

#celIma{
  display: none;
}
