/*!
Theme Name: MiCiti Eventos
Theme URI: https://miciti.co/nosotros
Author: Juan Diego Mesa O.
Description: Tema personalizado para MiCiti Eventos
Version: 0.8.9
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: miciti-eventos

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

MiCiti Eventos is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

/* 
Desarrollado por Juan Diego Mesa O. para MiCiti
jdmdigitalcol@gmail.com
juandiegomesa.com 
*/
:root {
  /* Fuentes Desktop*/
  --fuente7_desktop: 76px;
  --fuente6_desktop: 61px;
  --fuente5_desktop: 49px;
  --fuente4_desktop: 39px;
  --fuente3_desktop: 31px;
  --fuente2_desktop: 25px;
  --fuente1_desktop: 20px;
  --fuente0_desktop: 16px;
  --fuente-1_desktop: 13px;
  --fuente-2_desktop: 10px;
  --fuente-3_desktop: 8px;
  /* Fuentes Tablet*/
  --fuente7_tablet: 5.4vw;
  --fuente6_tablet: 4.35vw;
  --fuente5_tablet: 3.5vw;
  --fuente4_tablet: 2.7vw;
  --fuente3_tablet: 2.2vw;
  --fuente2_tablet: 1.71vw;
  --fuente1_tablet: 1.42vw;
  --fuente0_tablet: 1.2vw;
  --fuente-1_tablet: 0.93vw;
  --fuente-2_tablet: 0.71vw;
  --fuente-3_tablet: 0.57vw;
  /* Fuentes Mobile*/
  --fuente7: 19vw;
  --fuente6: 15.25vw;
  --fuente5: 12.25vw;
  --fuente4: 8.5vw;
  --fuente3: 7.8vw;
  --fuente2: 6.25vw;
  --fuente1: 5vw;
  --fuente0: 4vw;
  --fuente-1: 3.25vw;
  --fuente-2: 2.5vw;
  --fuente-3: 2vw;
}

* {
  margin: 0;
  padding: 0;
  text-transform: none;
  text-decoration: none;
  list-style: none;
  line-height: 1;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  overflow-x: hidden;
  padding-top: 15vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  body {
    padding-top: 9.5vw;
  }
}
@media screen and (min-width: 1100px) {
  body {
    padding-top: 84px;
  }
}
@media screen and (min-width: 1280px) {
  body {
    padding-top: 92px;
  }
}

a {
  color: inherit;
}

.hidden {
  display: none !important;
}

