/**
* Template Name: CELS
* Author: M5 ESTUDIO DEV
*/

/*--------------------------------------------------------------
# Imports
--------------------------------------------------------------*/

@import url("../fonts/barlow/style.css");

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  scroll-behavior: smooth;
  --color-dark: #000000;
  --color-grey: #999999;
  --color-white: #ffffff;
  --color-violet: #8b8eff;
  --color-green: #1dff00;
  --plyr-color-main: #1dff00;
}

body {
  font-family: "barlow_semi_condensedsemibold", sans-serif;
}

a {
  color: var(--color-green);
  text-decoration: none;
}

a:hover {
  color: var(--color-white);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "barlow_semi_condensedbold", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-violet);
  border-top-color: #c5c6ff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  [data-aos] {
    pointer-events: auto !important;
  }

  html:not(.no-js) [data-aos^="fade"][data-aos^="fade"] {
    opacity: 1 !important;
  }
}

/*--------------------------------------------------------------
# Background Image Full Screen
--------------------------------------------------------------*/
.bg-image {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, 0) 85%,
      rgba(0, 0, 0, 0.65) 100%),
    url("../img/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: auto;
}

@media only screen and (max-width: 768px) {
  .bg-image {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.1) 75%,
        rgba(0, 0, 0, 0.1) 85%,
        rgba(0, 0, 0, 0.65) 100%),
      url("../img/hero-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: auto;
  }
}

/*--------------------------------------------------------------
# Estructura
--------------------------------------------------------------*/
.content {
  width: 100%;
  height: 100%;
  padding: 50px 100px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

@media only screen and (max-width: 1920px) and (min-width: 1440px) {
  .content {
    width: 100%;
    height: 100%;
    padding: 50px;
  }
}

@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .content {
    width: 100%;
    height: 100%;
    padding: 40px;
  }
}

