:root {
  --primary-color: #231c46;
  --secondary-color: #f478d9;
  --terciary-color: #0c1319;
  --font-1: "Inter", sans-serif;
  --font-2: "Oswald", sans-serif;
}

html {
  font-size: 16px;
}

body {
  background: url(../img/bg-warmup.jpg) no-repeat center center/cover;
  background-attachment: fixed;
  margin: 0;
}
body h2 {
  font-weight: 700;
  font-size: 3rem;
  margin: 0.5rem 0;
}
@media (max-width: 420px) {
  body h2 {
    font-size: 2rem;
  }
}
body h3 {
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0 0 1rem;
}
@media (max-width: 420px) {
  body h3 {
    font-size: 1.5rem;
  }
}
body h4 {
  font-weight: 100;
  font-size: 1.8rem;
  margin: 0 0 3rem;
}
@media (max-width: 420px) {
  body h4 {
    font-size: 1.4rem;
  }
}
body p {
  display: block;
  margin: 0;
  padding: 0 0 1rem;
}
body i {
  display: inline-block !important;
  vertical-align: middle;
}
body main {
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 420px) {
  body main {
    padding: 1rem;
  }
}
body main header {
  margin: 1rem 0 0 0;
}
@media (max-width: 420px) {
  body main header {
    margin: 20px 0 0;
  }
}
body main header .ig {
  text-align: right;
  margin: 6rem 0 1.5rem;
}
@media (max-width: 420px) {
  body main header .ig {
    text-align: center;
  }
}
body main header .top {
  height: 100px;
  border-radius: 10px 10px 0 0;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: space-around;
  align-items: center;
}
body main header .top .person {
  position: relative;
  text-align: left;
  width: 20%;
}
body main header .top .person img {
  position: absolute;
  top: -137px;
}
body main header .top .logo {
  width: 90%;
  margin: 1em auto;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 1rem;
}
body main header .top .logo h1 {
  padding: 1rem 0 1rem 1rem;
  margin: 0;
  text-align: left;
}
body main header .top .logo p {
  color: #fff;
  font-family: var(--font-2);
  font-size: 1.5rem;
  padding-bottom: 1.1em;
}
body main header .top .countdown {
  display: flex;
  color: var(--secondary-color);
  width: 28%;
  font-family: var(--font-2);
}
body main header .top .countdown .data {
  margin: 0 10px;
  font-size: 36px;
  text-align: center;
}
body main header .top .countdown .data span {
  display: block;
}
body main header .top .countdown .data .data-2 {
  font-size: 0.75rem;
}
@media (max-width: 420px) {
  body main header .top {
    display: block;
    padding: 1rem;
    text-align: center;
  }
  body main header .top .person {
    display: none;
  }
  body main header .top .logo {
    width: 100%;
  }
  body main header .top .logo img {
    max-width: 310px;
  }
  body main header .top .logo span {
    font-size: 0.65rem;
  }
  body main header .top .countdown {
    width: 100%;
    justify-content: center;
  }
  body main header .top .countdown .data {
    font-size: 1rem;
  }
}
body main header nav {
  border-top: 2px solid var(--secondary-color);
  background-color: var(--primary-color);
}
body main header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
body main header nav ul li {
  width: 100%;
  text-align: center;
  position: relative;
}
body main header nav ul li a {
  padding: 1rem;
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 100;
  font-family: var(--font-2);
  text-decoration: none;
  z-index: 1;
  position: relative;
  height: 100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
body main header nav ul li a:hover {
  color: #fff;
  text-decoration: none;
}
body main header nav ul li a b {
  color: var(--secondary-color);
}
body main header nav ul li a em {
  display: block;
  font-size: 0.9rem !important;
  font-style: normal;
  font-weight: bold;
  color: var(--secondary-color);
  font-size: 10px;
  margin: 0.2rem 0 0;
}
body main header nav ul li a span {
  display: block;
  font-weight: 700;
}
body main header nav ul li a.disabled {
  pointer-events: none;
}
@media (max-width: 420px) {
  body main header nav ul li a.disabled em {
    display: block;
    position: absolute;
    top: 30px;
    right: 10px;
    font-style: normal;
    color: #0a5167;
  }
}
body main header nav ul li a.active {
  background: radial-gradient(farthest-corner at center 130px, #833c73 0%, #833c73 80%);   
  height: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
body main header nav ul li:first-child a {
  line-height: 4.6;
}
@media (max-width: 420px) {
  body main header nav ul li:first-child a {
    line-height: 2.4;
  }
}
body main header nav ul li::before {
  opacity: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(farthest-corner at center 200px, #833c73 0%, #833c73 80%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 0;
}
body main header nav ul li:hover:before {
  opacity: 1;
}
@media (max-width: 420px) {
  body main header nav {
    display: block;
    height: 57.6px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
  }
  body main header nav .mmobile {
    width: 40px;
    z-index: 2;
    position: absolute;
    right: 15px;
    top: 16px;
    height: 25px;
  }
  body main header nav .mmobile span {
    position: relative;
    display: block;
    height: 4px;
    width: 40px;
    background: white;
    margin: 10px 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  body main header nav .mmobile span::before, body main header nav .mmobile span::after {
    content: "";
    height: 4px;
    width: 100%;
    display: inline-block;
    position: absolute;
    background: white;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  body main header nav .mmobile span::before {
    top: -11px;
  }
  body main header nav .mmobile span::after {
    bottom: -10px;
  }
  body main header nav.active {
    height: auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  body main header nav.active .mmobile span {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0);
  }
  body main header nav.active .mmobile span::before {
    transform: rotate(45deg);
    top: 2px;
  }
  body main header nav.active .mmobile span::after {
    transform: rotate(-45deg);
    top: 2px;
  }
  body main header nav ul {
    display: block;
  }
  body main header nav ul li a {
    text-align: left;
    padding-left: 1rem;
  }
}
body main section {
  background-color: white;
  padding: 1rem 2rem;
  font-family: var(--font-1);
  font-size: 1rem;
  line-height: 1.7;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 420px) {
  body main section {
    padding: 1rem;
  }
}
body main section:empty::before {
  content: attr(error);
  display: block;
}
body main section i {
  font-size: 1.5rem;
}
body main section i:before {
  color: var(--primary-color);
}
body main section .list-reset {
  list-style: none;
}
body main section .list-reset li {
  margin: 0 0 1rem;
}
@media (max-width: 420px) {
  body main section .list-reset {
    padding: 0 0 0 1rem;
  }
}
body main section .welcome .list-hor {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-around;
}
body main section .welcome .list-hor li {
  font-size: 1.3rem;
  font-weight: 700;
}
body main section .welcome .list-hor li i {
  font-size: 1.2rem;
}
body main section .welcome .title {
  text-align: center;
  max-width: 80%;
  line-height: 1.2;
  margin: 0 auto;
}
@media (max-width: 420px) {
  body main section .welcome .title {
    max-width: 100%;
  }
}
body main section .welcome .recuadro {
  margin-bottom: 3em;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 20%);
  border-radius: 20px;
  margin: 0 auto 1.5em auto;
  padding: 30px;
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
  width: 300px;
}
body main section .welcome .recuadro2 {
  margin-bottom: 3em;
  margin: 0 auto 1.5em auto;
  padding: 30px;
  max-width: 80%;
}
body main section .welcome .recuadro .fa-chart-line:before {
  color:  var(--secondary-color);
  margin-right: 1em;
}
body main section .welcome .recuadro2 .fa-hand-point-right:before {
  color:  var(--secondary-color);
  margin-right: .5em;
}
body main section .welcome .important {
  color: var(--primary-color);
  text-align: center;
  border-radius: 10px;
  border: 3px solid var(--secondary-color);
  padding: 1rem 2rem;
  margin: 0 auto 3rem;
  position: relative;
  width: 75%;
}
body main section .welcome .important .title {
  font-size: 2rem;
  font-weight: 700;
  background: #fff;
  padding: 0 10px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
body main section .welcome .important p {
  font-size: 1.1rem;
  line-height: 1.4;
  padding: 1.5rem 0;
}
@media (max-width: 420px) {
  body main section .welcome .important p {
    font-size: 1rem;
  }
}
body main section .welcome .who h3 {
  text-align: center;
}
body main section .welcome .who img {
  float: left;
  width: 300px;
  margin: 0 2rem 0 0;
}
@media (max-width: 420px) {
  body main section .welcome .who img {
    width: 150px;
    margin: 0 1rem 0 0;
  }
}
body footer {
  max-width: 680px;
  margin: 0 auto;
  color: #fff;
  font-family: var(--font-1);
  font-size: 0.7rem;
  display: flex;
  justify-content: space-between;
  padding: 2rem 1rem;
  line-height: 1.5;
}
body footer .logo,
body footer .data {
  padding: 0 1rem;
}
@media (max-width: 420px) {
  body footer {
    display: block;
  }
  body footer .logo {
    margin-bottom: 2rem;
  }
}

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


.slider {
  width: 100%;
  margin: 20px auto;
}

.slick-slide {
margin: 0px 5px;
}

.slick-slide img {
width: 100%;
}

.slick-prev:before,
.slick-next:before {
color: black;
}

a.calendar {
  display: block;
  text-align: center;
  margin: 0 0 1rem;
}