.MCEvHighlight {
  width: 100vw;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .MCEvHighlight {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvHighlight {
    margin: 2vw auto;
    width: 90vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvHighlight {
    margin: 15px auto;
    width: 1100px;
  }
}
@media screen and (min-width: 1280px) {
  .MCEvHighlight {
    margin: 15px auto;
    width: 1280px;
  }
}

.MCEvBody {
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 10vw;
}
@media screen and (min-width: 600px) {
  .MCEvBody {
    margin: 0 auto;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvBody {
    width: 90vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvBody {
    width: 1100px;
  }
}
@media screen and (min-width: 1280px) {
  .MCEvBody {
    width: 1280px;
  }
}

.MCEvBanner {
  width: 100vw;
}
@media screen and (min-width: 600px) {
  .MCEvBanner {
    width: 1020px;
  }
}

.MCEvList {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 90vw;
  padding: 3vw 0;
  row-gap: 4vw;
}

.MCEvNav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}
@media screen and (min-width: 600px) {
  .MCEvNav {
    background-color: #003547;
  }
}
.MCEvNav-bar {
  background-color: #003547;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  width: 84vw;
  padding: 10vw 8vw 10vw;
  border-bottom-left-radius: 8vw;
  border-bottom-right-radius: 8vw;
}
@media screen and (min-width: 600px) {
  .MCEvNav-bar {
    border-radius: unset;
    align-items: center;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvNav-bar {
    width: 90vw;
    padding: 3vw 5vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvNav-bar {
    width: 1100px;
    padding: 20px calc(50vw - 550px);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvNav-bar {
    width: 1280px;
    padding: 20px calc(50vw - 640px);
  }
}
.MCEvNav-bar-open {
  border: none;
  background: transparent url("./assets/icon_menu.svg") center no-repeat;
  background-size: contain;
  width: 7vw;
  height: 7vw;
}
@media screen and (min-width: 600px) {
  .MCEvNav-bar-open {
    display: none;
  }
}
.MCEvNav-bar-logo {
  height: 8vw;
}
.MCEvNav-bar-logo img {
  height: 100%;
}
@media screen and (min-width: 600px) {
  .MCEvNav-bar-logo {
    height: auto;
  }
  .MCEvNav-bar-logo img {
    width: 100%;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvNav-bar-logo {
    width: 12vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvNav-bar-logo {
    width: 90px;
  }
}
@media screen and (min-width: 1280px) {
  .MCEvNav-bar-logo {
    width: 100px;
  }
}
.MCEvNav-bar-search {
  border: none;
  background: transparent url("./assets/icon_search.svg") center no-repeat;
  background-size: contain;
  width: 7vw;
  height: 7vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvNav-bar-search {
    width: 3vw;
    height: 3vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvNav-bar-search {
    width: 28px;
    height: 28px;
  }
}
@media screen and (min-width: 1280px) {
  .MCEvNav-bar-search {
    width: 35px;
    height: 35px;
  }
}
.MCEvNav-menu {
  position: relative;
  z-index: 5;
  width: 100vw;
  overflow-x: scroll;
  height: max-content;
  background-color: #fff;
  padding-top: 10vw;
  margin-top: -10vw;
  max-height: 30vh;
  transition-duration: 0.5s;
}
@media screen and (max-width: 600px) {
  .MCEvNav-menu.colapsed {
    padding-top: 0;
    max-height: 0;
  }
}
@media screen and (min-width: 600px) {
  .MCEvNav-menu {
    background-color: transparent;
    position: absolute;
    right: calc(50vw - 590px);
    bottom: calc(50% - 15px);
    width: max-content;
    z-index: 10;
    padding: 0;
    height: 30px;
  }
}
.MCEvNav-menu-container {
  width: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1vw 5vw 2vw;
}
@media screen and (min-width: 600px) {
  .MCEvNav-menu-container {
    padding: 0;
  }
}
.MCEvNav-menu-button {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  border-bottom: var(--bgcolor) solid 1vw;
  padding: 2vw 1vw 1vw;
  position: relative;
  margin: 0 6vw 0 1vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvNav-menu-button {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvNav-menu-button {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvNav-menu-button {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvNav-menu-button a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvNav-menu-button a:hover,
.MCEvNav-menu-button a:visited {
  color: #005e54;
}
@media screen and (min-width: 600px) {
  .MCEvNav-menu-button {
    color: #fff;
    border-bottom-width: 3px;
    padding: 0 6px 6px;
    margin: 0 20px 0 12px;
  }
}
.MCEvNav-menu-button::after {
  content: "";
  position: absolute;
  background-color: #8f8f8f;
  width: 0.3vw;
  height: 5vw;
  right: -3.5vw;
  top: calc(50% - 2.5vw);
}
@media screen and (min-width: 600px) {
  .MCEvNav-menu-button::after {
    width: 2px;
    height: 15px;
    right: -15px;
    top: calc(50% - 10px);
  }
}
.MCEvNav-menu-button:nth-last-child(1) {
  margin-right: 1vw;
}
.MCEvNav-menu-button:nth-last-child(1)::after {
  display: none;
}
@media screen and (min-width: 600px) {
  .MCEvNav-menu-button {
    transition-duration: 0.5s;
  }
  .MCEvNav-menu-button:hover {
    filter: grayscale(0.5);
    color: #003547;
  }
}

.MCEvHeader {
  position: relative;
  width: 100vw;
  height: 120vw;
}
@media screen and (min-width: 600px) {
  .MCEvHeader {
    height: 30vw;
  }
}
.MCEvHeader-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.MCEvHeader-info {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    25deg,
    rgba(0, 0, 0, 0.9333333333) 20%,
    transparent 50%
  );
  width: 100vw;
  height: 100%;
  padding: 12vw 30vw 5vw 5vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvHeader-info {
    padding: 12vw 62vw 5vw 5vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvHeader-info {
    padding: 12vw calc(50vw + 80px) 5vw calc(50vw - 550px);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvHeader-info {
    padding: 12vw calc(50vw + 135px) 5vw calc(50vw - 640px);
  }
}
.MCEvHeader-info-subtitle {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: var(--fuente1);
  line-height: 1.1;
  padding-bottom: 2.5vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvHeader-info-subtitle {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvHeader-info-subtitle {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvHeader-info-subtitle {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvHeader-info-subtitle.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvHeader-info-subtitle.right {
  margin-left: auto;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvHeader-info-subtitle {
    padding-bottom: 1vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvHeader-info-subtitle {
    padding-bottom: 10px;
  }
}
.MCEvHeader-info-title {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: var(--fuente4);
  line-height: 1.1;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvHeader-info-title {
    font-size: var(--fuente4_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvHeader-info-title {
    font-size: var(--fuente4_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvHeader-info-title {
    font-size: var(--fuente4_desktop);
  }
}
.MCEvHeader-info-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvHeader-info-title.right {
  margin-left: auto;
}

.MCEvCategoriesMenu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 5vw;
  justify-content: space-between;
  row-gap: 5vw;
  width: 90vw;
}
.MCEvCategoriesMenu-item {
  width: 24vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: solid 1vw var(--bgcolor);
  justify-content: center;
}
.MCEvCategoriesMenu-item > img {
  width: 55%;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.MCEvCategoriesMenu-item > p {
  color: var(--bgcolor);
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: var(--fuente0);
  line-height: 1.2;
  line-height: 1.1;
  text-align: center;
  padding: 2vw 0;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCategoriesMenu-item > p {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCategoriesMenu-item > p {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCategoriesMenu-item > p {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvCategoriesMenu-item > p a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCategoriesMenu-item > p a:hover,
.MCEvCategoriesMenu-item > p a:visited {
  color: #005e54;
}

.MCEvCatheader-colortitle {
  padding: 20vw 0 4vw;
  background-color: var(--catcolor);
}
.MCEvCatheader-colortitle h1 {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: var(--fuente4);
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCatheader-colortitle h1 {
    font-size: var(--fuente4_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCatheader-colortitle h1 {
    font-size: var(--fuente4_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCatheader-colortitle h1 {
    font-size: var(--fuente4_desktop);
  }
}
.MCEvCatheader-colortitle h1 a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCatheader-colortitle h1 a:hover,
.MCEvCatheader-colortitle h1 a:visited {
  color: #005e54;
}
.MCEvCatheader-title {
  color: #000;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: var(--fuente3);
  line-height: 1.1;
  text-align: center;
  margin: 2vw auto;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCatheader-title {
    font-size: var(--fuente3_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCatheader-title {
    font-size: var(--fuente3_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCatheader-title {
    font-size: var(--fuente3_desktop);
  }
}
.MCEvCatheader-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvCatheader-title.right {
  margin-left: auto;
}
.MCEvCatheader-image {
  width: 100vw;
  height: 60vw;
  object-fit: cover;
  border-bottom: solid var(--catcolor) 3vw;
}
.MCEvCatheader-category {
  display: block;
  position: relative;
}
.MCEvCatheader-category-title {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  position: absolute;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #003547, transparent);
}
.MCEvCatheader-category-title h2 {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: var(--fuente2);
  line-height: 1.1;
  padding-left: 5vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCatheader-category-title h2 {
    font-size: var(--fuente2_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCatheader-category-title h2 {
    font-size: var(--fuente2_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCatheader-category-title h2 {
    font-size: var(--fuente2_desktop);
  }
}
.MCEvCatheader-category-title h2.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvCatheader-category-title h2.right {
  margin-left: auto;
}
.MCEvCatheader-category-image {
  width: 100vw;
  height: 20vw;
  object-fit: cover;
}

.MCEvCardBigEvent {
  border-radius: 8vw;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 90vw;
  margin: 4vw auto;
}
@media screen and (min-width: 600px) {
  .MCEvCardBigEvent {
    margin: 0;
    flex-direction: row;
    align-items: stretch;
    transition-duration: 0.5s;
  }
  .MCEvCardBigEvent:hover {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.6);
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardBigEvent {
    border-radius: 3vw;
    width: 44vw;
    border-radius: 2vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardBigEvent {
    border-radius: 20px;
    width: 540px;
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardBigEvent {
    width: 620px;
  }
}
.MCEvCardBigEvent-image {
  width: 90vw;
  height: 40vw;
  object-fit: cover;
}
@media screen and (min-width: 600px) {
  .MCEvCardBigEvent-image {
    width: 40%;
    height: auto;
  }
}
.MCEvCardBigEvent-category {
  color: #000;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: var(--fuente1);
  line-height: 1.2;
  background-color: var(--bgcolor);
  padding: 1.5vw 5vw;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardBigEvent-category {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardBigEvent-category {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardBigEvent-category {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvCardBigEvent-category a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCardBigEvent-category a:hover,
.MCEvCardBigEvent-category a:visited {
  color: #005e54;
}
.MCEvCardBigEvent-info {
  padding: 4vw 5vw 8vw;
}
@media screen and (min-width: 600px) {
  .MCEvCardBigEvent-info {
    width: 60%;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardBigEvent-info {
    padding: 4vw 2vw 2vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardBigEvent-info {
    padding: 45px 25px 20px;
  }
}
.MCEvCardBigEvent-info-date {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.MCEvCardBigEvent-info-date-day {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  position: relative;
  padding-left: 6vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardBigEvent-info-date-day {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardBigEvent-info-date-day {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardBigEvent-info-date-day {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvCardBigEvent-info-date-day a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCardBigEvent-info-date-day a:hover,
.MCEvCardBigEvent-info-date-day a:visited {
  color: #005e54;
}
.MCEvCardBigEvent-info-date-day::before {
  content: "";
  background: transparent url("./assets/icon_calendar.svg") center no-repeat;
  background-size: contain;
  width: 4.8vw;
  height: 4.8vw;
  position: absolute;
  left: 0;
  top: 0;
}
.MCEvCardBigEvent-info-date-hour {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  position: relative;
  padding-left: 6vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardBigEvent-info-date-hour {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardBigEvent-info-date-hour {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardBigEvent-info-date-hour {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvCardBigEvent-info-date-hour a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCardBigEvent-info-date-hour a:hover,
.MCEvCardBigEvent-info-date-hour a:visited {
  color: #005e54;
}
.MCEvCardBigEvent-info-date-hour::before {
  content: "";
  background: transparent url("./assets/icon_clock.svg") center no-repeat;
  background-size: contain;
  width: 4.2vw;
  height: 4.2vw;
  position: absolute;
  left: 0;
  top: 0;
}
.MCEvCardBigEvent-info-title {
  color: #000;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: var(--fuente1);
  line-height: 1.1;
  margin-top: 2vw;
  padding-bottom: 2vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardBigEvent-info-title {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardBigEvent-info-title {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardBigEvent-info-title {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvCardBigEvent-info-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvCardBigEvent-info-title.right {
  margin-left: auto;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardBigEvent-info-title {
    margin-top: 1vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardBigEvent-info-title {
    margin-top: 10px;
  }
}
.MCEvCardBigEvent-info-location {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  position: relative;
  padding-left: 6vw;
  margin-top: 1vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardBigEvent-info-location {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardBigEvent-info-location {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardBigEvent-info-location {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvCardBigEvent-info-location a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCardBigEvent-info-location a:hover,
.MCEvCardBigEvent-info-location a:visited {
  color: #005e54;
}
.MCEvCardBigEvent-info-location::before {
  content: "";
  background: transparent url("./assets/icon_location.svg") center no-repeat;
  background-size: contain;
  width: 4.8vw;
  height: 4.8vw;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardBigEvent-info-location {
    margin-top: 1vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardBigEvent-info-location {
    margin-top: 12px;
  }
}
.MCEvCardBigEvent-info-details {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: flex-end;
  padding: 2.5vw 0 0;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardBigEvent-info-details {
    padding-top: 1vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardBigEvent-info-details {
    padding-top: 12px;
  }
}
.MCEvCardBigEvent-info-details-info-public {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  position: relative;
  padding-left: 6vw;
  margin-top: 1vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardBigEvent-info-details-info-public {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardBigEvent-info-details-info-public {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardBigEvent-info-details-info-public {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvCardBigEvent-info-details-info-public a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCardBigEvent-info-details-info-public a:hover,
.MCEvCardBigEvent-info-details-info-public a:visited {
  color: #005e54;
}
.MCEvCardBigEvent-info-details-info-public::before {
  content: "";
  width: 4.8vw;
  height: 4.8vw;
  position: absolute;
  left: 0;
  top: 0;
}
.MCEvCardBigEvent-info-details-info-public.adultos::before {
  background: transparent url("./assets/icon_person.svg") center no-repeat;
  background-size: contain;
}
.MCEvCardBigEvent-info-details-info-space {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  position: relative;
  padding-left: 6vw;
  margin-top: 1vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardBigEvent-info-details-info-space {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardBigEvent-info-details-info-space {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardBigEvent-info-details-info-space {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvCardBigEvent-info-details-info-space a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCardBigEvent-info-details-info-space a:hover,
.MCEvCardBigEvent-info-details-info-space a:visited {
  color: #005e54;
}
.MCEvCardBigEvent-info-details-info-space::before {
  content: "";
  width: 4vw;
  height: 4vw;
  position: absolute;
  left: 0.5vw;
  top: 0;
}
.MCEvCardBigEvent-info-details-info-space.presencial::before {
  background: transparent url("./assets/icon_building.svg") center no-repeat;
  background-size: contain;
}
.MCEvCardBigEvent-info-details-info-space.virtual::before {
  background: transparent url("./assets/icon_virtual.svg") center no-repeat;
  background-size: contain;
}
.MCEvCardBigEvent-info-details-price {
  background-color: var(--bgcolor);
  color: #000;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: var(--fuente1);
  line-height: 1.2;
  padding: 1vw 2vw;
  border-radius: 50vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardBigEvent-info-details-price {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardBigEvent-info-details-price {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardBigEvent-info-details-price {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvCardBigEvent-info-details-price a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCardBigEvent-info-details-price a:hover,
.MCEvCardBigEvent-info-details-price a:visited {
  color: #005e54;
}
.MCEvCardBigEvent-info-details-price span {
  font-size: var(--fuente0);
}
.MCEvCardBigEvent-disclamer {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  position: absolute;
  bottom: 2vw;
  right: 6vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardBigEvent-disclamer {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardBigEvent-disclamer {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardBigEvent-disclamer {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvCardBigEvent-disclamer a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCardBigEvent-disclamer a:hover,
.MCEvCardBigEvent-disclamer a:visited {
  color: #005e54;
}

.MCEvCardEvent {
  position: relative;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin: 0 3vw 0 0;
  width: 85vw;
  border-radius: 4vw;
}
.MCEvCardEvent.disabled {
  filter: grayscale(1);
}
@media screen and (min-width: 600px) {
  .MCEvCardEvent {
    margin: 0;
    transition-duration: 0.5s;
  }
  .MCEvCardEvent:hover {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.6);
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardEvent {
    width: 35vw;
    border-radius: 1.5vw;
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardEvent {
    width: 430px;
    border-radius: 16px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardEvent {
    width: 500px;
  }
}
.MCEvCardEvent-flag {
  color: #000;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: var(--fuente-1);
  line-height: 1.2;
  position: absolute;
  background-color: #abfc00;
  border-bottom-right-radius: 3vw;
  top: 0;
  left: 0;
  height: 4vw;
  padding: 1vw 6vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardEvent-flag {
    font-size: var(--fuente-1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardEvent-flag {
    font-size: var(--fuente-1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardEvent-flag {
    font-size: var(--fuente-1_desktop);
  }
}
.MCEvCardEvent-flag a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCardEvent-flag a:hover,
.MCEvCardEvent-flag a:visited {
  color: #005e54;
}
@media screen and (min-width: 600px) {
  .MCEvCardEvent-flag {
    height: auto;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardEvent-flag {
    border-bottom-right-radius: 1vw;
    padding: 0.7vw 2vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardEvent-flag {
    padding: 8px 30px;
    border-bottom-right-radius: 16px;
  }
}
.MCEvCardEvent-image {
  width: 32vw;
  object-fit: cover;
}
@media screen and (min-width: 600px) {
  .MCEvCardEvent-image {
    width: 32%;
  }
}
.MCEvCardEvent-info {
  padding: 0 0 4vw;
}
@media screen and (min-width: 600px) {
  .MCEvCardEvent-info {
    width: 60%;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardEvent-info {
    padding: 4vw 2vw 2vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardEvent-info {
    padding: 45px 25px 20px;
  }
}
.MCEvCardEvent-info-category {
  background-color: var(--bgcolor);
  width: 100%;
}
.MCEvCardEvent-info-category-title {
  color: #000;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: var(--fuente1);
  line-height: 1.1;
  padding: 1vw 3vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardEvent-info-category-title {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardEvent-info-category-title {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardEvent-info-category-title {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvCardEvent-info-category-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvCardEvent-info-category-title.right {
  margin-left: auto;
}
.MCEvCardEvent-info-category-subtitle {
  color: #000;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: var(--fuente0);
  line-height: 1.1;
  background-color: rgba(255, 255, 255, 0.459);
  padding: 1vw 3vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardEvent-info-category-subtitle {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardEvent-info-category-subtitle {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardEvent-info-category-subtitle {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvCardEvent-info-category-subtitle.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvCardEvent-info-category-subtitle.right {
  margin-left: auto;
}
.MCEvCardEvent-info-date {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 2vw 2vw 1vw;
}
.MCEvCardEvent-info-date-day {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  position: relative;
  padding-left: 6vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardEvent-info-date-day {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardEvent-info-date-day {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardEvent-info-date-day {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvCardEvent-info-date-day a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCardEvent-info-date-day a:hover,
.MCEvCardEvent-info-date-day a:visited {
  color: #005e54;
}
.MCEvCardEvent-info-date-day::before {
  content: "";
  background: transparent url("./assets/icon_calendar.svg") center no-repeat;
  background-size: contain;
  width: 4.8vw;
  height: 4.8vw;
  position: absolute;
  left: 0;
  top: 0;
}
.MCEvCardEvent-info-date-hour {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  position: relative;
  padding-left: 5vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardEvent-info-date-hour {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardEvent-info-date-hour {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardEvent-info-date-hour {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvCardEvent-info-date-hour a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCardEvent-info-date-hour a:hover,
.MCEvCardEvent-info-date-hour a:visited {
  color: #005e54;
}
.MCEvCardEvent-info-date-hour::before {
  content: "";
  background: transparent url("./assets/icon_clock.svg") center no-repeat;
  background-size: contain;
  width: 4.2vw;
  height: 4.2vw;
  position: absolute;
  left: 0;
  top: 0;
}
.MCEvCardEvent-info-title {
  color: #000;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: var(--fuente1);
  line-height: 1.1;
  padding: 1vw 2vw 1vw;
  line-height: 1;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardEvent-info-title {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardEvent-info-title {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardEvent-info-title {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvCardEvent-info-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvCardEvent-info-title.right {
  margin-left: auto;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardEvent-info-title {
    margin-top: 1vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardEvent-info-title {
    margin-top: 10px;
  }
}
.MCEvCardEvent-info-location {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  position: relative;
  padding: 1vw 2vw 1vw 8vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardEvent-info-location {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardEvent-info-location {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardEvent-info-location {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvCardEvent-info-location a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCardEvent-info-location a:hover,
.MCEvCardEvent-info-location a:visited {
  color: #005e54;
}
.MCEvCardEvent-info-location::before {
  content: "";
  background: transparent url("./assets/icon_location.svg") center no-repeat;
  background-size: contain;
  width: 4.8vw;
  height: 4.8vw;
  position: absolute;
  left: 2vw;
  top: 0.5vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardEvent-info-location {
    margin-top: 1vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardEvent-info-location {
    margin-top: 12px;
  }
}
.MCEvCardEvent-info-details {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: flex-end;
  padding: 1vw 2vw 0;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardEvent-info-details {
    padding-top: 1vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardEvent-info-details {
    padding-top: 12px;
  }
}
.MCEvCardEvent-info-details-info-public {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  position: relative;
  padding-left: 6vw;
  margin-top: 1vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardEvent-info-details-info-public {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardEvent-info-details-info-public {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardEvent-info-details-info-public {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvCardEvent-info-details-info-public a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCardEvent-info-details-info-public a:hover,
.MCEvCardEvent-info-details-info-public a:visited {
  color: #005e54;
}
.MCEvCardEvent-info-details-info-public::before {
  content: "";
  width: 4.8vw;
  height: 4.8vw;
  position: absolute;
  left: 0;
  top: 0;
}
.MCEvCardEvent-info-details-info-public.adultos::before {
  background: transparent url("./assets/icon_person.svg") center no-repeat;
  background-size: contain;
}
.MCEvCardEvent-info-details-info-space {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  position: relative;
  padding-left: 6vw;
  margin-top: 1vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardEvent-info-details-info-space {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardEvent-info-details-info-space {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardEvent-info-details-info-space {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvCardEvent-info-details-info-space a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCardEvent-info-details-info-space a:hover,
.MCEvCardEvent-info-details-info-space a:visited {
  color: #005e54;
}
.MCEvCardEvent-info-details-info-space::before {
  content: "";
  width: 4vw;
  height: 4vw;
  position: absolute;
  left: 0.5vw;
  top: 0;
}
.MCEvCardEvent-info-details-info-space.presencial::before {
  background: transparent url("./assets/icon_building.svg") center no-repeat;
  background-size: contain;
}
.MCEvCardEvent-info-details-price {
  background-color: var(--bgcolor);
  color: #000;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: var(--fuente0);
  line-height: 1.2;
  padding: 1vw 2vw;
  border-radius: 50vw;
  width: min-content;
  text-align: center;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCardEvent-info-details-price {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCardEvent-info-details-price {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCardEvent-info-details-price {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvCardEvent-info-details-price a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCardEvent-info-details-price a:hover,
.MCEvCardEvent-info-details-price a:visited {
  color: #005e54;
}
.MCEvCardEvent-info-details-price span {
  font-size: var(--fuente-1);
}

.MCEvMinicardEvent {
  position: relative;
  flex-direction: row;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 43vw;
  border-radius: 4vw;
}
@media screen and (min-width: 600px) {
  .MCEvMinicardEvent {
    margin: 0;
    transition-duration: 0.5s;
  }
  .MCEvMinicardEvent:hover {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.6);
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvMinicardEvent {
    width: 35vw;
    border-radius: 1.5vw;
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvMinicardEvent {
    width: 430px;
    border-radius: 16px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .MCEvMinicardEvent {
    width: 500px;
  }
}
.MCEvMinicardEvent-flag {
  color: #000;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: var(--fuente-1);
  line-height: 1.2;
  position: absolute;
  background-color: #abfc00;
  border-bottom-right-radius: 3vw;
  top: 0;
  left: 0;
  height: 4vw;
  padding: 1vw 6vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvMinicardEvent-flag {
    font-size: var(--fuente-1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvMinicardEvent-flag {
    font-size: var(--fuente-1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvMinicardEvent-flag {
    font-size: var(--fuente-1_desktop);
  }
}
.MCEvMinicardEvent-flag a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvMinicardEvent-flag a:hover,
.MCEvMinicardEvent-flag a:visited {
  color: #005e54;
}
@media screen and (min-width: 600px) {
  .MCEvMinicardEvent-flag {
    height: auto;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvMinicardEvent-flag {
    border-bottom-right-radius: 1vw;
    padding: 0.7vw 2vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvMinicardEvent-flag {
    padding: 8px 30px;
    border-bottom-right-radius: 16px;
  }
}
.MCEvMinicardEvent-image {
  width: 100%;
  height: 27vw;
  object-fit: cover;
  display: block;
}
@media screen and (min-width: 600px) {
  .MCEvMinicardEvent-image {
    width: 32%;
  }
}
.MCEvMinicardEvent-category {
  color: #000;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: var(--fuente1);
  line-height: 1.1;
  padding: 1vw 3vw;
  background-color: var(--bgcolor);
  width: 100%;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvMinicardEvent-category {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvMinicardEvent-category {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvMinicardEvent-category {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvMinicardEvent-category.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvMinicardEvent-category.right {
  margin-left: auto;
}
.MCEvMinicardEvent-info {
  padding: 0 2vw 4vw;
}
@media screen and (min-width: 600px) {
  .MCEvMinicardEvent-info {
    width: 60%;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvMinicardEvent-info {
    padding: 4vw 2vw 2vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvMinicardEvent-info {
    padding: 45px 25px 20px;
  }
}
.MCEvMinicardEvent-info-date {
  padding: 2vw 0 1vw;
}
.MCEvMinicardEvent-info-date-day {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  position: relative;
  padding-left: 6vw;
  padding-bottom: 1vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvMinicardEvent-info-date-day {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvMinicardEvent-info-date-day {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvMinicardEvent-info-date-day {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvMinicardEvent-info-date-day a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvMinicardEvent-info-date-day a:hover,
.MCEvMinicardEvent-info-date-day a:visited {
  color: #005e54;
}
.MCEvMinicardEvent-info-date-day::before {
  content: "";
  background: transparent url("./assets/icon_calendar.svg") center no-repeat;
  background-size: contain;
  width: 4.8vw;
  height: 4.8vw;
  position: absolute;
  left: 0;
  top: 0;
}
.MCEvMinicardEvent-info-date-hour {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  position: relative;
  padding-left: 6vw;
  padding-bottom: 1vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvMinicardEvent-info-date-hour {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvMinicardEvent-info-date-hour {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvMinicardEvent-info-date-hour {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvMinicardEvent-info-date-hour a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvMinicardEvent-info-date-hour a:hover,
.MCEvMinicardEvent-info-date-hour a:visited {
  color: #005e54;
}
.MCEvMinicardEvent-info-date-hour::before {
  content: "";
  background: transparent url("./assets/icon_clock.svg") center no-repeat;
  background-size: contain;
  width: 4.2vw;
  height: 4.2vw;
  position: absolute;
  left: 0;
  top: 0;
}
.MCEvMinicardEvent-info-title {
  color: #000;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: var(--fuente1);
  line-height: 1.1;
  padding: 1vw 0 1vw;
  line-height: 1;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvMinicardEvent-info-title {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvMinicardEvent-info-title {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvMinicardEvent-info-title {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvMinicardEvent-info-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvMinicardEvent-info-title.right {
  margin-left: auto;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvMinicardEvent-info-title {
    margin-top: 1vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvMinicardEvent-info-title {
    margin-top: 10px;
  }
}
.MCEvMinicardEvent-info-location {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  position: relative;
  padding: 1vw 0 1vw 6vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvMinicardEvent-info-location {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvMinicardEvent-info-location {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvMinicardEvent-info-location {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvMinicardEvent-info-location a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvMinicardEvent-info-location a:hover,
.MCEvMinicardEvent-info-location a:visited {
  color: #005e54;
}
.MCEvMinicardEvent-info-location::before {
  content: "";
  background: transparent url("./assets/icon_location.svg") center no-repeat;
  background-size: contain;
  width: 4.8vw;
  height: 4.8vw;
  position: absolute;
  left: 0;
  top: 1vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvMinicardEvent-info-location {
    margin-top: 1vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvMinicardEvent-info-location {
    margin-top: 12px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvMinicardEvent-info-details {
    padding-top: 1vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvMinicardEvent-info-details {
    padding-top: 12px;
  }
}
.MCEvMinicardEvent-info-details-info {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: flex-end;
}
.MCEvMinicardEvent-info-details-info-public {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente-1);
  line-height: 1.2;
  position: relative;
  padding-left: 5vw;
  margin-top: 1vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvMinicardEvent-info-details-info-public {
    font-size: var(--fuente-1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvMinicardEvent-info-details-info-public {
    font-size: var(--fuente-1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvMinicardEvent-info-details-info-public {
    font-size: var(--fuente-1_desktop);
  }
}
.MCEvMinicardEvent-info-details-info-public a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvMinicardEvent-info-details-info-public a:hover,
.MCEvMinicardEvent-info-details-info-public a:visited {
  color: #005e54;
}
.MCEvMinicardEvent-info-details-info-public::before {
  content: "";
  width: 3.5vw;
  height: 3.5vw;
  position: absolute;
  left: 0;
  top: 0;
}
.MCEvMinicardEvent-info-details-info-public.adultos::before {
  background: transparent url("./assets/icon_person.svg") center no-repeat;
  background-size: contain;
}
.MCEvMinicardEvent-info-details-info-space {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente-1);
  line-height: 1.2;
  position: relative;
  padding-left: 5vw;
  margin-top: 1vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvMinicardEvent-info-details-info-space {
    font-size: var(--fuente-1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvMinicardEvent-info-details-info-space {
    font-size: var(--fuente-1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvMinicardEvent-info-details-info-space {
    font-size: var(--fuente-1_desktop);
  }
}
.MCEvMinicardEvent-info-details-info-space a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvMinicardEvent-info-details-info-space a:hover,
.MCEvMinicardEvent-info-details-info-space a:visited {
  color: #005e54;
}
.MCEvMinicardEvent-info-details-info-space::before {
  content: "";
  width: 3.5vw;
  height: 3.5vw;
  position: absolute;
  left: 0.5vw;
  top: 0;
}
.MCEvMinicardEvent-info-details-info-space.presencial::before {
  background: transparent url("./assets/icon_building.svg") center no-repeat;
  background-size: contain;
}
.MCEvMinicardEvent-info-details-price {
  background-color: var(--bgcolor);
  color: #000;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: var(--fuente0);
  line-height: 1.2;
  margin-top: 2vw;
  width: max-content;
  padding: 1vw 3vw;
  border-radius: 50vw;
  text-align: center;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvMinicardEvent-info-details-price {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvMinicardEvent-info-details-price {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvMinicardEvent-info-details-price {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvMinicardEvent-info-details-price a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvMinicardEvent-info-details-price a:hover,
.MCEvMinicardEvent-info-details-price a:visited {
  color: #005e54;
}
.MCEvMinicardEvent-info-details-price span {
  font-size: var(--fuente-1);
}

.MCEvSidemenu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: -100%;
  z-index: 60;
  background-color: #003547;
  transition-duration: 0.5s;
  overflow: hidden;
  max-width: 0;
}
.MCEvSidemenu.opened {
  max-width: 100vw;
  left: 0;
}
@media screen and (min-width: 600px) {
  .MCEvSidemenu {
    background-color: transparent;
    position: static;
    max-width: unset;
    height: auto;
    z-index: 20;
    overflow: unset;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvSidemenu {
    width: 16vw;
    padding-top: var(--fuente3_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvSidemenu {
    width: 220px;
    padding-top: var(--fuente3_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvSidemenu {
    width: 250px;
  }
}
.MCEvSidemenu-close {
  border: none;
  position: absolute;
  top: 3vh;
  left: 7vw;
  background: transparent url("./assets/icon_cancel.svg") center no-repeat;
  background-size: contain;
  width: 8vw;
  height: 8vw;
}
@media screen and (min-width: 600px) {
  .MCEvSidemenu-close {
    display: none;
  }
}
.MCEvSidemenu-container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 10vh 10vw 5vh;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 600px) {
  .MCEvSidemenu-container {
    display: block;
    height: auto;
    position: sticky;
    padding: 0;
    overflow-y: auto;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvSidemenu-container {
    top: 10vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvSidemenu-container {
    top: 94px;
  }
}
@media screen and (min-width: 1280px) {
  .MCEvSidemenu-container {
    top: 102px;
  }
}
.MCEvSidemenu-element {
  width: 100%;
  margin: 2vw 0 8vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvSidemenu-element {
    margin: 0.7vw 0 1.2vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvSidemenu-element {
    margin: 8px 0 16px;
  }
}
.MCEvSidemenu-element[open] .MCEvSidemenu-element-title > svg {
  transform: rotate(0);
}
.MCEvSidemenu-element-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: var(--fuente1);
  line-height: 1.1;
  padding: 0 0 2vw;
  border-bottom: solid 1vw var(--elem_color);
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvSidemenu-element-title {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvSidemenu-element-title {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvSidemenu-element-title {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvSidemenu-element-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvSidemenu-element-title.right {
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .MCEvSidemenu-element-title {
    font-size: var(--fuente2);
  }
}
@media screen and (min-width: 600px) {
  .MCEvSidemenu-element-title {
    color: #003547;
    cursor: pointer;
  }
  .MCEvSidemenu-element-title:hover {
    text-decoration: underline;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvSidemenu-element-title {
    padding-bottom: 1vw;
    border-bottom-width: 0.3vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvSidemenu-element-title {
    padding-bottom: 8px;
    border-bottom-width: 4px;
  }
}
.MCEvSidemenu-element-title > svg {
  width: 6vw;
  margin: 0 2vw 0 0;
  transition-duration: 0.5s;
  transform: rotate(180deg);
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvSidemenu-element-title > svg {
    margin-right: 0.5vw;
    width: 1.2vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvSidemenu-element-title > svg {
    margin-right: 6px;
    width: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .MCEvSidemenu-element-title > svg {
    margin-right: 8px;
    width: 20px;
  }
}
.MCEvSidemenu-element-title > svg path {
  stroke: var(--elem_color);
}
.MCEvSidemenu-element-link {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: var(--fuente1);
  line-height: 1.1;
  margin: 5vw 0;
  padding-left: 8vw;
  display: block;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvSidemenu-element-link {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvSidemenu-element-link {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvSidemenu-element-link {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvSidemenu-element-link.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvSidemenu-element-link.right {
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .MCEvSidemenu-element-link {
    font-size: var(--fuente2);
  }
}
@media screen and (min-width: 600px) {
  .MCEvSidemenu-element-link {
    color: #003547;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvSidemenu-element-link {
    padding-left: 0.8vw;
    margin: 1.2vw 0;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvSidemenu-element-link {
    padding-left: 10px;
    margin: 16px 0;
  }
}
@media screen and (min-width: 1280px) {
  .MCEvSidemenu-element-link {
    margin: 20px 0;
    padding-left: 20px;
  }
}
.MCEvSidemenu-link {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: var(--fuente1);
  line-height: 1.1;
  display: block;
  padding-left: 3vw;
  border-left: 1vw solid #29d697;
  margin: 4vw 0;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvSidemenu-link {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvSidemenu-link {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvSidemenu-link {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvSidemenu-link.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvSidemenu-link.right {
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .MCEvSidemenu-link {
    font-size: var(--fuente2);
  }
}
@media screen and (min-width: 600px) {
  .MCEvSidemenu-link {
    color: #003547;
  }
  .MCEvSidemenu-link:hover {
    text-decoration: underline;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvSidemenu-link {
    padding-left: 0.8vw;
    margin: 1.6vw 0;
    border-left-width: 0.5vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvSidemenu-link {
    padding-left: 10px;
    margin: 20px 0;
    border-left-width: 4px;
  }
}
.MCEvSidemenu-link:first-of-type {
  margin-top: 5vh;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvSidemenu-link:first-of-type {
    margin-top: 2vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvSidemenu-link:first-of-type {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .MCEvSidemenu-link:first-of-type {
    margin-top: 40px;
  }
}
.MCEvSidemenu-social {
  width: 60vw;
  margin: 3vh auto;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
@media screen and (min-width: 600px) {
  .MCEvSidemenu-social {
    width: 100%;
  }
}
.MCEvSidemenu-social-icon {
  width: 6.5vw;
}
@media screen and (min-width: 1280px) {
  .MCEvSidemenu-social-icon {
    width: 30px;
  }
}
.MCEvSidemenu-social-icon > svg {
  width: 100%;
}
.MCEvSidemenu-social-icon > svg path {
  fill: #fff;
}
@media screen and (min-width: 600px) {
  .MCEvSidemenu-social-icon > svg path {
    fill: #003547;
  }
}

.MCEvEvent {
  padding-top: 20vw;
}
.MCEvEvent-category-title {
  color: #000;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: var(--fuente3);
  line-height: 1.2;
  width: 90vw;
  margin: 0 auto;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-category-title {
    font-size: var(--fuente3_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-category-title {
    font-size: var(--fuente3_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvEvent-category-title {
    font-size: var(--fuente3_desktop);
  }
}
.MCEvEvent-category-title a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvEvent-category-title a:hover,
.MCEvEvent-category-title a:visited {
  color: #005e54;
}
@media screen and (max-width: 600px) {
  .MCEvEvent-category-title {
    font-size: var(--fuente1);
  }
}
@media screen and (min-width: 600px) {
  .MCEvEvent-category-title {
    width: 100%;
  }
}
.MCEvEvent-category-line {
  width: 90vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 1vw 5vw 4vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-category-line {
    margin: 1vw 0 2vw 0;
    width: 77vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-category-line {
    margin: 12px 0 25px 0;
    width: calc(870px + 50vw - 550px);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvEvent-category-line {
    width: calc(1020px + 50vw - 640px);
  }
}
.MCEvEvent-category-line:before {
  content: "";
  width: 50%;
  background-color: var(--catcolor);
  height: 2vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-category-line:before {
    height: 1.2vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-category-line:before {
    height: 16px;
  }
}
.MCEvEvent-category-line:after {
  content: "";
  width: 50%;
  background-color: #8f8f8f;
  height: 0.2vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-category-line:after {
    height: 0.1w;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-category-line:after {
    height: 2px;
  }
}
.MCEvEvent-title {
  color: #000;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: var(--fuente2);
  line-height: 1.1;
  text-align: center;
  padding-bottom: 3vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-title {
    font-size: var(--fuente2_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-title {
    font-size: var(--fuente2_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvEvent-title {
    font-size: var(--fuente2_desktop);
  }
}
.MCEvEvent-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvEvent-title.right {
  margin-left: auto;
}
.MCEvEvent-image {
  width: 90vw;
  display: block;
  margin: 0 auto;
}
.MCEvEvent-image img {
  object-fit: cover;
  width: 100%;
}
.MCEvEvent-info {
  width: 85vw;
  margin: 0 auto;
}
.MCEvEvent-info-date {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3vw 0;
  border-bottom: solid 0.2vw #8f8f8f;
}
.MCEvEvent-info-date-day,
.MCEvEvent-info-date-hour {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente1);
  line-height: 1.2;
  width: 45%;
  box-sizing: border-box;
  position: relative;
  padding-right: 3vw;
  padding-left: 6vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-info-date-day,
  .MCEvEvent-info-date-hour {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-info-date-day,
  .MCEvEvent-info-date-hour {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvEvent-info-date-day,
  .MCEvEvent-info-date-hour {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvEvent-info-date-day a,
.MCEvEvent-info-date-hour a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvEvent-info-date-day a:hover,
.MCEvEvent-info-date-day a:visited,
.MCEvEvent-info-date-hour a:hover,
.MCEvEvent-info-date-hour a:visited {
  color: #005e54;
}
.MCEvEvent-info-date-day::before,
.MCEvEvent-info-date-hour::before {
  content: "";
  width: 4.8vw;
  height: 4.8vw;
  position: absolute;
  left: 0;
  top: 0;
}
.MCEvEvent-info-date-day::before {
  background: transparent url("./assets/icon_calendar.svg") center no-repeat;
  background-size: contain;
}
.MCEvEvent-info-date-hour::before {
  background: transparent url("./assets/icon_clock.svg") center no-repeat;
  background-size: contain;
}
.MCEvEvent-info-data {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 5vw;
  align-items: flex-start;
  padding: 3vw 0;
}
.MCEvEvent-info-data-price,
.MCEvEvent-info-data-public,
.MCEvEvent-info-data-space,
.MCEvEvent-info-data-pet {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente1);
  line-height: 1.2;
  width: 45%;
  box-sizing: border-box;
  position: relative;
  padding-right: 3vw;
  padding-left: 6vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-info-data-price,
  .MCEvEvent-info-data-public,
  .MCEvEvent-info-data-space,
  .MCEvEvent-info-data-pet {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-info-data-price,
  .MCEvEvent-info-data-public,
  .MCEvEvent-info-data-space,
  .MCEvEvent-info-data-pet {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvEvent-info-data-price,
  .MCEvEvent-info-data-public,
  .MCEvEvent-info-data-space,
  .MCEvEvent-info-data-pet {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvEvent-info-data-price a,
.MCEvEvent-info-data-public a,
.MCEvEvent-info-data-space a,
.MCEvEvent-info-data-pet a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvEvent-info-data-price a:hover,
.MCEvEvent-info-data-price a:visited,
.MCEvEvent-info-data-public a:hover,
.MCEvEvent-info-data-public a:visited,
.MCEvEvent-info-data-space a:hover,
.MCEvEvent-info-data-space a:visited,
.MCEvEvent-info-data-pet a:hover,
.MCEvEvent-info-data-pet a:visited {
  color: #005e54;
}
.MCEvEvent-info-data-price::before,
.MCEvEvent-info-data-public::before,
.MCEvEvent-info-data-space::before,
.MCEvEvent-info-data-pet::before {
  content: "";
  width: 4.8vw;
  height: 4.8vw;
  position: absolute;
  left: 0;
  top: 0;
}
.MCEvEvent-info-data-price::before {
  background: transparent url("./assets/icon_money.svg") center no-repeat;
  background-size: contain;
}
.MCEvEvent-info-data-public.adultos::before {
  background: transparent url("./assets/icon_person.svg") center no-repeat;
  background-size: contain;
}
.MCEvEvent-info-data-space.presencial::before {
  background: transparent url("./assets/icon_building.svg") center no-repeat;
  background-size: contain;
}
.MCEvEvent-info-data-space.virtual::before {
  background: transparent url("./assets/icon_virtual.svg") center no-repeat;
  background-size: contain;
}
.MCEvEvent-info-data-pet::before {
  background: transparent url("./assets/icon_pet.svg") center no-repeat;
  background-size: contain;
}
.MCEvEvent-streamming {
  color: #000;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-streamming {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-streamming {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvEvent-streamming {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvEvent-streamming a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvEvent-streamming a:hover,
.MCEvEvent-streamming a:visited {
  color: #005e54;
}
.MCEvEvent-streamming.active {
  color: #fff;
  box-sizing: border-box;
  position: relative;
  width: 80vw;
  display: block;
  padding: 2vw 0;
  border-radius: 3vw;
  margin: 3vw auto;
  text-align: center;
  background-color: #b91800;
}
.MCEvEvent-streamming.active::before {
  content: "";
  background: transparent url("./assets/icon_rec.svg") center no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  width: 4.8vw;
  height: 4.8vw;
  margin-right: 2vw;
}
.MCEvEvent-streamming.disabled {
  color: #000;
  width: max-content;
  padding: 2vw 0 2vw 8vw;
  display: block;
  box-sizing: border-box;
  margin: 3vw 0 3vw 7.5vw;
  position: relative;
  border-bottom: solid 0.2vw #000;
}
.MCEvEvent-streamming.disabled::before {
  content: "";
  position: absolute;
  background: transparent url("./assets/icon_virtual.svg") center no-repeat;
  background-size: contain;
  width: 4.8vw;
  height: 4.8vw;
  left: 0;
  top: 2vw;
}
.MCEvEvent-description {
  color: #000;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  line-height: 1.4;
  margin: 0 auto;
  width: 90vw;
  padding: 4vw 0;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-description {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-description {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvEvent-description {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvEvent-description a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvEvent-description a:hover,
.MCEvEvent-description a:visited {
  color: #005e54;
}
.MCEvEvent-scenario {
  margin: 5vw auto;
  width: 90vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 4vw;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.MCEvEvent-scenario-image {
  width: 30vw;
  object-fit: cover;
}
.MCEvEvent-scenario-info {
  width: 42vw;
  padding: 2vw 0;
}
.MCEvEvent-scenario-info-title {
  color: #595959;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: var(--fuente0);
  line-height: 1.1;
  line-height: 1;
  padding-bottom: 1vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-scenario-info-title {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-scenario-info-title {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvEvent-scenario-info-title {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvEvent-scenario-info-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvEvent-scenario-info-title.right {
  margin-left: auto;
}
.MCEvEvent-scenario-info-address {
  color: #000;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  padding-bottom: 1vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-scenario-info-address {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-scenario-info-address {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvEvent-scenario-info-address {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvEvent-scenario-info-address a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvEvent-scenario-info-address a:hover,
.MCEvEvent-scenario-info-address a:visited {
  color: #005e54;
}
.MCEvEvent-scenario-info-locality {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-scenario-info-locality {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-scenario-info-locality {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvEvent-scenario-info-locality {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvEvent-scenario-info-locality a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvEvent-scenario-info-locality a:hover,
.MCEvEvent-scenario-info-locality a:visited {
  color: #005e54;
}
.MCEvEvent-scenario-routes {
  width: 10vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.MCEvEvent-scenario-routes-waze,
.MCEvEvent-scenario-routes-maps {
  height: 50%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.MCEvEvent-scenario-routes-waze > img,
.MCEvEvent-scenario-routes-maps > img {
  width: 60%;
  animation-name: latido;
  animation-duration: 1.5s;
  animation-fill-mode: backwards;
  animation-iteration-count: infinite;
}
.MCEvEvent-scenario-routes-waze {
  background-color: #4bc2f1;
}
.MCEvEvent-scenario-routes-maps {
  background-color: #d9d9d9;
}
.MCEvEvent-host {
  width: 90vw;
  margin: 5vw auto;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.MCEvEvent-host.one {
  align-items: center;
}
.MCEvEvent-host.many {
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-evenly;
}
.MCEvEvent-host-title {
  color: #595959;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: var(--fuente0);
  line-height: 1.1;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-host-title {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-host-title {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvEvent-host-title {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvEvent-host-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvEvent-host-title.right {
  margin-left: auto;
}
.MCEvEvent-host.many .MCEvEvent-host-title {
  width: 100%;
  padding-bottom: 2vw;
}
.MCEvEvent-host-link {
  display: flex;
}
.MCEvEvent-host-link-image {
  width: 10vw;
  display: block;
}
.MCEvEvent-host-link-name {
  color: #005e54;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: var(--fuente0);
  line-height: 1.1;
  text-decoration: underline;
  text-align: center;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-host-link-name {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-host-link-name {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvEvent-host-link-name {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvEvent-host-link-name.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvEvent-host-link-name.right {
  margin-left: auto;
}
.MCEvEvent-host.one .MCEvEvent-host-link {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
}
.MCEvEvent-host.one .MCEvEvent-host-link-image {
  margin-right: 2vw;
}
.MCEvEvent-host.many .MCEvEvent-host-link {
  flex-direction: column;
  align-items: center;
  width: 25vw;
}
.MCEvEvent-host.many .MCEvEvent-host-link-image {
  margin-bottom: 2vw;
}
.MCEvEvent-tickets {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  background-color: #b91800;
  padding: 2vw 5vw;
  display: block;
  width: max-content;
  border-radius: 3vw;
  margin: 3vw auto 3vw 5vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-tickets {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-tickets {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvEvent-tickets {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvEvent-tickets a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvEvent-tickets a:hover,
.MCEvEvent-tickets a:visited {
  color: #005e54;
}
.MCEvEvent-body {
  width: 90vw;
  margin: 0 auto;
  padding: 3vw 0;
}
.MCEvEvent-body-title {
  color: #000;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: var(--fuente2);
  line-height: 1.1;
  width: max-content;
  margin: 0 auto 5vw;
  text-align: center;
  padding: 2vw 2vw 2vw;
  border-bottom: solid 1vw #b91800;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-body-title {
    font-size: var(--fuente2_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-body-title {
    font-size: var(--fuente2_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvEvent-body-title {
    font-size: var(--fuente2_desktop);
  }
}
.MCEvEvent-body-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvEvent-body-title.right {
  margin-left: auto;
}
.MCEvEvent-body h3,
.MCEvEvent-body h4,
.MCEvEvent-body h5 {
  color: #005e54;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: var(--fuente1);
  line-height: 1.1;
  padding-bottom: 3vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-body h3,
  .MCEvEvent-body h4,
  .MCEvEvent-body h5 {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-body h3,
  .MCEvEvent-body h4,
  .MCEvEvent-body h5 {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvEvent-body h3,
  .MCEvEvent-body h4,
  .MCEvEvent-body h5 {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvEvent-body h3.center,
.MCEvEvent-body h4.center,
.MCEvEvent-body h5.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvEvent-body h3.right,
.MCEvEvent-body h4.right,
.MCEvEvent-body h5.right {
  margin-left: auto;
}
.MCEvEvent-body p {
  color: #000;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  padding-bottom: 3vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvEvent-body p {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvEvent-body p {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvEvent-body p {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvEvent-body p a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvEvent-body p a:hover,
.MCEvEvent-body p a:visited {
  color: #005e54;
}
.MCEvEvent-body img {
  max-width: 90vw;
  display: block;
  margin: 2vw auto 3vw;
}

@keyframes latido {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.MCEvHost {
  padding-top: 20vw;
}
.MCEvHost-image {
  width: 30vw;
  display: block;
  margin-bottom: 3vw;
  margin-left: 5vw;
}
.MCEvHost-title {
  color: #003547;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: var(--fuente3);
  line-height: 1.1;
  width: 90vw;
  margin: 0 auto;
  padding-bottom: 3vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvHost-title {
    font-size: var(--fuente3_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvHost-title {
    font-size: var(--fuente3_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvHost-title {
    font-size: var(--fuente3_desktop);
  }
}
.MCEvHost-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvHost-title.right {
  margin-left: auto;
}
.MCEvHost-description {
  color: #000;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  width: 90vw;
  margin: 0 auto;
  padding-bottom: 6vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvHost-description {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvHost-description {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvHost-description {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvHost-description a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvHost-description a:hover,
.MCEvHost-description a:visited {
  color: #005e54;
}
.MCEvHost-subtitle {
  color: #003547;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: var(--fuente1);
  line-height: 1.1;
  width: max-content;
  margin-left: 5vw;
  margin-bottom: 6vw;
  padding-bottom: 1vw;
  border-bottom: 1vw #003547 solid;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvHost-subtitle {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvHost-subtitle {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvHost-subtitle {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvHost-subtitle.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvHost-subtitle.right {
  margin-left: auto;
}

.MCEvScenario {
  padding-top: 20vw;
}
.MCEvScenario-image {
  width: 100vw;
  display: block;
  margin: 0 auto 5vw;
}
.MCEvScenario-place {
  color: #595959;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  width: 90vw;
  margin: 0 auto;
  padding-bottom: 2vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvScenario-place {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvScenario-place {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvScenario-place {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvScenario-place a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvScenario-place a:hover,
.MCEvScenario-place a:visited {
  color: #005e54;
}
.MCEvScenario-title {
  color: #003547;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: var(--fuente3);
  line-height: 1.1;
  width: 90vw;
  margin: 0 auto;
  padding-bottom: 3vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvScenario-title {
    font-size: var(--fuente3_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvScenario-title {
    font-size: var(--fuente3_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvScenario-title {
    font-size: var(--fuente3_desktop);
  }
}
.MCEvScenario-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvScenario-title.right {
  margin-left: auto;
}
.MCEvScenario-description,
.MCEvScenario-address {
  color: #000;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  width: 90vw;
  margin: 0 auto;
  padding-bottom: 6vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvScenario-description,
  .MCEvScenario-address {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvScenario-description,
  .MCEvScenario-address {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvScenario-description,
  .MCEvScenario-address {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvScenario-description a,
.MCEvScenario-address a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvScenario-description a:hover,
.MCEvScenario-description a:visited,
.MCEvScenario-address a:hover,
.MCEvScenario-address a:visited {
  color: #005e54;
}
.MCEvScenario-subtitle {
  color: #003547;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: var(--fuente1);
  line-height: 1.1;
  width: max-content;
  margin-left: 5vw;
  margin-bottom: 6vw;
  padding-bottom: 1vw;
  border-bottom: 1vw #003547 solid;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvScenario-subtitle {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvScenario-subtitle {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvScenario-subtitle {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvScenario-subtitle.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvScenario-subtitle.right {
  margin-left: auto;
}
.MCEvScenario-routes {
  width: 90vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 5vw auto;
}
.MCEvScenario-routes-waze,
.MCEvScenario-routes-maps {
  width: 41vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 4vw;
  padding: 2vw 1vw;
}
.MCEvScenario-routes-waze > img,
.MCEvScenario-routes-maps > img {
  width: 8vw;
  height: 8vw;
  object-fit: contain;
  margin-right: 1vw;
}
.MCEvScenario-routes-waze > p,
.MCEvScenario-routes-maps > p {
  color: #000;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: var(--fuente1);
  line-height: 1.1;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvScenario-routes-waze > p,
  .MCEvScenario-routes-maps > p {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvScenario-routes-waze > p,
  .MCEvScenario-routes-maps > p {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvScenario-routes-waze > p,
  .MCEvScenario-routes-maps > p {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvScenario-routes-waze > p.center,
.MCEvScenario-routes-maps > p.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.MCEvScenario-routes-waze > p.right,
.MCEvScenario-routes-maps > p.right {
  margin-left: auto;
}
.MCEvScenario-routes-waze {
  background-color: #4bc2f1;
}
.MCEvScenario-routes-maps {
  background-color: #d9d9d9;
}

.MCEvCarrusel {
  width: 100vw;
  margin-top: 5vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCarrusel {
    width: 72vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCarrusel {
    width: 870px;
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCarrusel {
    width: 1020px;
  }
}
.MCEvCarrusel-title {
  color: #000;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: var(--fuente3);
  line-height: 1.2;
  width: 90vw;
  margin: 0 auto;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCarrusel-title {
    font-size: var(--fuente3_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCarrusel-title {
    font-size: var(--fuente3_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCarrusel-title {
    font-size: var(--fuente3_desktop);
  }
}
.MCEvCarrusel-title a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCarrusel-title a:hover,
.MCEvCarrusel-title a:visited {
  color: #005e54;
}
@media screen and (max-width: 600px) {
  .MCEvCarrusel-title {
    font-size: var(--fuente1);
  }
}
@media screen and (min-width: 600px) {
  .MCEvCarrusel-title {
    width: 100%;
  }
}
.MCEvCarrusel-line {
  width: 90vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 1vw 5vw 4vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCarrusel-line {
    margin: 1vw 0 2vw 0;
    width: 77vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCarrusel-line {
    margin: 12px 0 25px 0;
    width: calc(870px + 50vw - 550px);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCarrusel-line {
    width: calc(1020px + 50vw - 640px);
  }
}
.MCEvCarrusel-line:before {
  content: "";
  width: 50%;
  background-color: var(--catcolor);
  height: 2vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCarrusel-line:before {
    height: 1.2vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCarrusel-line:before {
    height: 16px;
  }
}
.MCEvCarrusel-line:after {
  content: "";
  width: 50%;
  background-color: #8f8f8f;
  height: 0.2vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCarrusel-line:after {
    height: 0.1w;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCarrusel-line:after {
    height: 2px;
  }
}
.MCEvCarrusel-carrusel {
  width: 100vw;
  height: max-content;
  overflow-x: scroll;
  padding-bottom: 2vw;
}
@media screen and (min-width: 600px) {
  .MCEvCarrusel-carrusel {
    width: 100%;
    height: auto;
    overflow: auto;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCarrusel-carrusel {
    padding-bottom: 1vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCarrusel-carrusel {
    padding-bottom: 20px;
  }
}
.MCEvCarrusel-carrusel-container {
  display: flex;
  flex-direction: row;
  width: max-content;
  padding-left: 5vw;
}
@media screen and (min-width: 600px) {
  .MCEvCarrusel-carrusel-container {
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    padding-left: 0;
  }
}
.MCEvCarrusel-arrows {
  width: 20vw;
  margin: 4vw auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.MCEvCarrusel-arrows > svg {
  width: 6vw;
  transform: rotate(90deg);
}
.MCEvCarrusel-arrows > svg:first-of-type {
  transform: rotate(-90deg);
}
.MCEvCarrusel-arrows > svg path {
  stroke: var(--catcolor);
}
@media screen and (min-width: 600px) {
  .MCEvCarrusel-arrows {
    display: none;
  }
}
.MCEvCarrusel-cta {
  color: #8f8f8f;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente1);
  line-height: 1.2;
  display: block;
  margin: 5vw auto;
  width: 90vw;
  text-align: right;
  text-decoration: underline;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCarrusel-cta {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCarrusel-cta {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvCarrusel-cta {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvCarrusel-cta a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvCarrusel-cta a:hover,
.MCEvCarrusel-cta a:visited {
  color: #005e54;
}
@media screen and (min-width: 600px) {
  .MCEvCarrusel-cta {
    width: max-content;
    display: block;
  }
  .MCEvCarrusel-cta:hover {
    color: #003547;
    text-decoration: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvCarrusel-cta {
    margin: 1vw 0 1vw auto;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvCarrusel-cta {
    margin: 20px 0 20px auto;
  }
}

.MCEvFooter {
  background-color: #003547;
  display: flex;
  flex-direction: column;
  width: 100vw;
  padding: 10vw 0 0;
  border-top-left-radius: 8vw;
  border-top-right-radius: 8vw;
}
@media screen and (min-width: 600px) {
  .MCEvFooter {
    flex-direction: row-reverse;
    border-radius: unset;
    justify-content: space-between;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvFooter {
    padding: 2.5vw 5vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvFooter {
    width: 1100px;
    padding: 50px calc(50vw - 550px);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvFooter {
    width: 1280px;
    padding: 50px calc(50vw - 640px);
  }
}
.MCEvFooter-info {
  width: 90vw;
  padding: 0 5vw;
}
.MCEvFooter-info-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.MCEvFooter-info-menu-element {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente1);
  line-height: 1.2;
  padding-top: 3vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvFooter-info-menu-element {
    font-size: var(--fuente1_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvFooter-info-menu-element {
    font-size: var(--fuente1_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvFooter-info-menu-element {
    font-size: var(--fuente1_desktop);
  }
}
.MCEvFooter-info-menu-element a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvFooter-info-menu-element a:hover,
.MCEvFooter-info-menu-element a:visited {
  color: #005e54;
}
.MCEvFooter-info-social {
  display: flex;
  margin: 0 auto;
  justify-content: space-around;
  padding: 5vw 0;
  width: 50vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvFooter-info-social {
    width: 35vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvFooter-info-social {
    width: 350px;
  }
}
.MCEvFooter-info-social-icon img {
  width: 6vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvFooter-info-social-icon img {
    width: 3vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvFooter-info-social-icon img {
    width: 30px;
  }
}
.MCEvFooter-logo {
  width: 90vw;
  padding: 3 vw 5vw;
}
.MCEvFooter-logo-icon {
  width: 30vw;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvFooter-logo-icon {
    width: 9vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvFooter-logo-icon {
    width: 110px;
  }
}
.MCEvFooter-logo-logo {
  width: 40vw;
  display: block;
  margin: 5vw auto 0;
  padding-bottom: 8vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvFooter-logo-logo {
    margin-top: 1vw;
    width: 12vw;
  }
}
@media screen and (min-width: 1100px) {
  .MCEvFooter-logo-logo {
    margin-top: 15px;
    width: 150px;
  }
}
.MCEvFooter-end {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 7vw 5vw 9vw;
  background-color: #054a62;
}
.MCEvFooter-end p {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  padding-right: 2vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvFooter-end p {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvFooter-end p {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvFooter-end p {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvFooter-end p a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvFooter-end p a:hover,
.MCEvFooter-end p a:visited {
  color: #005e54;
}
.MCEvFooter-end img {
  height: 5vw;
}
.MCEvFooter-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2vw 5vw 9vw;
  background-color: #054a62;
}
.MCEvFooter-support p {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: var(--fuente0);
  line-height: 1.2;
  padding-right: 2vw;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .MCEvFooter-support p {
    font-size: var(--fuente0_tablet);
  }
}
@media screen and (min-width: 1100px) {
  .MCEvFooter-support p {
    font-size: var(--fuente0_desktop);
  }
}
@media screen and (min-width: 1280px) {
  .MCEvFooter-support p {
    font-size: var(--fuente0_desktop);
  }
}
.MCEvFooter-support p a {
  color: #005e54;
  font-weight: 700;
  text-decoration: underline;
}
.MCEvFooter-support p a:hover,
.MCEvFooter-support p a:visited {
  color: #005e54;
}
.MCEvFooter-support img {
  width: 60vw;
  filter: brightness(50);
}