@media only screen and (max-width: 991px) and (min-width: 769px) {
  .content {
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
}

@media only screen and (max-width: 768px) and (min-width: 426px) {
  .content {
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
}

@media only screen and (max-width: 425px) {
  .content {
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
  }
}

.left,
.right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/*--------------------------------------------------------------
# Home Left
--------------------------------------------------------------*/
.social {
  display: flex;
  flex-direction: column;
}

.social a {
  font-size: 30px;
  color: var(--color-green);
  line-height: 1;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  height: 50px;
  transition: 0.3s;
}

.social a:hover {
  background: var(--color-green);
  color: var(--color-white);
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .social {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}

.info {
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 768px) {
  .info {
    margin: 200px 0 50px 0;
  }
}

@media only screen and (max-width: 425px) {
  .info {
    margin: 150px 0 50px 0;
  }
}

@media only screen and (max-width: 320px) {
  .info {
    margin: 100px 0 50px 0;
  }
}

.info h1 {
  font-family: "barlow_semi_condensedbold", sans-serif;
  margin: 0;
  font-size: 134px;
  line-height: 1;
  color: var(--color-violet);
  word-wrap: break-word;
}

.info h2 {
  font-family: "barlow_semi_condensedsemibold", sans-serif;
  color: var(--color-white);
  margin: 10px 0 20px 0;
  font-size: 30px;
  line-height: 1.2;
  word-wrap: break-word;
}

.info h2 span {
  color: var(--color-violet);
}

.info h4 {
  font-family: "barlow_semi_condensedsemibold", sans-serif;
  color: var(--color-green);
  margin: 0 auto 0 0;
  font-size: 24px;
  line-height: 24px;
  cursor: pointer;
  transition: 0.5s;
  word-wrap: break-word;
}

.info h4:hover {
  color: var(--color-white);
}

.info p {
  font-family: "barlow_semi_condensedmedium", sans-serif;
  color: var(--color-violet);
  margin-top: 50px;
  font-size: 16px;
  line-height: 18px;
  word-wrap: break-word;
}

@media only screen and (max-width: 1680px) and (min-width: 1441px) {
  .info h1 {
    font-size: 100px;
    line-height: 1;
  }

  .info h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .info h4 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1440px) and (min-width: 1367px) {
  .info h1 {
    font-size: 96px;
    line-height: 1;
  }

  .info h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .info h4 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1366px) and (min-width: 1025px) {
  .info h1 {
    font-size: 74px;
    line-height: 1;
  }

  .info h2 {
    font-size: 21px;
    line-height: 1.2;
  }

  .info h4 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1024px) {
  .info h1 {
    font-size: 74px;
    line-height: 1;
  }

  .info h2 {
    font-size: 21px;
    line-height: 1.2;
  }

  .info h4 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .info h1 {
    font-size: 90px;
    line-height: 1;
  }

  .info h2 {
    font-size: 21px;
    line-height: 1.2;
  }

  .info h4 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 425px) {
  .info h1 {
    font-size: 46px;
    line-height: 1;
  }

  .info h2 {
    font-size: 19px;
    line-height: 1.2;
  }

  .info h4 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 375px) {
  .info h1 {
    font-size: 44px;
    line-height: 1;
  }

  .info h2 {
    font-size: 16px;
    line-height: 1.2;
  }

  .info h4 {
    font-size: 15px;
  }
}

@media only screen and (max-width: 320px) {
  .info h1 {
    font-size: 34px;
    line-height: 1;
  }

  .info h2 {
    font-size: 13px;
    line-height: 1.2;
  }

  .info h4 {
    font-size: 12px;
  }

  .info p {
    font-size: 13px;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Home Right
--------------------------------------------------------------*/
.links {
  display: flex;
  flex-direction: column;
}

.content-movie {
  position: relative;
  width: 100%;
  height: 340px;
  /*--background: url('../img/cover-movie-cs.jpg') center center;--*/
  background: url("../img/cover-movie.jpg") center center;
  background-size: cover;
  box-shadow: 0px 0 25px 0 rgb(0 0 0 / 10%);
  padding: 10px;
  border: 10px solid var(--color-white);
  z-index: 999;
}

@media only screen and (max-width: 1440px) {
  .content-movie {
    height: 240px;
  }
}

@media only screen and (max-width: 768px) {
  .content-movie {
    height: 397px;
  }
}

@media only screen and (max-width: 425px) {
  .content-movie {
    height: 200px;
  }
}

@media only screen and (max-width: 320px) {
  .content-movie {
    height: 135px;
  }
}

.movie-select {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background: var(--color-white);
  border-radius: 0 0 20px 20px;
  padding: 15px 10px;
  margin: 0 auto 20px auto;
  z-index: 99;
}

.open-video a {
  font-family: "barlowbold", sans-serif;
  font-size: 15px;
  color: var(--color-black);
  background: var(--color-green);
  border-radius: 5px;
  line-height: 1;
  padding: 5px 10px;
  text-align: center;
  transition: 0.3s;
}

.open-video a:hover {
  color: var(--color-white);
  background: var(--color-violet);
  text-decoration: none;
}

@media only screen and (max-width: 1440px) and (min-width: 769px) {
  .open-video {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .open-video a {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 10px;
  }

  .open-video a:hover {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .open-video {
    display: flex;
    justify-content: space-around;
    width: 100%;
  }
}

@media only screen and (max-width: 425px) {
  .open-video {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .open-video a {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .open-video a:hover {
    width: 100%;
  }
}

@media only screen and (max-width: 320px) {
  .open-video a {
    font-size: 12px;
  }
}

.content-doc,
.content-gallery {
  width: 100%;
  height: auto;
  background: var(--color-white);
  box-shadow: 0px 0 25px 0 rgb(0 0 0 / 10%);
  padding: 10px;
}

.content-doc a:hover,
.content-gallery a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 425px) {
  .content-doc {
    margin-bottom: 20px;
  }
}

.sponsors {
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 768px) {
  .sponsors {
    margin: 100px 0 50px 0;
  }
}

.sponsor-text h5 {
  font-family: "barlow_semi_condensedmedium", sans-serif;
  font-size: 16px;
  color: var(--color-white);
  line-height: 32px;
  text-align: right;
}

@media only screen and (max-width: 1440px) {
  .sponsor-text h5 {
    font-size: 10px;
    line-height: 1;
    text-align: right;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .sponsor-text h5 {
    font-size: 17px;
    line-height: 1;
    text-align: right;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 425px) {
  .sponsor-text h5 {
    font-size: 12px;
    line-height: 1;
    text-align: right;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 320px) {
  .sponsor-text h5 {
    font-size: 10px;
  }
}

.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cels img {
  width: 100%;
  max-height: 50px;
}

.mdr img {
  width: 100%;
  max-height: 100px;
  padding-left: 30px;
}

.ela img {
  width: 100%;
  max-height: 75px;
  padding-left: 30px;
}

.ffnu img {
  width: 100%;
  max-height: 100px;
  padding-left: 30px;
}

@media only screen and (max-width: 425px) {
  .sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cels img {
    width: 100%;
    max-height: 35px;
    padding: 0 5px;
  }

  .mdr img {
    width: 100%;
    max-height: 80px;
    padding: 0 5px;
  }

  .ela img {
    width: 100%;
    max-height: 60px;
    padding: 0 5px;
  }

  .ffnu img {
    width: 100%;
    max-height: 80px;
    padding: 0 5px;
  }
}

/*--------------------------------------------------------------
# Video Play
--------------------------------------------------------------*/
.play-btn {
  width: 60px;
  height: 60px;
  background: radial-gradient(var(--color-white) 50%,
      rgba(255, 255, 255, 0.5) 50%);
  border-radius: 50%;
  display: block;
  position: absolute;
  right: 10px;
  top: 20px;
  overflow: hidden;
}

.play-btn:before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.7);
  top: 0%;
  left: 0%;
  background: rgba(255, 255, 255, 0);
}

.play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--color-green);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--color-white);
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.play-btn:hover:after {
  border-left: 12px solid var(--color-green);
  transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Background Informacion Full Screen
--------------------------------------------------------------*/
.bg-informacion {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #e8e8ff;
  overflow: auto;
}

.left-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-white);
  padding: 75px;
}

.content-info {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 1440px) {
  .content-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    overflow: auto;
  }

  .left-info {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 1024px) {
  .left-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-white);
    padding: 50px;
  }

  .content-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    overflow: auto;
  }

  .left-info {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .left-info {
    margin-bottom: 40px;
  }
}

.content-info p {
  font-family: "barlow_semi_condensedmedium", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-violet);
  margin-bottom: 20px;
}

.content-info p span {
  font-family: "barlowbold", sans-serif;
}

.content-info p .underline {
  font-family: "barlow_semi_condensedmedium", sans-serif;
  text-decoration: underline;
}

.right-bottom {
  display: flex;
  flex-direction: column;
}

.descripcion h3 {
  font-family: "barlow_semi_condensedsemibold", sans-serif;
  font-size: 32px;
  line-height: 1.1;
  color: var(--color-violet);
  margin-bottom: 40px;
}

.logo-home a {
  display: block;
  background: var(--color-green);
  font-size: 24px;
  color: var(--color-white);
  line-height: 35px;
  text-align: center;
  width: 35px;
  height: 35px;
  transition: 0.3s;
}

.logo-home a:hover {
  background: var(--color-white);
  color: var(--color-green);
  text-decoration: none;
}

@media only screen and (max-width: 1440px) {
  .descripcion h3 {
    font-size: 26px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 1024px) {
  .descripcion h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .right-bottom {
    margin: 50px 0;
  }

  .descripcion h3 {
    font-size: 34px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 425px) {
  .left-info {
    padding: 25px;
  }

  .content-info p {
    font-size: 20px;
  }

  .descripcion h3 {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 320px) {
  .left-info {
    padding: 15px;
  }

  .content-info p {
    font-size: 18px;
  }

  .descripcion h3 {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Galeria Seccion
--------------------------------------------------------------*/
.galeria {
  width: 100%;
  height: 100vh;
  background: #e8e8ff;
  overflow: hidden;
}

.content-galeria {
  width: 100%;
  height: 100%;
  padding: 50px 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

@media only screen and (max-width: 1024px) {
  .content-galeria {
    width: 100%;
    height: 100%;
    padding: 50px;
  }
}

.logo-gallery img {
  display: block;
  width: 35px;
  height: auto;
}

.title-gallery {
  display: block;
  height: 35px;
  margin-left: 10px;
}

.title-gallery h4 {
  font-family: "barlowbold", sans-serif;
  font-size: 16px;
  color: var(--color-violet);
  margin-bottom: 0;
}

.title-gallery h5 {
  font-family: "barlowbold", sans-serif;
  font-size: 16px;
  color: var(--color-violet);
  margin-bottom: 0;
  opacity: 0.5;
}

@media only screen and (max-width: 425px) {
  .title-gallery {
    margin-left: 10px;
  }

  .title-gallery h4 {
    font-size: 14px;
  }

  .title-gallery h5 {
    font-size: 14px;
  }
}

@media only screen and (max-width: 320px) {
  .title-gallery {
    margin-left: 10px;
  }

  .title-gallery h4 {
    font-size: 12px;
  }

  .title-gallery h5 {
    font-size: 12px;
    line-height: 1;
  }
}

.content-slider {
  width: 100%;
  height: 100%;
  overflow: auto;
}

.content-slider .swiper {
  width: 100%;
}

.content-slider .swiper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.swiper .swiper-pagination {
  --swiper-pagination-color: var(--color-violet);
  --swiper-pagination-bullet-size: 20px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
}

.swiper .swiper-pagination {
  margin-top: 50px;
  position: relative;
}

/*--------------------------------------------------------------
# Glightbox
--------------------------------------------------------------*/
.goverlay {
  background: #e8e8ff;
}

.glightbox-mobile .goverlay {
  background: #e8e8ff;
}

.glightbox-container .gslide-inner-content {
  width: 80%;
}

.glightbox-clean .gslide-media {
  -webkit-box-shadow: 1px 2px 9px 0 rgb(0 0 0 / 0%);
  box-shadow: 1px 2px 9px 0 rgb(0 0 0 / 0%);
}

.gslide-image img {
  max-height: 80vh;
  max-width: 100%;
}