.vbox-overlay {
  --vbox-tools-color:#fff;
  --vbox-title-background:#101010;
  --vbox-title-width:"auto";
  --vbox-title-radius:0;
  --vbox-share-background:#101010;
  --vbox-share-width:"auto";
  --vbox-share-radius:0;
  --vbox-padding:0;
}

.vbox-overlay *, .vbox-overlay :after, .vbox-overlay :before {
  -webkit-backface-visibility: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.vbox-overlay * {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

.vbox-overlay {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 999999;
}

.vbox-share, .vbox-title {
  line-height: 1;
  position: fixed;
  z-index: 98;
  text-align: center;
  margin: 0 auto;
  color: var(--vbox-tools-color);
}

.vbox-title {
  font-size: 12px;
  background-color: var(--vbox-title-background);
  width: var(--vbox-title-width);
  border-radius: var(--vbox-title-radius);
  padding: 12px 54px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.vbox-share {
  font-size: 24px;
  padding: 0 0.35em;
  background-color: var(--vbox-share-background);
  width: var(--vbox-share-width);
  border-radius: var(--vbox-share-radius);
}

.vbox-link-btn, button.vbox-link-btn, button.vbox-link-btn:active, button.vbox-link-btn:focus, button.vbox-link-btn:hover {
  border: none !important;
  background: 0 0 !important;
  box-shadow: none !important;
  color: inherit !important;
  padding: 6px 12px;
  outline: 0;
  display: inline-block;
  cursor: pointer;
}

.vbox-share a {
  color: inherit !important;
  padding: 6px 12px;
  display: inline-block;
}

.vbox-share svg {
  z-index: 10;
  vertical-align: middle;
}

.vbox-close {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  padding: 6px 15px;
  color: #000;
  color: var(--vbox-tools-color);
  border: 0;
  font-size: 24px;
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.vbox-close:hover {
  opacity: 1;
}

.vbox-left-corner {
  cursor: pointer;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  line-height: 1;
  font-size: 12px;
  z-index: 99;
  display: flex;
  align-items: center;
  color: var(--vbox-tools-color);
}

.vbox-num {
  display: inline-block;
  padding: 12px 15px;
}

.vbox-left {
  left: 0;
}

.vbox-right {
  right: 0;
}

.vbox-top {
  top: 0;
}

.vbox-bottom {
  bottom: 0;
}

.vbox-next, .vbox-prev {
  position: fixed;
  top: 50%;
  margin-top: -15px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 45px;
  height: 45px;
  z-index: 99;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.vbox-next:hover, .vbox-prev:hover {
  opacity: 1;
}

.vbox-next span, .vbox-prev span {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: var(--vbox-tools-color);
  border-right-color: var(--vbox-tools-color);
  text-indent: -100px;
  position: absolute;
  top: 8px;
  display: block;
}

.vbox-prev {
  left: 15px;
}

.vbox-next {
  right: 15px;
}

.vbox-prev span {
  left: 10px;
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.vbox-next span {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 10px;
}

.vbox-inline, .venoratio {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.venoratio::before {
  display: block;
  padding-top: var(--vb-aspect-ratio);
  content: "";
}

.venoratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--vbox-padding);
}

.venoratio-1x1 {
  --vb-aspect-ratio:100%;
}

.venoratio-4x3 {
  --vb-aspect-ratio:calc(3 / 4 * 100%);
}

.venoratio-16x9 {
  --vb-aspect-ratio:calc(9 / 16 * 100%);
}

.venoratio-21x9 {
  --vb-aspect-ratio:calc(9 / 21 * 100%);
}

.venoratio-full {
  --vb-aspect-ratio:calc(100vh - 100px);
}

.vbox-child.vbox-inline, .vbox-child.venoratio {
  max-width: 100%;
}

.vbox-open {
  overflow: hidden;
}

.vbox-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  z-index: 20;
  max-height: 100%;
  padding: 30px 0;
}

.vbox-content {
  opacity: 0;
}

.vbox-content {
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 20px 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.vbox-container img {
  max-width: 100%;
  height: auto;
}

.vbox-child {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  max-width: 100%;
  text-align: initial;
  padding: var(--vbox-padding);
}

.vbox-child img {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: block;
}

.vbox-grab .vbox-child img {
  cursor: grab;
}

.vbox-child > iframe {
  border: none !important;
}

.vbox-content.swipe-left {
  margin-left: -200px !important;
}

.vbox-content.swipe-right {
  margin-left: 200px !important;
}

.vbox-preloader {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

.vbox-preloader .vbox-preloader-inner {
  opacity: 1;
  transition: opacity 0.2s;
}

.vbox-hidden {
  display: none;
}

.vbox-preloader.vbox-hidden .vbox-preloader-inner {
  opacity: 0;
}

.vbox-backdrop {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateZ(-1px);
  -moz-transform: translateZ(-1px);
  -o-transform: translateZ(-1px);
  transform: translateZ(-1px);
  z-index: 0;
}

.vbox-tooltip {
  position: relative;
  display: inline-block;
}

.vbox-tooltip .vbox-tooltip-text {
  visibility: hidden;
  color: #fff;
  text-align: center;
  padding: 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
  margin-bottom: 2px;
  font-family: sans-serif;
}

.vbox-top .vbox-tooltip .vbox-tooltip-text {
  bottom: auto;
  top: 100%;
  margin-bottom: 0;
  margin-top: 2px;
}

.vbox-tooltip-inner {
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  font-size: 10px;
}

.vbox-tooltip:hover .vbox-tooltip-text {
  visibility: visible;
  opacity: 1;
}

.vbox-overlay {
  --sk-size:40px;
  --sk-color:#333;
}

.sk-center {
  margin: auto;
}

.sk-plane {
  width: var(--sk-size);
  height: var(--sk-size);
  background-color: var(--sk-color);
  animation: sk-plane 1.2s infinite ease-in-out;
}

@keyframes sk-plane {
  0% {
    transform: perspective(120px) rotateX(0) rotateY(0);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.sk-chase {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot {
  100%, 80% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }
  0%, 100% {
    transform: scale(1);
  }
}
.sk-bounce {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-bounce-dot {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--sk-color);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.sk-bounce-dot:nth-child(2) {
  animation-delay: -1s;
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
  }
  45%, 55% {
    transform: scale(1);
  }
}
.sk-wave {
  width: var(--sk-size);
  height: var(--sk-size);
  display: flex;
  justify-content: space-between;
}

.sk-wave-rect {
  background-color: var(--sk-color);
  height: 100%;
  width: 15%;
  animation: sk-wave 1.2s infinite ease-in-out;
}

.sk-wave-rect:nth-child(1) {
  animation-delay: -1.2s;
}

.sk-wave-rect:nth-child(2) {
  animation-delay: -1.1s;
}

.sk-wave-rect:nth-child(3) {
  animation-delay: -1s;
}

.sk-wave-rect:nth-child(4) {
  animation-delay: -0.9s;
}

.sk-wave-rect:nth-child(5) {
  animation-delay: -0.8s;
}

@keyframes sk-wave {
  0%, 100%, 40% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}
.sk-pulse {
  width: var(--sk-size);
  height: var(--sk-size);
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-pulse 1.2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@keyframes sk-pulse {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.sk-flow {
  width: calc(var(--sk-size) * 1.3);
  height: calc(var(--sk-size) * 1.3);
  display: flex;
  justify-content: space-between;
}

.sk-flow-dot {
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 50%;
  animation: sk-flow 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s infinite both;
}

.sk-flow-dot:nth-child(1) {
  animation-delay: -0.3s;
}

.sk-flow-dot:nth-child(2) {
  animation-delay: -0.15s;
}

@keyframes sk-flow {
  0%, 100%, 80% {
    transform: scale(0.3);
  }
  40% {
    transform: scale(1);
  }
}
.sk-swing {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  animation: sk-swing 1.8s infinite linear;
}

.sk-swing-dot {
  width: 45%;
  height: 45%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-swing-dot 2s infinite ease-in-out;
}

.sk-swing-dot:nth-child(2) {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes sk-swing {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-swing-dot {
  0%, 100% {
    transform: scale(0.2);
  }
  50% {
    transform: scale(1);
  }
}
.sk-circle {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-circle-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle-dot:before {
  content: "";
  display: block;
  width: 15%;
  height: 15%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-circle 1.2s infinite ease-in-out both;
}

.sk-circle-dot:nth-child(1) {
  transform: rotate(30deg);
}

.sk-circle-dot:nth-child(2) {
  transform: rotate(60deg);
}

.sk-circle-dot:nth-child(3) {
  transform: rotate(90deg);
}

.sk-circle-dot:nth-child(4) {
  transform: rotate(120deg);
}

.sk-circle-dot:nth-child(5) {
  transform: rotate(150deg);
}

.sk-circle-dot:nth-child(6) {
  transform: rotate(180deg);
}

.sk-circle-dot:nth-child(7) {
  transform: rotate(210deg);
}

.sk-circle-dot:nth-child(8) {
  transform: rotate(240deg);
}

.sk-circle-dot:nth-child(9) {
  transform: rotate(270deg);
}

.sk-circle-dot:nth-child(10) {
  transform: rotate(300deg);
}

.sk-circle-dot:nth-child(11) {
  transform: rotate(330deg);
}

.sk-circle-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-circle-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-circle-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-circle-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-circle-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-circle-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

.sk-circle-dot:nth-child(7):before {
  animation-delay: -0.5s;
}

.sk-circle-dot:nth-child(8):before {
  animation-delay: -0.4s;
}

.sk-circle-dot:nth-child(9):before {
  animation-delay: -0.3s;
}

.sk-circle-dot:nth-child(10):before {
  animation-delay: -0.2s;
}

.sk-circle-dot:nth-child(11):before {
  animation-delay: -0.1s;
}

@keyframes sk-circle {
  0%, 100%, 80% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.sk-circle-fade {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-circle-fade-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle-fade-dot:before {
  content: "";
  display: block;
  width: 15%;
  height: 15%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-circle-fade 1.2s infinite ease-in-out both;
}

.sk-circle-fade-dot:nth-child(1) {
  transform: rotate(30deg);
}

.sk-circle-fade-dot:nth-child(2) {
  transform: rotate(60deg);
}

.sk-circle-fade-dot:nth-child(3) {
  transform: rotate(90deg);
}

.sk-circle-fade-dot:nth-child(4) {
  transform: rotate(120deg);
}

.sk-circle-fade-dot:nth-child(5) {
  transform: rotate(150deg);
}

.sk-circle-fade-dot:nth-child(6) {
  transform: rotate(180deg);
}

.sk-circle-fade-dot:nth-child(7) {
  transform: rotate(210deg);
}

.sk-circle-fade-dot:nth-child(8) {
  transform: rotate(240deg);
}

.sk-circle-fade-dot:nth-child(9) {
  transform: rotate(270deg);
}

.sk-circle-fade-dot:nth-child(10) {
  transform: rotate(300deg);
}

.sk-circle-fade-dot:nth-child(11) {
  transform: rotate(330deg);
}

.sk-circle-fade-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-circle-fade-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-circle-fade-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-circle-fade-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-circle-fade-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-circle-fade-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

.sk-circle-fade-dot:nth-child(7):before {
  animation-delay: -0.5s;
}

.sk-circle-fade-dot:nth-child(8):before {
  animation-delay: -0.4s;
}

.sk-circle-fade-dot:nth-child(9):before {
  animation-delay: -0.3s;
}

.sk-circle-fade-dot:nth-child(10):before {
  animation-delay: -0.2s;
}

.sk-circle-fade-dot:nth-child(11):before {
  animation-delay: -0.1s;
}

@keyframes sk-circle-fade {
  0%, 100%, 39% {
    opacity: 0;
    transform: scale(0.6);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
.sk-grid {
  width: var(--sk-size);
  height: var(--sk-size);
}

.sk-grid-cube {
  width: 33.33%;
  height: 33.33%;
  background-color: var(--sk-color);
  float: left;
  animation: sk-grid 1.3s infinite ease-in-out;
}

.sk-grid-cube:nth-child(1) {
  animation-delay: 0.2s;
}

.sk-grid-cube:nth-child(2) {
  animation-delay: 0.3s;
}

.sk-grid-cube:nth-child(3) {
  animation-delay: 0.4s;
}

.sk-grid-cube:nth-child(4) {
  animation-delay: 0.1s;
}

.sk-grid-cube:nth-child(5) {
  animation-delay: 0.2s;
}

.sk-grid-cube:nth-child(6) {
  animation-delay: 0.3s;
}

.sk-grid-cube:nth-child(7) {
  animation-delay: 0s;
}

.sk-grid-cube:nth-child(8) {
  animation-delay: 0.1s;
}

.sk-grid-cube:nth-child(9) {
  animation-delay: 0.2s;
}

@keyframes sk-grid {
  0%, 100%, 70% {
    transform: scale3D(1, 1, 1);
  }
  35% {
    transform: scale3D(0, 0, 1);
  }
}
.sk-fold {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  transform: rotateZ(45deg);
}

.sk-fold-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
}

.sk-fold-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--sk-color);
  animation: sk-fold 2.4s infinite linear both;
  transform-origin: 100% 100%;
}

.sk-fold-cube:nth-child(2) {
  transform: scale(1.1) rotateZ(90deg);
}

.sk-fold-cube:nth-child(4) {
  transform: scale(1.1) rotateZ(180deg);
}

.sk-fold-cube:nth-child(3) {
  transform: scale(1.1) rotateZ(270deg);
}

.sk-fold-cube:nth-child(2):before {
  animation-delay: 0.3s;
}

.sk-fold-cube:nth-child(4):before {
  animation-delay: 0.6s;
}

.sk-fold-cube:nth-child(3):before {
  animation-delay: 0.9s;
}

@keyframes sk-fold {
  0%, 10% {
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    transform: perspective(140px) rotateX(0);
    opacity: 1;
  }
  100%, 90% {
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
.sk-wander {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-wander-cube {
  background-color: var(--sk-color);
  width: 20%;
  height: 20%;
  position: absolute;
  top: 0;
  left: 0;
  --sk-wander-distance:calc(var(--sk-size) * 0.75);
  animation: sk-wander 2s ease-in-out -2s infinite both;
}

.sk-wander-cube:nth-child(2) {
  animation-delay: -0.5s;
}

.sk-wander-cube:nth-child(3) {
  animation-delay: -1s;
}

@keyframes sk-wander {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: translateX(var(--sk-wander-distance)) rotate(-90deg) scale(0.6);
  }
  50% {
    transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-179deg);
  }
  50.1% {
    transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-180deg);
  }
  75% {
    transform: translateX(0) translateY(var(--sk-wander-distance)) rotate(-270deg) scale(0.6);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list {
  display: block;
}

.splide__track--fade > .splide__list > .splide__slide {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: transparent;
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}
@charset "UTF-8";
.tac_visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; /* added line */
  border: 0;
}

div#tarteaucitronAlertBig:focus {
  outline: 0;
}

.tarteaucitron-modal-open {
  overflow: hidden;
  height: 100%;
}

#tarteaucitronContentWrapper {
  display: unset;
}

/** 14042021 **/
span.tarteaucitronReadmoreSeparator {
  display: inline !important;
}

/******/
/** 09052021 **/
.tarteaucitronName .tacCurrentStatus, .tarteaucitronName .tarteaucitronReadmoreSeparator {
  color: #333 !important;
  font-size: 12px !important;
  text-transform: capitalize;
}

/**************/
/** 27032021 **/
button.tarteaucitron-toggle-group {
  display: block;
}

span.tarteaucitronH3 {
  font-weight: 700 !important;
}

#tarteaucitron #tarteaucitronServices_mandatory .tarteaucitronH3 {
  font-weight: 500 !important;
  font-size: 14px;
  margin-top: 7px;
}

.tarteaucitronLine {
  border-left: 0px solid transparent !important;
}

/*****/
/** BETTER MOBILE MODE **/
@media screen and (max-width: 767px) {
  html body #tarteaucitronRoot #tarteaucitron ul#tarteaucitronServices_mandatory .tarteaucitronDeny {
    display: none !important;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button,
html body #tarteaucitronRoot #tarteaucitron .tarteaucitronAsk,
html body #tarteaucitronRoot #tarteaucitron .tarteaucitronName {
    width: 100% !important;
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    margin-bottom: 8px !important;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder ul .tarteaucitronLine {
    padding: 16px !important;
  }
  html body #tarteaucitronRoot #tarteaucitron div#tarteaucitronMainLineOffset .tarteaucitronName {
    display: none !important;
  }
  #tarteaucitronServices_mandatory li.tarteaucitronLine .tarteaucitronName span {
    width: 100% !important;
    display: inline-block;
  }
  li.tarteaucitronLine .tarteaucitronName span {
    width: 80% !important;
    display: inline-block;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button.tarteaucitron-toggle-group {
    width: 10% !important;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0px;
    padding: 10px 0;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button.tarteaucitron-toggle-group:before {
    content: "▾";
    font-weight: 700;
    font-size: 14px;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder .tarteaucitronIsExpanded button.tarteaucitron-toggle-group:before {
    content: "▴";
  }
}
@media screen and (min-width: 768px) {
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button.tarteaucitron-toggle-group:after {
    content: "▾";
    font-weight: 700;
    font-size: 14px;
    margin-left: 15px;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder .tarteaucitronIsExpanded button.tarteaucitron-toggle-group:after {
    content: "▴";
    margin-left: 15px;
  }
}
/****/
/***
* Reset CSS
*/
#tarteaucitronRoot div, #tarteaucitronRoot span, #tarteaucitronRoot applet, #tarteaucitronRoot object, #tarteaucitronRoot iframe, #tarteaucitronRoot h1, #tarteaucitronRoot h2, #tarteaucitronRoot h3, #tarteaucitronRoot h4, #tarteaucitronRoot h5, #tarteaucitronRoot h6, #tarteaucitronRoot p, #tarteaucitronRoot blockquote, #tarteaucitronRoot pre, #tarteaucitronRoot a, #tarteaucitronRoot abbr, #tarteaucitronRoot acronym, #tarteaucitronRoot address, #tarteaucitronRoot big, #tarteaucitronRoot cite, #tarteaucitronRoot code, #tarteaucitronRoot del, #tarteaucitronRoot dfn, #tarteaucitronRoot em, #tarteaucitronRoot img, #tarteaucitronRoot ins, #tarteaucitronRoot kbd, #tarteaucitronRoot q, #tarteaucitronRoot s, #tarteaucitronRoot samp, #tarteaucitronRoot small, #tarteaucitronRoot strike, #tarteaucitronRoot strong, #tarteaucitronRoot sub, #tarteaucitronRoot sup, #tarteaucitronRoot tt, #tarteaucitronRoot var, #tarteaucitronRoot b, #tarteaucitronRoot u, #tarteaucitronRoot i, #tarteaucitronRoot center, #tarteaucitronRoot dl, #tarteaucitronRoot dt, #tarteaucitronRoot dd, #tarteaucitronRoot ol, #tarteaucitronRoot ul, #tarteaucitronRoot li, #tarteaucitronRoot fieldset, #tarteaucitronRoot form, #tarteaucitronRoot label, #tarteaucitronRoot legend, #tarteaucitronRoot table, #tarteaucitronRoot caption, #tarteaucitronRoot tbody, #tarteaucitronRoot tfoot, #tarteaucitronRoot thead, #tarteaucitronRoot tr, #tarteaucitronRoot th, #tarteaucitronRoot td, #tarteaucitronRoot article, #tarteaucitronRoot aside, #tarteaucitronRoot canvas, #tarteaucitronRoot details, #tarteaucitronRoot embed, #tarteaucitronRoot figure, #tarteaucitronRoot figcaption, #tarteaucitronRoot footer, #tarteaucitronRoot header, #tarteaucitronRoot hgroup, #tarteaucitronRoot menu, #tarteaucitronRoot nav, #tarteaucitronRoot output, #tarteaucitronRoot ruby, #tarteaucitronRoot section, #tarteaucitronRoot summary, #tarteaucitronRoot time, #tarteaucitronRoot mark, #tarteaucitronRoot audio, #tarteaucitronRoot video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  /*background: initial;*/
  text-align: initial;
  text-shadow: initial;
}

/* Animation */
#tarteaucitronRoot * {
  transition: border 300ms, background 300ms, opacity 200ms, box-shadow 400ms;
}

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

#tarteaucitronRoot ol, #tarteaucitronRoot ul {
  list-style: none;
}

#tarteaucitronRoot blockquote, #tarteaucitronRoot q {
  quotes: none;
}

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

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

#tarteaucitronRoot a:focus-visible, #tarteaucitronRoot button:focus-visible {
  outline: 3px dashed #3d86d8;
}

/***
 * Better scroll management
 */
div#tarteaucitronMainLineOffset {
  margin-top: 0 !important;
}

div#tarteaucitronServices {
  margin-top: 21px !important;
}

#tarteaucitronServices::-webkit-scrollbar {
  width: 5px;
}

#tarteaucitronServices::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}

#tarteaucitronServices::-webkit-scrollbar-thumb {
  background-color: #ddd;
  outline: 0px solid slategrey;
}

div#tarteaucitronServices {
  box-shadow: 0 40px 60px #545454;
}

/***
 * Responsive layout for the control panel
 */
@media screen and (max-width: 479px) {
  #tarteaucitron .tarteaucitronLine .tarteaucitronName {
    width: 90% !important;
  }
  #tarteaucitron .tarteaucitronLine .tarteaucitronAsk {
    float: left !important;
    margin: 10px 15px 5px;
  }
}
@media screen and (max-width: 767px) {
  #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer, #tarteaucitron {
    background: #fff;
    border: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    left: 0 !important;
    margin: 0 !important;
    max-height: 100% !important;
    max-width: 100% !important;
    top: 0 !important;
    width: 100% !important;
  }
  #tarteaucitron .tarteaucitronBorder {
    border: 0 !important;
  }
  #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList {
    border: 0 !important;
  }
  #tarteaucitron #tarteaucitronServices .tarteaucitronTitle {
    text-align: left !important;
  }
  .tarteaucitronName .tarteaucitronH2 {
    max-width: 80%;
  }
  #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk {
    text-align: center !important;
  }
  #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk button {
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #tarteaucitron {
    border: 0 !important;
    left: 0 !important;
    margin: 0 5% !important;
    max-height: 80% !important;
    width: 90% !important;
  }
}
/***
 * Common value
 */
#tarteaucitronRoot div#tarteaucitron {
  left: 0;
  right: 0;
  margin: auto;
}

#tarteaucitronRoot button#tarteaucitronBack {
  background: #eee;
}

#tarteaucitron .clear {
  clear: both;
}

#tarteaucitron a {
  color: rgb(66, 66, 66);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

#tarteaucitronRoot button {
  background: transparent;
  border: 0;
}

#tarteaucitronAlertBig strong, #tarteaucitronAlertSmall strong,
#tarteaucitronAlertBig a, #tarteaucitronAlertSmall a {
  color: #fff;
}

#tarteaucitron strong {
  font-size: 22px;
  font-weight: 500;
}

#tarteaucitron ul {
  padding: 0;
}

#tarteaucitron .tarteaucitronH1, #tarteaucitron .tarteaucitronH2, #tarteaucitron .tarteaucitronH3, #tarteaucitron .tarteaucitronH4, #tarteaucitron .tarteaucitronH5, #tarteaucitron .tarteaucitronH6 {
  display: block;
}

.cookie-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/***
 * Root div added just before </body>
 */
#tarteaucitronRoot {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

#tarteaucitronRoot * {
  box-sizing: initial;
  color: #333;
  font-family: sans-serif !important;
  font-size: 14px;
  line-height: normal;
  vertical-align: initial;
}

#tarteaucitronRoot .tarteaucitronH1 {
  font-size: 1.5em;
  text-align: center;
  color: #fff;
  margin: 15px 0 28px;
}

#tarteaucitronRoot .tarteaucitronH2 {
  display: inline-block;
  margin: 12px 0 0 10px;
  color: #fff;
}

#tarteaucitronCookiesNumberBis.tarteaucitronH2 {
  margin-left: 0;
}

/***
 * Control panel
 */
#tarteaucitronBack {
  background: #fff;
  display: none;
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2147483646;
}

#tarteaucitron {
  display: none;
  max-height: 80%;
  left: 50%;
  margin: 0 auto 0 -430px;
  padding: 0;
  position: fixed;
  top: 6%;
  width: 860px;
  z-index: 2147483647;
}

#tarteaucitron .tarteaucitronBorder {
  background: #fff;
  border: 2px solid #333;
  border-top: 0;
  height: auto;
  overflow: auto;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronClosePanelCookie,
#tarteaucitron #tarteaucitronClosePanel {
  background: #333333;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  padding: 4px 0;
  position: absolute;
  right: 0;
  text-align: center;
  width: 70px;
}

#tarteaucitron #tarteaucitronDisclaimer {
  color: #555;
  font-size: 12px;
  margin: 15px auto 0;
  width: 80%;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronHidden,
#tarteaucitron #tarteaucitronServices .tarteaucitronHidden {
  background: rgba(51, 51, 51, 0.07);
}

#tarteaucitron #tarteaucitronServices .tarteaucitronHidden {
  display: none;
  position: relative;
}

#tarteaucitronCookiesList .tarteaucitronH3.tarteaucitronTitle {
  width: 100%;
  box-sizing: border-box;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronTitle,
#tarteaucitron #tarteaucitronServices .tarteaucitronTitle button,
#tarteaucitron #tarteaucitronInfo,
#tarteaucitron #tarteaucitronServices .tarteaucitronDetails {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  margin: 20px 0px 0px;
  padding: 5px 20px;
  text-align: left;
  width: auto;
  background: #333;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a,
#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a {
  color: #fff;
  font-weight: 500;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a:hover,
#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a:hover {
  text-decoration: none !important;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a {
  font-size: 22px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a {
  font-size: 14px;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronTitle {
  padding: 5px 10px;
  margin: 0;
}

#tarteaucitron #tarteaucitronInfo,
#tarteaucitron #tarteaucitronServices .tarteaucitronDetails {
  color: #fff;
  display: none;
  font-size: 12px;
  font-weight: 500;
  margin-top: 0;
  max-width: 270px;
  padding: 20px;
  position: absolute;
  z-index: 2147483647;
}

#tarteaucitron #tarteaucitronInfo a {
  color: #fff;
  text-decoration: underline;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine:hover {
  background: rgba(51, 51, 51, 0.2);
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine {
  background: rgba(51, 51, 51, 0.1);
  border-left: 5px solid transparent;
  margin: 0;
  overflow: hidden;
  padding: 15px 5px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsAllowed {
  border-color: #1B870B;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsDenied {
  border-color: #9C1A1A;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine {
  background: #333;
  border: 3px solid #333;
  border-left: 9px solid #333;
  border-top: 5px solid #333;
  margin-bottom: 0;
  margin-top: 21px;
  position: relative;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine:hover {
  background: #333;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName {
  margin-left: 15px;
  margin-top: 2px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName button {
  color: #fff;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronAsk {
  margin-top: 0px !important;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName {
  display: inline-block;
  float: left;
  margin-left: 10px;
  text-align: left;
  width: 50%;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName a:hover {
  text-decoration: underline;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk {
  display: inline-block;
  float: right;
  margin: 7px 15px 0;
  text-align: right;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronAllow,
#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronDeny,
.tac_activate .tarteaucitronAllow {
  background: #555;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: 6px 10px;
  text-align: center;
  text-decoration: none;
  width: auto;
  border: 0;
}

#tarteaucitron #tarteaucitronServices #tarteaucitronAllAllowed.tarteaucitronIsSelected {
  background-color: #1B870B;
  opacity: 1;
}

#tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied.tarteaucitronIsSelected,
#tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied2.tarteaucitronIsSelected {
  background-color: #9C1A1A;
  opacity: 1;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsAllowed .tarteaucitronAllow,
#tarteaucitron #tarteaucitronServices #tarteaucitronServices_mandatory .tarteaucitronLine button.tarteaucitronAllow {
  background-color: #1B870B;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsDenied .tarteaucitronDeny {
  background-color: #9C1A1A;
}

#tarteaucitron #tarteaucitronServices #tarteaucitronServices_mandatory .tarteaucitronLine button.tarteaucitronAllow {
  opacity: 0.4;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName .tarteaucitronListCookies {
  color: #333;
  font-size: 12px;
}

#tarteaucitron .tarteaucitronH3 {
  font-size: 18px;
}

#tarteaucitron #tarteaucitronMainLineOffset .tarteaucitronName {
  width: auto !important;
  margin-left: 0 !important;
  font-size: 14px;
}

span#tarteaucitronDisclaimerAlert {
  padding: 0 10px;
  display: inline-block;
}

#tarteaucitron .tarteaucitronBorder, #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain, #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList, #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronHidden, #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine {
  border-color: #333 !important;
}

/***
 * Big alert
 */
.tarteaucitronAlertBigTop {
  top: 0;
}

.tarteaucitronAlertBigBottom {
  bottom: 0;
}

#tarteaucitronRoot #tarteaucitronAlertBig {
  background: #333;
  color: #fff;
  display: none;
  font-size: 15px !important;
  left: 0;
  position: fixed;
  box-sizing: content-box;
  z-index: 2147483645;
  text-align: center;
  padding: 10px 0 10px 0;
  margin: auto;
  width: 100%;
}

#tarteaucitronAlertBig #tarteaucitronPrivacyUrl,
#tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong {
  font: 15px verdana;
  color: #fff;
}

#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong {
  font-weight: 700;
}

#tarteaucitronAlertBig #tarteaucitronPrivacyUrl,
#tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog {
  cursor: pointer;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert,
#tarteaucitronAlertBig #tarteaucitronPersonalize,
#tarteaucitronAlertBig #tarteaucitronPersonalize2,
.tarteaucitronCTAButton,
#tarteaucitron #tarteaucitronPrivacyUrl,
#tarteaucitron #tarteaucitronPrivacyUrlDialog,
#tarteaucitronRoot .tarteaucitronDeny,
#tarteaucitronRoot .tarteaucitronAllow {
  background: #008300;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px !important;
  line-height: 1.2;
  padding: 5px 10px;
  text-decoration: none;
  margin-left: 7px;
}

#tarteaucitronRoot .tarteaucitronDeny {
  background: #9C1A1A;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert, #tarteaucitron #tarteaucitronPrivacyUrl, #tarteaucitron #tarteaucitronPrivacyUrlDialog {
  background: #fff;
  color: #333;
  font-size: 13px;
  margin-bottom: 3px;
  margin-left: 7px;
  padding: 5px 10px;
}

#tarteaucitronPercentage {
  background: #0A0 !important;
  box-shadow: 0 0 2px #fff, 0 1px 2px #555;
  height: 5px;
  left: 0;
  position: fixed;
  width: 0;
  z-index: 2147483644;
}

/***
 * Icon
 */
.tarteaucitronIconBottomRight {
  bottom: 0;
  right: 0;
}

.tarteaucitronIconBottomLeft {
  bottom: 0;
  left: 0;
}

.tarteaucitronIconTopRight {
  top: 0;
  right: 0;
}

.tarteaucitronIconTopLeft {
  top: 0;
  left: 0;
}

.tarteaucitronIconTopLeft #tarteaucitronManager {
  border-radius: 2px 7px 7px 2px;
}

.tarteaucitronIconTopRight #tarteaucitronManager {
  border-radius: 7px 2px 2px 7px;
}

.tarteaucitronIconBottomLeft #tarteaucitronManager {
  border-radius: 7px 7px 2px 2px;
}

.tarteaucitronIconBottomRight #tarteaucitronManager {
  border-radius: 7px 7px 2px 2px;
}

#tarteaucitronIcon {
  background: transparent;
  position: fixed;
  display: none;
  width: auto;
  z-index: 2147483646;
}

#tarteaucitronIcon #tarteaucitronManager {
  color: transparent;
  cursor: pointer;
  display: inline-block;
  font-size: 11px !important;
  padding: 8px 10px 8px;
  border: none;
}

#tarteaucitronIcon #tarteaucitronManager img {
  width: 50px;
  height: 50px;
}

#tarteaucitronRoot .tarteaucitronCross::before {
  content: "✗";
  display: inline-block;
  color: white;
}

#tarteaucitronRoot .tarteaucitronCheck::before {
  content: "✓";
  display: inline-block;
  color: white;
}

#tarteaucitronRoot .tarteaucitronPlus::before {
  content: "✛";
  display: inline-block;
  color: white;
}

/***
 * Small alert
 */
.tarteaucitronAlertSmallTop, .tarteaucitronAlertSmallBottom {
  bottom: 0;
}

#tarteaucitronAlertSmall {
  background: #333;
  display: none;
  padding: 0;
  position: fixed;
  right: 0;
  text-align: center;
  width: auto;
  z-index: 2147483646;
}

#tarteaucitronAlertSmall #tarteaucitronManager {
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 11px !important;
  padding: 8px 10px 8px;
}

#tarteaucitronAlertSmall #tarteaucitronManager:hover {
  background: rgba(255, 255, 255, 0.05);
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot {
  background-color: gray;
  border-radius: 5px;
  display: block;
  height: 8px;
  margin-bottom: 1px;
  margin-top: 5px;
  overflow: hidden;
  width: 100%;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen,
#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow,
#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed {
  display: block;
  float: left;
  height: 100%;
  width: 0%;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen {
  background-color: #1B870B;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow {
  background-color: #FBDA26;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed {
  background-color: #9C1A1A;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesNumber {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 30px;
  padding: 0px 10px;
  vertical-align: top;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesNumber:hover {
  background: rgba(255, 255, 255, 0.3);
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer {
  display: none;
  max-height: 70%;
  max-width: 500px;
  position: fixed;
  right: 0;
  width: 100%;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList {
  background: #fff;
  border: 2px solid #333;
  color: #333;
  font-size: 11px;
  height: auto;
  overflow: auto;
  text-align: left;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList strong {
  color: #333;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle {
  background: #333;
  margin-top: 21px;
  padding: 13px 0 9px 13px;
  text-align: left;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle strong {
  color: #fff;
  font-size: 16px;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain {
  background: rgba(51, 51, 51, 0.1);
  padding: 7px 5px 10px;
  word-wrap: break-word;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain:hover {
  background: rgba(51, 51, 51, 0.2);
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain a {
  color: #333;
  text-decoration: none;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft {
  display: inline-block;
  width: 50%;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft a strong {
  color: darkred;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListRight {
  color: #333;
  display: inline-block;
  font-size: 11px;
  margin-left: 10%;
  vertical-align: top;
  width: 30%;
}

/***
 * Fallback activate link
 */
.tac_activate {
  background: #333;
  color: #fff;
  display: table;
  font-size: 12px;
  height: 100%;
  line-height: initial;
  margin: auto;
  text-align: center;
  width: 100%;
}

.tac_float {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.tac_activate .tac_float strong {
  color: #fff;
}

.tac_activate .tac_float .tarteaucitronAllow {
  background-color: #1B870B;
  display: inline-block;
}

/***
 * CSS for services
 */
ins.ferank-publicite, ins.adsbygoogle {
  text-decoration: none;
}

div.amazon_product {
  height: 240px;
  width: 120px;
}

.tarteaucitronIsAllowed .tarteaucitronDeny {
  opacity: 0.4 !important;
}

.tarteaucitronIsDenied .tarteaucitronAllow {
  opacity: 0.4 !important;
}

.tarteaucitronIsAllowed .tarteaucitronAllow {
  opacity: 1 !important;
}

.tarteaucitronIsDenied .tarteaucitronDeny {
  opacity: 1 !important;
}

.tarteaucitronLine .tarteaucitronAllow, .tarteaucitronLine .tarteaucitronDeny {
  opacity: 0.4;
}

#tarteaucitronServices_mandatory button.tarteaucitronAllow {
  opacity: 1;
}

div#tarteaucitronInfo {
  display: block !important;
  position: relative !important;
  text-align: center !important;
  max-width: 80% !important;
  padding: 15px 0 !important;
  margin: -10px auto 40px !important;
  font-size: 1em !important;
  border-bottom: 1px solid;
  border-top: 1px solid;
  border-color: #555;
}

a.tarteaucitronSelfLink {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  text-align: center !important;
  display: block;
  height: 30px;
}

.tarteaucitronMainLine .tarteaucitronH2 {
  font-size: 1.2em !important;
  margin-top: 4px !important;
}

span.tarteaucitronTitle.tarteaucitronH3 {
  margin-top: 12px !important;
}

#tarteaucitronCloseCross {
  position: absolute;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  top: 10px;
  right: 26px;
}

.tarteaucitron-spacer-20 {
  height: 20px;
  display: block;
}

.tarteaucitron-display-block {
  display: block;
}

.tarteaucitron-display-none {
  display: none;
}
@charset "UTF-8";
/* ==========================================================================
  * SETTINGS
  * Configuraciones
  ========================================================================== */
/* CORE FUNCTIONS
 * SASS core functions (core- prefixed)
 *
 * breakpoint-suffix ..... returns a string with breakpoint separator concatenated to a given breakpoint
 * map-diff .............. returns the differences between two maps, skipping equal values
 * strip-units ........... returns the unitless number of a given value
 * ratio-suffix .......... returns a ratio string with its escaped separator of a given width and height
 * rem-to-px ............. returns PX equivalent value using a given REM value
 * px-to-rem ............. returns REM equivalent value using a given PX value
 * px-to-em .............. returns EM equivalent value using a given PX value and a REM reference
 */
/* -------------------------------------------------------------------------
 * BREAKPOINT SUFFIX
 *
 * Returns a breakpoint string with its escaped separator
 * Useful for utilities that uses breakpoints modifiers
 *
 * s-core-breakpoint-suffix(md) == \@md
 */
/* -------------------------------------------------------------------------
 * MAP DIFF
 *
 * Compares the differences between two maps, skipping equal values.
 * Compares both keys and values.
 *
 * Params:
 * MAP-A .............................. Main map to compare with
 * MAP-B .............................. Secondary map
 *
 * Returns a map with the differences
 *
 */
/* -------------------------------------------------------------------------
 * STRIP UNITS
 *
 * Returns the unitless number of a given value.
 * Useful for calculations and unit conversion.
 *
 * s-core-strip-units(16px) == 16
 */
/* -------------------------------------------------------------------------
 * RATIO SUFFIX
 *
 * Returns a ratio string with its escaped separator
 * Useful for objects and utilities that uses ratio modifiers
 *
 * s-core-ratio-suffix(16, 9) == 16\:9
 */
/* -------------------------------------------------------------------------
 * REM TO PX
 *
 * Returns PX equivalent value using a given REM value.
 * By default, uses $s-core__font-size on the conversion, and the returned value is rounded.
 *
 * s-core-rem-to-px(1.143rem) == 16px
 * (based on 14px $s-core__font-size)
 */
/* -------------------------------------------------------------------------
 * PX TO REM
 *
 * Returns REM equivalent value using a given PX value.
 * By default, uses $s-core__font-size on the conversion.
 *
 * s-core-px-to-rem(16px) == 1.143rem
 * (based on 14px $s-core__font-size)
 */
/* -------------------------------------------------------------------------
 * PX TO EM
 *
 * Returns EM equivalent value using a given PX value and a REM reference
 * By default, uses $s-core__font-size on the conversion.
 *
 * s-core-px-to-em(24px, 1.143rem) == 1.5em
 * (based on 14px $s-core__font-size)
 */
/* -------------------------------------------------------------------------
 * CONFIG
 *
 * Global configuration
 */
/* SCOPED
 * enable if you are scoping the output in a selector
 */
/* ENVIRONMENT
 * dev .................. Development
 * prod ................. Production
 */
/* DEBUG
 * for debugging proposes
 */
/* -------------------------------------------------------------------------
 * BREAKPOINT SUFFIX
 *
 * Returns a breakpoint string with its escaped separator
 * Useful for utilities that uses breakpoints modifiers
 *
 * s-core-breakpoint-suffix(md) == \@md
 */
/* -------------------------------------------------------------------------
 * MAP DIFF
 *
 * Compares the differences between two maps, skipping equal values.
 * Compares both keys and values.
 *
 * Params:
 * MAP-A .............................. Main map to compare with
 * MAP-B .............................. Secondary map
 *
 * Returns a map with the differences
 *
 */
/* -------------------------------------------------------------------------
 * PX TO EM
 *
 * Returns EM equivalent value using a given PX value and a REM reference
 * By default, uses $s-core__font-size on the conversion.
 *
 * s-core-px-to-em(24px, 1.143rem) == 1.5em
 * (based on 14px $s-core__font-size)
 */
/* -------------------------------------------------------------------------
 * PX TO REM
 *
 * Returns REM equivalent value using a given PX value.
 * By default, uses $s-core__font-size on the conversion.
 *
 * s-core-px-to-rem(16px) == 1.143rem
 * (based on 14px $s-core__font-size)
 */
/* -------------------------------------------------------------------------
 * RATIO SUFFIX
 *
 * Returns a ratio string with its escaped separator
 * Useful for objects and utilities that uses ratio modifiers
 *
 * s-core-ratio-suffix(16, 9) == 16\:9
 */
/* -------------------------------------------------------------------------
 * REM TO PX
 *
 * Returns PX equivalent value using a given REM value.
 * By default, uses $s-core__font-size on the conversion, and the returned value is rounded.
 *
 * s-core-rem-to-px(1.143rem) == 16px
 * (based on 14px $s-core__font-size)
 */
/* -------------------------------------------------------------------------
 * STRIP UNITS
 *
 * Returns the unitless number of a given value.
 * Useful for calculations and unit conversion.
 *
 * s-core-strip-units(16px) == 16
 */
/* ==========================================================================
  * VARIABLES
  * Variables de la aplicación
  ========================================================================== */
/* ==========================================================================
  * TOOLS
  * Funciones, mixins genéricos
  ========================================================================== */
/*
  Compone un diseño de foto + texto, tipo bloque de noticias con esta estrucutra
  <div class="row-article">
    <div class="photo"><img src=""></div>
    <div class="text"><h2>Título</h2></div>
  </div>

  .row-article {
    @include flex-article( 200px, 30px, 'xs', ('sm': 150px))
  }
*/
/* ==========================================================================
  * GENERICS
  * Resets
  ========================================================================== */
/* ==========================================================================
 * GENERIC
 * Normalize and bootstrapping
 *
 * box-sizing ............. sets a better default 'box-sizing'
 * normalize .............. @necolas' normalize.css
 * reset .................. a tiny reset to complement normalize
   ========================================================================== */
/* -------------------------------------------------------------------------
 * BOX-SIZING
 *
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  box-sizing: border-box;
}

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

/* normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

/* -------------------------------------------------------------------------
 * RESET
 *
 * A very simple reset that sits on top of Normalize.css.
 * Extracted from inuitcss
 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
p,
pre,
dl,
dd,
ol,
ul,
figure,
hr,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

/**
 * Remove trailing margins from nested lists.
 */
li > ol,
li > ul {
  margin-bottom: 0;
}

/**
 * Remove default table spacing.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -------------------------------------------------------------------------
 * SHARED
 *
 * Shared declarations for certain elements.
 * Extracted from inuitcss
 */
address,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
p,
pre,
dl,
ol,
ul,
figure,
hr,
table,
fieldset {
  margin-bottom: 0;
}

/**
 * Consistent indentation for lists.
 */
dd,
ol,
ul {
  margin-left: 0;
}

hr {
  border-top-width: 0;
  border-bottom-width: 1px;
  border-color: #000;
}

ul, ol, li {
  list-style: none;
  margin: 0;
}

/* ==========================================================================
  * LAYOUT
  * Layouts
  ========================================================================== */
.wrapper {
  box-sizing: border-box;
  transition: transform 0.5s;
  min-height: calc(100vh - 800px);
  display: flex;
  flex-direction: column;
}

.main {
  flex-grow: 1;
  width: 100%;
}
body.body-bg-black .main {
  padding-bottom: 0;
}

.container {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 1.6666666667rem;
  padding-right: 1.6666666667rem;
}
@media (max-width: 520px) {
  .container {
    padding-left: 0.8333333333rem;
  }
}
@media (max-width: 520px) {
  .container {
    padding-right: 0.8333333333rem;
  }
}
.container--no-pad {
  padding-left: 0;
  padding-right: 0;
}

.row {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
@media (min-width: 520px) {
  .row {
    grid-column-gap: 1.6666666667rem;
  }
}

.col-xs-1 {
  grid-column-start: auto;
  grid-column-end: span 1;
}

.col-xs-2 {
  grid-column-start: auto;
  grid-column-end: span 2;
}

.col-xs-3 {
  grid-column-start: auto;
  grid-column-end: span 3;
}

.col-xs-4 {
  grid-column-start: auto;
  grid-column-end: span 4;
}

.col-xs-5 {
  grid-column-start: auto;
  grid-column-end: span 5;
}

.col-xs-6 {
  grid-column-start: auto;
  grid-column-end: span 6;
}

.col-xs-7 {
  grid-column-start: auto;
  grid-column-end: span 7;
}

.col-xs-8 {
  grid-column-start: auto;
  grid-column-end: span 8;
}

.col-xs-9 {
  grid-column-start: auto;
  grid-column-end: span 9;
}

.col-xs-10 {
  grid-column-start: auto;
  grid-column-end: span 10;
}

.col-xs-11 {
  grid-column-start: auto;
  grid-column-end: span 11;
}

.col-xs-12 {
  grid-column-start: auto;
  grid-column-end: span 12;
}

@media only screen and (min-width: 520px) {
  .col-xs-1 {
    grid-column-start: auto;
    grid-column-end: span 1;
  }
  .col-xs-2 {
    grid-column-start: auto;
    grid-column-end: span 2;
  }
  .col-xs-3 {
    grid-column-start: auto;
    grid-column-end: span 3;
  }
  .col-xs-4 {
    grid-column-start: auto;
    grid-column-end: span 4;
  }
  .col-xs-5 {
    grid-column-start: auto;
    grid-column-end: span 5;
  }
  .col-xs-6 {
    grid-column-start: auto;
    grid-column-end: span 6;
  }
  .col-xs-7 {
    grid-column-start: auto;
    grid-column-end: span 7;
  }
  .col-xs-8 {
    grid-column-start: auto;
    grid-column-end: span 8;
  }
  .col-xs-9 {
    grid-column-start: auto;
    grid-column-end: span 9;
  }
  .col-xs-10 {
    grid-column-start: auto;
    grid-column-end: span 10;
  }
  .col-xs-11 {
    grid-column-start: auto;
    grid-column-end: span 11;
  }
  .col-xs-12 {
    grid-column-start: auto;
    grid-column-end: span 12;
  }
}
@media only screen and (min-width: 778px) {
  .col-sm-1 {
    grid-column-start: auto;
    grid-column-end: span 1;
  }
  .col-sm-2 {
    grid-column-start: auto;
    grid-column-end: span 2;
  }
  .col-sm-3 {
    grid-column-start: auto;
    grid-column-end: span 3;
  }
  .col-sm-4 {
    grid-column-start: auto;
    grid-column-end: span 4;
  }
  .col-sm-5 {
    grid-column-start: auto;
    grid-column-end: span 5;
  }
  .col-sm-6 {
    grid-column-start: auto;
    grid-column-end: span 6;
  }
  .col-sm-7 {
    grid-column-start: auto;
    grid-column-end: span 7;
  }
  .col-sm-8 {
    grid-column-start: auto;
    grid-column-end: span 8;
  }
  .col-sm-9 {
    grid-column-start: auto;
    grid-column-end: span 9;
  }
  .col-sm-10 {
    grid-column-start: auto;
    grid-column-end: span 10;
  }
  .col-sm-11 {
    grid-column-start: auto;
    grid-column-end: span 11;
  }
  .col-sm-12 {
    grid-column-start: auto;
    grid-column-end: span 12;
  }
}
@media only screen and (min-width: 960px) {
  .col-md-1 {
    grid-column-start: auto;
    grid-column-end: span 1;
  }
  .col-md-2 {
    grid-column-start: auto;
    grid-column-end: span 2;
  }
  .col-md-3 {
    grid-column-start: auto;
    grid-column-end: span 3;
  }
  .col-md-4 {
    grid-column-start: auto;
    grid-column-end: span 4;
  }
  .col-md-5 {
    grid-column-start: auto;
    grid-column-end: span 5;
  }
  .col-md-6 {
    grid-column-start: auto;
    grid-column-end: span 6;
  }
  .col-md-7 {
    grid-column-start: auto;
    grid-column-end: span 7;
  }
  .col-md-8 {
    grid-column-start: auto;
    grid-column-end: span 8;
  }
  .col-md-9 {
    grid-column-start: auto;
    grid-column-end: span 9;
  }
  .col-md-10 {
    grid-column-start: auto;
    grid-column-end: span 10;
  }
  .col-md-11 {
    grid-column-start: auto;
    grid-column-end: span 11;
  }
  .col-md-12 {
    grid-column-start: auto;
    grid-column-end: span 12;
  }
}
@media only screen and (min-width: 1140px) {
  .col-lg-1 {
    grid-column-start: auto;
    grid-column-end: span 1;
  }
  .col-lg-2 {
    grid-column-start: auto;
    grid-column-end: span 2;
  }
  .col-lg-3 {
    grid-column-start: auto;
    grid-column-end: span 3;
  }
  .col-lg-4 {
    grid-column-start: auto;
    grid-column-end: span 4;
  }
  .col-lg-5 {
    grid-column-start: auto;
    grid-column-end: span 5;
  }
  .col-lg-6 {
    grid-column-start: auto;
    grid-column-end: span 6;
  }
  .col-lg-7 {
    grid-column-start: auto;
    grid-column-end: span 7;
  }
  .col-lg-8 {
    grid-column-start: auto;
    grid-column-end: span 8;
  }
  .col-lg-9 {
    grid-column-start: auto;
    grid-column-end: span 9;
  }
  .col-lg-10 {
    grid-column-start: auto;
    grid-column-end: span 10;
  }
  .col-lg-11 {
    grid-column-start: auto;
    grid-column-end: span 11;
  }
  .col-lg-12 {
    grid-column-start: auto;
    grid-column-end: span 12;
  }
}
[v-cloak] {
  display: none;
}

/* ==========================================================================
  * ANIMATIONS
  ========================================================================== */
@keyframes updown {
  0%, 100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes leftright {
  0%, 100% {
    transform: translateX(-50px);
  }
  50% {
    transform: translateX(50px);
  }
}
:root {
  --color-text: #fff;
  --color-bg: #000;
  --color-link: #f9d77e;
  --color-link-hover: #fff;
  --color-info: #efc453;
  --glitch-width: 100vw;
  --glitch-height: 100vh;
  --gap-horizontal: 10px;
  --gap-vertical: 5px;
  --time-anim: 2s;
  --delay-anim: 1s;
  --blend-mode-1: none;
  --blend-mode-2: none;
  --blend-mode-3: none;
  --blend-mode-4: none;
  --blend-mode-5: overlay;
  --blend-color-1: transparent;
  --blend-color-2: transparent;
  --blend-color-3: transparent;
  --blend-color-4: transparent;
  --blend-color-5: #af4949;
}

.glitch, .glow {
  width: 100%;
  height: 100%;
  max-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.glitch .glitch__item, .glow .glitch__item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.glitch .glitch__item:nth-child(n+2), .glow .glitch__item:nth-child(n+2) {
  opacity: 0;
  animation-duration: var(--time-anim);
  animation-delay: var(--delay-anim);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.glitch .glitch__item:nth-child(2), .glow .glitch__item:nth-child(2) {
  background-color: var(--blend-color-2);
  background-blend-mode: var(--blend-mode-2);
  animation-name: glitch-anim-2;
}
.glitch .glitch__item:nth-child(2), .glow .glitch__item:nth-child(2) {
  background-color: var(--blend-color-3);
  background-blend-mode: var(--blend-mode-3);
  animation-name: glitch-anim-3;
}
.glitch .glitch__item:nth-child(4), .glow .glitch__item:nth-child(4) {
  background-color: var(--blend-color-4);
  background-blend-mode: var(--blend-mode-4);
  animation-name: glitch-anim-4;
}
.glitch .glitch__item:nth-child(5), .glow .glitch__item:nth-child(5) {
  background-color: var(--blend-color-5);
  background-blend-mode: var(--blend-mode-5);
  animation-name: glitch-anim-flash;
}
@keyframes glitch-anim-flash {
  0%, 5% {
    opacity: 0.2;
    transform: translate3d(var(--glitch-horizontal), var(--glitch-height), 0);
  }
  5.5%, 100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    opacity: 1;
    transform: translate3d(var(--gap-horizontal), 0, 0);
    -webkit-clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
  }
  2% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
  }
  4% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
    clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }
  6% {
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
    clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
  }
  8% {
    -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
  }
  10% {
    -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
  }
  12% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
  }
  14% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
  }
  16% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }
  18% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }
  20% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
  }
  21.9% {
    opacity: 1;
    transform: translate3d(var(--gap-horizontal), 0, 0);
  }
  22%, 100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
}
@keyframes glitch-anim-3 {
  0% {
    opacity: 1;
    transform: translate3d(calc(-1 * var(--gap-horizontal)), 0, 0);
    -webkit-clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
    clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
  }
  3% {
    -webkit-clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
    clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
  }
  5% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
    clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
  }
  7% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }
  9% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
    clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
  }
  11% {
    -webkit-clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
    clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
  }
  13% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }
  15% {
    -webkit-clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
    clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
  }
  17% {
    -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
    clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
  }
  19% {
    -webkit-clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
    clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
  }
  20% {
    -webkit-clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
    clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
  }
  21.9% {
    opacity: 1;
    transform: translate3d(calc(-1 * var(--gap-horizontal)), 0, 0);
  }
  22%, 100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
}
@keyframes glitch-anim-4 {
  0% {
    opacity: 1;
    transform: translate3d(0, calc(-1 * var(--gap-vertical)), 0) scale3d(-1, -1, 1);
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
    clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
  }
  1.5% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
    clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
  }
  2% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
    clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
  }
  2.5% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }
  3% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
    clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
  }
  5% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
    clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
  }
  5.5% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
    clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
  }
  7% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
    clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
  }
  8% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
  }
  9% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
    clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
  }
  10.5% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
    clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
  }
  11% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
    clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
  }
  13% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
    clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
  }
  14% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
    clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
  }
  14.5% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
    clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
  }
  15% {
    -webkit-clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
    clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
  }
  16% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }
  18% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
    clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
  }
  20% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
    clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
  }
  21.9% {
    opacity: 1;
    transform: translate3d(0, calc(-1 * var(--gap-vertical)), 0) scale3d(-1, -1, 1);
  }
  22%, 100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
}
.hallucination-effect {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  background-color: magenta;
  background-blend-mode: screen;
}
.hallucination-effect:before, .hallucination-effect:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  mix-blend-mode: multiply;
}
.hallucination-effect:before {
  background-color: white;
  background-blend-mode: screen;
  transform-origin: top left;
}
.hallucination-effect:after {
  background-color: #ea3544;
  background-blend-mode: screen;
  transform-origin: bottom right;
  animation-delay: 0.1;
}
.active .hallucination-effect:before, .active .hallucination-effect:after {
  animation-name: rgb-move;
  animation-iteration-count: 1;
  animation-duration: 0.1s;
}

@keyframes rgb-move {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scaleY(4);
  }
  50% {
    transform: scaleX(2);
  }
  70% {
    transform: scale(1.5);
  }
}
.btn-link {
  position: relative;
  display: inline-block;
  color: #281130;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-decoration: none;
  z-index: 1;
}
.btn-link:before, .btn-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.btn-link:before {
  background-color: #00ffff;
  z-index: -1;
}
.btn-link:after {
  background-color: #ff00ff;
  z-index: -2;
}
.btn-link:hover .link-inner {
  animation: glitchy 0.3s ease 1;
}
.btn-link:hover:before {
  animation: glitchy 0.3s ease 0.3s 5;
}
.btn-link:hover:after {
  animation: glitchy 0.3s ease 1 reverse;
}

.link-inner {
  display: block;
  height: 100%;
  background-color: #fff;
  padding: 15px 25px;
}

.text-link {
  position: relative;
  display: inline-block;
  font-size: 45px;
  text-decoration: none;
  color: #fff;
  z-index: 1;
}
.text-link:before, .text-link:after {
  content: attr(data-content);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.text-link:before {
  color: #00ffff;
  z-index: -1;
}
.text-link:after {
  color: #ff00ff;
  z-index: -2;
}
.text-link:hover:before {
  animation: glitchy 0.3s ease 0.3s 1;
}
.text-link:hover:after {
  animation: glitchy 0.3s ease 1 reverse;
}

.line-link {
  position: relative;
  display: inline-block;
  font-size: 24px;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: lighter;
  z-index: 1;
  border-bottom: 1px solid fade(#fff, 75%);
  padding-bottom: 10px;
}
.line-link:before, .line-link:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  visibility: hidden;
}
.line-link:before {
  background-color: #00ffff;
  z-index: -1;
}
.line-link:after {
  background-color: #ff00ff;
  z-index: -2;
}
.line-link:hover:before {
  visibility: visible;
  animation: line-glitchy 0.3s ease 0.3s 1;
}
.line-link:hover:after {
  visibility: visible;
  animation: line-glitchy 0.3s ease 1 reverse;
}

@keyframes glitchy {
  0% {
    transform: translate(-2px, 2px);
  }
  25% {
    transform: translate(-2px, -2px);
  }
  50% {
    transform: translate(2px, 2px);
  }
  75% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(-2px, 2px);
  }
}
@keyframes line-glitchy {
  0% {
    transform: translate(-1px, 1px);
  }
  25% {
    transform: translate(-1px, -1px);
  }
  50% {
    transform: translate(1px, 1px);
  }
  75% {
    transform: translate(1px, -1px);
  }
  100% {
    transform: translate(-1px, 1px);
  }
}
.rgb-split-container {
  position: relative;
}

.glitch-container {
  position: relative;
  overflow: hidden;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ==========================================================================
  * ELEMENTS
  * Basic HTML elements
  ========================================================================== */
button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: inherit;
  padding: 0;
}

html,
body {
  max-width: 100% !important;
  overflow-x: hidden;
}

html {
  font-family: Space Grotesk, sans-serif;
  font-weight: 300;
  line-height: 1.4;
  overflow-y: scroll;
  min-height: 100%;
  font-size: 18px;
  scroll-padding-top: 100px;
}

body {
  background-color: #fff;
  font-size: 1rem;
  color: #191919;
}
body.body-bg-black {
  background-color: #191919;
  color: #fff;
}

*::selection {
  background-color: #ea3544;
  color: #fff;
}

input:focus, select:focus, textarea:focus {
  outline: none;
}

button:focus {
  outline: none;
}

/* -------------------------------------------------------------------------
 * HEADINGS
 *
 * Define some minimal heading styles
 *
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

[class^=icon-] {
  position: relative;
  top: 0.13em;
}

img {
  font-style: italic; /* [2] */
  vertical-align: middle; /* [3] */
  max-width: 100%; /* [1] */
}

a {
  transition: all 0.5s;
  color: #ea3544;
  text-decoration: none;
  transition: all 0.5s;
}
@media (min-width: 820px) {
  a:hover {
    color: #191919;
  }
}

a, button {
  cursor: pointer;
  transition: all 0.5s;
}

.logo-svg g {
  animation: glitch 4s linear infinite;
  transform-origin: 50% 50%;
}
.logo-svg.logo-svg-v2 g {
  animation: glitch2 3s linear infinite;
  animation-delay: 5s;
  transform-origin: 50% 50%;
}

@keyframes glitch {
  1% {
    transform: rotateX(10deg) skewX(90deg);
  }
  2% {
    transform: rotateX(0deg) skewX(0deg);
  }
}
@keyframes glitch2 {
  1% {
    transform: rotateX(-15deg) skewX(-115deg);
  }
  2% {
    transform: rotateX(0deg) skewX(0deg);
  }
}
/*body {
    position: relative;
    overflow: hidden;
    cursor: none;
}*/
.cursor,
.cursor-follower {
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  overflow: hidden;
  position: absolute;
  left: -5rem;
  z-index: 999;
  top: 0;
  pointer-events: none; /* Very important to prevent the follower from messing up with the mouse move */
  transition: opacity 0.2s ease-in-out;
  background-color: #ea3544;
  will-change: transform;
  transform: translate(1px, 1px);
}

.cursor-follower {
  width: 2rem;
  height: 2rem;
  border: 1px solid #ea3544;
  background: transparent;
  transform: none;
}

nav ul {
  margin: 0;
  padding: 0;
}
nav ul li {
  display: inline-block;
}

p + p {
  margin-top: 0.7em;
}

body::-webkit-scrollbar {
  width: 10px !important;
}

body {
  scrollbar-color: #ea3544 !important;
  scrollbar-width: 10px !important;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: none !important;
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: #ea3544;
  outline: none;
}

[v-cloak] {
  display: none;
}

table {
  width: 100%; /* [1] */
}

/* ==========================================================================
  * HELPERS
  * Helpers
  ========================================================================== */
#to-top,
.c-erronka-garbia {
  position: fixed;
  bottom: 20px;
  right: 100px;
  background-color: rgba(234, 53, 68, 0.7);
  width: 2.7777777778rem;
  height: 2.7777777778rem;
  opacity: 0;
  color: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#to-top.top-visible,
.c-erronka-garbia.top-visible {
  opacity: 0.6;
}
#to-top.top-visible:hover,
.c-erronka-garbia.top-visible:hover {
  opacity: 1;
}

.c-erronka-garbia {
  right: 40px;
  opacity: 0.6;
}
.c-erronka-garbia:hover {
  opacity: 1;
}
.c-erronka-garbia img {
  filter: invert(100%) sepia(0%) saturate(7443%) hue-rotate(135deg) brightness(124%) contrast(93%);
}

.o-btn-primary {
  transition: background-color 0.5s, color 0.5s;
  display: inline-block;
  background-color: #ea3544;
  color: #fff;
  font-weight: 700;
  max-width: 100%;
  padding: 0.4em 1em;
  font-size: 0.8888888889rem;
  text-align: center;
}
@media (min-width: 520px) {
  .o-btn-primary {
    min-width: 13.8888888889rem;
  }
}
.o-btn-primary--short {
  min-width: auto;
}
.o-btn-primary:hover {
  background-color: #191919;
  color: #fff;
}

.o-btn-secondary {
  display: inline-block;
  color: #ea3544;
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.7777777778rem;
  transition: all 0.5s;
  color: #ea3544;
}
@media (min-width: 820px) {
  .o-btn-secondary:hover {
    color: #191919;
  }
}

.o-btn-terciary {
  display: inline-block;
  transition: all 0.5s;
  color: #ea3544;
}
@media (min-width: 820px) {
  .o-btn-terciary:hover {
    color: #191919;
  }
}
.o-btn-terciary:before {
  content: "—";
  margin-right: 0.4em;
}

.o-hover-black {
  transition: all 0.5s;
  color: #191919;
}
@media (min-width: 820px) {
  .o-hover-black:hover {
    color: #ea3544;
  }
}

.o-text-h1 {
  font-size: 3.8888888889rem;
  line-height: 1.08;
  line-height: 1.08;
  line-height: 1.08;
  font-weight: 700;
}
@media (max-width: 520px) {
  .o-text-h1 {
    font-size: 3.2222222222rem;
  }
}

.o-text-h2 {
  font-size: 2.7777777778rem;
  line-height: 1.08;
  line-height: 1.08;
  line-height: 1.08;
  font-weight: 700;
}
@media (max-width: 520px) {
  .o-text-h2 {
    font-size: 2rem;
  }
}

.o-text-h3 {
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: bold;
}
@media (max-width: 520px) {
  .o-text-h3 {
    font-size: 1.6666666667rem;
  }
}

.o-text-h4 {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 520px) {
  .o-text-h4 {
    font-size: 1.2222222222rem;
  }
}

.o-text-h5 {
  font-size: 1.1111111111rem;
  line-height: 1.3;
  line-height: 1.3;
  font-weight: 300;
}

.o-text-h6 {
  font-size: 0.8888888889rem;
  font-weight: 300;
}

.o-text-h7 {
  font-size: 0.7777777778rem;
  font-weight: 300;
}

.o-text-p {
  font-size: 1.1111111111rem;
  line-height: 1.4;
  line-height: 1.4;
}

.o-text-h1--primary {
  color: #ea3544;
}

.o-text-h2--primary {
  color: #ea3544;
}

.o-text-h3--primary {
  color: #ea3544;
}

.o-text-h4--primary {
  color: #ea3544;
}

.o-text-h5--primary {
  color: #ea3544;
}

.o-text-h6--primary {
  color: #ea3544;
}

.o-text-h7--primary {
  color: #ea3544;
}

.o-text-p--primary {
  color: #ea3544;
}

.o-text-h1--brand {
  color: #fb0017;
}

.o-text-h2--brand {
  color: #fb0017;
}

.o-text-h3--brand {
  color: #fb0017;
}

.o-text-h4--brand {
  color: #fb0017;
}

.o-text-h5--brand {
  color: #fb0017;
}

.o-text-h6--brand {
  color: #fb0017;
}

.o-text-h7--brand {
  color: #fb0017;
}

.o-text-p--brand {
  color: #fb0017;
}

.o-text-h1--black {
  color: #191919;
}

.o-text-h2--black {
  color: #191919;
}

.o-text-h3--black {
  color: #191919;
}

.o-text-h4--black {
  color: #191919;
}

.o-text-h5--black {
  color: #191919;
}

.o-text-h6--black {
  color: #191919;
}

.o-text-h7--black {
  color: #191919;
}

.o-text-p--black {
  color: #191919;
}

.o-text-h1--white {
  color: #fff;
}

.o-text-h2--white {
  color: #fff;
}

.o-text-h3--white {
  color: #fff;
}

.o-text-h4--white {
  color: #fff;
}

.o-text-h5--white {
  color: #fff;
}

.o-text-h6--white {
  color: #fff;
}

.o-text-h7--white {
  color: #fff;
}

.o-text-p--white {
  color: #fff;
}

.o-text-h1--grey {
  color: #bdb3a9;
}

.o-text-h2--grey {
  color: #bdb3a9;
}

.o-text-h3--grey {
  color: #bdb3a9;
}

.o-text-h4--grey {
  color: #bdb3a9;
}

.o-text-h5--grey {
  color: #bdb3a9;
}

.o-text-h6--grey {
  color: #bdb3a9;
}

.o-text-h7--grey {
  color: #bdb3a9;
}

.o-text-p--grey {
  color: #bdb3a9;
}

.o-text-h1--grey2 {
  color: #918477;
}

.o-text-h2--grey2 {
  color: #918477;
}

.o-text-h3--grey2 {
  color: #918477;
}

.o-text-h4--grey2 {
  color: #918477;
}

.o-text-h5--grey2 {
  color: #918477;
}

.o-text-h6--grey2 {
  color: #918477;
}

.o-text-h7--grey2 {
  color: #918477;
}

.o-text-p--grey2 {
  color: #918477;
}

.o-text-h1--background {
  color: #d8d8d8;
}

.o-text-h2--background {
  color: #d8d8d8;
}

.o-text-h3--background {
  color: #d8d8d8;
}

.o-text-h4--background {
  color: #d8d8d8;
}

.o-text-h5--background {
  color: #d8d8d8;
}

.o-text-h6--background {
  color: #d8d8d8;
}

.o-text-h7--background {
  color: #d8d8d8;
}

.o-text-p--background {
  color: #d8d8d8;
}

.o-text-h1--border {
  color: #d8d8d8;
}

.o-text-h2--border {
  color: #d8d8d8;
}

.o-text-h3--border {
  color: #d8d8d8;
}

.o-text-h4--border {
  color: #d8d8d8;
}

.o-text-h5--border {
  color: #d8d8d8;
}

.o-text-h6--border {
  color: #d8d8d8;
}

.o-text-h7--border {
  color: #d8d8d8;
}

.o-text-p--border {
  color: #d8d8d8;
}

.o-text-h1--state-success {
  color: #36ba33;
}

.o-text-h2--state-success {
  color: #36ba33;
}

.o-text-h3--state-success {
  color: #36ba33;
}

.o-text-h4--state-success {
  color: #36ba33;
}

.o-text-h5--state-success {
  color: #36ba33;
}

.o-text-h6--state-success {
  color: #36ba33;
}

.o-text-h7--state-success {
  color: #36ba33;
}

.o-text-p--state-success {
  color: #36ba33;
}

.o-text-h1--ç state-info {
  color: #20a0de;
}

.o-text-h2--ç state-info {
  color: #20a0de;
}

.o-text-h3--ç state-info {
  color: #20a0de;
}

.o-text-h4--ç state-info {
  color: #20a0de;
}

.o-text-h5--ç state-info {
  color: #20a0de;
}

.o-text-h6--ç state-info {
  color: #20a0de;
}

.o-text-h7--ç state-info {
  color: #20a0de;
}

.o-text-p--ç state-info {
  color: #20a0de;
}

.o-text-h1--state-warning {
  color: #f99500;
}

.o-text-h2--state-warning {
  color: #f99500;
}

.o-text-h3--state-warning {
  color: #f99500;
}

.o-text-h4--state-warning {
  color: #f99500;
}

.o-text-h5--state-warning {
  color: #f99500;
}

.o-text-h6--state-warning {
  color: #f99500;
}

.o-text-h7--state-warning {
  color: #f99500;
}

.o-text-p--state-warning {
  color: #f99500;
}

.o-text-h1--state-danger {
  color: #c1101f;
}

.o-text-h2--state-danger {
  color: #c1101f;
}

.o-text-h3--state-danger {
  color: #c1101f;
}

.o-text-h4--state-danger {
  color: #c1101f;
}

.o-text-h5--state-danger {
  color: #c1101f;
}

.o-text-h6--state-danger {
  color: #c1101f;
}

.o-text-h7--state-danger {
  color: #c1101f;
}

.o-text-p--state-danger {
  color: #c1101f;
}

.o-heading-2 {
  font-size: 2.7777777778rem;
  line-height: 1.08;
  line-height: 1.08;
  line-height: 1.08;
  font-weight: 700;
  padding-bottom: 0.8em;
  color: #ea3544;
}
@media (max-width: 520px) {
  .o-heading-2 {
    font-size: 2rem;
  }
}

.o-heading-3 {
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: bold;
  border-bottom: 1px solid #ea3544;
  padding-bottom: 0.5em;
  color: #ea3544;
}
@media (max-width: 520px) {
  .o-heading-3 {
    font-size: 1.6666666667rem;
  }
}

.o-heading-3-b {
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: bold;
  border-bottom: 1px solid #ea3544;
  padding-bottom: 0.5em;
  color: #ea3544;
  border-bottom: none;
}
@media (max-width: 520px) {
  .o-heading-3-b {
    font-size: 1.6666666667rem;
  }
}

.o-heading-4 {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.6em;
  display: flex;
  align-items: center;
}
@media (max-width: 520px) {
  .o-heading-4 {
    font-size: 1.2222222222rem;
  }
}
.o-heading-4:before {
  content: "";
  width: 3.3333333333rem;
  height: 1px;
  background-color: #ea3544;
  margin-right: 1em;
}

.o-heading-5 {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #191919;
  padding-bottom: 0.5em;
}
@media (max-width: 520px) {
  .o-heading-5 {
    font-size: 1.2222222222rem;
  }
}

.o-heading-5-b {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #191919;
  padding-bottom: 0.5em;
  border-bottom: none;
}
@media (max-width: 520px) {
  .o-heading-5-b {
    font-size: 1.2222222222rem;
  }
}

.o-heading-6 {
  font-size: 1.1111111111rem;
  line-height: 1.3;
  line-height: 1.3;
  font-weight: 300;
  border-bottom: 1px solid #191919;
  padding-bottom: 0.5em;
}

.o-heading-6-b {
  font-size: 1.1111111111rem;
  line-height: 1.3;
  line-height: 1.3;
  font-weight: 300;
  border-bottom: 1px solid #191919;
  padding-bottom: 0.5em;
  border-bottom: none;
}

/* ==========================================================================
  * GOOBAL COMPONENTS
  * Componentes del web
  ========================================================================== */
/* ==========================================================================
  * COMPONENTS
  * Componentes del web
  ========================================================================== */
.c-activity {
  margin: 5px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  flex-direction: column;
  color: #191919;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(63, 77, 98, 0.27);
  padding: 1rem;
  font-size: 1.1111111111rem;
  line-height: 1.3;
}
.c-activity:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #191919;
  position: absolute;
  left: 0;
  top: -120%;
  z-index: 2;
  transition: top 0.5s;
}
.c-activity > * {
  position: relative;
  z-index: 3;
}
.c-activity strong {
  font-weight: 700;
}
@media (min-width: 520px) {
  .c-activity:not(.-no-height) {
    min-height: 13.8888888889rem;
  }
}
@media (max-width: 520px) {
  .c-activity {
    padding: 0.5rem;
    height: 100%;
  }
}
@media (max-width: 520px) {
  .splide__slide:not(:last-child) .c-activity {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.c-activity__date {
  font-size: 0.8888888889rem;
  margin-top: 0.4em;
}
.c-activity__date.-floating {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(42%, 1fr));
  grid-gap: 0.8333333333rem 0.8333333333rem;
}
.c-activity__title {
  align-self: end;
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  margin-bottom: 0.2em;
  font-weight: 700;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
@media (max-width: 520px) {
  .c-activity__title {
    font-size: 1.2222222222rem;
  }
}
@media (max-width: 520px) {
  .c-activity__title {
    margin-top: 0.5em;
  }
}
.c-activity__category {
  font-size: 0.7777777778rem;
  color: #bdb3a9;
}
.c-activity__link {
  position: absolute;
  bottom: 0.5555555556rem;
  right: 0.5555555556rem;
  font-size: 1.6666666667rem;
  line-height: 1;
  color: #ea3544;
}
@media (max-width: 520px) {
  .c-activity__link {
    position: static;
  }
}
.c-activity__place-link {
  margin-top: 1em;
  font-size: 0.8888888889rem;
}
@media (min-width: 520px) {
  .c-activity:hover {
    color: #fff;
  }
  .c-activity:hover:before {
    top: 0%;
  }
  .c-activity:hover .c-activity__link {
    animation: rotate-plus 0.4s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    transform-origin: center center;
  }
}

@keyframes rotate-plus {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.c-activities:not(:last-child) {
  margin-bottom: 3.3333333333rem;
}
@media (max-width: 520px) {
  .c-activities:not(:last-child) {
    margin-bottom: 1.6666666667rem;
  }
}
.c-activities__place {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .c-activities__place {
    font-size: 1.2222222222rem;
  }
}
@media (max-width: 520px) {
  .c-activities__place {
    font-size: 1.8888888889rem;
    line-height: 1.2;
    line-height: 1.2;
    display: flex;
    gap: 0.2em;
    flex-direction: column;
  }
}
@media (max-width: 520px) and (max-width: 520px) {
  .c-activities__place {
    font-size: 1.6666666667rem;
  }
}
.c-activities__place .-dates {
  font-size: 0.8888888889rem;
}
@media (min-width: 520px) {
  .c-activities__place .-dates {
    margin-left: 0.8333333333rem;
  }
}
@media (max-width: 520px) {
  .c-activities__list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.6666666667rem 0rem;
    padding-bottom: 0.4em !important;
  }
}
.c-activities__items {
  margin-top: 1.6666666667rem;
}
.c-activities__items .splide__arrows {
  width: 100%;
  position: absolute;
  top: -1.6666666667rem;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 520px) {
  .c-activities__items .splide__arrows {
    display: none;
  }
}
.c-activities__items .splide__arrow {
  position: static;
  border-radius: 0;
  background-color: transparent;
  border: 1px solid #ea3544;
  margin-left: 1em;
  color: #ea3544;
}
.c-activities__items .splide__arrow:hover {
  border-color: #191919;
  color: #191919;
}
.c-activities__items .splide__arrow[disabled] {
  opacity: 0;
}

.c-activities-category {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.6666666667rem;
}
@media (max-width: 520px) {
  .c-activities-category {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-activities-item__image {
  margin-bottom: 0.8333333333rem;
}
.c-activities-item__category {
  margin-top: 0.4166666667rem;
}
.c-activities-item__title {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: bold;
}
@media (max-width: 520px) {
  .c-activities-item__title {
    font-size: 1.2222222222rem;
  }
}
.c-activities-item__title a {
  transition: all 0.5s;
  color: #191919;
}
@media (min-width: 820px) {
  .c-activities-item__title a:hover {
    color: #ea3544;
  }
}
.c-activities-item__places {
  border-top: 1px solid #191919;
  border-bottom: 1px solid #191919;
  padding-top: 0.4166666667rem;
  padding-bottom: 0.4166666667rem;
  margin-top: 0.8333333333rem;
  display: flex;
}
.c-activities-item__places > div {
  flex-grow: 1;
}
.c-activities-item__places > div:not(:last-child) {
  margin-right: 1.6666666667rem;
}
.c-activities-item__description {
  margin-top: 0.8333333333rem;
}
.c-activities-item__description.c-text p,
.c-activities-item__description.c-text li {
  font-size: 0.8888888889rem;
}
.c-activities-item__link a {
  display: inline-block;
  color: #ea3544;
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.7777777778rem;
  transition: all 0.5s;
  color: #ea3544;
}
@media (min-width: 820px) {
  .c-activities-item__link a:hover {
    color: #191919;
  }
}
.c-activities-item .c-activities-item-place__title {
  font-weight: bold;
}
.c-activities-item .c-activities-item-place__dates {
  display: flex;
  margin-top: 0.4166666667rem;
}
.c-activities-item .c-activities-item-place__dates > div {
  display: flex;
}
.c-activities-item .c-activities-item-place__dates > div:not(:last-child):after {
  content: "";
  border-right: 1px solid #191919;
  width: 1px;
  height: 100%;
  background-color: #191919;
  margin-left: 0.4166666667rem;
  margin-right: 0.4166666667rem;
}
.c-activities-item .c-activities-item-place__date {
  font-size: 0.7777777778rem;
}

.c-activity-places {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.6666666667rem;
}
@media (max-width: 960px) {
  .c-activity-places {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.8333333333rem 0.1666666667rem;
  }
}
@media (max-width: 520px) {
  .c-activity-places {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.8333333333rem 0.1666666667rem;
  }
}

.c-activity-place__city {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 520px) {
  .c-activity-place__city {
    font-size: 1.2222222222rem;
  }
}
.c-activity-place__dates {
  border-top: 1px solid #191919;
  padding-top: 0.8333333333rem;
  margin-top: 0.8333333333rem;
}
.c-activity-place__dates:not(.-no-flex) {
  display: flex;
}
.c-activity-place__dates > div {
  display: flex;
}
.c-activity-place__dates > div:not(:last-child):after {
  content: "";
  border-right: 1px solid #191919;
  width: 1px;
  height: 100%;
  background-color: #191919;
  margin-left: 1.6666666667rem;
  margin-right: 1.6666666667rem;
}

.c-activity-celebration__form {
  grid-column: 1/3;
}
.c-activity-celebration__date {
  font-size: 0.8888888889rem;
}
.c-activity-celebration__films {
  columns: 2;
  column-gap: 1.6666666667rem;
  font-size: 0.7777777778rem;
}

.c-teacher {
  display: grid;
  align-items: start;
  align-content: start;
  grid-template-columns: 1fr 40%;
  grid-template-rows: auto 1fr;
  grid-template-areas: "title image" "body image";
  grid-gap: 1.6666666667rem;
}
@media (max-width: 520px) {
  .c-teacher {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "image" "body";
    grid-gap: 0.3333333333rem;
  }
}
.c-teacher__title {
  grid-area: title;
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .c-teacher__title {
    font-size: 1.6666666667rem;
  }
}
.c-teacher__title span {
  display: block;
  font-size: 1.1111111111rem;
  line-height: 1.4;
  font-style: italic;
}
.c-teacher__body {
  grid-area: body;
}
.c-teacher__image {
  grid-area: image;
}

.c-teacher {
  display: grid;
}
.c-teacher__title {
  grid-area: title;
}
.c-teacher__body {
  grid-area: body;
}
.c-teacher__image {
  grid-area: image;
}

.c-activity-body {
  display: grid;
  grid-template-columns: 1fr 40%;
  grid-gap: 1.6666666667rem;
}
@media (max-width: 520px) {
  .c-activity-body {
    grid-template-columns: 1fr;
  }
}

.c-activity-photos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 0.8333333333rem;
}
.c-activity-photos.-videos {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px) {
  .c-activity-photos {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 520px) {
  .c-activity-photos {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-activity-photos.-videos {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-activity-photos a {
  position: relative;
  overflow: hidden;
}
.c-activity-photos a img {
  aspect-ratio: 5/3;
  object-fit: cover;
}
.c-activity-photos a:before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  transform: translateY(-100%);
  z-index: 1;
}
.c-activity-photos a:after {
  top: 0;
  left: 0;
  z-index: 4;
  position: absolute;
  content: "n";
  font-family: "zinetika";
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  transition: 0.5s;
  transform: scale(0);
}
.c-activity-photos a:hover:before {
  transform: translateY(0%);
}
.c-activity-photos a:hover:after {
  animation: lupa 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}
.c-activity-photos.-videos a img {
  width: 100%;
  height: 100%;
}

@keyframes lupa {
  0% {
    transform: scale(0%);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.c-source {
  display: grid;
  grid-template-columns: calc(16.6666666667% - 0.8333333333rem) 1fr;
  grid-column-gap: 1.6666666667rem;
  grid-template-areas: "logo articles";
  border-top: 1px solid #191919;
}
@media (max-width: 820px) {
  .c-source {
    border: 0;
  }
}
.c-source__logo {
  padding-top: 1em;
  padding-bottom: 1em;
  text-transform: uppercase;
  font-size: 0.7777777778rem;
  grid-area: logo;
}
@media (max-width: 820px) {
  .c-source__logo {
    margin-top: 3.5rem;
  }
}
@media (max-width: 820px) {
  .c-source:first-child .c-source__logo {
    margin-top: 0;
  }
}
.c-source__articles {
  grid-area: articles;
}
@media (max-width: 520px) {
  .c-source {
    grid-template-rows: repeat(2, auto);
    grid-template-columns: 1fr;
    grid-template-areas: "logo" "articles";
  }
}

.c-article {
  display: grid;
  grid-template-columns: 1fr 90px 34px;
  grid-template-areas: "title date link";
  grid-column-gap: 1.6666666667rem;
  align-items: baseline;
  padding-top: 1em;
  padding-bottom: 1em;
  transition: all 0.5s;
  color: #191919;
}
@media (max-width: 520px) {
  .c-article {
    grid-template-columns: 1fr 1.6666666667rem;
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "title link" "date link";
  }
}
@media (max-width: 520px) {
  .c-article {
    padding-top: 0.5em;
  }
}
@media (max-width: 520px) {
  .c-article {
    padding-bottom: 0.5em;
  }
}
@media (min-width: 820px) {
  .c-article:hover {
    color: #ea3544;
  }
}
.c-article:not(:last-child) {
  border-bottom: 1px solid #191919;
}
.c-article__title {
  font-size: 1.1111111111rem;
  line-height: 1.3;
  font-weight: 600;
  grid-area: title;
}
.c-article__date {
  grid-area: date;
}
@media (max-width: 520px) {
  .c-article__date {
    margin-top: 0.3em;
  }
}
.c-article__link {
  grid-area: link;
  width: 1.8888888889rem;
  height: 1.8888888889rem;
  color: #fff;
  transition: all 0.5s;
  background-color: #ea3544;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 820px) {
  .c-article__link:hover {
    background-color: #191919;
  }
}
@media (max-width: 520px) {
  .c-article__link {
    justify-self: end;
    align-self: start;
  }
}

.c-blockquote {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 1fr auto;
  grid-gap: 1.6666666667rem;
  align-items: end;
  grid-template-areas: "image title" "image subtitle";
  max-width: 55.5555555556rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.8888888889rem;
  padding-bottom: 1.8888888889rem;
  padding-left: 1.7777777778rem;
  padding-right: 1.7777777778rem;
}
@media (max-width: 778px) {
  .c-blockquote {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-gap: 1.6666666667rem;
    align-items: end;
    grid-template-areas: "image" "title" "subtitle";
  }
}
.c-blockquote__image {
  grid-area: image;
  mix-blend-mode: lighten;
}
@media (max-width: 520px) {
  .c-blockquote__image {
    max-height: 100%;
    width: auto;
    position: absolute;
  }
}
.c-blockquote__title {
  grid-area: title;
}
.c-blockquote__subtitle {
  grid-area: subtitle;
}
@media (max-width: 520px) {
  .c-blockquote {
    padding-top: 1.1111111111rem;
  }
}
@media (max-width: 520px) {
  .c-blockquote {
    padding-bottom: 1.1111111111rem;
  }
}
@media (max-width: 520px) {
  .c-blockquote {
    padding-left: 0rem;
  }
}
@media (max-width: 520px) {
  .c-blockquote {
    padding-right: 0rem;
  }
}
.c-blockquote__title {
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  color: #ea3544;
  font-weight: 500;
}
@media (max-width: 520px) {
  .c-blockquote__title {
    font-size: 1.6666666667rem;
  }
}
.c-blockquote__title:before {
  content: "“";
  color: #fff;
  display: block;
  font-size: 4.4444444444rem;
  line-height: 0.5;
  margin-left: -0.1em;
}
.c-blockquote__subtitle {
  color: #fff;
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  margin-top: 1em;
}
@media (max-width: 520px) {
  .c-blockquote__subtitle {
    font-size: 1.2222222222rem;
  }
}

.b-blockquote.reverse .c-blockquote__image {
  grid-row: 3/span 1;
}
.b-blockquote.reverse .c-blockquote__title {
  grid-row: 1/span 1;
}
.b-blockquote.reverse .c-blockquote__subtitle {
  grid-row: 2/span 1;
}

.e-menu-toggler {
  z-index: 20;
  position: relative;
}
.sticking .e-menu-toggler:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #191919;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
}
.e-menu-toggler__circle {
  left: 0;
  top: 0;
  border: 1px solid #191919;
  border-radius: 100%;
  z-index: 20;
  -webkit-animation: rotateTurn 20s linear infinite;
  animation: rotateTurn 20s linear infinite;
}
.body-page-dark .e-menu-toggler__circle, .homepage .e-menu-toggler__circle, .body-bg-black .e-menu-toggler__circle, .body-page-black .e-menu-toggler__circle {
  border: 1px solid #fff;
}
body.main-active .e-menu-toggler__circle, .sticking .e-menu-toggler__circle {
  border: 1px solid #fff;
}
.e-menu-toggler__circle, .e-menu-toggler__bars {
  width: 3.5555555556rem;
  height: 3.5555555556rem;
}
@media (max-width: 520px) {
  .e-menu-toggler__circle, .e-menu-toggler__bars {
    width: 3rem;
    height: 3rem;
  }
}
.e-menu-toggler__bars {
  position: absolute;
  z-index: 21;
  left: 0;
  top: 0;
  border: 1px solid #191919;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.e-menu-toggler__bars__item {
  height: 1px;
  background-color: #191919;
  margin: 6px 0;
  transition: transform 0.5s;
}
.e-menu-toggler__bars__item:nth-child(1), .e-menu-toggler__bars__item:nth-child(2) {
  width: 1.4444444444rem;
}
.e-menu-toggler__bars__item:nth-child(3) {
  width: 0.7777777778rem;
}
.body-page-dark .e-menu-toggler__bars__item, .homepage .e-menu-toggler__bars__item, .sticking .e-menu-toggler__bars__item, .body-bg-black .e-menu-toggler__bars__item, .body-page-black .e-menu-toggler__bars__item, body.main-active .e-menu-toggler__bars__item {
  border: 1px solid #fff;
}
.body-page-dark .e-menu-toggler__bars, .homepage .e-menu-toggler__bars, .body-bg-black .e-menu-toggler__bars, .body-page-black .e-menu-toggler__bars {
  border: 1px solid #fff;
}
.e-menu-toggler.active .e-menu-toggler__bars__item:nth-child(1) {
  transform: rotate(45deg) translate(9px, 8px);
  width: 2.3333333333rem;
}
.e-menu-toggler.active .e-menu-toggler__bars__item:nth-child(2) {
  transform: scale(0);
}
.e-menu-toggler.active .e-menu-toggler__bars__item:nth-child(3) {
  width: 2.3333333333rem;
  transform: rotate(-45deg) translate(10px, -8px);
}

@keyframes rotateTurn {
  0% {
    transform: rotate(0) translate(0);
  }
  10% {
    transform: rotate(1turn) translate(2px, 2px);
  }
  20% {
    transform: rotate(2turn) translate(1px, 1px);
  }
  30% {
    transform: rotate(3turn) translate(2px, 2px);
  }
  40% {
    transform: rotate(4turn) translate(1px, 1px);
  }
  50% {
    transform: rotate(5turn) translate(2px, 2px);
  }
  60% {
    transform: rotate(6turn) translate(1px, 1px);
  }
  70% {
    transform: rotate(7turn) translate(2px, 2px);
  }
  80% {
    transform: rotate(8turn) translate(1px, 1px);
  }
  90% {
    transform: rotate(9turn) translate(2px, 2px);
  }
  to {
    transform: rotate(10turn) translate(0);
  }
}
.c-celebration {
  margin-bottom: 0.8em !important;
}
.c-celebration__date {
  min-width: 200px;
  margin-right: 10px;
  display: inline-block;
}
.c-celebration__date + a, .c-celebration__date + button {
  min-width: auto;
  padding: 0.4em 1.5em;
}
.c-celebration__note {
  font-size: 0.8rem;
}

.c-text .c-celebration__title {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .c-text .c-celebration__title {
    font-size: 1.2222222222rem;
  }
}

.c-concepts {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 1.6666666667rem 3.3333333333rem;
}
@media (max-width: 520px) {
  .c-concepts {
    grid-template-columns: 1fr;
  }
}

.c-concepts-scrolling {
  height: 3rem;
  overflow: hidden;
  position: relative;
}
.c-concepts-scrolling__items {
  height: 3rem;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}
.c-concepts-scrolling__item {
  font-size: 50px;
  text-transform: uppercase;
}

.c-concepts-scrolling-pagination {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.c-concepts-scrolling-pagination ul {
  height: 2rem;
  line-height: 2rem;
  overflow: hidden;
}
.c-concepts-scrolling-pagination ul li {
  height: 2rem;
  line-height: 2rem;
}
.c-concepts-scrolling-pagination .c-concepts-scrolling-pagination__line {
  flex-grow: 1;
  display: flex;
  overflow: hidden;
  margin: 0 30px;
}
.c-concepts-scrolling-pagination .c-concepts-scrolling-pagination__line span {
  display: inline-block;
  height: 1px;
  background-color: #fff;
  width: 100%;
}

.c-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-gap: 3.3333333333rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 520px) {
  .c-contact {
    padding-top: 3.3333333333rem;
  }
}
@media (max-width: 520px) {
  .c-contact {
    padding-bottom: 3.3333333333rem;
  }
}
@media (max-width: 778px) {
  .c-contact {
    grid-template-columns: 1fr;
  }
}
.c-contact__title {
  font-size: 3.8888888889rem;
  line-height: 1.08;
  line-height: 1.08;
  line-height: 1.08;
  font-weight: 700;
}
@media (max-width: 520px) {
  .c-contact__title {
    font-size: 3.2222222222rem;
  }
}
.c-contact__body {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .c-contact__body {
    font-size: 1.2222222222rem;
  }
}
.c-contact__body a {
  transition: all 0.5s;
  color: #191919;
  text-decoration: underline;
}
@media (min-width: 820px) {
  .c-contact__body a:hover {
    color: #ea3544;
  }
}

.c-convoca-video.u-fullwidth {
  padding: 0;
  margin-top: -1.6666666667rem;
  background: transparent;
}
.c-convoca-video__content {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.u-fullwidth .c-convoca-video__content {
  padding: 0;
}
.c-convoca-video__content::before {
  content: "";
  display: block;
  aspect-ratio: 16/9;
}
.c-convoca-video__content iframe {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-convoca-intro {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #191919;
  padding: 1.6666666667rem 1.6666666667rem;
}

@media (max-width: 520px) {
  .c-convoca-info {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-convoca-platforms {
  display: flex;
}
.c-convoca-platforms a {
  margin-right: 1.6666666667rem;
  width: 300px;
}

.c-convoca-prizes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3.3333333333rem 1.6666666667rem;
  margin-bottom: 1.6666666667rem;
}
@media (max-width: 520px) {
  .c-convoca-prizes {
    grid-template-columns: 1fr;
  }
}
.c-convoca-prizes__item {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 520px) {
  .c-convoca-prizes__item {
    flex-grow: 1;
    flex-basis: auto;
  }
  .c-convoca-prizes__item svg {
    width: 100%;
  }
}

.c-convoca-prize {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-column-gap: 1.6666666667rem;
  align-items: start;
  align-content: start;
  grid-template-areas: "svg title" "svg description";
}
.c-convoca-prize__title {
  grid-area: title;
  font-weight: bold;
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .c-convoca-prize__title {
    font-size: 1.2222222222rem;
  }
}
.c-convoca-prize__description {
  margin-top: 0.4em;
  grid-area: description;
  font-size: 0.8888888889rem;
}
.c-convoca-prize__amount {
  background-color: #d8d8d8;
  display: inline-block;
  padding: 0.1em 0.4em;
  font-weight: bold;
  font-size: 1.1111111111rem;
  line-height: 1.3;
}
.c-convoca-prize__svg {
  grid-area: svg;
}
.c-convoca-prize__svg text {
  font-family: Space Grotesk, sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
}

#tarteaucitronRoot #tarteaucitronAlertBig {
  top: auto;
  bottom: 0px;
  box-sizing: border-box;
  bottom: auto;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(100vw - 50px);
  padding: 30px;
  text-align: left;
  background-color: #fff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  max-width: 430px;
  right: 30px;
  bottom: 30px;
  left: auto;
}
#tarteaucitronRoot #tarteaucitronAlertBig[style="display: block;"] {
  display: flex !important;
}
@media (max-width: 520px) {
  #tarteaucitronRoot #tarteaucitronAlertBig {
    top: 50%;
    left: 25px;
    bottom: auto;
    transform: translateY(-50%);
  }
}
#tarteaucitronRoot #tarteaucitronAlertBig a {
  color: #191919;
  text-decoration: underline;
}

#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert {
  display: block;
  flex-basis: 100%;
  margin-bottom: 10px;
}
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert, #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong, #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert a {
  color: #191919 !important;
  font-family: v-font(primary) !important;
}
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert:before {
  content: "Cookies";
  display: block;
  font-size: 30px;
  font-weight: 200;
  margin-bottom: 10px;
}

#tarteaucitron #tarteaucitronPrivacyUrl,
#tarteaucitronAlertBig #tarteaucitronCloseAlert,
#tarteaucitronAlertBig #tarteaucitronDenyAll,
#tarteaucitronAlertBig #tarteaucitronPersonalize {
  font-family: v-font(primary) !important;
  background: #191919;
  color: #fff;
  min-height: 50px;
  margin-top: 12px;
  margin-bottom: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
  font-size: 16px;
  padding: 5px 10px;
  text-align: center;
  box-sizing: border-box !important;
  transition: all 0.5s;
}
@media (max-width: 520px) {
  #tarteaucitron #tarteaucitronPrivacyUrl,
#tarteaucitronAlertBig #tarteaucitronCloseAlert,
#tarteaucitronAlertBig #tarteaucitronDenyAll,
#tarteaucitronAlertBig #tarteaucitronPersonalize {
    height: auto;
  }
}
#tarteaucitron #tarteaucitronPrivacyUrl:hover,
#tarteaucitronAlertBig #tarteaucitronCloseAlert:hover,
#tarteaucitronAlertBig #tarteaucitronDenyAll:hover,
#tarteaucitronAlertBig #tarteaucitronPersonalize:hover {
  opacity: 0.8;
}

#tarteaucitronAlertBig #tarteaucitronPersonalize,
#tarteaucitronAlertBig #tarteaucitronDenyAll {
  width: 100%;
  max-width: calc(50% - 5px);
  flex-basis: calc(50% - 5px);
}

#tarteaucitronPersonalize {
  margin-left: 0 !important;
}

#tarteaucitronCloseAlert {
  background-color: rgba(25, 25, 25, 0.4) !important;
  width: 100%;
  flex-basis: 100%;
  margin-left: 0;
}

#tarteaucitronPercentage {
  display: none !important;
}

.c-crumbs-wrapper {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding-top: 0.8333333333rem;
  padding-bottom: 0.8333333333rem;
}
.sticking .c-crumbs-wrapper {
  display: none;
}
.main-active .c-crumbs-wrapper {
  display: none;
}

.c-crumbs ul {
  display: flex;
}
.c-crumbs ul li {
  font-size: 0.8888888889rem;
}
.c-crumbs ul li a {
  transition: color 0.5s;
  color: #fff;
}
@media (min-width: 820px) {
  .c-crumbs ul li a:hover {
    color: #ea3544;
  }
}
.c-crumbs ul li:not(:last-child):after {
  color: #fff;
  content: "/";
  margin-left: 10px;
  margin-right: 10px;
}
.c-crumbs ul li:last-child {
  font-weight: 700;
}

.c-custom-text {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1111111111rem;
  line-height: 1.3;
  padding-top: 1.6666666667rem;
  padding-bottom: 1.6666666667rem;
}
@media (max-width: 520px) {
  .c-custom-text {
    padding-top: 0.8333333333rem;
  }
}
@media (max-width: 520px) {
  .c-custom-text {
    padding-bottom: 0.8333333333rem;
  }
}
.c-custom-text.-size-20 p, .c-custom-text.-size-20 li {
  font-size: 1.1111111111rem;
  line-height: 1.3;
}
.c-custom-text.-size-25 p, .c-custom-text.-size-25 li {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.6;
}
@media (max-width: 520px) {
  .c-custom-text.-size-25 p, .c-custom-text.-size-25 li {
    font-size: 1.2222222222rem;
  }
}
.c-custom-text.-text-primary {
  color: #ea3544;
}
.c-custom-text.-bg-black {
  background-color: #191919;
  color: #fff;
  padding-top: 1.6666666667rem;
  padding-bottom: 1.6666666667rem;
  margin-left: -3000px;
  margin-right: -3000px;
  padding-left: 3000px;
  padding-right: 3000px;
  max-width: none;
}

html.edition-2022 {
  font-size: 1vw;
}

body.edition-2022 {
  font-family: "Poppins", sans-serif;
}

.c-edition-2022-mobile {
  overflow: hidden;
  position: relative;
}
.c-edition-2022-mobile > iframe {
  position: absolute;
  width: 170vw;
  height: 126.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-width: 100vh;
  min-height: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 820px) {
  .c-edition-2022-mobile > iframe {
    width: 100vw;
    height: 100%;
    min-width: 177.77vh;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.c-edition-2022-mobile__content {
  position: relative;
  z-index: 1;
}
.c-edition-2022-mobile__content .c-edition-2022 {
  position: initial;
}
.c-edition-2022-mobile .c-edition-2022-bottom-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -1px;
  height: auto;
  margin-top: 3rem;
  margin-bottom: 6rem;
}
@media (max-width: 820px) {
  .c-edition-2022-mobile .c-edition-2022-bottom-content {
    margin-top: -1px;
    margin-bottom: 0;
  }
}
.c-edition-2022-mobile .c-edition-2022-data {
  margin-top: 0;
  margin-bottom: 7rem;
  text-shadow: none;
  color: #191919;
}
.c-edition-2022-mobile .c-2022-countdown {
  display: none;
}
.c-edition-2022-mobile .c-edition-2022 {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}
@media (max-width: 820px) {
  .c-edition-2022-mobile .c-edition-2022 {
    height: auto;
  }
  .c-edition-2022-mobile .c-edition-2022.c-edition-2022-full {
    margin-bottom: 22rem;
  }
}
.c-edition-2022-mobile .c-edition-2022 > div {
  order: 2;
}
.c-edition-2022-mobile .c-2022-loading-wrapper {
  display: flex;
  justify-content: center;
  order: 1 !important;
  margin-top: 8rem;
}

.c-edition-2022-video {
  position: relative;
  z-index: 1;
}
.c-edition-2022-video iframe {
  width: 170vw;
  height: 126.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-width: 100vh;
  min-height: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}
@media (max-width: 820px) {
  .c-edition-2022-video iframe {
    width: 180vw;
    height: 126.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-width: 100vh;
    min-height: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: block;
  }
}

.c-edition-2022 {
  position: absolute;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 2;
}
@media (max-width: 820px) {
  .c-edition-2022 {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    height: auto;
  }
  .c-edition-2022 > div {
    order: 2;
  }
}

.c-edition-2022-nav {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  width: 100vw;
  padding: 2rem;
  z-index: 90;
}

.c-edition-2022-logo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.c-edition-2022-logo__logo {
  width: 10rem;
}
@media (max-width: 820px) {
  .c-edition-2022-logo__logo {
    width: 8rem;
  }
}
.c-edition-2022-logo__year {
  font-size: 4.5rem;
  color: #fff;
  font-weight: 800;
  margin-top: -2rem;
}

.c-edition-2022-cities {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.c-edition-2022-cities > div {
  width: 30rem;
}
.c-edition-2022-cities > div:nth-child(2) {
  margin-top: 4rem;
}

.c-edition-2022-city {
  text-align: center;
}
.c-edition-2022-city__title {
  font-size: 3rem;
  font-weight: bold;
}
.c-edition-2022-city__dates {
  font-size: 1.5rem;
}

.c-edition-2022-activities-link {
  text-transform: uppercase;
  width: 100%;
  font-weight: 700;
  text-align: center;
  font-size: 3rem;
  text-shadow: 2px 2px 2px rgba(25, 25, 25, 0.2);
}
@media (max-width: 820px) {
  .c-edition-2022-activities-link {
    font-size: 2rem;
    margin-bottom: 6rem;
  }
}
.c-edition-2022-activities-link a, .c-edition-2022-activities-link > span {
  background: transparent;
  color: #fff;
  display: block;
  width: 460px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  line-height: 1;
}
.c-edition-2022-activities-link a span, .c-edition-2022-activities-link > span span {
  position: relative;
  z-index: 9;
}
.c-edition-2022-activities-link a i, .c-edition-2022-activities-link > span i {
  font-size: 60px;
  color: #ea3544;
  transform: rotate(90deg);
  display: inline-block;
  transform-origin: center center;
  font-weight: 900;
  position: absolute;
  z-index: 8;
  top: 90%;
  left: calc(50% - 30px);
}

.c-edition-2022-bottom-content {
  position: relative;
  z-index: 1;
  height: 30rem;
  margin-top: -30rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c-edition-2022-bottom-content.__marquees {
  margin-top: -22.5rem;
}

.c-edition-2022-activities {
  height: 6rem;
  z-index: 9;
}
@media (max-width: 820px) {
  .c-edition-2022-activities {
    height: 3rem;
  }
}
.c-edition-2022-activities__item {
  -webkit-text-stroke: 0.2rem #fff;
  text-shadow: 2px 2px 2px transparent;
}
@media (max-width: 820px) {
  .c-edition-2022-activities__item {
    -webkit-text-stroke: 0.1rem #fff;
  }
}
.c-edition-2022-activities__item a {
  font-size: 6rem;
  line-height: 0.8;
  font-weight: 800;
  color: rgba(255, 255, 255, 0);
  text-transform: uppercase;
  padding: 0 1rem;
}
@media (max-width: 820px) {
  .c-edition-2022-activities__item a {
    font-size: 3rem;
  }
}
.c-edition-2022-activities__item a:hover {
  -webkit-text-stroke: 0.2rem #191919 !important;
  text-shadow: 2px 2px 2px #191919 !important;
  color: #191919 !important;
}
@media (max-width: 820px) {
  .c-edition-2022-activities__item a:hover {
    -webkit-text-stroke: 0.1rem #191919 !important;
  }
}

.marquee-white-fill a {
  -webkit-text-stroke: none;
  text-shadow: none;
  color: #fff !important;
  font-weight: 600;
}
.marquee-red a {
  -webkit-text-stroke: 0.2rem #ea3544;
}
@media (max-width: 820px) {
  .marquee-red a {
    -webkit-text-stroke: 0.1rem #fff;
  }
}

.c-2022-video-edition {
  max-width: 1000px;
  margin: 4rem auto;
}
@media (max-width: 820px) {
  .c-2022-video-edition {
    margin: 2rem auto;
  }
}

.c-2022-flipdown {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 89em;
}
.c-2022-flipdown .flipdown {
  width: 100%;
  display: flex;
  justify-content: center;
}
.c-2022-flipdown .flipdown .rotor-group:nth-child(5),
.c-2022-flipdown .flipdown .rotor-group:nth-child(6),
.c-2022-flipdown .flipdown .rotor-group:nth-child(7),
.c-2022-flipdown .flipdown .rotor-group:nth-child(8) {
  display: none;
}
.c-2022-flipdown .flipdown.flipdown__theme-light {
  font-weight: 400;
}

.video-player {
  position: absolute;
  z-index: 0;
  top: 40%;
  left: 20%;
}
.video-player video {
  width: 1000px;
}

.c-2022-mouse {
  text-align: center;
  font-size: 3rem;
  animation: updown 2s infinite;
  position: absolute;
  top: 91vh;
  left: calc(50% - 27px);
}
@media (max-width: 820px) {
  .c-2022-mouse {
    display: none;
  }
}

#c2 {
  position: absolute;
  z-index: 4;
  top: 10%;
  left: 20%;
  width: 200%;
}

.c-2020-loading-start {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 39;
  background: radial-gradient(#222922, #000500);
}

.loading {
  text-align: center;
  bottom: 0;
  color: #fff;
  font-size: 1.5rem;
  top: 0;
  text-shadow: 0 0 10px rgba(25, 25, 25, 0.5), 0 0 5px rgba(25, 25, 25, 0.5);
  line-height: 0;
  font-weight: 800;
}
@media (max-width: 820px) {
  .loading {
    font-size: 1.1rem;
  }
}
.loading span {
  display: inline-block;
  transform: translateX(100%) scale(0.9);
  transition: transform 500ms;
}
.loading .done {
  color: #fff;
  transform: translateX(0) scale(1);
}

.c-2022-loading-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
@media (max-width: 820px) {
  .c-2022-loading-wrapper {
    order: 1 !important;
    margin-top: 8rem;
  }
}

.c-2022-loading {
  position: relative;
  font-family: "Source Code Pro";
}
.c-2022-loading__overlay {
  background-image: linear-gradient(transparent 0%, rgba(10, 16, 10, 0.5) 50%);
  background-size: 100% 2px;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.c-2022-countdown__main {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 520px) {
  .c-2022-countdown__main {
    gap: 10px;
  }
}
.c-2022-countdown__main > div {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.25);
  width: 80px;
  height: 80px;
  border-radius: 5px;
  background-color: #fff;
}
@media (max-width: 520px) {
  .c-2022-countdown__main > div {
    width: 60px;
    height: 80px;
  }
}
.c-2022-countdown__main > div span:last-of-type {
  font-size: 12px;
}
.c-2022-countdown__number {
  font-weight: 500;
  font-size: 44px;
  color: #ea3544;
}
@media (max-width: 520px) {
  .c-2022-countdown__number {
    font-size: 34px;
  }
}
@media (max-width: 820px) {
  .c-2022-countdown {
    display: none;
  }
}

.c-edition-2022-data {
  text-shadow: 2px 2px 2px rgba(25, 25, 25, 0.2);
  color: #fff;
  margin-top: 6rem;
  margin-bottom: 5rem;
}
@media (max-width: 820px) {
  .c-edition-2022-data {
    margin-top: 0;
    margin-bottom: 7rem;
    text-shadow: none;
    color: #191919;
  }
}
.c-edition-2022-data p {
  font-size: 3rem;
  margin: 0;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.3rem;
}
@media (max-width: 820px) {
  .c-edition-2022-data p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.c-edition-2022-data__number {
  font-size: 5rem !important;
  text-transform: uppercase;
}
@media (max-width: 820px) {
  .c-edition-2022-data__number {
    font-size: 3rem !important;
  }
}
.c-edition-2022-data ul {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1;
}
@media (max-width: 820px) {
  .c-edition-2022-data ul {
    font-size: 1.2rem;
  }
}
.c-edition-2022-data ul li {
  display: inline-block;
}
.c-edition-2022-data ul li::after {
  content: ",";
}
.c-edition-2022-data ul li:last-child::after {
  display: none;
}
@media (max-width: 820px) {
  .c-edition-2022-data__date {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 300px;
    margin-right: auto !important;
    margin-left: auto !important;
    gap: 0.5rem 1rem;
  }
}

.edition-2022 .c-sponsors {
  margin-top: 0 !important;
}

.c-2022-places {
  margin-top: 3rem;
}
.c-2022-places .c-places__control {
  position: relative;
  width: 95%;
  max-width: 600px;
  margin: 2rem auto 0;
  height: 9px;
  background-color: #d8d8d8;
}
.c-2022-places .c-places__control > div {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 14px;
  width: 0;
  background-color: #ea3544;
}
.c-2022-places .c-places__items {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fill, 100%);
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: hidden;
}
.c-2022-places .c-place {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 820px) {
  .c-2022-places .c-place {
    flex-direction: column;
    align-items: center;
  }
}
.c-2022-places .c-place__image {
  background-color: #ea3544;
  width: 55%;
  height: 100%;
}
@media (max-width: 820px) {
  .c-2022-places .c-place__image {
    width: 100%;
    height: 18rem;
  }
}
.c-2022-places .c-place__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-2022-places .c-place__data {
  width: 55%;
  height: 100%;
  margin-left: -10%;
  display: flex;
}
.c-2022-places .c-place__data__content {
  background-color: #fff;
  border: 1px solid rgba(63, 77, 98, 0.1403);
  box-shadow: 0px 3px 4px rgba(63, 77, 98, 0.194047);
  padding: 1.6666666667rem;
  display: flex;
  flex-direction: column;
  gap: 0.3333333333rem;
  margin: 0.8333333333rem 0;
  width: 100%;
}
@media (max-width: 820px) {
  .c-2022-places .c-place__data {
    position: initial;
    height: auto;
    width: 90%;
    margin: 0;
    margin-top: -5rem;
  }
}
.c-2022-places .c-place__dates {
  color: #ea3544;
  font-size: 0.8333333333rem;
}
.c-2022-places .c-place__title {
  font-size: 1.6666666667rem;
  font-weight: 700;
  text-transform: uppercase;
}
.c-2022-places .c-place__main {
  flex-grow: 1;
}
.c-2022-places .c-place__address {
  font-size: 0.7777777778rem;
  font-weight: 500;
}
.c-2022-places .c-place__description {
  font-size: 0.7777777778rem;
  line-height: 1.1666666667rem;
  flex-grow: 1;
  font-weight: 300;
}
.c-2022-places .c-place__link {
  text-align: right;
  font-size: 0.8888888889rem;
}
.c-2022-places .c-place__link::after {
  content: ">";
  color: #ea3544;
}

/*#252525*/
@font-face {
  font-family: "DinNext";
  src: url("/fonts/DINNextLTPro-UltraLight.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "DinNext";
  src: url("/fonts/DINNextLTPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "DinNext";
  src: url("/fonts/DINNextLTPro-Bold.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
.edition-2023 {
  font-family: "DinNext", sans-serif;
  background-color: #2a2a2a;
  color: #fff;
}
.edition-2023 .c-share .c-share-side__icon {
  color: #fff;
  border-color: #fff;
}
.edition-2023 .c-share .c-share-side__icon::after {
  border-color: #fff;
}
.edition-2023 .c-share .c-share-side__icon i {
  color: #fff;
}
.edition-2023 .e-menu-toggler__bars {
  border-color: #fff;
}
.edition-2023 .e-menu-toggler__bars__item {
  background-color: #fff;
}
.edition-2023 .e-menu-toggler__circle {
  border-color: #fff;
}
.edition-2023 .c-edition-block__title--main {
  color: #fff;
  text-transform: uppercase;
}
.edition-2023 .c-edition-block__title--main span {
  display: block;
  font-weight: 100;
  font-size: 1.8rem;
}
.edition-2023 .c-edition-block__title--main svg {
  width: 300px;
  display: block;
  margin: -5px auto 0;
  fill: #ce2824;
}
.edition-2023 .c-sponsor-category__title {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #fff;
  padding: 0;
  border: 0;
  margin-bottom: 0.5em;
}
.edition-2023 .c-sponsor-category__title::after {
  content: "";
  background-image: url("/img/2023/subrayado-rojo.svg");
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 100%;
  height: 30px;
}
.edition-2023 .c-content {
  position: relative;
}
.edition-2023 .c-content__video {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.edition-2023 .c-content__video video {
  width: 100%;
  min-height: 100%;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.edition-2023 .c-edition-title {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  padding-top: 2rem;
}
.edition-2023 .c-edition-title span {
  border-top: 5px solid #fff;
  padding-top: 6px;
  margin-top: -6px;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
}
.edition-2023 .c-screen-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 820px) {
  .edition-2023 .c-screen-1 {
    justify-content: space-evenly;
  }
}
.edition-2023 .c-screen-1 .c-2023-mouse {
  position: initial;
  width: 100%;
  text-align: center;
  font-size: 3rem;
  color: #fff;
  animation: updown 2s infinite;
  text-transform: uppercase;
  color: #ea3544;
  font-weight: 400;
  transition: all 0.3s;
}
@media (max-width: 820px) {
  .edition-2023 .c-screen-1 .c-2023-mouse {
    display: none;
  }
}
.edition-2023 .c-screen-1 .c-2023-mouse * {
  cursor: pointer;
}
.edition-2023 .c-screen-1 .c-2023-mouse span {
  display: block;
  font-size: 1rem;
}
.edition-2023 .c-screen-1 .c-2023-mouse svg {
  fill: #fff;
  height: 55px;
}
.edition-2023 .c-screen-1 .c-2023-mouse:hover {
  color: #fff;
}
.edition-2023 .c-edition-2022-nav .c-share {
  right: 6.5rem;
}
.edition-2023 .c-logo-home {
  height: 250px;
  text-align: center;
  position: relative;
  animation: float 2s infinite linear;
}
.edition-2023 .c-logo-home svg {
  max-height: 100%;
  position: relative;
  z-index: 2;
}
.edition-2023 .c-logo-home img {
  position: absolute;
  z-index: 1;
  transform-origin: bottom left;
  transform: rotate(150deg) translateX(73px) translateY(45px) scaleX(-1);
  height: 70px;
}
.edition-2023 .c-logo-home img + img {
  transform-origin: top left;
  transform: rotate(190deg) translateX(200px) translateY(-200px);
  height: 90px;
}
@media (max-width: 820px) {
  .edition-2023 .c-logo-home {
    height: 150px;
  }
  .edition-2023 .c-logo-home img + img {
    transform: rotate(190deg) translateX(111px) translateY(-130px);
    height: 50px;
  }
}
.edition-2023 .c-edition-dates {
  height: 180px;
  color: #fff;
}
@media (max-width: 820px) {
  .edition-2023 .c-edition-dates {
    height: 140px;
  }
}
.edition-2023 .c-edition-dates__date {
  display: flex;
  justify-content: center;
  position: relative;
  top: -200px;
}
.edition-2023 .c-edition-dates__date__month {
  text-transform: uppercase;
  position: relative;
  z-index: 9;
  font-size: 1.5rem;
}
@media (max-width: 820px) {
  .edition-2023 .c-edition-dates__date__month {
    font-size: 1.1rem;
  }
}
.edition-2023 .c-edition-dates__date.date-1 .c-edition-dates__date__month {
  align-self: flex-end;
}
.edition-2023 .c-edition-dates__date.date-1 .c-edition-dates__date__month:first-child {
  top: 45px;
  left: 18px;
}
.edition-2023 .c-edition-dates__date.date-1 .c-edition-dates__date__month:last-child {
  top: 1px;
  left: -44px;
}
@media (max-width: 820px) {
  .edition-2023 .c-edition-dates__date.date-1 .c-edition-dates__date__month:last-child {
    top: 35px;
    left: -33px;
  }
}
.edition-2023 .c-edition-dates__date.date-2 .c-edition-dates__date__month:first-child {
  top: 83px;
  left: 67px;
}
.edition-2023 .c-edition-dates__date.date-2 .c-edition-dates__date__month:last-child {
  top: 44px;
  left: 2px;
}
@media (max-width: 820px) {
  .edition-2023 .c-edition-dates__date.date-2 .c-edition-dates__date__month:last-child {
    top: 59px;
  }
}
.edition-2023 .c-edition-dates__date__day {
  position: relative;
  width: 150px;
  height: 150px;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(45deg);
  overflow: hidden;
  letter-spacing: -20px;
}
.edition-2023 .c-edition-dates__date__day span {
  position: absolute;
  display: block;
  transform: rotate(-45deg);
}
.edition-2023 .c-edition-dates__date__day.day-1 {
  top: 60px;
  right: 55px;
}
.edition-2023 .c-edition-dates__date__day.day-1 span {
  right: -16px;
  bottom: -3px;
}
@media (max-width: 820px) {
  .edition-2023 .c-edition-dates__date__day.day-1 {
    top: 68px;
    right: 19px;
  }
  .edition-2023 .c-edition-dates__date__day.day-1 span {
    right: -4px;
  }
}
.edition-2023 .c-edition-dates__date__day.day-2 {
  bottom: 47px;
  left: 41px;
}
.edition-2023 .c-edition-dates__date__day.day-2 span {
  left: -12px;
  top: 13px;
}
@media (max-width: 820px) {
  .edition-2023 .c-edition-dates__date__day.day-2 {
    bottom: -5px;
    left: 56px;
  }
  .edition-2023 .c-edition-dates__date__day.day-2 span {
    left: -7px;
  }
}
@media (max-width: 820px) {
  .edition-2023 .c-edition-dates__date__day {
    font-size: 5rem;
  }
}
.edition-2023 .c-edition-cities {
  text-align: center;
  color: #fff;
  padding: 0;
}
.edition-2023 .c-edition-cities li {
  display: inline-block;
  font-size: 1.8rem;
  padding: 0;
}
.edition-2023 .c-edition-cities li::after {
  content: "-";
  display: inline-block;
  margin-left: 5px;
}
.edition-2023 .c-edition-cities li:last-child::after {
  display: none;
}
.edition-2023 .c-threads {
  position: relative;
}
@media (max-width: 820px) {
  .edition-2023 .c-threads {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
}
.edition-2023 .c-thread {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  display: flex;
  animation: float-2 2s infinite linear;
  /* Empieza el índice en 2 porque el primero es el programa completo*/
}
.edition-2023 .c-thread:nth-child(2), .edition-2023 .c-thread:nth-child(3), .edition-2023 .c-thread:nth-child(4), .edition-2023 .c-thread:nth-child(5) {
  z-index: 3;
}
.edition-2023 .c-thread:nth-child(6) {
  z-index: 3;
  align-items: center;
  justify-content: flex-end;
  left: -70vw;
  top: 25%;
  width: 100%;
  height: 33%;
  animation: float-2 2.2s infinite linear;
}
.edition-2023 .c-thread:nth-child(6) img {
  transform-origin: bottom center;
  transform: rotate(170deg) translateX(171px) translateY(16px);
  height: 70px;
}
@media (max-width: 820px) {
  .edition-2023 .c-thread:nth-child(6) img {
    transform: rotate(170deg) translateX(443px) translateY(59px);
  }
}
.edition-2023 .c-thread:nth-child(2) {
  justify-content: flex-start;
  align-items: flex-end;
  left: 63vw;
  top: -70vh;
  animation: float 2s infinite linear;
}
.edition-2023 .c-thread:nth-child(2) img {
  transform-origin: bottom left;
  transform: rotate(-5deg) translateX(152px) translateY(17px);
  width: 800px;
}
@media (max-width: 820px) {
  .edition-2023 .c-thread:nth-child(2) {
    justify-content: flex-end;
    margin-left: -20px;
  }
  .edition-2023 .c-thread:nth-child(2) img {
    transform: rotate(-10deg) translateX(602px) translateY(105px);
  }
}
@media (max-width: 520px) {
  .edition-2023 .c-thread:nth-child(2) img {
    transform: rotate(-10deg) translateX(494px) translateY(91px);
    width: 600px;
  }
}
.edition-2023 .c-thread:nth-child(3) {
  align-items: flex-start;
  justify-content: flex-end;
  right: 65vw;
  top: 80vh;
  left: initial;
  animation: float 3s infinite linear;
}
.edition-2023 .c-thread:nth-child(3) img {
  transform-origin: top right;
  transform: rotate(183deg) translateX(609px) translateY(-65px);
  width: 500px;
}
@media (max-width: 820px) {
  .edition-2023 .c-thread:nth-child(3) {
    margin-left: 80px;
  }
  .edition-2023 .c-thread:nth-child(3) img {
    transform-origin: top left;
    transform: rotate(183deg) translateX(-27px) translateY(-56px);
    width: 600px;
  }
}
@media (max-width: 520px) {
  .edition-2023 .c-thread:nth-child(3) img {
    transform: rotate(163deg) translateX(-59px) translateY(-82px);
  }
}
.edition-2023 .c-thread:nth-child(4) {
  left: 58vw;
  top: 61vh;
  animation: float-2 2.5s infinite linear;
}
.edition-2023 .c-thread:nth-child(4) img {
  transform-origin: top left;
  transform: rotate(60deg) translateX(77px) translateY(-143px);
  width: 1200px;
  height: 50px;
}
@media (max-width: 820px) {
  .edition-2023 .c-thread:nth-child(4) {
    align-items: flex-end;
  }
  .edition-2023 .c-thread:nth-child(4) img {
    transform-origin: top left;
    transform: none;
    transform: rotate(50deg) translateX(629px) translateY(-732px);
  }
}
@media (max-width: 520px) {
  .edition-2023 .c-thread:nth-child(4) img {
    transform: rotate(50deg) translateX(692px) translateY(-824px);
  }
}
.edition-2023 .c-thread:nth-child(5) {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  right: 60vw;
  bottom: 80vh;
  top: initial;
  left: initial;
}
.edition-2023 .c-thread:nth-child(5) img {
  transform-origin: bottom right;
  transform: rotate(200deg) translateX(1125px) translateY(4px);
  width: 1000px;
}
@media (max-width: 820px) {
  .edition-2023 .c-thread:nth-child(5) {
    align-items: flex-start;
    margin-left: 10px;
  }
  .edition-2023 .c-thread:nth-child(5) img {
    transform-origin: bottom left;
    transform: rotate(200deg) translateX(-147px) translateY(111px);
  }
}
@media (max-width: 520px) {
  .edition-2023 .c-thread:nth-child(5) img {
    transform: rotate(200deg) translateX(-127px) translateY(86px);
    width: 600px;
  }
}
.edition-2023 .c-thread img {
  position: absolute;
  z-index: 1;
  max-width: initial !important;
}
.edition-2023 .c-thread__link {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 900;
  transition: all 0.3s;
}
@media (max-width: 520px) {
  .edition-2023 .c-thread__link {
    font-size: 1.8rem;
  }
}
.edition-2023 .c-thread__link svg {
  fill: #fff;
  display: block;
  margin-top: -5px;
  transition: all 0.3s;
}
.edition-2023 .c-thread__link > span.more {
  display: block;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 100;
}
@media (max-width: 520px) {
  .edition-2023 .c-thread__link > span.more {
    font-size: 0.9rem;
  }
}
.edition-2023 .c-thread__link.cutlink::before {
  content: attr(data-content);
  clip-path: polygon(0 120%, 100% 120%, 100% 50%, 0 50%);
  -webkit-clip-path: polygon(0 120%, 100% 120%, 100% 50%, 0 50%);
  position: absolute;
  top: 18px;
}
@media (max-width: 820px) {
  .edition-2023 .c-thread__link.cutlink::before {
    display: none;
  }
}
.edition-2023 .c-thread__link.cutlink .cutlink-inner {
  display: inline-block;
  clip-path: polygon(0 -20%, 100% -20%, 100% 51%, 0 51%);
  -webkit-clip-path: polygon(0 -20%, 100% -20%, 100% 51%, 0 51%);
}
@media (max-width: 820px) {
  .edition-2023 .c-thread__link.cutlink .cutlink-inner {
    clip-path: none !important;
  }
}
.edition-2023 .c-thread__link.cutlink:hover::before {
  transition: transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: translate(3px, 2px);
}
.edition-2023 .c-thread__link.cutlink:hover .cutlink-inner {
  transition: transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: translate(-3px, -2px);
}
.edition-2023 .c-thread--normal {
  width: 3000px;
}
.edition-2023 .c-thread--main {
  justify-content: center;
  align-items: center;
  z-index: 2;
  animation: float-2 3s infinite linear;
}
.edition-2023 .c-thread--main img {
  transform-origin: bottom left;
  position: absolute;
  left: 50%;
  top: 50%;
}
.edition-2023 .c-thread--main img.thread-1 {
  transform: scaleX(-1) rotate(15deg) translateX(45px) translateY(-82px);
  width: 1000px;
}
@media (max-width: 520px) {
  .edition-2023 .c-thread--main img.thread-1 {
    transform: scaleX(-1) rotate(15deg) translateX(77px) translateY(-74px);
    width: 600px;
  }
}
.edition-2023 .c-thread--main img.thread-2 {
  transform: scaleX(-1) rotate(140deg) translateX(41px) translateY(250px);
  height: 105px;
}
@media (max-width: 520px) {
  .edition-2023 .c-thread--main img.thread-2 {
    transform: scaleX(-1) rotate(140deg) translateX(21px) translateY(150px);
    height: 70px;
  }
}
.edition-2023 .c-thread--main img.thread-3 {
  transform: rotate(-46deg) translateX(107px) translateY(-11px);
  width: 1100px;
}
@media (max-width: 520px) {
  .edition-2023 .c-thread--main img.thread-3 {
    transform: rotate(-46deg) translateX(36px) translateY(-20px);
    width: 600px;
  }
}
.edition-2023 .c-thread--main .c-thread__link {
  font-size: 5rem;
}
.edition-2023 .c-thread--main .c-thread__link::before {
  top: 0;
}
.edition-2023 .c-thread--main .c-thread__link > span:first-child {
  font-size: 5rem;
  font-weight: 900;
  text-transform: none;
}
@media (max-width: 520px) {
  .edition-2023 .c-thread--main .c-thread__link > span:first-child {
    font-size: 3rem;
  }
}
.edition-2023 .c-thread--main .c-thread__link > span:last-child {
  font-size: 2.2rem;
  font-weight: 100;
  display: block;
}
@media (max-width: 520px) {
  .edition-2023 .c-thread--main .c-thread__link > span:last-child {
    font-size: 1.5rem;
  }
}
@media (max-width: 820px) {
  .edition-2023 .c-thread {
    flex-direction: column;
    position: initial;
    height: auto;
    width: 100%;
    order: 4;
    padding: 0 3rem;
  }
  .edition-2023 .c-thread:nth-child(2) {
    order: 1;
  }
  .edition-2023 .c-thread:nth-child(3) {
    order: 2;
  }
  .edition-2023 .c-thread--main {
    order: 3;
  }
}
@media (max-width: 520px) {
  .edition-2023 .c-thread {
    margin-left: 0 !important;
    padding: 0 1rem;
  }
}
.edition-2023 .c-video-home {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.edition-2023 .c-video-home__title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: float-2 5s infinite linear;
}
.edition-2023 .c-video-home__title svg {
  fill: #ce2824;
  position: absolute;
  width: 150%;
  left: 0;
  bottom: 40px;
}
.edition-2023 .c-video-home__title span {
  display: block;
  font-weight: 400;
  font-size: 1.8rem;
}
.edition-2023 .c-video-home__video {
  width: 60%;
}
.edition-2023 .c-video-home__video iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 960px) {
  .edition-2023 .c-video-home {
    flex-direction: column;
    gap: 1rem;
  }
  .edition-2023 .c-video-home__title svg {
    left: -20%;
  }
}
.edition-2023 div.container div.c-sponsors {
  background: transparent;
}
.edition-2023 .c-footer-wrapper.-dark {
  background: transparent;
}
.edition-2023 .c-footer-wrapper.-dark::before {
  display: none;
}
.edition-2023 .c-footer__nav {
  border-color: #fff;
}
.edition-2023 .background-2 {
  background-color: #2a2a2a;
  background-image: url("/img/2023/topografia.png");
  background-size: contain;
}
.edition-2023 .c-sponsors-container .-level-2 .c-sponsor-category__title {
  font-size: 2.2rem;
}
.edition-2023 .c-sponsors-container .-level-1 .c-sponsor-category__title {
  font-size: 1.8rem;
}
.edition-2023 .c-sponsors-container .-level-0 .c-sponsor-category__title {
  font-size: 1.4rem;
}

.c-screen {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}
@media (max-width: 820px) {
  .c-screen {
    min-height: calc(100vh - 70px);
  }
}

.map-background {
  position: relative;
  z-index: 1;
  background-image: url("/img/2023/topografia.png");
  background-size: contain;
}

.c-2023-places {
  padding: 0 0 6rem 0;
}
.c-2023-places .c-edition-block__title {
  padding-bottom: 5rem;
}
.c-2023-places .c-places__control {
  position: relative;
  width: 95%;
  max-width: 600px;
  margin: 2rem auto 0;
  height: 9px;
  background-color: #d8d8d8;
}
.c-2023-places .c-places__control > div {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 14px;
  width: 0;
  background-color: #ea3544;
}
.c-2023-places .c-places__items {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fill, 33%);
  grid-template-columns: auto-fill;
  grid-auto-flow: column;
  grid-auto-columns: 33%;
}
@media (max-width: 820px) {
  .c-2023-places .c-places__items {
    grid-template-columns: repeat(auto-fill, 100%);
    grid-auto-columns: 100%;
  }
}
.c-2023-places .c-place {
  text-align: center;
  text-transform: uppercase;
}
.c-2023-places .c-place__title {
  font-size: 1.8rem;
  line-height: 1.9rem;
  font-weight: 900;
}
.c-2023-places .c-place__title svg {
  fill: #fff;
  display: block;
  width: 60%;
  margin: -5px auto 5px;
}
.c-2023-places .c-place__address {
  font-size: 0.9rem;
  font-weight: 400;
}
.c-2023-places .c-place__dates {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 10px 0;
}
.c-2023-places .c-place__link {
  font-weight: 400;
}
.c-2023-places .c-place__link a:hover {
  color: #fff;
}

@keyframes float {
  0% {
    transform: rotate(0deg) translate3d(5px, 0, 0) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate3d(5px, 0, 0) rotate(-360deg);
  }
}
@keyframes float-2 {
  0% {
    transform: rotate(360deg) translate3d(5px, 0, 0) rotate(-360deg);
  }
  100% {
    transform: rotate(0deg) translate3d(5px, 0, 0) rotate(0deg);
  }
}
@keyframes float {
  0% {
    transform: translatex(0px) translatey(0px);
  }
  50% {
    transform: translatex(5px) translatey(-20px);
  }
  100% {
    transform: translatex(0px) translatey(0px);
  }
}
@keyframes float2 {
  0% {
    transform: translatex(0px) translatey(0px);
  }
  50% {
    transform: translatex(-20px) translatey(10px);
  }
  100% {
    transform: translatex(0px) translatey(0px);
  }
}
@keyframes float3 {
  0% {
    transform: translatex(0px) translatey(0px);
  }
  50% {
    transform: translatex(0px) translatey(20px);
  }
  100% {
    transform: translatex(0px) translatey(0px);
  }
}
.edition-2024 {
  transform: none !important;
  font-family: "Tektur", sans-serif;
  height: 100%;
  overflow: initial;
  background-color: #2c1d17;
}
.edition-2024 #to-top {
  right: 160px;
}
.edition-2024 .c-logo-landing {
  flex-grow: 1;
}
.edition-2024 .c-logo-landing img {
  height: 5.5555555556rem;
  margin-top: -1.3888888889rem;
  margin-left: -0.8333333333rem;
}
.edition-2024 .c-screen.--programme {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 7rem;
}
@media (max-width: 820px) {
  .edition-2024 .c-screen.--programme {
    margin-top: 8rem;
  }
}
@media (max-width: 820px) {
  .edition-2024 .c-screen {
    min-height: auto;
  }
  .edition-2024 .c-screen.--top {
    min-height: calc(100vh - 120px);
  }
  .edition-2024 .c-screen.--marquee {
    min-height: 70vh;
  }
}
.edition-2024 .c-share {
  right: 6.5rem;
}
.edition-2024 .c-share .c-share-side__icon {
  color: #fff;
  border-color: #fff;
}
.edition-2024 .c-share .c-share-side__icon::after {
  border-color: #fff;
}
.edition-2024 .c-share .c-share-side__icon i {
  color: #fff;
}
.edition-2024 .e-menu-toggler__bars {
  border-color: #fff;
}
.edition-2024 .e-menu-toggler__bars__item {
  background-color: #fff;
}
.edition-2024 .e-menu-toggler__circle {
  border-color: #fff;
}
.edition-2024 .c-stone {
  position: fixed;
  width: 35%;
  z-index: 9;
}
.edition-2024 .c-stone.stone-1 {
  width: 22vw;
  top: -9vw;
  left: -7vw;
  animation: float2 6s ease-in-out infinite;
}
@media (max-width: 820px) {
  .edition-2024 .c-stone.stone-1 {
    top: -5vw;
    left: -4vw;
    animation: float2 16s ease-in-out infinite;
  }
}
.edition-2024 .c-stone.stone-2 {
  width: 24vw;
  right: -8vw;
  bottom: -10vw;
  animation: float 6s ease-in-out infinite;
}
@media (max-width: 820px) {
  .edition-2024 .c-stone.stone-2 {
    right: -5vw;
    bottom: -8vw;
    animation: float 16s ease-in-out infinite;
  }
}
.edition-2024 .c-content {
  position: relative;
  overflow: hidden;
}
.edition-2024 .c-content .c-screen {
  z-index: 9;
}
.edition-2024 .c-content .c-screen.--top {
  position: relative;
}
.edition-2024 .c-content .c-screen.--video {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.edition-2024 .c-content .c-screen.--video .c-video-home__title {
  text-align: center;
}
.edition-2024 .c-content .c-screen.--video .c-video-home__title .container-g.glitch-title {
  max-width: 600px;
  width: 90%;
}
.edition-2024 .c-content .c-screen.--video .c-video-home__video {
  width: 90%;
  max-width: 66.6666666667rem;
  display: block;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .edition-2024 .c-content .c-screen.--video .c-video-home__video {
    margin-top: 5rem;
  }
}
.edition-2024 .c-content .c-screen.--video .c-video-home__video iframe {
  width: 100%;
  height: 100%;
}
.edition-2024 .c-content__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.edition-2024 .c-content__video::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  height: 100px;
  width: 100%;
  margin-top: -100px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(44, 29, 23) 100%);
}
.edition-2024 .c-content__video iframe,
.edition-2024 .c-content__video .video-thumb {
  width: 105vw;
  height: 183.25vw;
  min-width: 105vh;
  min-height: 183.77vh;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  z-index: 2;
}
@media (max-width: 820px) {
  .edition-2024 .c-content__video iframe,
.edition-2024 .c-content__video .video-thumb {
    width: 90vw;
    height: 159.25vw;
    min-width: 90vh;
    min-height: 159.77vh;
  }
}
.edition-2024 .c-content__video .video-thumb {
  position: absolute;
  top: 0;
  z-index: 1;
}
.edition-2024 .c-content__video video {
  max-width: 100%;
}
@media (max-width: 820px) {
  .edition-2024 .c-content__video img {
    max-width: 115%;
  }
}
.edition-2024 .c-content__layers {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 820px) {
  .edition-2024 .c-content__layers {
    width: 113%;
  }
}
.edition-2024 .c-content__layers img {
  position: absolute;
}
.edition-2024 .c-content__layers .layer {
  width: 100%;
  top: 1.5% !important;
  left: -2% !important;
}
@media (max-width: 820px) {
  .edition-2024 .c-content__layers .layer {
    top: 0.5% !important;
  }
}
.edition-2024 .c-content__cities {
  position: absolute;
  left: 2rem;
  top: 1.5rem;
  width: calc(100% - 4rem);
  z-index: 4;
  display: flex;
  padding: 0.5rem 2rem;
  color: #fff;
  justify-content: space-evenly;
}
@media (max-width: 820px) {
  .edition-2024 .c-content__cities {
    bottom: 0;
    top: initial;
    flex-wrap: wrap;
    gap: 1rem;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    left: 0;
    width: 100%;
    align-items: center;
    gap: 0.5rem;
  }
  .edition-2024 .c-content__cities li {
    width: calc(50% - 0.5rem);
    padding: 0 10px;
  }
}
.edition-2024 .c-content__cities li {
  text-align: center;
  font-weight: 600;
  font-size: 26px;
}
@media (max-width: 820px) {
  .edition-2024 .c-content__cities li {
    padding: 0;
  }
}
.edition-2024 .c-content__cities li span {
  display: block;
  font-weight: 300;
  font-family: "Syne", sans-serif;
  font-size: 20px;
}
.edition-2024 .c-content__mouse-down {
  position: absolute;
  top: 89vh;
  left: calc(50% - 50px);
  z-index: 4;
  cursor: pointer;
  animation: updown 2s infinite;
}
.edition-2024 .c-content__mouse-down p {
  position: absolute;
  top: -20px;
  left: -115px;
  color: #fff;
  width: 300px;
  text-align: center;
}
@media (max-width: 820px) {
  .edition-2024 .c-content__mouse-down {
    display: none;
  }
}
.edition-2024 .c-content__mouse-down .glitch,
.edition-2024 .c-content__mouse-down .glow {
  font-size: 4rem;
}
@media (max-width: 820px) {
  .edition-2024 .c-content__mouse-down .glitch,
.edition-2024 .c-content__mouse-down .glow {
    font-size: 2.5rem;
  }
}
.edition-2024 .c-edition-2022-activities-link {
  text-transform: initial;
  text-shadow: none;
  font-weight: 300;
}
@media (max-width: 820px) {
  .edition-2024 .c-edition-2022-activities-link {
    margin-bottom: 2rem;
  }
}
.edition-2024 .c-edition-2022-bottom-content.__marquees {
  margin-top: 0;
  position: absolute;
  bottom: 8rem;
  left: 0;
  width: 100%;
  height: auto;
  gap: 3rem;
}
.edition-2024 .c-edition-2022-bottom-content.__marquees .c-edition-2022-activities-link a {
  width: 250px;
}
.edition-2024 .c-edition-2022-bottom-content.__marquees .c-edition-2022-activities-link a .container-g {
  margin-top: -50px;
}
@media (max-width: 820px) {
  .edition-2024 .c-edition-2022-bottom-content.__marquees .c-edition-2022-activities-link a .container-g {
    margin-top: 0;
  }
}
.edition-2024 .c-edition-2022-bottom-content.__marquees .c-edition-2022-activities-link a .glitch,
.edition-2024 .c-edition-2022-bottom-content.__marquees .c-edition-2022-activities-link a .glow {
  font-size: 2.8rem;
}
@media (max-width: 820px) {
  .edition-2024 .c-edition-2022-bottom-content.__marquees .c-edition-2022-activities-link a .glitch,
.edition-2024 .c-edition-2022-bottom-content.__marquees .c-edition-2022-activities-link a .glow {
    font-size: 2rem;
  }
}
.edition-2024 .c-edition-2022-bottom-content.__marquees .marquee {
  margin-top: 1rem;
}
.edition-2024 .marquee .c-edition-2022-activities__item > span:nth-child(odd) a {
  display: block;
  transform: scale(0.8);
  transform-origin: center;
}
.edition-2024 .marquee .c-edition-2022-activities__item a {
  text-transform: none;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
.edition-2024 .marquee .c-edition-2022-activities__item a:hover {
  -webkit-text-stroke: 0.2rem #ea3544 !important;
  text-shadow: 2px 2px 2px transparent !important;
  color: transparent !important;
}
@media (max-width: 820px) {
  .edition-2024 .marquee .c-edition-2022-activities__item a:hover {
    -webkit-text-stroke: 0.1rem #191919 !important;
  }
}
.edition-2024 .marquee .c-edition-2022-activities__item a .more {
  transform: none !important;
  display: block;
  font-size: 1rem;
  text-align: center;
  position: initial;
  font-family: "Syne", sans-serif;
  font-weight: 400 !important;
  text-transform: lowercase;
}
.edition-2024 .c-sponsors {
  background-color: transparent !important;
  margin-top: 0 !important;
}
.edition-2024 .c-sponsors__wrapper {
  position: relative;
  margin-top: 7rem;
}
.edition-2024 .c-sponsors .container-g.glitch-title {
  width: 300px;
}
.edition-2024 .c-sponsors .c-edition-block__title.c-edition-block__title--main {
  display: none;
}
.edition-2024 .c-sponsors .c-sponsor-category__title {
  color: #fff;
  font-size: 2.5rem;
  border-bottom: 0;
  border-top: 1px solid #fff;
}
.edition-2024 .c-sponsors-container .-level-0 .c-sponsor-category__title {
  font-size: 1.4rem;
}
.edition-2024 .c-place {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  gap: 1rem;
}
@media (max-width: 960px) {
  .edition-2024 .c-place {
    flex-wrap: wrap;
  }
}
.edition-2024 .c-place:last-child {
  border-bottom: 0;
}
.edition-2024 .c-place__city {
  font-size: 26px;
}
@media (max-width: 960px) {
  .edition-2024 .c-place__city {
    min-width: 100%;
    margin-bottom: 1rem;
  }
}
.edition-2024 .c-place__content strong {
  font-weight: 700;
  font-size: 26px;
}
.edition-2024 .c-place__content span {
  font-family: "Syne", sans-serif;
}
.edition-2024 .c-place__content a {
  border: 1px solid #fff;
  border-radius: 100px;
  font-size: 26px;
  width: 250px;
  padding: 5px 50px;
  background: transparent;
  color: #fff;
  display: block;
  width: 460px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 15px;
  display: inline-block;
  width: auto;
}
.edition-2024 .c-place__content a:hover {
  background: #fff;
  color: #2c1d17;
}
.edition-2024 .c-place > div {
  width: 31%;
}
@media (max-width: 960px) {
  .edition-2024 .c-place > div {
    width: 48%;
  }
}
@media (max-width: 820px) {
  .edition-2024 .c-place > div {
    width: 100%;
    margin-bottom: 1rem;
  }
  .edition-2024 .c-place > div:last-child {
    margin-bottom: 0;
  }
}
.edition-2024 .c-places {
  position: relative;
  z-index: 9;
  color: #fff;
}
.edition-2024 .c-places .container-g.glitch-title {
  top: -13rem;
}
@media (max-width: 820px) {
  .edition-2024 .c-places .container-g.glitch-title {
    width: 100%;
    top: -8rem;
  }
}
.edition-2024 .c-places__items {
  margin-top: 19rem;
}
@media (max-width: 820px) {
  .edition-2024 .c-places__items {
    margin-top: 16rem;
  }
}
.edition-2024 footer.c-footer-wrapper {
  margin-bottom: 0 !important;
  background-color: transparent;
}
.edition-2024 footer.c-footer-wrapper::before {
  border-bottom: 1px solid #fff;
  margin-bottom: 2rem;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}
.edition-2024 footer {
  position: relative;
  z-index: 9;
}

/* MOD: */
.container-g {
  position: absolute;
}
.container-g.glitch-title {
  left: 50%;
  transform: translateX(-50%);
  top: -2rem;
  text-align: center;
}
@media (max-width: 960px) {
  .container-g.glitch-title {
    width: auto;
  }
}
.container-g.glitch-title .glitch,
.container-g.glitch-title .glow {
  font-size: 2.8rem;
}
@media (max-width: 820px) {
  .container-g.glitch-title .glitch,
.container-g.glitch-title .glow {
    font-size: 2rem;
  }
}

.glitch, .glow {
  color: #fff;
  position: relative;
  font-size: 9vw;
  animation: glitch 5s 5s infinite;
}

.glitch::before, .glow::before {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  text-shadow: -5px 0 #d12622;
  overflow: hidden;
  top: 0;
  animation: noise-1 3s linear infinite alternate-reverse, glitch 5s 5.05s infinite;
}

.glitch::after, .glow::after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  text-shadow: -5px 0 #f9a940;
  overflow: hidden;
  top: 0;
  animation: noise-2 3s linear infinite alternate-reverse, glitch 5s 5s infinite;
}

@keyframes glitch {
  1% {
    transform: rotateX(10deg) skewX(90deg);
  }
  2% {
    transform: rotateX(0deg) skewX(0deg);
  }
}
@keyframes noise-1 {
  3.3333333333% {
    clip-path: inset(19px 0 70px 0);
  }
  6.6666666667% {
    clip-path: inset(4px 0 8px 0);
  }
  10% {
    clip-path: inset(78px 0 17px 0);
  }
  13.3333333333% {
    clip-path: inset(78px 0 17px 0);
  }
  16.6666666667% {
    clip-path: inset(33px 0 61px 0);
  }
  20% {
    clip-path: inset(72px 0 15px 0);
  }
  23.3333333333% {
    clip-path: inset(77px 0 3px 0);
  }
  26.6666666667% {
    clip-path: inset(42px 0 58px 0);
  }
  30% {
    clip-path: inset(1px 0 81px 0);
  }
  33.3333333333% {
    clip-path: inset(46px 0 26px 0);
  }
  36.6666666667% {
    clip-path: inset(14px 0 26px 0);
  }
  40% {
    clip-path: inset(9px 0 10px 0);
  }
  43.3333333333% {
    clip-path: inset(70px 0 30px 0);
  }
  46.6666666667% {
    clip-path: inset(42px 0 37px 0);
  }
  50% {
    clip-path: inset(4px 0 82px 0);
  }
  53.3333333333% {
    clip-path: inset(95px 0 2px 0);
  }
  56.6666666667% {
    clip-path: inset(83px 0 11px 0);
  }
  60% {
    clip-path: inset(67px 0 6px 0);
  }
  63.3333333333% {
    clip-path: inset(15px 0 56px 0);
  }
  66.6666666667% {
    clip-path: inset(46px 0 17px 0);
  }
  70% {
    clip-path: inset(85px 0 14px 0);
  }
  73.3333333333% {
    clip-path: inset(34px 0 7px 0);
  }
  76.6666666667% {
    clip-path: inset(19px 0 7px 0);
  }
  80% {
    clip-path: inset(88px 0 11px 0);
  }
  83.3333333333% {
    clip-path: inset(7px 0 49px 0);
  }
  86.6666666667% {
    clip-path: inset(54px 0 28px 0);
  }
  90% {
    clip-path: inset(58px 0 22px 0);
  }
  93.3333333333% {
    clip-path: inset(71px 0 5px 0);
  }
  96.6666666667% {
    clip-path: inset(31px 0 2px 0);
  }
  100% {
    clip-path: inset(48px 0 11px 0);
  }
}
@keyframes noise-2 {
  0% {
    clip-path: inset(94px 0 2px 0);
  }
  3.3333333333% {
    clip-path: inset(78px 0 9px 0);
  }
  6.6666666667% {
    clip-path: inset(100px 0 1px 0);
  }
  10% {
    clip-path: inset(47px 0 18px 0);
  }
  13.3333333333% {
    clip-path: inset(25px 0 73px 0);
  }
  16.6666666667% {
    clip-path: inset(41px 0 45px 0);
  }
  20% {
    clip-path: inset(26px 0 51px 0);
  }
  23.3333333333% {
    clip-path: inset(25px 0 1px 0);
  }
  26.6666666667% {
    clip-path: inset(87px 0 11px 0);
  }
  30% {
    clip-path: inset(21px 0 13px 0);
  }
  33.3333333333% {
    clip-path: inset(31px 0 26px 0);
  }
  36.6666666667% {
    clip-path: inset(98px 0 2px 0);
  }
  40% {
    clip-path: inset(93px 0 3px 0);
  }
  43.3333333333% {
    clip-path: inset(59px 0 1px 0);
  }
  46.6666666667% {
    clip-path: inset(45px 0 14px 0);
  }
  50% {
    clip-path: inset(5px 0 11px 0);
  }
  53.3333333333% {
    clip-path: inset(85px 0 5px 0);
  }
  56.6666666667% {
    clip-path: inset(29px 0 18px 0);
  }
  60% {
    clip-path: inset(74px 0 22px 0);
  }
  63.3333333333% {
    clip-path: inset(5px 0 18px 0);
  }
  66.6666666667% {
    clip-path: inset(75px 0 5px 0);
  }
  70% {
    clip-path: inset(1px 0 5px 0);
  }
  73.3333333333% {
    clip-path: inset(3px 0 24px 0);
  }
  76.6666666667% {
    clip-path: inset(1px 0 68px 0);
  }
  80% {
    clip-path: inset(57px 0 7px 0);
  }
  83.3333333333% {
    clip-path: inset(44px 0 6px 0);
  }
  86.6666666667% {
    clip-path: inset(46px 0 25px 0);
  }
  90% {
    clip-path: inset(21px 0 53px 0);
  }
  93.3333333333% {
    clip-path: inset(88px 0 12px 0);
  }
  96.6666666667% {
    clip-path: inset(5px 0 84px 0);
  }
  100% {
    clip-path: inset(51px 0 34px 0);
  }
}
.scanlines {
  overflow: hidden;
  mix-blend-mode: difference;
}

.scanlines::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.05) 0.5%, transparent 1%);
  animation: fudge 7s ease-in-out alternate infinite;
}

@keyframes fudge {
  from {
    transform: translate(0px, 0px);
  }
  to {
    transform: translate(0px, 2%);
  }
}
.glow {
  color: transparent;
  position: absolute;
  top: 0;
}

.subtitle {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 100;
  font-size: 0.8vw;
  color: rgba(165, 141, 141, 0.4);
  text-transform: uppercase;
  letter-spacing: 1em;
  text-align: center;
  position: absolute;
  left: 17%;
  animation: glitch-2 5s 5.02s infinite;
}

@keyframes glitch-2 {
  1% {
    transform: rotateX(10deg) skewX(70deg);
  }
  2% {
    transform: rotateX(0deg) skewX(0deg);
  }
}
.c-programme {
  position: relative;
}
.c-programme .glitch-title {
  width: 17rem;
}
@media (max-width: 820px) {
  .c-programme .glitch-title {
    top: 0;
  }
}
.c-programme__list {
  display: flex;
  gap: 2rem;
  margin-top: 8rem;
  max-width: 65rem;
}
@media (max-width: 1140px) {
  .c-programme__list {
    justify-content: space-around;
    flex-wrap: wrap;
  }
}

.c-programme-item {
  animation: float3 10s ease-in-out infinite;
}
.c-programme-item:nth-child(1) {
  animation-delay: 3s;
  animation-duration: 8s;
}
.c-programme-item:nth-child(2) {
  animation-delay: 2s;
}
.c-programme-item:nth-child(3) {
  animation-duration: 12s;
}
.c-programme-item:nth-child(4) {
  animation-delay: 2s;
}
.c-programme-item:nth-child(5) {
  animation-delay: 1s;
}
.c-programme-item a {
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 820px) {
  .c-programme-item a {
    font-size: 1.8rem;
  }
}
@media (max-width: 520px) {
  .c-programme-item a {
    font-size: 1.3rem;
  }
}
.c-programme-item a span {
  display: block;
}
.c-programme-item a span.number {
  font-size: 2.3rem;
  font-weight: 500;
  color: #ea3544;
  line-height: 1;
}
@media (max-width: 820px) {
  .c-programme-item a span.number {
    font-size: 1.6rem;
  }
}
@media (max-width: 520px) {
  .c-programme-item a span.number {
    font-size: 1.2rem;
  }
}
.c-programme-item a span.more {
  font-size: 1.2rem;
  font-weight: 100;
  text-transform: lowercase;
  font-family: "Syne", sans-serif;
}
.c-programme-item a span.cutlink-inner {
  border-bottom: 1px solid #fff;
  line-height: 1.2;
}

:root {
  --bg: $black; /* fondo solicitado */
  --font-family: "TikTok Sans", sans-serif;
  --cell-size-x: 23; /* ancho base de celda (se recalcula según la anchura del dígito) */
  --cell-size-y: 23; /* alto de celda -> filas más juntas */
  --h-gap: 1; /* px de separación mínima horizontal (reduce para juntar aún más) */
  --parallax: 22;
  --radius-min: 0px;
  --radius-max: 500px;
  --shadow-color: rgba(0, 0, 0, 0.25);
  --color-bg: #0b0b0b;
  --color-fg: #ffffff;
  --blur-radius: 26px;
  --fg-max-width: 960px;
  --fg-aspect: calc(16 / 9);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --gap: clamp(12px, 2.5vmin, 24px);
  --stroke: 4px; /* Grosor contorno */
  --gapMarquee: 0px; /* Sin separación entre “10” (todo pegado) */
  --h: clamp(128px, 28vw, 320px); /* Alto de la franja */
  --fs: clamp(72px, 20vw, 360px); /* Tamaño de los números */
  --weight: 900; /* Peso tipográfico */
  --letterSpacing: -0.08em; /* interletrado más cerrado */ /* Compactación ligera */
  --speed: 120; /* px/seg (velocidad lineal) */
  --count: 16; /* elementos base, luego se rellena si hace falta */
}

.edition-2025 {
  background-color: #111;
  margin: 0;
  background: #111;
  color-scheme: dark;
  font-family: var(--font-family);
  /* Logo */
  /* Tarjeta de revelado */
  /* Máscara con borde suavizado hacia fuera */
  /* Eliminamos el borde definido, ahora el degradado se aplica desde el borde hacia fuera */
  /* 1s y 0s*/
  /* Vídeo Scroll */
  /* Sección del vídeo a pantalla completa */
  /* Capa para la lista sobre el vídeo */
  /* Video muestra */
  /* Capa de PÓSTER (portada): imagen detrás desenfocada + imagen delante nítida + botón play */
  /* Capa de VÍDEOS */
  /* Texto/ayudas (opcional) */
  /* Accesibilidad: respeta reduce motion */
}
.edition-2025 .c-2022-loading {
  position: absolute;
}
.edition-2025 .c-2022-loading-wrapper {
  margin-top: 6rem;
  margin-bottom: 8rem;
}
@media (max-width: 820px) {
  .edition-2025 .c-2022-loading-wrapper {
    margin-top: 3rem;
    margin-bottom: 4rem;
  }
}
.edition-2025 .loading {
  font-size: 200px;
  font-weight: 600;
  font-family: var(--font-family);
}
@media (max-width: 1140px) {
  .edition-2025 .loading {
    font-size: 135px;
  }
}
@media (max-width: 820px) {
  .edition-2025 .loading {
    font-size: 60px;
  }
}
.edition-2025 #loader {
  position: fixed;
  inset: 0;
  background: #000; /* fondo negro sólido */
  display: grid;
  place-items: center; /* centra logo vertical y horizontal */
  z-index: 9999;
  will-change: opacity, transform;
}
.edition-2025 #loader .loading {
  font-size: 50px;
}
@media (max-width: 820px) {
  .edition-2025 #loader .loading {
    font-size: 30px;
  }
}
.edition-2025 #loader__logo {
  display: block;
  width: 500px;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
  will-change: transform;
}
@media (max-width: 520px) {
  .edition-2025 #loader__logo {
    width: 100%;
  }
}
.edition-2025 .c-nav {
  color: #fff;
  position: absolute;
  width: 100%;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem;
}
@media (max-width: 820px) {
  .edition-2025 .c-nav {
    height: 140px;
    justify-content: space-between;
  }
}
.edition-2025 .c-nav .c-share {
  z-index: 99;
  position: initial;
}
.edition-2025 .c-nav .c-share-side__icon {
  color: #fff;
  border-color: #fff;
}
.edition-2025 .c-nav .c-share-side__icon i {
  color: #fff;
}
.edition-2025 .c-nav .c-share-side__icon:after, .edition-2025 .c-nav .c-share-side__icon:before {
  border-color: #fff;
}
.edition-2025 .c-nav .e-menu-toggler,
.edition-2025 .c-nav .c-langs {
  z-index: 99;
  margin: 0;
}
.edition-2025 .c-nav .e-menu-toggler__bars,
.edition-2025 .c-nav .e-menu-toggler__circle {
  border-color: #fff;
}
.edition-2025 .c-nav .e-menu-toggler__bars__item {
  background-color: #fff;
}
.edition-2025 .c-nav #loader__logo {
  left: -4rem;
  width: 350px;
  top: -5.5rem;
}
@media (max-width: 820px) {
  .edition-2025 .c-nav #loader__logo {
    width: 250px;
    left: -3.5rem;
    top: -3rem;
    position: absolute;
  }
}
.edition-2025 .c-footer-wrapper {
  margin-top: 0 !important;
}
.edition-2025 .marquee span {
  width: auto;
  position: initial;
  text-align: initial;
}
.edition-2025 .c-sponsors__wrapper {
  background-color: #fff;
  position: relative;
}
.edition-2025 .c-sponsors__wrapper::before, .edition-2025 .c-sponsors__wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  right: 100%;
  top: 0;
}
.edition-2025 .c-sponsors__wrapper::after {
  right: auto;
  left: 100%;
}
.edition-2025 .c-edition-block__title--main {
  color: #e5332a;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 2.4rem;
}
.edition-2025 .c-sponsor-category__title {
  color: #e5332a;
  padding-bottom: 0;
  font-weight: 400;
  text-transform: uppercase;
  border-color: #e5332a;
}
.edition-2025 .container div.c-sponsors {
  margin-top: 0;
}
.edition-2025 .c-places {
  background-color: #e5332a;
  padding-top: 3rem !important;
  position: relative;
}
.edition-2025 .c-places__bg {
  position: absolute;
  inset: 0;
  background-image: url("/img/2025/binary-bg.png");
  background-position: center center;
  background-size: contain;
  opacity: 0.15;
  z-index: 1;
}
.edition-2025 .c-places__glitches {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1rem;
}
.edition-2025 .c-places__glitches img {
  height: 75px;
}
.edition-2025 .c-places > .c-content {
  position: relative;
  z-index: 2;
}
.edition-2025 .c-places__title {
  font-size: 23px;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
}
.edition-2025 .c-logo {
  position: absolute;
  top: calc(50% - 250px);
  left: calc(50% - 250px);
  width: 500px;
  z-index: 10;
  max-width: 100%;
}
@media (max-width: 520px) {
  .edition-2025 .c-logo {
    left: 0;
    width: 100%;
  }
}
.edition-2025 .reveal-card {
  position: relative;
  width: 100%;
  height: 105vh;
  overflow: hidden;
  isolation: isolate;
  --cx: 50%;
  --cy: 50%;
  --r: var(--radius-min);
  will-change: mask, -webkit-mask, transform;
  background-color: var(--bg);
}
@media (max-width: 820px) {
  .edition-2025 .reveal-card {
    height: auto;
    padding-bottom: 8rem;
  }
}
.edition-2025 .reveal-card::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 20vh;
  background: linear-gradient(0deg, #e5332a, rgba(17, 17, 17, 0) 80%);
}
.edition-2025 .reveal-card .layer {
  position: absolute;
  inset: 0;
}
@media (max-width: 820px) {
  .edition-2025 .reveal-card .layer {
    position: initial;
  }
}
.edition-2025 .reveal-card .layer--bottom {
  display: grid;
  place-items: center;
}
.edition-2025 .bottom-content {
  text-align: center;
  padding: clamp(16px, 4vmin, 40px);
  line-height: 1.55;
  width: 100%;
  color: #fff;
}
.edition-2025 .bottom-content__title {
  font-size: 50px;
  line-height: 1;
}
@media (max-width: 820px) {
  .edition-2025 .bottom-content__title {
    font-size: 35px;
  }
}
.edition-2025 .bottom-content__title > span {
  transform-origin: left center;
  transform: scaleY(0.02);
  filter: blur(3.5px);
  display: inline-block;
  position: relative;
  animation: glitchOuter 4s ease-in-out infinite;
}
.edition-2025 .bottom-content__title > span > span {
  transform-origin: left center;
  display: inline-block;
  transform: scaleY(50);
  filter: blur(0.4px);
  animation: glitchInner 4s ease-in-out infinite;
}
@keyframes glitchOuter {
  0%, 25% {
    transform: scaleY(0.02) translateX(0);
    filter: blur(3.5px);
  }
  30% {
    transform: scaleY(0.02) translateX(-8px);
    filter: blur(6px);
  }
  35% {
    transform: scaleY(0.02) translateX(12px);
    filter: blur(8px);
  }
  40% {
    transform: scaleY(0.02) translateX(-15px);
    filter: blur(10px);
  }
  45% {
    transform: scaleY(0.02) translateX(20px);
    filter: blur(12px);
  }
  50% {
    transform: scaleY(0.02) translateX(-10px);
    filter: blur(8px);
  }
  55% {
    transform: scaleY(0.02) translateX(5px);
    filter: blur(5px);
  }
  60% {
    transform: scaleY(0.02) translateX(-3px);
    filter: blur(4px);
  }
  65% {
    transform: scaleY(0.02) translateX(1px);
    filter: blur(3.8px);
  }
  70%, 100% {
    transform: scaleY(0.02) translateX(0);
    filter: blur(3.5px);
  }
}
@keyframes glitchInner {
  0%, 25% {
    transform: scaleY(50) translateX(0);
    filter: blur(0.4px);
  }
  30% {
    transform: scaleY(50) translateX(10px);
    filter: blur(1.2px);
  }
  35% {
    transform: scaleY(50) translateX(-15px);
    filter: blur(1.8px);
  }
  40% {
    transform: scaleY(50) translateX(18px);
    filter: blur(2.2px);
  }
  45% {
    transform: scaleY(50) translateX(-25px);
    filter: blur(2.8px);
  }
  50% {
    transform: scaleY(50) translateX(12px);
    filter: blur(1.8px);
  }
  55% {
    transform: scaleY(50) translateX(-6px);
    filter: blur(1.2px);
  }
  60% {
    transform: scaleY(50) translateX(4px);
    filter: blur(0.8px);
  }
  65% {
    transform: scaleY(50) translateX(-2px);
    filter: blur(0.6px);
  }
  70%, 100% {
    transform: scaleY(50) translateX(0);
    filter: blur(0.4px);
  }
}
.edition-2025 .bottom-content__title strong {
  display: block;
  font-size: 250px;
  font-weight: 600;
}
.edition-2025 .bottom-content__subtitle {
  font-size: 24px;
}
.edition-2025 .bottom-content__subtitle strong {
  font-weight: 900;
}
.edition-2025 .layer--top {
  -webkit-mask: radial-gradient(circle var(--r) at var(--cx) var(--cy), transparent 61%, rgba(0, 0, 0, 0.1) 80%, black 100%);
  mask: radial-gradient(circle var(--r) at var(--cx) var(--cy), transparent 61%, rgba(0, 0, 0, 0.1) 80%, black 100%);
}
.edition-2025 .layer--middle {
  background-color: #111;
  -webkit-mask: radial-gradient(circle var(--r) at var(--cx) var(--cy), transparent 30%, black 60%);
  mask: radial-gradient(circle var(--r) at var(--cx) var(--cy), transparent 30%, black 60%);
}
.edition-2025 .circle-outline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(rgb(17, 17, 17) 0%, rgba(17, 17, 17, 0.5) 50%, rgba(17, 17, 17, 0) 100%);
  filter: blur(50px);
  mix-blend-mode: screen;
}
@media (prefers-reduced-motion: reduce) {
  .edition-2025 .reveal-card {
    cursor: auto;
  }
  .edition-2025 .circle-outline {
    display: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .edition-2025 .reveal-card {
    cursor: default;
  }
}
.edition-2025 .binary-matrix {
  inset: 0;
  height: 100%;
  background: var(--bg);
  overflow: hidden; /* por si hubiera overscan */
  touch-action: none; /* mejora la respuesta del puntero en móviles */
}
.edition-2025 canvas {
  width: 100%;
  height: 100%;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .edition-2025 :root {
    --parallax: 8;
  }
}
.edition-2025 .c-content {
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .edition-2025 .c-content {
    padding: 0;
  }
}
.edition-2025 .c-content .--p-0 {
  padding: 1rem 0;
}
.edition-2025 .reveal-card--bottom {
  top: 3rem;
  position: absolute;
  width: 100%;
  z-index: 2;
}
@media (max-width: 820px) {
  .edition-2025 .reveal-card--bottom {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 3rem;
    top: 0;
  }
}
.edition-2025 .reveal-card--bottom .c-edition-cities {
  color: #e5332a;
  font-weight: 600;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-top: 0;
}
@media (max-width: 820px) {
  .edition-2025 .reveal-card--bottom .c-edition-cities {
    display: flex;
    flex-direction: row;
    gap: 1rem 3rem;
    padding: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
  }
}
.edition-2025 .reveal-card--bottom .c-edition-cities li {
  text-align: center;
  font-size: 20px;
}
.edition-2025 .reveal-card--bottom .c-edition-cities li a {
  color: #e5332a;
  transition: all 0.2s;
}
.edition-2025 .reveal-card--bottom .c-edition-cities li a:hover:hover {
  text-shadow: 0 0 5px #e5332a, 0 0 10px #e5332a, 0 0 20px #e5332a, 0 0 40px #e5332a, 0 0 80px #e5332a, 0 0 90px #fff, 0 0 100px #fff, 0 0 150px #fff;
}
.edition-2025 .c-2023-mouse {
  width: 100%;
  text-align: center;
  font-size: 3rem;
  color: #fff;
  animation: updown 2s infinite;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  transition: all 0.3s;
  font-size: 25px;
  cursor: pointer;
}
.edition-2025 .c-2023-mouse:hover {
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #fff, 0 0 80px #fff, 0 0 90px #fff, 0 0 100px #fff, 0 0 150px #fff;
}
.edition-2025 .c-2023-mouse * {
  cursor: pointer;
}
.edition-2025 .c-2023-mouse span {
  display: block;
  font-size: 1rem;
}
.edition-2025 .c-2023-mouse svg {
  fill: #fff;
  height: 55px;
}
.edition-2025 .c-2023-mouse:hover {
  color: #fff;
}
.edition-2025 .video-section {
  position: relative;
  height: 100vh; /* ocupa la ventana */
  overflow: hidden;
}
.edition-2025 .video-section::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 20vh;
  background: linear-gradient(0deg, #111 5%, rgba(206, 40, 36, 0) 100%);
  z-index: 2;
}
.edition-2025 .video-wrapper {
  position: absolute;
  inset: 0;
}
.edition-2025 #heroVideo2 {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 99%;
  object-fit: cover;
  display: block;
  background: black;
}
.edition-2025 #heroVideo {
  display: none;
}
.edition-2025 .overlay-list {
  position: absolute;
  inset: 0;
  z-index: 10; /* permitir clicks: usamos control fino en li/a */
}
.edition-2025 .overlay-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  contain: layout;
}
.edition-2025 .overlay-list li {
  position: absolute;
  transform: translate(-50%, -50%);
  /* el LI no captura eventos, solo el enlace */
  pointer-events: none;
}
.edition-2025 .overlay-list a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  pointer-events: auto; /* el enlace SÍ es clicable */
  text-transform: uppercase;
  font-size: 42px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
  color: #aef0ff;
}
@media (max-width: 1140px) {
  .edition-2025 .overlay-list a {
    font-size: 36px;
  }
}
@media (max-width: 820px) {
  .edition-2025 .overlay-list a {
    font-size: 26px;
  }
}
.edition-2025 .overlay-list a p {
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  text-shadow: none;
  transition: all 0.3s;
}
.edition-2025 .overlay-list a p:first-child {
  position: initial;
  filter: blur(10px);
}
.edition-2025 .overlay-list a span {
  display: inline-block;
  background-color: #fff;
  color: #111;
  font-size: 22px;
  text-transform: lowercase;
  padding: 0.1rem 0.3rem;
  text-shadow: none;
  border: 1px solid #fff;
  font-weight: 300;
  transition: all 0.6s;
}
.edition-2025 .overlay-list a:hover p:first-child {
  filter: blur(30px);
}
.edition-2025 .overlay-list a:hover p:nth-child(2) {
  filter: blur(10px);
}
.edition-2025 .overlay-list a:hover p:nth-child(3) {
  filter: url(#figma-texture-s0_8-r7_3);
  display: inline-block;
}
.edition-2025 .overlay-list a:hover span {
  transform: rotate(-10deg);
}
.edition-2025 .overlay-list a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.edition-2025 .dual-vimeo {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate; /* Asegura z-index correcto */
}
@media (max-width: 820px) {
  .edition-2025 .dual-vimeo {
    width: 100%;
    height: 400px;
  }
}
.edition-2025 .dual-vimeo__shadows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.edition-2025 .dual-vimeo__shadows::before, .edition-2025 .dual-vimeo__shadows::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 12rem;
  background: linear-gradient(to bottom, #e5332a 0%, transparent 100%);
}
@media (max-width: 820px) {
  .edition-2025 .dual-vimeo__shadows::before, .edition-2025 .dual-vimeo__shadows::after {
    height: 7rem;
  }
}
.edition-2025 .dual-vimeo__shadows::after {
  top: auto;
  bottom: 0;
  background: linear-gradient(to top, #e5332a 0%, transparent 100%);
}
.edition-2025 .dual-vimeo__shadows > div {
  position: absolute;
  width: 100%;
  height: 100%;
}
.edition-2025 .dual-vimeo__shadows > div::before, .edition-2025 .dual-vimeo__shadows > div::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 15rem;
  background: linear-gradient(to right, #e5332a 0%, transparent 100%);
}
@media (max-width: 820px) {
  .edition-2025 .dual-vimeo__shadows > div::before, .edition-2025 .dual-vimeo__shadows > div::after {
    width: 10rem;
  }
}
.edition-2025 .dual-vimeo__shadows > div::after {
  left: auto;
  right: 0;
  background: linear-gradient(to left, #e5332a 0%, transparent 100%);
}
.edition-2025 .dual-vimeo__wrapper {
  background-color: #e5332a;
  padding: 5rem 0 10rem;
}
.edition-2025 .dual-vimeo__title {
  font-size: 23px;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
}
.edition-2025 .poster-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
.edition-2025 .poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.edition-2025 .poster--bg {
  filter: blur(var(--blur-radius));
  transform: scale(1.06);
}
.edition-2025 .poster--fg {
  position: relative;
  width: min(90vw, var(--fg-max-width));
  width: 60%;
  aspect-ratio: var(--fg-aspect);
  height: auto;
  object-fit: cover;
  z-index: 2;
  box-shadow: var(--shadow);
}
@media (max-width: 820px) {
  .edition-2025 .poster--fg {
    width: 80%;
  }
}
.edition-2025 .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-grid;
  place-items: center;
  inline-size: clamp(56px, 9vmin, 88px);
  block-size: clamp(56px, 9vmin, 88px);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  outline: none;
  background: transparent;
  color: #111;
  z-index: 2;
}
.edition-2025 .play-btn:hover {
  filter: blur(6px);
}
.edition-2025 .play-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6), 0 8px 30px rgba(0, 0, 0, 0.35);
}
.edition-2025 .play-btn svg {
  width: 100%;
  height: 100%;
}
.edition-2025 .play-btn svg polygon {
  fill: #fff;
}
.edition-2025 .videos-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
}
.edition-2025 .video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.edition-2025 .video--bg {
  filter: blur(var(--blur-radius));
  transform: scale(1.06);
  pointer-events: none;
}
.edition-2025 .video-fg-wrap {
  position: relative;
  z-index: 2;
  width: min(90vw, var(--fg-max-width));
  width: 60%;
  aspect-ratio: var(--fg-aspect);
  overflow: hidden;
  box-shadow: var(--shadow);
}
@media (max-width: 820px) {
  .edition-2025 .video-fg-wrap {
    width: 80%;
  }
}
.edition-2025 .video--fg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}
.edition-2025 .help {
  position: fixed;
  inset: auto var(--gap) var(--gap) auto;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  font-size: 0.85rem;
  backdrop-filter: blur(6px);
}
@media (prefers-reduced-motion: reduce) {
  .edition-2025 .video--bg,
.edition-2025 .poster--bg {
    filter: none;
    transform: none;
  }
  .edition-2025 .video-fg-wrap,
.edition-2025 .poster--fg {
    box-shadow: none;
  }
}
.edition-2025 .marquee {
  padding: 1vw;
  white-space: nowrap;
}
.edition-2025 .marquee__wrapper {
  background-color: #e5332a;
}
.edition-2025 .marquee__wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.edition-2025 .marquee__title {
  text-align: center;
  position: relative;
  font-size: 30px;
  line-height: 1;
}
.edition-2025 .marquee__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: calc(50% - 0.5px);
  z-index: 1;
}
.edition-2025 .marquee__title span {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  display: inline-block;
  padding: 0 1rem;
  background-color: #e5332a;
  color: #fff;
}
.edition-2025 .marquee__inner {
  display: flex;
}
.edition-2025 .marquee__content {
  font-size: clamp(100px, 24vw, 250px);
  font-weight: 700;
  margin: auto;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
  line-height: 1;
  display: flex;
}
.edition-2025 .marquee__content span {
  transition: all 0.3s ease;
}
.edition-2025 .marquee__content span.--white {
  color: #fff;
}
.edition-2025 .c-place:last-child .c-place-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.edition-2025 .c-place-item {
  border-bottom: 1px solid #fff;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 820px) {
  .edition-2025 .c-place-item {
    align-items: center;
  }
}
.edition-2025 .c-place-item__columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 820px) {
  .edition-2025 .c-place-item__columns {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
  }
}
.edition-2025 .c-place-item__title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 400;
}
@media (max-width: 820px) {
  .edition-2025 .c-place-item__title {
    align-items: flex-start;
  }
}
.edition-2025 .c-place-item__title p {
  margin: 0;
}
.edition-2025 .c-place-item__title span {
  display: inline-block;
  background-color: #fff;
  color: #e5332a;
  padding: 0.1rem 0.5rem;
  text-transform: none;
  margin-bottom: 0.2rem;
}
.edition-2025 .c-place-item__image figure {
  width: 100%;
  aspect-ratio: 1/1; /* Formato cuadrado */
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.edition-2025 .c-place-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* La imagen se adapta al contenedor manteniendo su proporción */
  display: block;
  filter: grayscale(1);
  mix-blend-mode: multiply;
}
.edition-2025 .c-place-item__data {
  font-weight: 300;
}
.edition-2025 .c-place-item__data strong {
  font-weight: 800;
}
.edition-2025 .c-place-item__link {
  color: #fff;
  border: 1px solid #fff;
  display: inline-flex;
  gap: 0.4rem;
  padding: 0.1rem 0.4rem;
  text-transform: uppercase;
}
.edition-2025 .c-place-item__link span {
  transform: rotate(-45deg);
  display: inline-block;
}
.edition-2025 .c-place-item__link:hover {
  background-color: #fff;
  color: #e5332a;
}

noscript .no-js-hide {
  display: none !important;
}

.c-header-edition-wrapper {
  background-color: #191919;
}

.c-header-edition {
  transition: all 0.5s;
  display: grid;
  grid-gap: 1.6666666667rem;
  grid-template-columns: 5.8333333333rem 1fr auto auto 100px;
  grid-template-areas: "logo title links nav burger";
  margin-top: 0.8333333333rem;
  margin-bottom: 0.8333333333rem;
  align-items: center;
}
.sticking .c-header-edition {
  grid-template-columns: 3.3333333333rem 1fr auto auto 100px;
  grid-gap: 0.8333333333rem;
  height: 3.8888888889rem;
  margin-top: 0.8333333333rem;
  margin-bottom: 0.8333333333rem;
  margin-top: 0;
  align-items: center;
}
@media (max-width: 820px) {
  .sticking .c-header-edition {
    grid-template-columns: 3.3333333333rem 1fr 60px;
    align-items: center;
    margin-bottom: 0;
    height: 4.4444444444rem;
  }
}
@media (max-width: 820px) {
  .c-header-edition {
    grid-template-columns: 4.7222222222rem 1fr 60px;
    grid-template-areas: "logo title burger";
    grid-gap: 0.8333333333rem;
    margin-top: 0.8333333333rem;
    margin-bottom: 0.8333333333rem;
  }
}
.c-header-edition__logo {
  transition: all 0.5s;
  grid-area: logo;
  width: 5.8333333333rem;
  height: 5.8333333333rem;
  border-radius: 100%;
  overflow: hidden;
}
body.main-active .c-header-edition__logo {
  display: none;
}
.sticking .c-header-edition__logo {
  width: 3.3333333333rem;
  height: 3.3333333333rem;
}
@media (max-width: 820px) {
  .c-header-edition__logo {
    width: 4.7222222222rem;
    height: 4.7222222222rem;
    align-self: center;
  }
}
.c-header-edition__title {
  grid-area: title;
  color: #fff;
  align-self: center;
  margin-left: -0.5em;
  transition: transform 0.5s;
  transform-origin: left center;
}
.c-header-edition__title .c-header-edition-title__title {
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: 600;
}
@media (max-width: 520px) {
  .c-header-edition__title .c-header-edition-title__title {
    font-size: 1.6666666667rem;
  }
}
@media (max-width: 820px) {
  .c-header-edition__title .c-header-edition-title__title {
    font-size: 1.1111111111rem;
    line-height: 1.3;
  }
}
.c-header-edition__title .c-header-edition-title__title a {
  transition: color 0.5s;
  color: #fff;
}
@media (min-width: 820px) {
  .c-header-edition__title .c-header-edition-title__title a:hover {
    color: #ea3544;
  }
}
.c-header-edition__title .c-header-edition-title__date {
  font-size: 1.1111111111rem;
  line-height: 1.3;
  font-weight: 600;
}
@media (max-width: 820px) {
  .c-header-edition__title .c-header-edition-title__date {
    font-size: 0.8888888889rem;
  }
}
.c-header-edition__title .c-header-edition-title__places {
  font-size: 0.8888888889rem;
}
@media (max-width: 820px) {
  .c-header-edition__title .c-header-edition-title__places {
    font-size: 0.7777777778rem;
  }
}
body.main-active .c-header-edition__title {
  display: none;
}
.sticking .c-header-edition__title {
  transform: scale(0.7);
}
@media (max-width: 820px) {
  .c-header-edition__links, .c-header-edition__nav {
    display: none !important;
  }
}
.c-header-edition__links {
  grid-area: links;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.c-header-edition__links a {
  padding: 0.3em 1em;
  font-size: 0.8888888889rem;
  display: block;
  text-transform: uppercase;
  border: 1px solid;
}
.c-header-edition__links a:not(:last-child) {
  margin-bottom: 0.5em;
}
.c-header-edition__links a.-activities, .c-header-edition__links a.-places {
  color: #ea3544;
}
.c-header-edition__links a.-activities:hover, .c-header-edition__links a.-places:hover {
  background-color: #ea3544;
  color: #fff;
  border-color: #ea3544;
}
.c-header-edition__links a.-convocatoria {
  border-color: #fff;
  color: #fff;
}
.c-header-edition__links a.-convocatoria:hover {
  background-color: #fff;
  color: #191919;
}
body.main-active .c-header-edition__links {
  display: none;
}
.sticking .c-header-edition__links {
  display: none;
}
.c-header-edition__nav {
  grid-area: nav;
  display: grid;
  grid-gap: 0 0.8333333333rem;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  align-self: stretch;
}
.c-header-edition__nav a {
  transition: color 0.5s;
  color: #fff;
}
@media (min-width: 820px) {
  .c-header-edition__nav a:hover {
    color: #ea3544;
  }
}
.c-header-edition__nav a:after {
  position: relative;
  top: 0.1em;
  content: "→";
  margin-left: 0.3em;
}
.c-header-edition__nav a.active {
  transition: all 0.5s;
  color: #ea3544;
}
@media (min-width: 820px) {
  .c-header-edition__nav a.active:hover {
    color: #191919;
  }
}
body.main-active .c-header-edition__nav {
  display: none;
}
.sticking .c-header-edition__nav {
  display: none;
}
.c-header-edition__burger {
  grid-area: burger;
}
@media (max-width: 820px) {
  .c-header-edition__burger {
    align-self: center;
  }
}

.c-editions-wrapper {
  margin-left: -3000px;
  margin-right: -3000px;
  padding-left: 3000px;
  padding-right: 3000px;
  background-color: #fff;
  margin-top: 3.3333333333rem;
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
  color: #191919;
}
@media (max-width: 520px) {
  .c-editions-wrapper {
    margin-top: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-editions-wrapper {
    padding-top: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-editions-wrapper {
    padding-bottom: 1.6666666667rem;
  }
}

.c-editions-block {
  margin-top: 3.3333333333rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3.3333333333rem;
}
@media (max-width: 778px) {
  .c-editions-block {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-editions-block {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.6666666667rem;
  }
}

.c-edition-item__image {
  position: relative;
  overflow: hidden;
}
.c-edition-item__image img {
  display: block;
  border: 1px solid #191919;
}
.c-edition-item__title {
  margin-top: 0.5em;
}
.c-edition-item .c-edition-item-title {
  display: flex;
  justify-content: space-between;
}
.c-edition-item .c-edition-item-title__title {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.c-edition-item .c-edition-item-title__year {
  color: #191919;
}

.c-edition-header-prev {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  margin-top: -12.5rem;
  padding-top: 11.1111111111rem;
  padding-bottom: 6.6666666667rem;
  background-image: cover;
  background-position: center center;
  margin-top: 0;
}
@media (max-width: 520px) {
  .c-edition-header-prev {
    padding-bottom: 3.3333333333rem;
  }
}
.c-edition-header-prev > * {
  position: relative;
  z-index: 4;
}
.c-edition-header-prev__video {
  width: 100vw;
  height: 100%;
  position: absolute;
  overflow: hidden;
  z-index: 0;
  top: 0;
  left: 0;
}
.c-edition-header--view .c-edition-header-prev__video {
  height: 100vh;
}
.c-edition-header-prev__video iframe {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-edition-header-prev__video iframe._vertical {
  display: none;
}
@media (orientation: portrait) {
  .c-edition-header-prev__video iframe._horizontal {
    display: none;
  }
  .c-edition-header-prev__video iframe._vertical {
    display: block;
  }
}

.c-box-conv {
  margin-top: 3.3333333333rem;
  padding-top: 1.6666666667rem;
  padding-bottom: 1.6666666667rem;
  padding-left: 3.3333333333rem;
  padding-right: 3.3333333333rem;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 520px) {
  .c-box-conv {
    margin-top: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-box-conv {
    padding-top: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-box-conv {
    padding-bottom: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-box-conv {
    padding-left: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-box-conv {
    padding-right: 1.6666666667rem;
  }
}
.c-box-conv blockquote {
  font-weight: 900;
  font-size: 1.1111111111rem;
  line-height: 1.3;
}
.c-box-conv .flipdown {
  margin-top: 1.6666666667rem;
  transform: scale(0.85);
  transform-origin: left center;
  display: flex;
  justify-content: center;
}
@media (max-width: 520px) {
  .c-box-conv .flipdown {
    transform: scale(1);
    margin-left: auto;
    margin-right: auto;
    transform-origin: center center;
    width: 100%;
  }
}
.c-box-conv .flipdown.flipdown__theme-light {
  font-weight: 400;
}
@media (max-width: 520px) {
  .c-box-conv {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .c-box-conv .flipdown .rotor-group {
    padding-right: 15px;
  }
  .c-box-conv .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):before,
.c-box-conv .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):after,
.c-box-conv .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):before,
.c-box-conv .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):after {
    left: 57px;
  }
  .c-box-conv .flipdown .rotor,
.c-box-conv .flipdown .rotor-leaf,
.c-box-conv .flipdown .rotor-leaf-front,
.c-box-conv .flipdown .rotor-leaf-rear,
.c-box-conv .flipdown .rotor-top,
.c-box-conv .flipdown .rotor-bottom,
.c-box-conv .flipdown .rotor:after {
    width: 25px;
  }
}
.c-box-conv__title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .c-box-conv__title {
    font-size: 1.6666666667rem;
  }
}
.c-box-conv__link {
  margin-top: 20px;
}
.c-box-conv__link a {
  display: inline-block;
  background-color: #fff;
  text-transform: uppercase;
  padding: 8px 20px;
}
.c-box-conv__link a i {
  font-size: 15px;
}

.c-edition-header {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  height: 100vh;
  position: relative;
  z-index: 2;
  background-color: #191919;
}
@media (max-width: 820px) {
  .c-edition-header {
    grid-template-rows: 1fr 1fr 1fr;
  }
}
@media (max-width: 820px) {
  .c-edition-header {
    height: 44.4444444444rem;
  }
}
@media (max-width: 520px) {
  .c-edition-header {
    height: 44.4444444444rem;
  }
}
.c-edition-header--top {
  margin-top: -12.5rem !important;
  height: calc(100vh + 7rem);
}
@media (max-width: 520px) {
  .c-edition-header--top {
    margin-top: -22.5rem !important;
    height: calc(100vh + 21em);
  }
}
.c-edition-header--view {
  height: calc(100vh + 2rem);
}
@media (max-width: 520px) {
  .c-edition-header--view {
    height: calc(100vh + 3rem);
  }
}
.c-edition-header__text {
  position: relative;
}
.c-edition-header__link {
  position: relative;
}
.c-edition-header__arrow {
  position: relative;
  transform: translateY(1.1111111111rem);
}
.c-edition-header__arrow button {
  width: 2.2222222222rem;
  height: 2.2222222222rem;
  background-color: #ea3544;
  color: #fff;
  border-radius: 100%;
  animation: updown 2s infinite;
}
.c-edition-header__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  height: calc(100% - 13.25rem);
}
@media (max-width: 520px) {
  .c-edition-header__video {
    height: calc(100% - 8.25rem);
  }
}
.c-edition-header--view .c-edition-header__video {
  height: calc(100% - 8.25rem);
}
@media (max-width: 520px) {
  .c-edition-header--view .c-edition-header__video {
    height: calc(100% - 6.45rem);
  }
}
.c-edition-header__video iframe {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 820px) {
  .c-edition-header__video iframe {
    min-width: 162.77vh;
  }
}
.c-edition-header__video iframe._vertical {
  display: none;
}
@media (orientation: portrait) {
  .c-edition-header__video iframe._horizontal {
    display: none;
  }
  .c-edition-header__video iframe._vertical {
    display: block;
  }
}
.c-edition-header__text, .c-edition-header__link {
  z-index: 2;
}
.c-edition-header__text {
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  background-color: #191919;
  justify-self: center;
  padding: 1.5em 2em;
}
.c-edition-header--view .c-edition-header__text {
  padding: 1em 2em;
}
.c-edition-header__antetitle {
  font-size: 1.1111111111rem;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 0.3em;
  line-height: 1.4;
}
.c-edition-header__title {
  line-height: 1.1;
  font-size: 2.7777777778rem;
  line-height: 1.08;
  line-height: 1.08;
  font-weight: 600;
}
@media (max-width: 520px) {
  .c-edition-header__title {
    font-size: 2rem;
  }
}
.c-edition-header__subtitle {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .c-edition-header__subtitle {
    font-size: 1.2222222222rem;
  }
}
.c-edition-header__link {
  text-align: center;
  margin: 2rem 0;
}
.c-edition-header__link a {
  display: inline-flex;
  align-items: center;
  transition: all 0.5s;
  color: #ea3544;
}
@media (min-width: 820px) {
  .c-edition-header__link a:hover {
    color: #fff;
  }
}
.c-edition-header__link a span {
  transition: color 0.5s;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 2.2222222222rem;
  height: 2.2222222222rem;
  margin-left: 0.7222222222rem;
  background-color: #fb0017;
}
@media (min-width: 820px) {
  .c-edition-header__link a span:hover {
    color: #ea3544;
  }
}
.c-edition-header__message {
  background-color: #191919;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1111111111rem;
  line-height: 1.3;
  padding-left: 1.6666666667rem;
  padding-right: 1.6666666667rem;
}

.c-edition-block:not(.c-edition-block.-no-mt) {
  padding-top: 3.3333333333rem;
}
@media (max-width: 520px) {
  .c-edition-block:not(.c-edition-block.-no-mt) {
    padding-top: 3.3333333333rem;
  }
}
.c-edition-block__title:not(.c-edition-block__title--main) {
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: bold;
  border-bottom: 1px solid #ea3544;
  padding-bottom: 0.5em;
  color: #ea3544;
  margin-bottom: 1em;
}
@media (max-width: 520px) {
  .c-edition-block__title:not(.c-edition-block__title--main) {
    font-size: 1.6666666667rem;
  }
}
.c-edition-block__title--main {
  font-size: 2.7777777778rem;
  line-height: 1.08;
  line-height: 1.08;
  line-height: 1.08;
  font-weight: 700;
  padding-bottom: 0.8em;
  color: #ea3544;
  text-align: center;
}
@media (max-width: 520px) {
  .c-edition-block__title--main {
    font-size: 2rem;
  }
}

.c-edition-intro {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  text-align: center;
  margin-top: 2.7777777778rem;
  margin-bottom: 2.7777777778rem;
  max-width: 44.4444444444rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 520px) {
  .c-edition-intro {
    font-size: 1.2222222222rem;
  }
}
@media (max-width: 520px) {
  .c-edition-intro {
    margin-top: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-edition-intro {
    margin-bottom: 1.6666666667rem;
  }
}

.c-prize-svg text {
  text-anchor: middle;
  font-family: Space Grotesk, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
}

.c-prizes__title {
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: bold;
  border-bottom: 1px solid #ea3544;
  padding-bottom: 0.5em;
  color: #ea3544;
}
@media (max-width: 520px) {
  .c-prizes__title {
    font-size: 1.6666666667rem;
  }
}
.c-prizes__films-many {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6666666667rem;
}

.c-prizes-container {
  display: grid;
  grid-template-columns: 8.3333333333rem 1fr;
  grid-gap: 1.6666666667rem;
}
.c-prizes-container__svg {
  margin-top: 2.2222222222rem;
}
@media (max-width: 520px) {
  .c-prizes-container__svg {
    display: none;
  }
}
@media (max-width: 520px) {
  .c-prizes-container {
    grid-template-columns: 1fr;
  }
}

.c-prizes__prize-title {
  margin-top: 2.2222222222rem;
  margin-bottom: 1.6666666667rem;
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #191919;
  padding-bottom: 0.5em;
}
@media (max-width: 520px) {
  .c-prizes__prize-title {
    margin-top: 1.1111111111rem;
  }
}
@media (max-width: 520px) {
  .c-prizes__prize-title {
    margin-bottom: 1.1111111111rem;
  }
}
@media (max-width: 520px) {
  .c-prizes__prize-title {
    font-size: 1.2222222222rem;
  }
}

.c-prize-one {
  margin-bottom: 1.6666666667rem;
}
.c-prize-one:not(.-no-photo) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto 1fr;
  align-items: start;
  grid-template-areas: "image card" "image description";
  grid-gap: 0 1.1111111111rem;
  grid-row-gap: 1rem;
}
@media (max-width: 520px) {
  .c-prize-one:not(.-no-photo) {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "image" "card" "description";
  }
}
.c-prize__image {
  grid-area: image;
}
.c-prize__card {
  grid-area: card;
}
.c-prize-one .c-prize__card {
  border-bottom: 1px solid #191919;
  padding-bottom: 1rem;
}
.-no-photo.c-prize-one .c-prize__card {
  border-bottom: none;
  padding-bottom: 0;
}
.c-prize__description {
  grid-area: description;
}

.c-prize-card__title {
  font-weight: 700;
}
.c-prize-card__data {
  font-size: 0.8888888889rem;
  margin-top: 0.2em;
}
.c-prize-card__duration {
  font-size: 0.7777777778rem;
  margin-top: 0.3em;
}

.c-prize-image {
  position: relative;
}
.c-prize-image:after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: rgb(2, 0, 36);
  background: linear-gradient(0deg, rgba(2, 0, 36, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
}
.-no-photo .c-prize-image:after {
  display: none;
}
.c-prize-image__prize-title {
  position: absolute;
  bottom: 1.1111111111rem;
  left: 1.1111111111rem;
  z-index: 3;
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 520px) {
  .c-prize-image__prize-title {
    font-size: 1.2222222222rem;
  }
}
.-no-photo .c-prize-image__prize-title {
  position: static;
  color: #191919;
  margin-bottom: 0.4em;
  border-bottom: 1px solid #191919;
  padding-bottom: 0.5rem;
}

.c-cities {
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
  color: #fff;
  background-color: #191919;
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
}
@media (max-width: 520px) {
  .c-cities {
    padding-top: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-cities {
    padding-bottom: 1.6666666667rem;
  }
}
.c-cities__title {
  font-size: 2.7777777778rem;
  line-height: 1.08;
  line-height: 1.08;
  line-height: 1.08;
  font-weight: 700;
  padding-bottom: 0.8em;
  color: #ea3544;
  text-align: center;
}
@media (max-width: 520px) {
  .c-cities__title {
    font-size: 2rem;
  }
}
.c-cities__items {
  display: flex;
  gap: 1.6666666667rem 3.3333333333rem;
  flex-wrap: wrap;
  justify-content: center;
  justify-content: center;
  align-items: center;
}
@media (max-width: 520px) {
  .c-cities__items {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .c-cities .c-city {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.c-cities .c-city__title {
  font-weight: 700;
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .c-cities .c-city__title {
    font-size: 1.6666666667rem;
  }
}
.c-cities .c-city__places {
  font-size: 0.8888888889rem;
}

.c-sponsors:not(.-white) {
  transition: all 0.5s;
  color: #ea3544;
  margin-left: -3000px;
  margin-right: -3000px;
  padding-left: 3000px;
  padding-right: 3000px;
  background-color: #191919;
  margin-top: 5rem;
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
}
@media (min-width: 820px) {
  .c-sponsors:not(.-white):hover {
    color: #191919;
  }
}
@media (max-width: 520px) {
  .c-sponsors:not(.-white) {
    margin-top: 3.3333333333rem;
  }
}
@media (max-width: 520px) {
  .c-sponsors:not(.-white) {
    padding-top: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-sponsors:not(.-white) {
    padding-bottom: 1.6666666667rem;
  }
}
.c-sponsors:not(.-white) .c-sponsors__title {
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.5em;
  color: #fff;
}
@media (max-width: 520px) {
  .c-sponsors:not(.-white) .c-sponsors__title {
    font-size: 1.6666666667rem;
  }
}
.c-sponsors-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.6666666667rem;
}
@media (max-width: 520px) {
  .c-sponsors-container {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 520px) {
  .c-sponsors-container .-level-2,
.c-sponsors-container .-level-0,
.c-sponsors-container .-level-1 {
    grid-column: 1/3;
  }
}
.c-sponsors-container .-level-2 .c-sponsor-category__items {
  grid-template-columns: repeat(2, 1fr);
}
.c-sponsors-container .-level-2 .c-sponsor-category__title {
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .c-sponsors-container .-level-2 .c-sponsor-category__title {
    font-size: 1.6666666667rem;
  }
}
.c-sponsors-container .-level-1 .c-sponsor-category__items {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 520px) {
  .c-sponsors-container .-level-1 .c-sponsor-category__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-sponsors-container .-level-1 .c-sponsor-category__title {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .c-sponsors-container .-level-1 .c-sponsor-category__title {
    font-size: 1.2222222222rem;
  }
}
.c-sponsors-container .-level-1 img {
  transform: scale(0.8);
}
.c-sponsors-container .-level-0 img {
  transform: scale(0.6);
}

.c-sponsor-category:not(:last-child) {
  margin-bottom: 0.8333333333rem;
}
.c-sponsor-category__title {
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: bold;
  border-bottom: 1px solid #ea3544;
  padding-bottom: 0.5em;
  color: #ea3544;
  font-size: 1.1111111111rem;
  line-height: 1.3;
  margin-bottom: 1em;
}
@media (max-width: 520px) {
  .c-sponsor-category__title {
    font-size: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-sponsor-category__title {
    font-size: 1.1111111111rem;
    line-height: 1.3;
  }
}
.c-sponsor-category__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.6666666667rem;
}
@media (max-width: 520px) {
  .c-sponsor-category__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-sponsor-logo {
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-sponsor-logo a {
  transition: color 0.5s;
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 820px) {
  .c-sponsor-logo a:hover {
    color: #ea3544;
  }
}
.c-sponsor-logo a img {
  transition: all 0.5s;
}
.c-sponsor-logo a:hover img {
  transform: scale(0.92);
}
.-black .c-sponsor-logo img {
  mix-blend-mode: lighten;
}

.c-edition-gallery {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
}
.c-edition-gallery ul {
  align-items: center;
}
@media (min-width: 520px) {
  .c-edition-gallery__item a:hover {
    opacity: 0.8;
  }
  .c-edition-gallery__item a img {
    filter: grayscale(100%);
    opacity: 0.4;
    transition: all 0.2s;
    transform: scale(0.8);
  }
  .c-edition-gallery__item a.is-current img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1);
  }
}

.c-edition-films-tabs,
.c-edition-films {
  margin-left: auto;
  margin-right: auto;
}

.c-edition-films-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.6666666667rem;
  margin-bottom: 1.6666666667rem;
}
@media (max-width: 778px) {
  .c-edition-films-tabs {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.8333333333rem;
  }
}
@media (max-width: 520px) {
  .c-edition-films-tabs {
    display: none;
  }
}
.c-edition-films-tabs__title {
  position: relative;
  font-size: 1.1111111111rem;
  line-height: 1.3;
  text-align: center;
  color: #d8d8d8;
  padding-bottom: 0.3em;
}
.c-edition-films-tabs__title button {
  color: #d8d8d8;
}
.c-edition-films-tabs__title button:hover {
  color: #191919;
}
.c-edition-films-tabs__title.active button {
  color: #ea3544;
}
.c-edition-films-tabs__title.active:after {
  width: 100%;
}
.c-edition-films-tabs__title:before, .c-edition-films-tabs__title:after {
  transition: all 0.5s;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 2px;
}
.c-edition-films-tabs__title:before {
  width: 100%;
  background-color: #d8d8d8;
}
.c-edition-films-tabs__title:after {
  width: 0%;
  background-color: #ea3544;
}

.c-edition-films {
  grid-gap: 1.6666666667rem;
}
@media (min-width: 520px) {
  .c-edition-films {
    display: none;
  }
  .c-edition-films.active {
    display: block;
  }
}
.c-edition-films__items {
  display: grid;
  grid-gap: 0.8333333333rem 1.6666666667rem;
  grid-template-columns: repeat(5, 1fr);
}
.c-edition-films__items > div {
  margin-bottom: 1.6666666667rem;
  break-inside: avoid;
}
@media (max-width: 960px) {
  .c-edition-films__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 520px) {
  .c-edition-films__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-edition-films__items-present {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.6666666667rem;
}
@media (max-width: 520px) {
  .c-edition-films__items-present {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.8333333333rem;
  }
}
@media (max-width: 520px) {
  .c-edition-films {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.8333333333rem;
  }
  .c-edition-films:not(:last-child) {
    margin-bottom: 1.6666666667rem;
  }
  .c-edition-films__items {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.8333333333rem;
  }
}
.c-edition-films__cat-title {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #191919;
  margin-bottom: 0.8333333333rem;
}
@media (min-width: 520px) {
  .c-edition-films__cat-title {
    display: none;
  }
  .c-edition-films__cat-title.-visible {
    display: block;
  }
}
@media (max-width: 520px) {
  .c-edition-films__cat-title {
    font-size: 1.2222222222rem;
  }
}
.c-edition-films__cat-title--juries {
  border: 0;
  color: #ea3544;
}

.c-edition-film--with-image {
  display: flex;
  gap: 1rem;
}
@media (max-width: 1140px) {
  .c-edition-film--with-image {
    flex-direction: column;
    gap: 0;
  }
}
@media (min-width: 1140px) {
  .c-edition-film__content {
    flex: 0 0 200px;
  }
}
.c-edition-film i {
  width: 20px;
  display: inline-block;
  font-size: 18px;
}
.c-edition-film__title {
  position: relative;
  font-weight: 700;
}
.c-edition-film__image {
  margin-bottom: 0.8333333333rem;
}
.c-edition-film__image img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}
.c-edition-film__prize {
  color: #ea3544;
  text-transform: uppercase;
  font-size: 0.7777777778rem;
}
.c-edition-film__author {
  font-size: 0.8888888889rem;
  margin-top: 0.3em;
}
.c-edition-film__duration {
  font-size: 0.7777777778rem;
  margin-top: 0.3em;
}
.c-edition-film__description {
  font-size: 0.8888888889rem;
  margin-top: 0.5em;
}
.c-edition-film__description.c-text {
  font-size: 0.7777777778rem;
}
.c-edition-film__description.c-text p,
.c-edition-film__description.c-text li {
  font-size: 0.7777777778rem;
}
.c-edition-film__places {
  margin-top: 10px;
  font-size: 0.7777777778rem;
  color: #918477;
}

.gallery-img {
  position: relative;
  display: block;
  overflow: hidden;
}
.gallery-img img {
  display: block;
}
.gallery-img canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
}

.glitch-box {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 9;
}

.c-edition-nav-wrapper::-webkit-scrollbar {
  display: none;
}

.c-edition-nav {
  margin-top: -2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 520px) {
  .c-edition-nav {
    margin-top: 0;
  }
}
@media (min-width: 520px) {
  .c-edition-nav ul {
    display: flex !important;
  }
  .c-edition-nav ul li {
    margin-right: 1.6666666667rem !important;
  }
  .c-edition-nav .splide__arrows {
    display: none;
  }
}
@media (max-width: 520px) {
  .c-edition-nav {
    padding-left: 1.6666666667rem;
    padding-right: 1.6666666667rem;
  }
  .c-edition-nav .splide__arrow {
    background-color: transparent;
  }
  .c-edition-nav .splide__arrow--prev {
    left: -12px;
  }
  .c-edition-nav .splide__arrow--next {
    right: -12px;
  }
}
.c-edition-nav a {
  display: block;
  position: relative;
  transition: all 0.5s;
  color: #191919;
}
@media (min-width: 820px) {
  .c-edition-nav a:hover {
    color: #ea3544;
  }
}
.c-edition-nav a.active {
  color: #ea3544;
}
.c-edition-nav a:after {
  content: "";
  width: 100%;
  transform: scaleX(0);
  height: 3px;
  position: absolute;
  background-color: #191919;
  bottom: -12px;
  left: 0;
  transition: all 0.5s;
  transform-origin: center;
}
.c-edition-nav a:hover:after, .c-edition-nav a.active:after {
  transform: scaleX(1);
}

.c-film-datas {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.6666666667rem;
}
@media (max-width: 520px) {
  .c-film-datas {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-film-video {
  max-width: 1000px;
  width: 100%;
  margin-bottom: 1.6666666667rem;
}
.c-film-video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

.c-film-data {
  display: flex;
}
.c-film-data i {
  margin-right: 10px;
  font-size: 24px;
  position: relative;
  top: 0em;
}
.c-film-data i.icon-arrow-link {
  font-size: 16px;
  position: relative;
  top: 0.2em;
}
.c-film-data a {
  transition: color 0.5s;
  color: #fff;
}
@media (min-width: 820px) {
  .c-film-data a:hover {
    color: #ea3544;
  }
}
.c-film-data.-small i {
  font-size: 18px;
}
@media (max-width: 520px) {
  .c-film-data {
    font-size: 0.8888888889rem;
  }
}

.c-film-summary {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto 1fr;
  grid-gap: 0 1.6666666667rem;
  align-items: start;
  grid-template-areas: "title image" "text image";
}
.c-film-summary.-no-body {
  grid-template-columns: 1fr;
  grid-template-areas: "image image";
}
@media (max-width: 520px) {
  .c-film-summary {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "image" "text";
  }
}
.c-film-summary__title {
  grid-area: title;
}
.c-film-summary__text {
  grid-area: text;
}
.c-film-summary__image {
  grid-area: image;
}
@media (max-width: 520px) {
  .c-film-summary__image {
    margin-bottom: 1.6666666667rem;
  }
}

.c-film-prices {
  display: flex;
}
.c-film-prices__item {
  width: 200px;
}

.c-film-celebrations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.6666666667rem;
}
@media (max-width: 520px) {
  .c-film-celebrations {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.8333333333rem 0.1666666667rem;
  }
}

.c-jury__title {
  font-size: 1.1111111111rem;
  line-height: 1.3;
  margin-bottom: 1em;
}
.c-jury__photo {
  margin-bottom: 1em;
}
.c-jury__links {
  margin-top: 0.5em;
}
.c-jury__links a {
  display: inline-block;
  color: #191919;
}
.c-jury__links a:hover {
  color: #ea3544;
}
.c-jury__links a::after {
  content: "|";
  display: inline-block;
  padding: 0 5px 0 10px;
  color: #191919 !important;
}
.c-jury__links a:last-child::after {
  display: none;
}

.c-error400 {
  padding: 40px 0;
  text-align: center;
}
.c-error400 h2 {
  font-size: 85px;
  text-align: center;
}
.c-error400 h1 {
  font-size: 65px;
  text-align: center;
  color: #ea3544;
  max-width: none;
}
.c-error400 h3 {
  max-width: 780px;
  margin: 20px auto;
  text-align: center;
  font-size: 35px;
  margin-top: 80px;
}
@media (max-width: 520px) {
  .c-error400 h2 {
    font-size: 55px;
  }
  .c-error400 h1 {
    font-size: 40px;
  }
  .c-error400 h3 {
    font-size: 16px;
  }
}

.example {
  font-size: 3.8888888889rem;
  line-height: 1.08;
  line-height: 1.08;
}
@media (max-width: 520px) {
  .example {
    font-size: 3.2222222222rem;
  }
}

.c-feature-text {
  margin-left: auto;
  margin-right: auto;
  max-width: 44.4444444444rem;
  border-top: 1px solid #191919;
  border-bottom: 1px solid #191919;
  padding-top: 1.6666666667rem;
  padding-bottom: 1.6666666667rem;
  margin-top: 3.3333333333rem;
  font-size: 1.1111111111rem;
  line-height: 1.3;
}
@media (max-width: 520px) {
  .c-feature-text {
    margin-top: 1.6666666667rem;
  }
}

.c-footer-wrapper {
  padding-bottom: 2rem;
  box-shadow: 0 3px 4px rgba(63, 77, 98, 0.19);
  background-color: #fff;
  color: #191919;
}
body:not(.body-bg-black) .c-footer-wrapper {
  margin-bottom: 10px;
}
@media (max-width: 520px) {
  body:not(.body-bg-black) .c-footer-wrapper {
    margin-bottom: 0;
  }
}
body:not(.body-bg-black) .c-footer-wrapper:not(.-no-margin) {
  margin-top: 5rem;
}
@media (max-width: 520px) {
  body:not(.body-bg-black) .c-footer-wrapper:not(.-no-margin) {
    margin-top: 1.6666666667rem;
  }
}
body.body-bg-black .c-footer-wrapper, .c-footer-wrapper.-dark {
  background-color: #191919;
  color: #fff;
  padding-top: 0;
}
.c-footer-wrapper:before {
  display: block;
  content: "";
  width: 100%;
  height: 10px;
  box-shadow: 0 -3px 4px rgba(63, 77, 98, 0.19);
  margin-bottom: 3.3333333333rem;
}
@media (max-width: 520px) {
  .c-footer-wrapper:before {
    margin-bottom: 1.6666666667rem;
  }
}

.c-footer {
  display: grid;
  grid-template-columns: minmax(200px, 30%) 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: 0 4rem;
  grid-template-areas: "logos nav" "logos subscribe";
}
@media (max-width: 778px) {
  .c-footer {
    grid-gap: 0 1rem;
  }
}
@media (max-width: 520px) {
  .c-footer {
    grid-template-columns: 1fr;
    grid-template-areas: "logos" "nav" "subscribe";
  }
}
.c-footer__logos {
  grid-area: logos;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 520px) {
  .c-footer__logos {
    margin-bottom: 1.6666666667rem;
  }
}
.c-footer__logos .c-footer-logo {
  width: 6.3888888889rem;
  overflow: hidden;
  grid-area: logo;
}
@media (max-width: 520px) {
  .c-footer__logos .c-footer-logo {
    justify-self: end;
  }
}
.c-footer__logos .c-footer-nav-social {
  grid-area: social;
}
.c-footer__logos .c-follow {
  grid-area: follow;
}
.c-footer__logos > div {
  margin-bottom: 1.6666666667rem;
}
@media (max-width: 520px) {
  .c-footer__logos > div {
    margin-bottom: 0;
  }
}
@media (max-width: 520px) {
  .c-footer__logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "follow logo" "social logo";
  }
}
.c-footer__nav {
  grid-area: nav;
  border-bottom: 1px solid #191919;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}
.c-footer__nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.2rem 2rem;
}
@media (max-width: 520px) {
  .c-footer__nav ul {
    align-items: center;
  }
}
.c-footer__nav ul li a {
  transition: all 0.5s;
  color: #191919;
  font-size: 1.1111111111rem;
  line-height: 1.3;
}
@media (min-width: 820px) {
  .c-footer__nav ul li a:hover {
    color: #ea3544;
  }
}
@media (max-width: 520px) {
  .c-footer__nav ul li a {
    font-size: 1rem;
  }
}
body.body-bg-black .c-footer__nav ul li a, .-dark .c-footer__nav ul li a {
  transition: color 0.5s;
  color: #fff;
}
@media (min-width: 820px) {
  body.body-bg-black .c-footer__nav ul li a:hover, .-dark .c-footer__nav ul li a:hover {
    color: #ea3544;
  }
}
.c-footer__nav ul li a:after {
  content: "→";
  position: relative;
  top: 2px;
  margin-left: 0.1em;
  transition: transform 0.5s;
}
.c-footer__nav ul li a:hover:after {
  transform: translateX(10px);
}
.c-footer__subscribe {
  grid-area: subscribe;
}
.c-footer .c-footer-subscribe-intro__title {
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: 700;
}
@media (max-width: 520px) {
  .c-footer .c-footer-subscribe-intro__title {
    font-size: 1.6666666667rem;
  }
}
.c-footer .c-footer-subscribe-intro__description {
  margin-top: 0.6em;
  font-size: 1.1111111111rem;
  line-height: 1.3;
}

.c-mailchimp {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  grid-gap: 0.6rem;
}
@media (max-width: 520px) {
  .c-mailchimp {
    grid-template-columns: 1fr;
  }
}
.c-mailchimp input {
  border: 1px solid #191919;
  padding: 0.7em 1em;
  font-size: 0.7777777778rem;
  width: 100%;
}
.c-mailchimp .mc-field-group {
  position: relative;
}
.c-mailchimp div.mce_inline_error {
  background-color: transparent !important;
  color: #ea3544 !important;
  font-size: 0.7777777778rem;
  font-weight: 300 !important;
  position: absolute;
  bottom: -40px;
  padding: 0 !important;
}

.c-follow__title {
  font-size: 1.1111111111rem;
  line-height: 1.3;
}
.c-follow__hashtag {
  color: #ea3544;
  font-weight: 700;
  font-size: 3.3333333333rem;
}

.c-footer-nav-social ul {
  display: flex;
}
.c-footer-nav-social ul li {
  margin-right: 1.5em;
}
.c-footer-nav-social ul li a {
  transition: all 0.5s;
  color: #ea3544;
  font-size: 1.6666666667rem;
}
@media (min-width: 820px) {
  .c-footer-nav-social ul li a:hover {
    color: #191919;
  }
}
@media (max-width: 520px) {
  .c-footer-nav-social ul li a {
    font-size: 1.1111111111rem;
  }
}

.c-bottom-wrapper {
  color: #191919;
  background-color: #fff;
}

.c-bottom {
  display: flex;
  justify-content: space-between;
  padding: 1.1111111111rem 0;
}
@media (max-width: 520px) {
  .c-bottom {
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .c-bottom__nav {
    margin-top: 0.8333333333rem;
  }
}
.c-bottom__nav ul {
  display: flex;
}
.c-bottom__nav ul li {
  display: flex;
  align-items: center;
}
.c-bottom__nav ul li a {
  font-size: 0.7777777778rem;
  transition: all 0.5s;
  color: #191919;
}
@media (min-width: 820px) {
  .c-bottom__nav ul li a:hover {
    color: #ea3544;
  }
}
.c-bottom__nav ul li:not(:last-child):after {
  content: "";
  height: 80%;
  width: 1px;
  background-color: #191919;
  margin: 0.4em;
}

.c-form .form-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.6666666667rem 1.6666666667rem;
}
.c-form .form-fields:not(:last-child) {
  margin-bottom: 1.6666666667rem;
}
@media (max-width: 520px) {
  .c-form .form-fields {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-form .input > input[type=text],
.c-form .input > input[type=email],
.c-form .input > input[type=tel],
.c-form .input > select,
.c-form .input > textarea {
  width: 100%;
}
.c-form .input > input[type=text],
.c-form .input > input[type=email],
.c-form .input > input[type=tel],
.c-form .input > select {
  padding: 0.5em 0;
  border: none;
  border-bottom: 1px solid #d8d8d8;
}
.c-form .input > textarea {
  padding: 0.5em 0.5em;
  border: 1px solid #d8d8d8;
}

.c-form-tabs {
  display: flex;
}
.c-form-tabs > button {
  border: 2px solid #191919;
  flex-grow: 1;
  padding: 0.5em;
}
.c-form-tabs > button.active {
  background-color: #191919;
  color: #fff;
}

.c-header-wrapper {
  z-index: 100;
}
.c-header-wrapper.sticking {
  width: 100%;
}
.c-header-wrapper.sticking .c-header {
  height: 80px;
}

.c-header {
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 1.6666666667rem;
  padding-bottom: 1.6666666667rem;
  height: 165px;
}
@media (max-width: 520px) {
  .c-header {
    padding-top: 1.1111111111rem;
    padding-bottom: 1.1111111111rem;
    align-items: center;
  }
}
.c-header__burger {
  display: flex;
  flex-grow: 1;
  justify-content: end;
}
.c-header__langs {
  display: none;
}
body.main-active .c-header__langs {
  display: block;
}
.c-header__logo {
  width: 5.8333333333rem;
  height: 5.8333333333rem;
  flex: 0 0 5.8333333333rem;
  border-radius: 100%;
  overflow: hidden;
}
.c-header__logo img {
  width: 100%;
}
.sticking .c-header__logo {
  width: 3.5555555556rem;
  height: 3.5555555556rem;
  flex: 0 0 3.5555555556rem;
}
body.main-active .c-header__logo {
  visibility: hidden;
}
.c-header__navmain {
  display: none;
}
.sticking .c-header {
  padding-top: 0.5555555556rem;
  padding-bottom: 0.5555555556rem;
}

.c-heading-with-link {
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  color: #ea3544;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
@media (max-width: 520px) {
  .c-heading-with-link {
    font-size: 1.6666666667rem;
  }
}
.c-heading-with-link__title {
  display: flex;
  flex-grow: 1;
  align-items: baseline;
}
.c-heading-with-link__title:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #ea3544;
  margin: 0px 0.7em;
}
.c-heading-with-link a {
  display: flex;
  align-items: center;
  font-size: 0.7777777778rem;
  font-weight: 300;
}
.c-heading-with-link a i {
  margin-left: 0.5em;
}
@media (max-width: 520px) {
  .c-heading-with-link {
    flex-direction: column;
  }
  .c-heading-with-link__title {
    margin-bottom: 0.25em;
  }
}

.c-infobox {
  margin-top: 3.3333333333rem;
  display: grid;
  grid-column-gap: 2rem;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "image title" "image body" "image link";
}
@media (max-width: 520px) {
  .c-infobox {
    margin-top: 1.6666666667rem;
  }
}
.c-infobox--black {
  background-color: #191919;
  color: #fff;
  padding: 1.5rem 1.5rem;
  margin-left: -3000px;
  margin-right: -3000px;
  padding-left: 3000px;
  padding-right: 3000px;
}
.c-infobox--black .c-infobox__image {
  mix-blend-mode: lighten;
}
.row-last .c-infobox--black {
  margin-bottom: -5rem;
}
@media (max-width: 520px) {
  .row-last .c-infobox--black {
    margin-bottom: -3.3333333333rem;
  }
}
@media (max-width: 520px) {
  .c-infobox {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "title" "body" "link";
  }
}
.c-infobox__image {
  grid-area: image;
  text-align: center;
}
@media (max-width: 520px) {
  .c-infobox__image {
    margin-bottom: 1.6666666667rem;
  }
}
.c-infobox__title {
  grid-area: title;
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1em;
}
@media (max-width: 520px) {
  .c-infobox__title {
    font-size: 1.2222222222rem;
  }
}
.c-infobox__body {
  grid-area: body;
  font-size: 0.8888888889rem;
}
.c-infobox__link {
  grid-area: link;
}
.c-infobox__link a {
  transition: background-color 0.5s, color 0.5s;
  display: inline-block;
  background-color: #ea3544;
  color: #fff;
  font-weight: 700;
  max-width: 100%;
  padding: 0.4em 1em;
  font-size: 0.8888888889rem;
  text-align: center;
}
@media (min-width: 520px) {
  .c-infobox__link a {
    min-width: 13.8888888889rem;
  }
}
.c-infobox__link a--short {
  min-width: auto;
}
.c-infobox__link a:hover {
  background-color: #191919;
  color: #fff;
}

.marquee {
  width: 100%;
  position: relative;
  margin: auto;
  overflow: hidden;
}
.marquee span {
  width: auto;
  position: absolute;
  text-align: center;
}

.c-mecenas {
  position: relative;
}
.c-mecenas__intro {
  background-color: #191919;
  color: #fff;
  margin-left: -3000px;
  margin-right: -3000px;
  padding-left: 3000px;
  padding-right: 3000px;
  text-align: center;
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.4;
}
@media (max-width: 520px) {
  .c-mecenas__intro {
    padding-top: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-mecenas__intro {
    padding-bottom: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-mecenas__intro {
    font-size: 1.2222222222rem;
  }
}
.c-mecenas__intro span {
  transition: all 0.5s;
  position: relative;
  top: 0.1em;
}
.c-mecenas__intro button:hover {
  color: #ea3544;
}
.c-mecenas__intro button:hover span {
  display: inline-block;
  transform: translateX(20px);
}
.c-mecenas__close {
  position: absolute;
  font-size: 2.2222222222rem;
  right: 1.6666666667rem;
  top: 1.6666666667rem;
}
@media (max-width: 520px) {
  .c-mecenas__close {
    font-size: 1.1111111111rem;
    right: 0.5rem;
    top: 0.5rem;
  }
}
.c-mecenas__form {
  width: 100vw;
  max-width: 1000px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  padding-left: 3.3333333333rem;
  padding-right: 3.3333333333rem;
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
  left: 50%;
  top: 6.6666666667rem;
  transform: translateX(-50%) translateY(-100vh);
  position: fixed;
  background-color: #fff;
  z-index: 2;
  transition: all 0.5s;
  opacity: 0;
}
@media (max-width: 520px) {
  .c-mecenas__form {
    padding-left: 0.8333333333rem;
  }
}
@media (max-width: 520px) {
  .c-mecenas__form {
    padding-right: 0.8333333333rem;
  }
}
@media (max-width: 520px) {
  .c-mecenas__form {
    padding-top: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-mecenas__form {
    padding-bottom: 1.6666666667rem;
  }
}
.c-mecenas__form.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.navigation__background {
  position: fixed;
  top: -5rem;
  right: -5rem;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  background: #191919;
  background-size: cover;
  background-position: center;
  z-index: 89;
  transition: all 700ms cubic-bezier(0.86, 0, 0.07, 1);
}
.navigation__background.active {
  transform: scale(80);
}

.c-navmain-wrapper {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 90;
  opacity: 0;
}
.c-navmain-wrapper.active {
  display: block;
}
.c-navmain-wrapper.active {
  animation-name: open-nav;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.c-navigation {
  display: grid;
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100vh;
  grid-template-columns: calc(33.3333333333% - 0.8333333333rem) 1fr;
  grid-template-rows: 6.6666666667rem auto 6.6666666667rem 1fr;
  grid-column-gap: 5rem;
  grid-template-areas: "images ." "images langs" "images ." "images nav";
}
@media (max-width: 520px) {
  .c-navigation {
    grid-template-columns: 1fr;
    grid-template-rows: 6.6666666667rem 3.3333333333rem 1fr;
    grid-template-areas: "langs" "." "nav";
  }
}
.c-navigation__langs {
  grid-area: langs;
}
.c-navigation__nav {
  grid-area: nav;
  grid-row: 1/5;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 520px) {
  .c-navigation__nav {
    overflow-y: auto;
  }
}
.c-navigation__images {
  grid-area: images;
  position: relative;
}
@media (max-width: 520px) {
  .c-navigation__images {
    display: none;
  }
}
.c-navigation .c-nav-images__background {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #191919;
  transform: scaleY(1);
  transform-origin: center center;
  z-index: 2;
}
.c-navigation .c-nav-images__item {
  position: absolute;
  left: 0;
  right: 0;
  display: none;
  height: 100vh;
}
.c-navigation .c-nav-images__item.active {
  display: block;
}

.c-langs {
  display: none;
  justify-content: flex-end;
}
.main-active .c-langs {
  margin-right: 5rem;
  display: flex;
}
@media (max-width: 520px) {
  .c-langs {
    justify-content: flex-start;
    position: absolute;
    left: 20px;
  }
}
.c-langs ul {
  display: flex;
}
.c-langs ul li {
  margin-right: 1.6666666667rem;
}
.c-langs ul li a,
.c-langs ul li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5555555556rem;
  height: 3.5555555556rem;
  background-color: #fff;
  border-radius: 100%;
  text-transform: uppercase;
  color: #191919;
  transform: scale(0);
}
@media (max-width: 520px) {
  .c-langs ul li a,
.c-langs ul li span {
    width: 2.4444444444rem;
    height: 2.4444444444rem;
  }
}
.c-langs ul li span {
  background-color: #ea3544;
  color: #fff;
}
.c-langs ul li a {
  transition: all 0.5s;
}
.c-langs ul li a:hover {
  transform: scale(1.2) !important;
}
.c-langs .c-nav-close button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5555555556rem;
  height: 3.5555555556rem;
  background-color: #fff;
  border-radius: 100%;
  text-transform: uppercase;
  color: #191919;
  background-color: #191919;
  color: #fff;
}
@media (max-width: 520px) {
  .c-langs .c-nav-close button {
    width: 2.4444444444rem;
    height: 2.4444444444rem;
  }
}

.c-navmain {
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
@media (max-width: 820px) {
  .c-navmain {
    width: 100%;
    padding-left: 1.6666666667rem;
  }
}
.c-navmain li.current > a {
  color: #ea3544;
}
.c-navmain > ul {
  overflow-y: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  max-height: calc(100vh - 80px);
}
@media (max-width: 820px) {
  .c-navmain > ul {
    overflow-y: initial;
  }
}
.c-navmain > ul > li {
  align-items: flex-start;
}
.c-navmain > ul > li:not(:last-child) {
  margin-bottom: 0.6666666667rem;
}
.c-navmain > ul > li.has-childrens:not(.current) > a:after {
  position: static;
  color: #fff;
  content: "+";
  font-size: 70%;
  line-height: 100%;
  margin-left: 1.1111111111rem;
  transform: translateY(-0.2777777778rem);
  display: inline-block;
}
.c-navmain > ul > li > a {
  opacity: 0;
  transform: rotateX(180deg);
  font-size: 6vh;
  text-transform: uppercase;
  transition: color 0.5s;
  color: #fff;
}
@media (min-width: 820px) {
  .c-navmain > ul > li > a:hover {
    color: #ea3544;
  }
}
@media (max-width: 520px) {
  .c-navmain > ul > li > a {
    font-size: 1.8888888889rem;
    line-height: 1.2;
    line-height: 1.2;
  }
}
@media (max-width: 520px) and (max-width: 520px) {
  .c-navmain > ul > li > a {
    font-size: 1.6666666667rem;
  }
}
.c-navmain > ul > li > ul {
  transform: scaleY(0);
  overflow: hidden;
  padding-left: 3.3333333333rem;
  transition: all 0.5s;
  height: 0;
  margin-bottom: -0.5em;
}
@media (max-width: 520px) {
  .c-navmain > ul > li > ul {
    padding-left: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-navmain > ul > li > ul {
    display: flex;
    flex-direction: column;
  }
}
.c-navmain > ul > li > ul > li {
  margin-right: 2em;
  margin-bottom: 0.75em;
}
@media (max-width: 520px) {
  .c-navmain > ul > li > ul > li:not(:last-child) {
    margin-bottom: 0.75em;
  }
}
.c-navmain > ul > li > ul > li a {
  font-size: 3vh;
  transition: color 0.5s;
  color: #fff;
}
@media (min-width: 820px) {
  .c-navmain > ul > li > ul > li a:hover {
    color: #ea3544;
  }
}
@media (max-width: 520px) {
  .c-navmain > ul > li > ul > li a {
    font-size: 1.3888888889rem;
    line-height: 1.2;
    line-height: 1.2;
  }
}
@media (max-width: 520px) and (max-width: 520px) {
  .c-navmain > ul > li > ul > li a {
    font-size: 1.2222222222rem;
  }
}
.c-navmain > ul > li > ul > li a:hover {
  color: #ea3544;
}
.c-navmain > ul > li.current > ul {
  height: auto;
  transform: scaleY(1);
  padding-top: 1em;
}

@keyframes open-nav-background {
  0% {
    transform: scale(0) translateY(-100%) translateX(100%);
    border-radius: 100%;
  }
  90% {
    border-radius: 50%;
  }
  100% {
    transform: scale(1) translateY(0) translateX(0);
    border-radius: 0;
  }
}
@keyframes open-nav {
  0% {
    opacity: 0;
  }
  90% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes open-navigation {
  0% {
    opacity: 0;
    transform: translateY(-200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes langs {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.c-notices-block {
  display: grid;
  grid-template-columns: calc(58.3333333333% - 0.8333333333rem) calc(41.6666666667% - 0.8333333333rem);
  grid-template-rows: auto auto 1fr;
  grid-auto-rows: 1fr;
  align-items: start;
  grid-gap: 1rem 1.6666666667rem;
}
@media (min-width: 520px) {
  .c-notices-block__item:first-child {
    grid-row: 1/4;
  }
}
@media (max-width: 520px) {
  .c-notices-block {
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5rem 1rem;
  }
}
@media (min-width: 520px) {
  .c-notices-block__item:not(:last-child) {
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 1rem;
  }
  .c-notices-block__item:first-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media (min-width: 520px) {
  .c-notices-block .c-notice-index--first {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "date" "title" "description" "link";
  }
}

.c-notice-index {
  color: #191919;
  display: grid;
  grid-column-gap: 2rem;
  grid-row-gap: 0.2rem;
  grid-template-columns: 1fr minmax(140px, 40%);
  grid-template-areas: "date image" "title image" "description image" "link image";
}
@media (max-width: 778px) {
  .c-notice-index {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "date" "title" "description" "link";
  }
}
.c-notice-index__image {
  grid-area: image;
}
.c-notice-index__image img {
  width: 100%;
  aspect-ratio: 9/5;
  object-fit: cover;
}
@media (min-width: 520px) {
  .c-notice-index--first .c-notice-index__image {
    margin-bottom: 1rem;
  }
}
@media (max-width: 520px) {
  .c-notice-index__image {
    margin-bottom: 0.5rem;
  }
}
.c-notice-index__description {
  grid-area: description;
  font-size: 0.8888888889rem;
  display: none;
}
@media (min-width: 520px) {
  .c-notice-index--first .c-notice-index__description {
    margin-top: 0.4em;
    display: block;
  }
}
.c-notice-index__date {
  grid-area: date;
  font-size: 0.7777777778rem;
}
.c-notice-index__title {
  grid-area: title;
  font-weight: 700;
  transition: all 0.5s;
}
@media (min-width: 520px) {
  .c-notice-index--first .c-notice-index__title {
    font-size: 1.3888888889rem;
    line-height: 1.2;
    line-height: 1.2;
  }
}
@media (min-width: 520px) and (max-width: 520px) {
  .c-notice-index--first .c-notice-index__title {
    font-size: 1.2222222222rem;
  }
}
.c-notice-index__link {
  grid-area: link;
}
@media (min-width: 520px) {
  .c-notice-index__link > span {
    position: relative;
    overflow: hidden;
  }
  .c-notice-index__link > span > span {
    display: block;
  }
  .c-notice-index--first .c-notice-index__link > span {
    transition: background-color 0.5s, color 0.5s;
    display: inline-block;
    background-color: #ea3544;
    color: #fff;
    font-weight: 700;
    max-width: 100%;
    padding: 0.4em 1em;
    font-size: 0.8888888889rem;
    text-align: center;
  }
}
@media (min-width: 520px) and (min-width: 520px) {
  .c-notice-index--first .c-notice-index__link > span {
    min-width: 13.8888888889rem;
  }
}
@media (min-width: 520px) {
  .c-notice-index--first .c-notice-index__link > span--short {
    min-width: auto;
  }
}
@media (min-width: 520px) {
  .c-notice-index--first .c-notice-index__link > span:hover {
    background-color: #191919;
    color: #fff;
  }
}
@media (max-width: 520px) {
  .c-notice-index__link > span {
    color: #ea3544;
  }
}
@media (min-width: 520px) {
  .c-notice-index--first .c-notice-index__link {
    margin-top: 1em;
  }
}
.c-notice-index:not(.c-notice-index--first) .c-notice-index__link span {
  display: inline-block;
  color: #ea3544;
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.7777777778rem;
  transition: all 0.5s;
  color: #ea3544;
}
@media (min-width: 820px) {
  .c-notice-index:not(.c-notice-index--first) .c-notice-index__link span:hover {
    color: #191919;
  }
}
.c-notice-index:hover .c-notice-index__title {
  color: #ea3544;
}

.c-notices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.6666666667rem;
}
@media (max-width: 960px) {
  .c-notices {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .c-notices {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-notices__item {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 1rem;
}
@media (min-width: 520px) {
  .c-notices .c-notice-index--first {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "date" "title" "description" "link";
  }
}

@media (min-width: 520px) {
  .c-notices-page .c-notices__item:first-child {
    grid-column: 1/3;
    grid-row: 1/5;
  }
}

.c-notice-view {
  display: grid;
  grid-template-columns: 1fr 22.2222222222rem;
  grid-gap: 1.6666666667rem;
}
@media (max-width: 520px) {
  .c-notice-view {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .c-notice-view__lasts {
    display: none;
  }
}

.c-notice-view-lasts__title {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #191919;
  padding-bottom: 0.5em;
}
@media (max-width: 520px) {
  .c-notice-view-lasts__title {
    font-size: 1.2222222222rem;
  }
}
.c-notice-view-lasts__items {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.8333333333rem;
  margin-top: 1.6666666667rem;
}

.c-notice {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "title" "date" "image" "summary" "body";
  grid-gap: 1.6666666667rem 3.3333333333rem;
}
@media (max-width: 520px) {
  .c-notice {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "date" "image" "summary" "body";
  }
}
.c-notice__title {
  grid-area: title;
  font-size: 2.7777777778rem;
  line-height: 1.08;
  line-height: 1.08;
  line-height: 1.08;
  font-weight: 700;
  padding-bottom: 0.8em;
  color: #ea3544;
  padding-bottom: 0;
  max-width: 1000px;
}
@media (max-width: 520px) {
  .c-notice__title {
    font-size: 2rem;
  }
}
.c-notice__date {
  grid-area: date;
  font-size: 0.7777777778rem;
}
.c-notice__summary {
  grid-area: summary;
  font-weight: normal;
  align-self: end;
}
.c-notice__summary p,
.c-notice__summary li {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.4;
}
@media (max-width: 520px) {
  .c-notice__summary p,
.c-notice__summary li {
    font-size: 1.2222222222rem;
  }
}
.c-notice__image {
  grid-area: image;
}
.c-notice__image img {
  display: block;
  width: 100%;
}
.c-notice__body {
  grid-area: body;
  margin-top: 1.6666666667rem;
  max-width: 1000px;
}
@media (max-width: 520px) {
  .c-notice__body {
    margin-top: 0.4166666667rem;
  }
}
.c-notice__gallery {
  overflow: hidden;
}

.c-overlay {
  position: fixed;
  width: 200vw;
  height: 200vw;
  top: 0;
  left: 0;
  background-color: rgba(25, 25, 25, 0.8);
  z-index: 100;
  transform: scale(0);
  transform-origin: center center;
  border-radius: 100%;
}
.c-overlay.active {
  animation-name: open-overlay;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.c-overlay-content {
  z-index: 101;
  overflow-y: auto;
  max-height: calc(100vh - 140px);
}

@keyframes open-overlay {
  0% {
    opacity: 0;
    display: block;
  }
  90% {
    transform: scale(2);
  }
  100% {
    transform: scale(2);
    opacity: 1;
  }
}
.container.main {
  margin-top: -180px;
}
.c-page-title-wrapper + .container.main {
  margin-top: 0;
}

.ctrl-Editions.action-view .container.main {
  margin-top: -180px;
}
.c-page-title-wrapper + .ctrl-Editions.action-view .container.main {
  margin-top: 0;
}

.c-page-title-wrapper {
  position: relative;
  z-index: 10;
  margin-bottom: 3.3333333333rem;
  padding-top: 1.6666666667rem;
  margin-top: -180px;
}
@media (max-width: 520px) {
  .c-page-title-wrapper {
    margin-bottom: 1.6666666667rem;
  }
}
.c-page-title-wrapper:not(.-no-margin-top) {
  padding-top: 12.7777777778rem;
}
.c-page-title-wrapper.-no-margin-top {
  margin-bottom: 1.6666666667rem;
  margin-top: 0;
}
@media (max-width: 520px) {
  .c-page-title-wrapper.-no-margin-top {
    margin-bottom: 1.6666666667rem;
  }
}
.c-page-title-wrapper--with-background {
  background-size: cover;
  background-position: top center;
  background-color: #191919;
  padding-top: 1.6666666667rem;
  padding-bottom: 1.6666666667rem;
  min-height: 8.3333333333rem;
}
@media (max-width: 520px) {
  .c-page-title-wrapper--with-background {
    min-height: 8.3333333333rem;
  }
}
.c-page-title-wrapper.-is-overlay {
  position: relative;
  filter: grayscale(80%);
}
.c-page-title-wrapper.-is-overlay:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #191919;
  mix-blend-mode: multiply;
  opacity: 0.6;
  z-index: 9;
  top: 0;
  left: 0;
}
.c-page-title-wrapper.-height-xl,
.c-page-title-wrapper.-height-xl .c-page-title {
  min-height: 22.2222222222rem;
}
@media (max-width: 520px) {
  .c-page-title-wrapper.-height-xl {
    min-height: 22.2222222222rem;
  }
}

.c-page-title {
  position: relative;
  z-index: 10;
  color: #ea3544;
}
.c-page-title--with-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}
.c-page-title--with-button a {
  padding: 0.3em 1em;
  font-size: 0.8888888889rem;
  display: block;
  text-transform: uppercase;
  border: 1px solid;
  text-align: center;
}
.c-page-title--with-button a:hover {
  color: #fff;
  background-color: #ea3544;
  border-color: #ea3544;
}
@media (max-width: 820px) {
  .c-page-title--with-button {
    flex-direction: column;
    align-items: flex-start;
    gap: 2em;
  }
}
.c-page-title__title {
  font-size: 3.8888888889rem;
  line-height: 1.08;
  line-height: 1.08;
  line-height: 1.08;
  font-weight: 700;
}
@media (max-width: 520px) {
  .c-page-title__title {
    font-size: 3.2222222222rem;
  }
}
@media (max-width: 520px) {
  .c-page-title__title {
    font-size: 2.7777777778rem;
    line-height: 1.08;
    line-height: 1.08;
    line-height: 1.08;
    font-weight: 700;
  }
}
@media (max-width: 520px) and (max-width: 520px) {
  .c-page-title__title {
    font-size: 2rem;
  }
}
.c-page-title-wrapper--with-background .c-page-title {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
}
.c-page-title-wrapper--with-background .c-page-title > div {
  width: 100%;
}
.body-bg-black .c-page-title {
  color: #fff;
}
.c-page-title-wrapper--with-background.-height-xl .c-page-title {
  align-items: end;
  padding-bottom: 0.8333333333rem;
}
@media (max-width: 520px) {
  .c-page-title-wrapper--with-background.-height-xl .c-page-title {
    padding-bottom: 0.8333333333rem;
  }
}

.c-places-page.c-places .c-places__items {
  grid-auto-flow: initial;
}
.c-places-page.c-places .c-place {
  box-shadow: 0px 3px 4px rgba(63, 77, 98, 0.19);
  min-height: 320px;
}
@media (max-width: 820px) {
  .c-places-page.c-places .c-place {
    flex-direction: column;
    min-height: initial;
  }
}
.c-places-page.c-places .c-place__image {
  width: 30%;
  aspect-ratio: 1/1;
}
@media (max-width: 820px) {
  .c-places-page.c-places .c-place__image {
    width: 100%;
  }
}
.c-places-page.c-places .c-place__data {
  flex-grow: 1;
  margin: 0;
}
@media (max-width: 820px) {
  .c-places-page.c-places .c-place__data {
    width: 100%;
  }
}
.c-places-page.c-places .c-place__data__content {
  margin: 0;
  box-shadow: none;
}
.c-places-page.c-places .c-place__map {
  display: flex;
  height: 100%;
  width: 30%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 820px) {
  .c-places-page.c-places .c-place__map {
    width: 100%;
    min-height: 150px;
  }
}

.jssocials-shares {
  display: flex;
  flex-direction: column;
}
.jssocials-shares a {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 2px;
}
@media (max-width: 520px) {
  .jssocials-shares a {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.jssocials-shares a:hover {
  color: #fff;
}

.jssocials-share-count {
  display: none !important;
}

.c-share {
  position: absolute;
  right: 4.5rem;
  display: flex;
  align-items: center;
  margin-top: 0.6rem;
}
@media (max-width: 820px) {
  .c-share {
    display: none;
  }
}
@media (max-width: 778px) {
  .c-share .jssocials-shares {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-top: 30px;
    margin-top: -25px;
  }
}
.edition-2022 .c-share {
  right: 6.5rem;
  margin-top: 0.5rem;
}
.c-share .jssocials-share-link.jssocials-share-no-count {
  padding-top: 0;
}
body.CustomPromos-view .c-share .c-share-side {
  display: none;
}
@media (max-width: 520px) {
  .c-share .c-share-side {
    display: none;
  }
}
.c-share .c-share-side--glossary {
  top: 510px;
  z-index: 9998;
}
.c-share .c-share-side__icon {
  cursor: pointer;
  width: 50px;
  height: 50px;
  text-align: center;
  border-bottom-right-radius: 15px;
  border-radius: 100%;
  border: 1px solid #191919;
  position: relative;
}
.c-share .c-share-side__icon:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
}
.c-share .c-share-side__icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid #191919;
  border-radius: 100%;
  -webkit-animation: rotateTurn2 30s linear infinite;
  animation: rotateTurn2 30s linear infinite;
}
.c-share .c-share-side__icon i {
  line-height: 50px;
  font-size: 30px;
  color: #191919;
}
.c-share .c-share-side:hover .c-share-side__icon {
  background-color: #191919;
  border: 1px solid #fff;
}
.c-share .c-share-side:hover .c-share-side__icon::after {
  border: 1px solid #fff;
}
.c-share .c-share-side:hover .c-share-side__icon i {
  color: #fff;
}
.c-share .c-share-side:hover .c-share__content {
  display: block;
}
.c-share .c-share-side__content {
  display: none;
  background-color: #191919;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  padding-top: 25px;
  margin-top: -25px;
}
.c-share .c-share-side__content .jssocials-shares {
  align-items: center;
}
.c-share .c-share-side__content .jssocials-share {
  margin: 5px 0px;
}
.c-share .fa-twitter:before {
  content: "\e61b" !important;
}

.sticking .c-share-side__icon {
  background-color: #191919;
}

.body-page-dark .c-share .c-share-side__icon,
.homepage .c-share .c-share-side__icon,
.body-bg-black .c-share .c-share-side__icon,
.body-page-black .c-share .c-share-side__icon {
  border: 1px solid #fff;
}
.body-page-dark .c-share .c-share-side__icon::after,
.homepage .c-share .c-share-side__icon::after,
.body-bg-black .c-share .c-share-side__icon::after,
.body-page-black .c-share .c-share-side__icon::after {
  border: 1px solid #fff;
}
.body-page-dark .c-share .c-share-side__icon i,
.homepage .c-share .c-share-side__icon i,
.body-bg-black .c-share .c-share-side__icon i,
.body-page-black .c-share .c-share-side__icon i {
  color: #fff;
}

/*.c-share-side__icon {
	body:not(.body-bg-black) & {
		background-color: color("black");
	}
}*/
@keyframes rotateTurn2 {
  0% {
    transform: rotate(0) translate(0);
  }
  10% {
    transform: rotate(-1turn) translate(2px, 2px);
  }
  20% {
    transform: rotate(-2turn) translate(1px, 1px);
  }
  30% {
    transform: rotate(-3turn) translate(2px, 2px);
  }
  40% {
    transform: rotate(-4turn) translate(1px, 1px);
  }
  50% {
    transform: rotate(-5turn) translate(2px, 2px);
  }
  60% {
    transform: rotate(-6turn) translate(1px, 1px);
  }
  70% {
    transform: rotate(-7turn) translate(2px, 2px);
  }
  80% {
    transform: rotate(-8turn) translate(1px, 1px);
  }
  90% {
    transform: rotate(-9turn) translate(2px, 2px);
  }
  to {
    transform: rotate(-10turn) translate(0);
  }
}
.c-text-intro {
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.6666666667rem;
}
.c-text-intro__antetitle {
  text-transform: uppercase;
  color: #ea3544;
  margin-bottom: 0.5em;
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .c-text-intro__antetitle {
    font-size: 1.2222222222rem;
  }
}
.c-text-intro__title {
  font-size: 2.7777777778rem;
  line-height: 1.08;
  line-height: 1.08;
  line-height: 1.08;
  font-weight: 700;
  padding-bottom: 0.8em;
  color: #ea3544;
  color: #ea3544;
}
@media (max-width: 520px) {
  .c-text-intro__title {
    font-size: 2rem;
  }
}
.c-text-intro__body {
  font-size: 1.1111111111rem;
  line-height: 1.3;
  margin-top: 0.5em;
}

.c-text h1,
.b-text h1 {
  font-size: 3.8888888889rem;
  line-height: 1.08;
  line-height: 1.08;
  margin-bottom: 0.3em;
  font-weight: bold;
  color: #ea3544;
}
@media (max-width: 520px) {
  .c-text h1,
.b-text h1 {
    font-size: 3.2222222222rem;
  }
}
@media (max-width: 520px) {
  .c-text h1,
.b-text h1 {
    margin-bottom: 0.4em;
  }
}
.c-text h2,
.b-text h2 {
  font-size: 2.7777777778rem;
  line-height: 1.08;
  line-height: 1.08;
  margin-top: 0.6em;
  margin-bottom: 0.6em;
  font-weight: bold;
  color: #ea3544;
}
@media (max-width: 520px) {
  .c-text h2,
.b-text h2 {
    font-size: 2rem;
  }
}
@media (max-width: 520px) {
  .c-text h2,
.b-text h2 {
    margin-top: 0.4em;
  }
}
@media (max-width: 520px) {
  .c-text h2,
.b-text h2 {
    margin-bottom: 0.4em;
  }
}
.c-text h3,
.b-text h3 {
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  margin-top: 0.6em;
  margin-bottom: 0.6em;
  font-weight: bold;
}
@media (max-width: 520px) {
  .c-text h3,
.b-text h3 {
    font-size: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-text h3,
.b-text h3 {
    margin-top: 0.4em;
  }
}
@media (max-width: 520px) {
  .c-text h3,
.b-text h3 {
    margin-bottom: 0.4em;
  }
}
.c-text h4,
.b-text h4 {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
  font-weight: bold;
}
@media (max-width: 520px) {
  .c-text h4,
.b-text h4 {
    font-size: 1.2222222222rem;
  }
}
@media (max-width: 520px) {
  .c-text h4,
.b-text h4 {
    margin-top: 0.4em;
  }
}
@media (max-width: 520px) {
  .c-text h4,
.b-text h4 {
    margin-bottom: 0.4em;
  }
}
.c-text h5,
.b-text h5 {
  font-size: 1.1111111111rem;
  line-height: 1.3;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
  font-weight: bold;
}
@media (max-width: 520px) {
  .c-text h5,
.b-text h5 {
    margin-top: 0.4em;
  }
}
@media (max-width: 520px) {
  .c-text h5,
.b-text h5 {
    margin-bottom: 0.4em;
  }
}
.c-text h6,
.b-text h6 {
  font-size: 1.1111111111rem;
  line-height: 1.3;
  text-decoration: underline;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
  font-weight: bold;
}
@media (max-width: 520px) {
  .c-text h6,
.b-text h6 {
    margin-top: 0.4em;
  }
}
@media (max-width: 520px) {
  .c-text h6,
.b-text h6 {
    margin-bottom: 0.4em;
  }
}
.c-text p,
.c-text li,
.b-text p,
.b-text li {
  font-size: 1.1111111111rem;
  line-height: 1.4;
  line-height: 1.4;
}
.c-text strong,
.b-text strong {
  font-weight: 700;
}
.c-text ul,
.c-text ol,
.b-text ul,
.b-text ol {
  padding-left: 1em;
}
.c-text ul:not(:first-child),
.c-text ol:not(:first-child),
.b-text ul:not(:first-child),
.b-text ol:not(:first-child) {
  margin-top: 2em;
}
.c-text ul:not(:last-child),
.c-text ol:not(:last-child),
.b-text ul:not(:last-child),
.b-text ol:not(:last-child) {
  margin-bottom: 2em;
}
.c-text ul li,
.b-text ul li {
  position: relative;
  width: calc(100% - 1.5em);
  left: 1.5em;
}
.c-text ul li:not(:last-child),
.b-text ul li:not(:last-child) {
  margin-bottom: 0.25em;
}
.c-text ul li:before,
.b-text ul li:before {
  display: block;
  content: "";
  position: absolute;
  left: -1.5em;
  top: 0.4em;
  width: 0.5555555556rem;
  height: 0.5555555556rem;
  background-color: #ea3544;
  border-radius: 100%;
}
.c-text ol,
.b-text ol {
  counter-reset: ol-counter;
}
.c-text ol > li,
.b-text ol > li {
  counter-increment: ol-counter;
  position: relative;
  width: calc(100% - 1.5em);
  left: 1.5em;
}
.c-text ol > li p,
.b-text ol > li p {
  display: inline;
}
.c-text ol > li:before,
.b-text ol > li:before {
  color: #ea3544;
  text-decoration: underline;
  position: absolute;
  left: -1.5em;
  top: 0.3em;
  content: counter(ol-counter);
}
.c-text ol > li:not(:last-child),
.b-text ol > li:not(:last-child) {
  margin-bottom: 1em;
}

.c-toggles {
  margin-top: 3.3333333333rem;
  margin-bottom: 3.3333333333rem;
}
@media (max-width: 520px) {
  .c-toggles {
    margin-top: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-toggles {
    margin-bottom: 1.6666666667rem;
  }
}

.c-toggle__title {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.6em;
  display: flex;
  align-items: center;
}
@media (max-width: 520px) {
  .c-toggle__title {
    font-size: 1.2222222222rem;
  }
}
.c-toggle__title:before {
  content: "";
  width: 3.3333333333rem;
  height: 1px;
  background-color: #ea3544;
  margin-right: 1em;
}
.c-toggle__title button {
  text-transform: uppercase;
  font-weight: bold;
}
.c-toggle__title button span {
  color: #ea3544;
}
.c-toggle__body {
  display: none;
}
.active .c-toggle__body {
  animation: toggle 0.5s forwards;
  opacity: 0;
  display: block;
}
.c-toggle:not(:last-child) {
  margin-bottom: 3.3333333333rem;
}
@media (max-width: 520px) {
  .c-toggle:not(:last-child) {
    margin-bottom: 1.6666666667rem;
  }
}

@keyframes toggle {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.c-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-video-embed {
  aspect-ratio: 16/9;
  position: relative;
}
.c-video-embed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-ui-button {
  position: absolute;
  top: calc(50% - 75px);
  left: calc(50% - 75px);
  width: 150px;
  height: 150px;
  background: transparent;
  border: none;
  outline: none;
}
.c-ui-button:hover .c-ui-button_circle {
  transform: scale(1);
}

.c-ui-button_circle {
  position: absolute;
  top: -20px;
  left: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 190px;
  transform: scale(0.475);
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #fff;
}

.c-ui-button_icon {
  position: absolute;
  top: 55px;
  left: 64px;
  font-size: 40px;
  color: #ea3544;
}

.c-ui-button_label {
  width: 150px;
  height: 150px;
  transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: rotate 15s linear infinite;
}
.c-ui-button_label svg textPath {
  fill: #fff;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.c-workers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.6666666667rem 3.3333333333rem;
}
@media (max-width: 520px) {
  .c-workers {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.6666666667rem;
  }
}

.c-worker__title {
  font-size: 1.3888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: bold;
}
@media (max-width: 520px) {
  .c-worker__title {
    font-size: 1.2222222222rem;
  }
}
.c-worker__subtitle {
  font-size: 0.8888888889rem;
  text-transform: uppercase;
  margin-top: 0.6em;
}

.u-color-primary {
  color: #ea3544;
}

.u-color-brand {
  color: #fb0017;
}

.u-color-black {
  color: #191919;
}

.u-color-white {
  color: #fff;
}

.u-color-grey {
  color: #bdb3a9;
}

.u-color-grey2 {
  color: #918477;
}

.u-color-background {
  color: #d8d8d8;
}

.u-color-border {
  color: #d8d8d8;
}

.u-color-state-success {
  color: #36ba33;
}

.u-color-ç state-info {
  color: #20a0de;
}

.u-color-state-warning {
  color: #f99500;
}

.u-color-state-danger {
  color: #c1101f;
}

.u-bg-primary {
  background-color: #ea3544;
}

.u-bg-brand {
  background-color: #fb0017;
}

.u-bg-black {
  background-color: #191919;
}

.u-bg-white {
  background-color: #fff;
}

.u-bg-grey {
  background-color: #bdb3a9;
}

.u-bg-grey2 {
  background-color: #918477;
}

.u-bg-background {
  background-color: #d8d8d8;
}

.u-bg-border {
  background-color: #d8d8d8;
}

.u-bg-state-success {
  background-color: #36ba33;
}

.u-bg-ç state-info {
  background-color: #20a0de;
}

.u-bg-state-warning {
  background-color: #f99500;
}

.u-bg-state-danger {
  background-color: #c1101f;
}

.d-hide {
  display: none !important;
}
@media (min-width: 370px) {
  body .d-hide\:ss {
    display: none !important;
  }
}
@media (min-width: 520px) {
  body .d-hide\:xs {
    display: none !important;
  }
}
@media (min-width: 778px) {
  body .d-hide\:sm {
    display: none !important;
  }
}
@media (min-width: 820px) {
  body .d-hide\:mobile {
    display: none !important;
  }
}
@media (min-width: 960px) {
  body .d-hide\:md {
    display: none !important;
  }
}
@media (min-width: 1140px) {
  body .d-hide\:lg {
    display: none !important;
  }
}

.d-flex {
  display: flex !important;
}
@media (min-width: 370px) {
  body .d-flex\:ss {
    display: flex !important;
  }
}
@media (min-width: 520px) {
  body .d-flex\:xs {
    display: flex !important;
  }
}
@media (min-width: 778px) {
  body .d-flex\:sm {
    display: flex !important;
  }
}
@media (min-width: 820px) {
  body .d-flex\:mobile {
    display: flex !important;
  }
}
@media (min-width: 960px) {
  body .d-flex\:md {
    display: flex !important;
  }
}
@media (min-width: 1140px) {
  body .d-flex\:lg {
    display: flex !important;
  }
}

.d-block {
  display: block !important;
}
@media (min-width: 370px) {
  body .d-block\:ss {
    display: block !important;
  }
}
@media (min-width: 520px) {
  body .d-block\:xs {
    display: block !important;
  }
}
@media (min-width: 778px) {
  body .d-block\:sm {
    display: block !important;
  }
}
@media (min-width: 820px) {
  body .d-block\:mobile {
    display: block !important;
  }
}
@media (min-width: 960px) {
  body .d-block\:md {
    display: block !important;
  }
}
@media (min-width: 1140px) {
  body .d-block\:lg {
    display: block !important;
  }
}

@media (max-width: 370px) {
  .hide-ss {
    display: none !important;
  }
}

.show-ss {
  display: none;
}
@media (max-width: 370px) {
  .show-ss {
    display: block;
  }
}

@media (max-width: 520px) {
  .hide-xs {
    display: none !important;
  }
}

.show-xs {
  display: none;
}
@media (max-width: 520px) {
  .show-xs {
    display: block;
  }
}

@media (max-width: 778px) {
  .hide-sm {
    display: none !important;
  }
}

.show-sm {
  display: none;
}
@media (max-width: 778px) {
  .show-sm {
    display: block;
  }
}

@media (max-width: 820px) {
  .hide-mobile {
    display: none !important;
  }
}

.show-mobile {
  display: none;
}
@media (max-width: 820px) {
  .show-mobile {
    display: block;
  }
}

@media (max-width: 960px) {
  .hide-md {
    display: none !important;
  }
}

.show-md {
  display: none;
}
@media (max-width: 960px) {
  .show-md {
    display: block;
  }
}

@media (max-width: 1140px) {
  .hide-lg {
    display: none !important;
  }
}

.show-lg {
  display: none;
}
@media (max-width: 1140px) {
  .show-lg {
    display: block;
  }
}

.hidden {
  display: none !important;
  display: none !important;
}
@media (min-width: 370px) {
  body .hidden\:ss {
    display: none !important;
  }
}
@media (min-width: 520px) {
  body .hidden\:xs {
    display: none !important;
  }
}
@media (min-width: 778px) {
  body .hidden\:sm {
    display: none !important;
  }
}
@media (min-width: 820px) {
  body .hidden\:mobile {
    display: none !important;
  }
}
@media (min-width: 960px) {
  body .hidden\:md {
    display: none !important;
  }
}
@media (min-width: 1140px) {
  body .hidden\:lg {
    display: none !important;
  }
}

.block {
  display: block !important;
  display: block !important;
}
@media (min-width: 370px) {
  body .block\:ss {
    display: block !important;
  }
}
@media (min-width: 520px) {
  body .block\:xs {
    display: block !important;
  }
}
@media (min-width: 778px) {
  body .block\:sm {
    display: block !important;
  }
}
@media (min-width: 820px) {
  body .block\:mobile {
    display: block !important;
  }
}
@media (min-width: 960px) {
  body .block\:md {
    display: block !important;
  }
}
@media (min-width: 1140px) {
  body .block\:lg {
    display: block !important;
  }
}

.flex {
  display: flex !important;
  display: flex !important;
}
@media (min-width: 370px) {
  body .flex\:ss {
    display: flex !important;
  }
}
@media (min-width: 520px) {
  body .flex\:xs {
    display: flex !important;
  }
}
@media (min-width: 778px) {
  body .flex\:sm {
    display: flex !important;
  }
}
@media (min-width: 820px) {
  body .flex\:mobile {
    display: flex !important;
  }
}
@media (min-width: 960px) {
  body .flex\:md {
    display: flex !important;
  }
}
@media (min-width: 1140px) {
  body .flex\:lg {
    display: flex !important;
  }
}

.inline-flex {
  display: inline-flex !important;
  display: inline-flex !important;
}
@media (min-width: 370px) {
  body .inline-flex\:ss {
    display: inline-flex !important;
  }
}
@media (min-width: 520px) {
  body .inline-flex\:xs {
    display: inline-flex !important;
  }
}
@media (min-width: 778px) {
  body .inline-flex\:sm {
    display: inline-flex !important;
  }
}
@media (min-width: 820px) {
  body .inline-flex\:mobile {
    display: inline-flex !important;
  }
}
@media (min-width: 960px) {
  body .inline-flex\:md {
    display: inline-flex !important;
  }
}
@media (min-width: 1140px) {
  body .inline-flex\:lg {
    display: inline-flex !important;
  }
}

.u-mt-0 {
  margin-top: 0px;
}
@media (min-width: 370px) {
  body .u-mt-0\:ss {
    margin-top: 0px;
  }
}
@media (min-width: 520px) {
  body .u-mt-0\:xs {
    margin-top: 0px;
  }
}
@media (min-width: 778px) {
  body .u-mt-0\:sm {
    margin-top: 0px;
  }
}
@media (min-width: 820px) {
  body .u-mt-0\:mobile {
    margin-top: 0px;
  }
}
@media (min-width: 960px) {
  body .u-mt-0\:md {
    margin-top: 0px;
  }
}
@media (min-width: 1140px) {
  body .u-mt-0\:lg {
    margin-top: 0px;
  }
}

.u-mt-1 {
  margin-top: 0.8333333333rem;
}
@media (min-width: 370px) {
  body .u-mt-1\:ss {
    margin-top: 0.8333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-mt-1\:xs {
    margin-top: 0.8333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-mt-1\:sm {
    margin-top: 0.8333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-mt-1\:mobile {
    margin-top: 0.8333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-mt-1\:md {
    margin-top: 0.8333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-mt-1\:lg {
    margin-top: 0.8333333333rem;
  }
}

.u-mt-2 {
  margin-top: 1.6666666667rem;
}
@media (min-width: 370px) {
  body .u-mt-2\:ss {
    margin-top: 1.6666666667rem;
  }
}
@media (min-width: 520px) {
  body .u-mt-2\:xs {
    margin-top: 1.6666666667rem;
  }
}
@media (min-width: 778px) {
  body .u-mt-2\:sm {
    margin-top: 1.6666666667rem;
  }
}
@media (min-width: 820px) {
  body .u-mt-2\:mobile {
    margin-top: 1.6666666667rem;
  }
}
@media (min-width: 960px) {
  body .u-mt-2\:md {
    margin-top: 1.6666666667rem;
  }
}
@media (min-width: 1140px) {
  body .u-mt-2\:lg {
    margin-top: 1.6666666667rem;
  }
}

.u-mt-3 {
  margin-top: 2.5rem;
}
@media (min-width: 370px) {
  body .u-mt-3\:ss {
    margin-top: 2.5rem;
  }
}
@media (min-width: 520px) {
  body .u-mt-3\:xs {
    margin-top: 2.5rem;
  }
}
@media (min-width: 778px) {
  body .u-mt-3\:sm {
    margin-top: 2.5rem;
  }
}
@media (min-width: 820px) {
  body .u-mt-3\:mobile {
    margin-top: 2.5rem;
  }
}
@media (min-width: 960px) {
  body .u-mt-3\:md {
    margin-top: 2.5rem;
  }
}
@media (min-width: 1140px) {
  body .u-mt-3\:lg {
    margin-top: 2.5rem;
  }
}

.u-mt-4 {
  margin-top: 3.3333333333rem;
}
@media (min-width: 370px) {
  body .u-mt-4\:ss {
    margin-top: 3.3333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-mt-4\:xs {
    margin-top: 3.3333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-mt-4\:sm {
    margin-top: 3.3333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-mt-4\:mobile {
    margin-top: 3.3333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-mt-4\:md {
    margin-top: 3.3333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-mt-4\:lg {
    margin-top: 3.3333333333rem;
  }
}

.u-mt-5 {
  margin-top: 5rem;
}
@media (min-width: 370px) {
  body .u-mt-5\:ss {
    margin-top: 5rem;
  }
}
@media (min-width: 520px) {
  body .u-mt-5\:xs {
    margin-top: 5rem;
  }
}
@media (min-width: 778px) {
  body .u-mt-5\:sm {
    margin-top: 5rem;
  }
}
@media (min-width: 820px) {
  body .u-mt-5\:mobile {
    margin-top: 5rem;
  }
}
@media (min-width: 960px) {
  body .u-mt-5\:md {
    margin-top: 5rem;
  }
}
@media (min-width: 1140px) {
  body .u-mt-5\:lg {
    margin-top: 5rem;
  }
}

.u-mt-6 {
  margin-top: 6.6666666667rem;
}
@media (min-width: 370px) {
  body .u-mt-6\:ss {
    margin-top: 6.6666666667rem;
  }
}
@media (min-width: 520px) {
  body .u-mt-6\:xs {
    margin-top: 6.6666666667rem;
  }
}
@media (min-width: 778px) {
  body .u-mt-6\:sm {
    margin-top: 6.6666666667rem;
  }
}
@media (min-width: 820px) {
  body .u-mt-6\:mobile {
    margin-top: 6.6666666667rem;
  }
}
@media (min-width: 960px) {
  body .u-mt-6\:md {
    margin-top: 6.6666666667rem;
  }
}
@media (min-width: 1140px) {
  body .u-mt-6\:lg {
    margin-top: 6.6666666667rem;
  }
}

.u-mt-7 {
  margin-top: 8.3333333333rem;
}
@media (min-width: 370px) {
  body .u-mt-7\:ss {
    margin-top: 8.3333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-mt-7\:xs {
    margin-top: 8.3333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-mt-7\:sm {
    margin-top: 8.3333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-mt-7\:mobile {
    margin-top: 8.3333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-mt-7\:md {
    margin-top: 8.3333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-mt-7\:lg {
    margin-top: 8.3333333333rem;
  }
}

.u-mb-0 {
  margin-bottom: 0px;
}
@media (min-width: 370px) {
  body .u-mb-0\:ss {
    margin-bottom: 0px;
  }
}
@media (min-width: 520px) {
  body .u-mb-0\:xs {
    margin-bottom: 0px;
  }
}
@media (min-width: 778px) {
  body .u-mb-0\:sm {
    margin-bottom: 0px;
  }
}
@media (min-width: 820px) {
  body .u-mb-0\:mobile {
    margin-bottom: 0px;
  }
}
@media (min-width: 960px) {
  body .u-mb-0\:md {
    margin-bottom: 0px;
  }
}
@media (min-width: 1140px) {
  body .u-mb-0\:lg {
    margin-bottom: 0px;
  }
}

.u-mb-1 {
  margin-bottom: 0.8333333333rem;
}
@media (min-width: 370px) {
  body .u-mb-1\:ss {
    margin-bottom: 0.8333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-mb-1\:xs {
    margin-bottom: 0.8333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-mb-1\:sm {
    margin-bottom: 0.8333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-mb-1\:mobile {
    margin-bottom: 0.8333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-mb-1\:md {
    margin-bottom: 0.8333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-mb-1\:lg {
    margin-bottom: 0.8333333333rem;
  }
}

.u-mb-2 {
  margin-bottom: 1.6666666667rem;
}
@media (min-width: 370px) {
  body .u-mb-2\:ss {
    margin-bottom: 1.6666666667rem;
  }
}
@media (min-width: 520px) {
  body .u-mb-2\:xs {
    margin-bottom: 1.6666666667rem;
  }
}
@media (min-width: 778px) {
  body .u-mb-2\:sm {
    margin-bottom: 1.6666666667rem;
  }
}
@media (min-width: 820px) {
  body .u-mb-2\:mobile {
    margin-bottom: 1.6666666667rem;
  }
}
@media (min-width: 960px) {
  body .u-mb-2\:md {
    margin-bottom: 1.6666666667rem;
  }
}
@media (min-width: 1140px) {
  body .u-mb-2\:lg {
    margin-bottom: 1.6666666667rem;
  }
}

.u-mb-3 {
  margin-bottom: 2.5rem;
}
@media (min-width: 370px) {
  body .u-mb-3\:ss {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 520px) {
  body .u-mb-3\:xs {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 778px) {
  body .u-mb-3\:sm {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 820px) {
  body .u-mb-3\:mobile {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 960px) {
  body .u-mb-3\:md {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1140px) {
  body .u-mb-3\:lg {
    margin-bottom: 2.5rem;
  }
}

.u-mb-4 {
  margin-bottom: 3.3333333333rem;
}
@media (min-width: 370px) {
  body .u-mb-4\:ss {
    margin-bottom: 3.3333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-mb-4\:xs {
    margin-bottom: 3.3333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-mb-4\:sm {
    margin-bottom: 3.3333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-mb-4\:mobile {
    margin-bottom: 3.3333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-mb-4\:md {
    margin-bottom: 3.3333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-mb-4\:lg {
    margin-bottom: 3.3333333333rem;
  }
}

.u-mb-5 {
  margin-bottom: 5rem;
}
@media (min-width: 370px) {
  body .u-mb-5\:ss {
    margin-bottom: 5rem;
  }
}
@media (min-width: 520px) {
  body .u-mb-5\:xs {
    margin-bottom: 5rem;
  }
}
@media (min-width: 778px) {
  body .u-mb-5\:sm {
    margin-bottom: 5rem;
  }
}
@media (min-width: 820px) {
  body .u-mb-5\:mobile {
    margin-bottom: 5rem;
  }
}
@media (min-width: 960px) {
  body .u-mb-5\:md {
    margin-bottom: 5rem;
  }
}
@media (min-width: 1140px) {
  body .u-mb-5\:lg {
    margin-bottom: 5rem;
  }
}

.u-mb-6 {
  margin-bottom: 6.6666666667rem;
}
@media (min-width: 370px) {
  body .u-mb-6\:ss {
    margin-bottom: 6.6666666667rem;
  }
}
@media (min-width: 520px) {
  body .u-mb-6\:xs {
    margin-bottom: 6.6666666667rem;
  }
}
@media (min-width: 778px) {
  body .u-mb-6\:sm {
    margin-bottom: 6.6666666667rem;
  }
}
@media (min-width: 820px) {
  body .u-mb-6\:mobile {
    margin-bottom: 6.6666666667rem;
  }
}
@media (min-width: 960px) {
  body .u-mb-6\:md {
    margin-bottom: 6.6666666667rem;
  }
}
@media (min-width: 1140px) {
  body .u-mb-6\:lg {
    margin-bottom: 6.6666666667rem;
  }
}

.u-mb-7 {
  margin-bottom: 8.3333333333rem;
}
@media (min-width: 370px) {
  body .u-mb-7\:ss {
    margin-bottom: 8.3333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-mb-7\:xs {
    margin-bottom: 8.3333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-mb-7\:sm {
    margin-bottom: 8.3333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-mb-7\:mobile {
    margin-bottom: 8.3333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-mb-7\:md {
    margin-bottom: 8.3333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-mb-7\:lg {
    margin-bottom: 8.3333333333rem;
  }
}

.u-ml-0 {
  margin-left: 0px;
}
@media (min-width: 370px) {
  body .u-ml-0\:ss {
    margin-left: 0px;
  }
}
@media (min-width: 520px) {
  body .u-ml-0\:xs {
    margin-left: 0px;
  }
}
@media (min-width: 778px) {
  body .u-ml-0\:sm {
    margin-left: 0px;
  }
}
@media (min-width: 820px) {
  body .u-ml-0\:mobile {
    margin-left: 0px;
  }
}
@media (min-width: 960px) {
  body .u-ml-0\:md {
    margin-left: 0px;
  }
}
@media (min-width: 1140px) {
  body .u-ml-0\:lg {
    margin-left: 0px;
  }
}

.u-ml-1 {
  margin-left: 0.8333333333rem;
}
@media (min-width: 370px) {
  body .u-ml-1\:ss {
    margin-left: 0.8333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-ml-1\:xs {
    margin-left: 0.8333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-ml-1\:sm {
    margin-left: 0.8333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-ml-1\:mobile {
    margin-left: 0.8333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-ml-1\:md {
    margin-left: 0.8333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-ml-1\:lg {
    margin-left: 0.8333333333rem;
  }
}

.u-ml-2 {
  margin-left: 1.6666666667rem;
}
@media (min-width: 370px) {
  body .u-ml-2\:ss {
    margin-left: 1.6666666667rem;
  }
}
@media (min-width: 520px) {
  body .u-ml-2\:xs {
    margin-left: 1.6666666667rem;
  }
}
@media (min-width: 778px) {
  body .u-ml-2\:sm {
    margin-left: 1.6666666667rem;
  }
}
@media (min-width: 820px) {
  body .u-ml-2\:mobile {
    margin-left: 1.6666666667rem;
  }
}
@media (min-width: 960px) {
  body .u-ml-2\:md {
    margin-left: 1.6666666667rem;
  }
}
@media (min-width: 1140px) {
  body .u-ml-2\:lg {
    margin-left: 1.6666666667rem;
  }
}

.u-ml-3 {
  margin-left: 2.5rem;
}
@media (min-width: 370px) {
  body .u-ml-3\:ss {
    margin-left: 2.5rem;
  }
}
@media (min-width: 520px) {
  body .u-ml-3\:xs {
    margin-left: 2.5rem;
  }
}
@media (min-width: 778px) {
  body .u-ml-3\:sm {
    margin-left: 2.5rem;
  }
}
@media (min-width: 820px) {
  body .u-ml-3\:mobile {
    margin-left: 2.5rem;
  }
}
@media (min-width: 960px) {
  body .u-ml-3\:md {
    margin-left: 2.5rem;
  }
}
@media (min-width: 1140px) {
  body .u-ml-3\:lg {
    margin-left: 2.5rem;
  }
}

.u-ml-4 {
  margin-left: 3.3333333333rem;
}
@media (min-width: 370px) {
  body .u-ml-4\:ss {
    margin-left: 3.3333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-ml-4\:xs {
    margin-left: 3.3333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-ml-4\:sm {
    margin-left: 3.3333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-ml-4\:mobile {
    margin-left: 3.3333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-ml-4\:md {
    margin-left: 3.3333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-ml-4\:lg {
    margin-left: 3.3333333333rem;
  }
}

.u-ml-5 {
  margin-left: 5rem;
}
@media (min-width: 370px) {
  body .u-ml-5\:ss {
    margin-left: 5rem;
  }
}
@media (min-width: 520px) {
  body .u-ml-5\:xs {
    margin-left: 5rem;
  }
}
@media (min-width: 778px) {
  body .u-ml-5\:sm {
    margin-left: 5rem;
  }
}
@media (min-width: 820px) {
  body .u-ml-5\:mobile {
    margin-left: 5rem;
  }
}
@media (min-width: 960px) {
  body .u-ml-5\:md {
    margin-left: 5rem;
  }
}
@media (min-width: 1140px) {
  body .u-ml-5\:lg {
    margin-left: 5rem;
  }
}

.u-ml-6 {
  margin-left: 6.6666666667rem;
}
@media (min-width: 370px) {
  body .u-ml-6\:ss {
    margin-left: 6.6666666667rem;
  }
}
@media (min-width: 520px) {
  body .u-ml-6\:xs {
    margin-left: 6.6666666667rem;
  }
}
@media (min-width: 778px) {
  body .u-ml-6\:sm {
    margin-left: 6.6666666667rem;
  }
}
@media (min-width: 820px) {
  body .u-ml-6\:mobile {
    margin-left: 6.6666666667rem;
  }
}
@media (min-width: 960px) {
  body .u-ml-6\:md {
    margin-left: 6.6666666667rem;
  }
}
@media (min-width: 1140px) {
  body .u-ml-6\:lg {
    margin-left: 6.6666666667rem;
  }
}

.u-ml-7 {
  margin-left: 8.3333333333rem;
}
@media (min-width: 370px) {
  body .u-ml-7\:ss {
    margin-left: 8.3333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-ml-7\:xs {
    margin-left: 8.3333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-ml-7\:sm {
    margin-left: 8.3333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-ml-7\:mobile {
    margin-left: 8.3333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-ml-7\:md {
    margin-left: 8.3333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-ml-7\:lg {
    margin-left: 8.3333333333rem;
  }
}

.u-mr-0 {
  margin-right: 0px;
}
@media (min-width: 370px) {
  body .u-mr-0\:ss {
    margin-right: 0px;
  }
}
@media (min-width: 520px) {
  body .u-mr-0\:xs {
    margin-right: 0px;
  }
}
@media (min-width: 778px) {
  body .u-mr-0\:sm {
    margin-right: 0px;
  }
}
@media (min-width: 820px) {
  body .u-mr-0\:mobile {
    margin-right: 0px;
  }
}
@media (min-width: 960px) {
  body .u-mr-0\:md {
    margin-right: 0px;
  }
}
@media (min-width: 1140px) {
  body .u-mr-0\:lg {
    margin-right: 0px;
  }
}

.u-mr-1 {
  margin-right: 0.8333333333rem;
}
@media (min-width: 370px) {
  body .u-mr-1\:ss {
    margin-right: 0.8333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-mr-1\:xs {
    margin-right: 0.8333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-mr-1\:sm {
    margin-right: 0.8333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-mr-1\:mobile {
    margin-right: 0.8333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-mr-1\:md {
    margin-right: 0.8333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-mr-1\:lg {
    margin-right: 0.8333333333rem;
  }
}

.u-mr-2 {
  margin-right: 1.6666666667rem;
}
@media (min-width: 370px) {
  body .u-mr-2\:ss {
    margin-right: 1.6666666667rem;
  }
}
@media (min-width: 520px) {
  body .u-mr-2\:xs {
    margin-right: 1.6666666667rem;
  }
}
@media (min-width: 778px) {
  body .u-mr-2\:sm {
    margin-right: 1.6666666667rem;
  }
}
@media (min-width: 820px) {
  body .u-mr-2\:mobile {
    margin-right: 1.6666666667rem;
  }
}
@media (min-width: 960px) {
  body .u-mr-2\:md {
    margin-right: 1.6666666667rem;
  }
}
@media (min-width: 1140px) {
  body .u-mr-2\:lg {
    margin-right: 1.6666666667rem;
  }
}

.u-mr-3 {
  margin-right: 2.5rem;
}
@media (min-width: 370px) {
  body .u-mr-3\:ss {
    margin-right: 2.5rem;
  }
}
@media (min-width: 520px) {
  body .u-mr-3\:xs {
    margin-right: 2.5rem;
  }
}
@media (min-width: 778px) {
  body .u-mr-3\:sm {
    margin-right: 2.5rem;
  }
}
@media (min-width: 820px) {
  body .u-mr-3\:mobile {
    margin-right: 2.5rem;
  }
}
@media (min-width: 960px) {
  body .u-mr-3\:md {
    margin-right: 2.5rem;
  }
}
@media (min-width: 1140px) {
  body .u-mr-3\:lg {
    margin-right: 2.5rem;
  }
}

.u-mr-4 {
  margin-right: 3.3333333333rem;
}
@media (min-width: 370px) {
  body .u-mr-4\:ss {
    margin-right: 3.3333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-mr-4\:xs {
    margin-right: 3.3333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-mr-4\:sm {
    margin-right: 3.3333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-mr-4\:mobile {
    margin-right: 3.3333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-mr-4\:md {
    margin-right: 3.3333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-mr-4\:lg {
    margin-right: 3.3333333333rem;
  }
}

.u-mr-5 {
  margin-right: 5rem;
}
@media (min-width: 370px) {
  body .u-mr-5\:ss {
    margin-right: 5rem;
  }
}
@media (min-width: 520px) {
  body .u-mr-5\:xs {
    margin-right: 5rem;
  }
}
@media (min-width: 778px) {
  body .u-mr-5\:sm {
    margin-right: 5rem;
  }
}
@media (min-width: 820px) {
  body .u-mr-5\:mobile {
    margin-right: 5rem;
  }
}
@media (min-width: 960px) {
  body .u-mr-5\:md {
    margin-right: 5rem;
  }
}
@media (min-width: 1140px) {
  body .u-mr-5\:lg {
    margin-right: 5rem;
  }
}

.u-mr-6 {
  margin-right: 6.6666666667rem;
}
@media (min-width: 370px) {
  body .u-mr-6\:ss {
    margin-right: 6.6666666667rem;
  }
}
@media (min-width: 520px) {
  body .u-mr-6\:xs {
    margin-right: 6.6666666667rem;
  }
}
@media (min-width: 778px) {
  body .u-mr-6\:sm {
    margin-right: 6.6666666667rem;
  }
}
@media (min-width: 820px) {
  body .u-mr-6\:mobile {
    margin-right: 6.6666666667rem;
  }
}
@media (min-width: 960px) {
  body .u-mr-6\:md {
    margin-right: 6.6666666667rem;
  }
}
@media (min-width: 1140px) {
  body .u-mr-6\:lg {
    margin-right: 6.6666666667rem;
  }
}

.u-mr-7 {
  margin-right: 8.3333333333rem;
}
@media (min-width: 370px) {
  body .u-mr-7\:ss {
    margin-right: 8.3333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-mr-7\:xs {
    margin-right: 8.3333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-mr-7\:sm {
    margin-right: 8.3333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-mr-7\:mobile {
    margin-right: 8.3333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-mr-7\:md {
    margin-right: 8.3333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-mr-7\:lg {
    margin-right: 8.3333333333rem;
  }
}

.u-pt-0 {
  padding-top: 0px;
}
@media (min-width: 370px) {
  body .u-pt-0\:ss {
    padding-top: 0px;
  }
}
@media (min-width: 520px) {
  body .u-pt-0\:xs {
    padding-top: 0px;
  }
}
@media (min-width: 778px) {
  body .u-pt-0\:sm {
    padding-top: 0px;
  }
}
@media (min-width: 820px) {
  body .u-pt-0\:mobile {
    padding-top: 0px;
  }
}
@media (min-width: 960px) {
  body .u-pt-0\:md {
    padding-top: 0px;
  }
}
@media (min-width: 1140px) {
  body .u-pt-0\:lg {
    padding-top: 0px;
  }
}

.u-pt-1 {
  padding-top: 0.8333333333rem;
}
@media (min-width: 370px) {
  body .u-pt-1\:ss {
    padding-top: 0.8333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-pt-1\:xs {
    padding-top: 0.8333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-pt-1\:sm {
    padding-top: 0.8333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-pt-1\:mobile {
    padding-top: 0.8333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-pt-1\:md {
    padding-top: 0.8333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-pt-1\:lg {
    padding-top: 0.8333333333rem;
  }
}

.u-pt-2 {
  padding-top: 1.6666666667rem;
}
@media (min-width: 370px) {
  body .u-pt-2\:ss {
    padding-top: 1.6666666667rem;
  }
}
@media (min-width: 520px) {
  body .u-pt-2\:xs {
    padding-top: 1.6666666667rem;
  }
}
@media (min-width: 778px) {
  body .u-pt-2\:sm {
    padding-top: 1.6666666667rem;
  }
}
@media (min-width: 820px) {
  body .u-pt-2\:mobile {
    padding-top: 1.6666666667rem;
  }
}
@media (min-width: 960px) {
  body .u-pt-2\:md {
    padding-top: 1.6666666667rem;
  }
}
@media (min-width: 1140px) {
  body .u-pt-2\:lg {
    padding-top: 1.6666666667rem;
  }
}

.u-pt-3 {
  padding-top: 2.5rem;
}
@media (min-width: 370px) {
  body .u-pt-3\:ss {
    padding-top: 2.5rem;
  }
}
@media (min-width: 520px) {
  body .u-pt-3\:xs {
    padding-top: 2.5rem;
  }
}
@media (min-width: 778px) {
  body .u-pt-3\:sm {
    padding-top: 2.5rem;
  }
}
@media (min-width: 820px) {
  body .u-pt-3\:mobile {
    padding-top: 2.5rem;
  }
}
@media (min-width: 960px) {
  body .u-pt-3\:md {
    padding-top: 2.5rem;
  }
}
@media (min-width: 1140px) {
  body .u-pt-3\:lg {
    padding-top: 2.5rem;
  }
}

.u-pt-4 {
  padding-top: 3.3333333333rem;
}
@media (min-width: 370px) {
  body .u-pt-4\:ss {
    padding-top: 3.3333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-pt-4\:xs {
    padding-top: 3.3333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-pt-4\:sm {
    padding-top: 3.3333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-pt-4\:mobile {
    padding-top: 3.3333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-pt-4\:md {
    padding-top: 3.3333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-pt-4\:lg {
    padding-top: 3.3333333333rem;
  }
}

.u-pt-5 {
  padding-top: 5rem;
}
@media (min-width: 370px) {
  body .u-pt-5\:ss {
    padding-top: 5rem;
  }
}
@media (min-width: 520px) {
  body .u-pt-5\:xs {
    padding-top: 5rem;
  }
}
@media (min-width: 778px) {
  body .u-pt-5\:sm {
    padding-top: 5rem;
  }
}
@media (min-width: 820px) {
  body .u-pt-5\:mobile {
    padding-top: 5rem;
  }
}
@media (min-width: 960px) {
  body .u-pt-5\:md {
    padding-top: 5rem;
  }
}
@media (min-width: 1140px) {
  body .u-pt-5\:lg {
    padding-top: 5rem;
  }
}

.u-pt-6 {
  padding-top: 6.6666666667rem;
}
@media (min-width: 370px) {
  body .u-pt-6\:ss {
    padding-top: 6.6666666667rem;
  }
}
@media (min-width: 520px) {
  body .u-pt-6\:xs {
    padding-top: 6.6666666667rem;
  }
}
@media (min-width: 778px) {
  body .u-pt-6\:sm {
    padding-top: 6.6666666667rem;
  }
}
@media (min-width: 820px) {
  body .u-pt-6\:mobile {
    padding-top: 6.6666666667rem;
  }
}
@media (min-width: 960px) {
  body .u-pt-6\:md {
    padding-top: 6.6666666667rem;
  }
}
@media (min-width: 1140px) {
  body .u-pt-6\:lg {
    padding-top: 6.6666666667rem;
  }
}

.u-pt-7 {
  padding-top: 8.3333333333rem;
}
@media (min-width: 370px) {
  body .u-pt-7\:ss {
    padding-top: 8.3333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-pt-7\:xs {
    padding-top: 8.3333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-pt-7\:sm {
    padding-top: 8.3333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-pt-7\:mobile {
    padding-top: 8.3333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-pt-7\:md {
    padding-top: 8.3333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-pt-7\:lg {
    padding-top: 8.3333333333rem;
  }
}

.u-pb-0 {
  padding-bottom: 0px;
}
@media (min-width: 370px) {
  body .u-pb-0\:ss {
    padding-bottom: 0px;
  }
}
@media (min-width: 520px) {
  body .u-pb-0\:xs {
    padding-bottom: 0px;
  }
}
@media (min-width: 778px) {
  body .u-pb-0\:sm {
    padding-bottom: 0px;
  }
}
@media (min-width: 820px) {
  body .u-pb-0\:mobile {
    padding-bottom: 0px;
  }
}
@media (min-width: 960px) {
  body .u-pb-0\:md {
    padding-bottom: 0px;
  }
}
@media (min-width: 1140px) {
  body .u-pb-0\:lg {
    padding-bottom: 0px;
  }
}

.u-pb-1 {
  padding-bottom: 0.8333333333rem;
}
@media (min-width: 370px) {
  body .u-pb-1\:ss {
    padding-bottom: 0.8333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-pb-1\:xs {
    padding-bottom: 0.8333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-pb-1\:sm {
    padding-bottom: 0.8333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-pb-1\:mobile {
    padding-bottom: 0.8333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-pb-1\:md {
    padding-bottom: 0.8333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-pb-1\:lg {
    padding-bottom: 0.8333333333rem;
  }
}

.u-pb-2 {
  padding-bottom: 1.6666666667rem;
}
@media (min-width: 370px) {
  body .u-pb-2\:ss {
    padding-bottom: 1.6666666667rem;
  }
}
@media (min-width: 520px) {
  body .u-pb-2\:xs {
    padding-bottom: 1.6666666667rem;
  }
}
@media (min-width: 778px) {
  body .u-pb-2\:sm {
    padding-bottom: 1.6666666667rem;
  }
}
@media (min-width: 820px) {
  body .u-pb-2\:mobile {
    padding-bottom: 1.6666666667rem;
  }
}
@media (min-width: 960px) {
  body .u-pb-2\:md {
    padding-bottom: 1.6666666667rem;
  }
}
@media (min-width: 1140px) {
  body .u-pb-2\:lg {
    padding-bottom: 1.6666666667rem;
  }
}

.u-pb-3 {
  padding-bottom: 2.5rem;
}
@media (min-width: 370px) {
  body .u-pb-3\:ss {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 520px) {
  body .u-pb-3\:xs {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 778px) {
  body .u-pb-3\:sm {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 820px) {
  body .u-pb-3\:mobile {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 960px) {
  body .u-pb-3\:md {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1140px) {
  body .u-pb-3\:lg {
    padding-bottom: 2.5rem;
  }
}

.u-pb-4 {
  padding-bottom: 3.3333333333rem;
}
@media (min-width: 370px) {
  body .u-pb-4\:ss {
    padding-bottom: 3.3333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-pb-4\:xs {
    padding-bottom: 3.3333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-pb-4\:sm {
    padding-bottom: 3.3333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-pb-4\:mobile {
    padding-bottom: 3.3333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-pb-4\:md {
    padding-bottom: 3.3333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-pb-4\:lg {
    padding-bottom: 3.3333333333rem;
  }
}

.u-pb-5 {
  padding-bottom: 5rem;
}
@media (min-width: 370px) {
  body .u-pb-5\:ss {
    padding-bottom: 5rem;
  }
}
@media (min-width: 520px) {
  body .u-pb-5\:xs {
    padding-bottom: 5rem;
  }
}
@media (min-width: 778px) {
  body .u-pb-5\:sm {
    padding-bottom: 5rem;
  }
}
@media (min-width: 820px) {
  body .u-pb-5\:mobile {
    padding-bottom: 5rem;
  }
}
@media (min-width: 960px) {
  body .u-pb-5\:md {
    padding-bottom: 5rem;
  }
}
@media (min-width: 1140px) {
  body .u-pb-5\:lg {
    padding-bottom: 5rem;
  }
}

.u-pb-6 {
  padding-bottom: 6.6666666667rem;
}
@media (min-width: 370px) {
  body .u-pb-6\:ss {
    padding-bottom: 6.6666666667rem;
  }
}
@media (min-width: 520px) {
  body .u-pb-6\:xs {
    padding-bottom: 6.6666666667rem;
  }
}
@media (min-width: 778px) {
  body .u-pb-6\:sm {
    padding-bottom: 6.6666666667rem;
  }
}
@media (min-width: 820px) {
  body .u-pb-6\:mobile {
    padding-bottom: 6.6666666667rem;
  }
}
@media (min-width: 960px) {
  body .u-pb-6\:md {
    padding-bottom: 6.6666666667rem;
  }
}
@media (min-width: 1140px) {
  body .u-pb-6\:lg {
    padding-bottom: 6.6666666667rem;
  }
}

.u-pb-7 {
  padding-bottom: 8.3333333333rem;
}
@media (min-width: 370px) {
  body .u-pb-7\:ss {
    padding-bottom: 8.3333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-pb-7\:xs {
    padding-bottom: 8.3333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-pb-7\:sm {
    padding-bottom: 8.3333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-pb-7\:mobile {
    padding-bottom: 8.3333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-pb-7\:md {
    padding-bottom: 8.3333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-pb-7\:lg {
    padding-bottom: 8.3333333333rem;
  }
}

.u-pl-0 {
  padding-left: 0px;
}
@media (min-width: 370px) {
  body .u-pl-0\:ss {
    padding-left: 0px;
  }
}
@media (min-width: 520px) {
  body .u-pl-0\:xs {
    padding-left: 0px;
  }
}
@media (min-width: 778px) {
  body .u-pl-0\:sm {
    padding-left: 0px;
  }
}
@media (min-width: 820px) {
  body .u-pl-0\:mobile {
    padding-left: 0px;
  }
}
@media (min-width: 960px) {
  body .u-pl-0\:md {
    padding-left: 0px;
  }
}
@media (min-width: 1140px) {
  body .u-pl-0\:lg {
    padding-left: 0px;
  }
}

.u-pl-1 {
  padding-left: 0.8333333333rem;
}
@media (min-width: 370px) {
  body .u-pl-1\:ss {
    padding-left: 0.8333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-pl-1\:xs {
    padding-left: 0.8333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-pl-1\:sm {
    padding-left: 0.8333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-pl-1\:mobile {
    padding-left: 0.8333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-pl-1\:md {
    padding-left: 0.8333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-pl-1\:lg {
    padding-left: 0.8333333333rem;
  }
}

.u-pl-2 {
  padding-left: 1.6666666667rem;
}
@media (min-width: 370px) {
  body .u-pl-2\:ss {
    padding-left: 1.6666666667rem;
  }
}
@media (min-width: 520px) {
  body .u-pl-2\:xs {
    padding-left: 1.6666666667rem;
  }
}
@media (min-width: 778px) {
  body .u-pl-2\:sm {
    padding-left: 1.6666666667rem;
  }
}
@media (min-width: 820px) {
  body .u-pl-2\:mobile {
    padding-left: 1.6666666667rem;
  }
}
@media (min-width: 960px) {
  body .u-pl-2\:md {
    padding-left: 1.6666666667rem;
  }
}
@media (min-width: 1140px) {
  body .u-pl-2\:lg {
    padding-left: 1.6666666667rem;
  }
}

.u-pl-3 {
  padding-left: 2.5rem;
}
@media (min-width: 370px) {
  body .u-pl-3\:ss {
    padding-left: 2.5rem;
  }
}
@media (min-width: 520px) {
  body .u-pl-3\:xs {
    padding-left: 2.5rem;
  }
}
@media (min-width: 778px) {
  body .u-pl-3\:sm {
    padding-left: 2.5rem;
  }
}
@media (min-width: 820px) {
  body .u-pl-3\:mobile {
    padding-left: 2.5rem;
  }
}
@media (min-width: 960px) {
  body .u-pl-3\:md {
    padding-left: 2.5rem;
  }
}
@media (min-width: 1140px) {
  body .u-pl-3\:lg {
    padding-left: 2.5rem;
  }
}

.u-pl-4 {
  padding-left: 3.3333333333rem;
}
@media (min-width: 370px) {
  body .u-pl-4\:ss {
    padding-left: 3.3333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-pl-4\:xs {
    padding-left: 3.3333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-pl-4\:sm {
    padding-left: 3.3333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-pl-4\:mobile {
    padding-left: 3.3333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-pl-4\:md {
    padding-left: 3.3333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-pl-4\:lg {
    padding-left: 3.3333333333rem;
  }
}

.u-pl-5 {
  padding-left: 5rem;
}
@media (min-width: 370px) {
  body .u-pl-5\:ss {
    padding-left: 5rem;
  }
}
@media (min-width: 520px) {
  body .u-pl-5\:xs {
    padding-left: 5rem;
  }
}
@media (min-width: 778px) {
  body .u-pl-5\:sm {
    padding-left: 5rem;
  }
}
@media (min-width: 820px) {
  body .u-pl-5\:mobile {
    padding-left: 5rem;
  }
}
@media (min-width: 960px) {
  body .u-pl-5\:md {
    padding-left: 5rem;
  }
}
@media (min-width: 1140px) {
  body .u-pl-5\:lg {
    padding-left: 5rem;
  }
}

.u-pl-6 {
  padding-left: 6.6666666667rem;
}
@media (min-width: 370px) {
  body .u-pl-6\:ss {
    padding-left: 6.6666666667rem;
  }
}
@media (min-width: 520px) {
  body .u-pl-6\:xs {
    padding-left: 6.6666666667rem;
  }
}
@media (min-width: 778px) {
  body .u-pl-6\:sm {
    padding-left: 6.6666666667rem;
  }
}
@media (min-width: 820px) {
  body .u-pl-6\:mobile {
    padding-left: 6.6666666667rem;
  }
}
@media (min-width: 960px) {
  body .u-pl-6\:md {
    padding-left: 6.6666666667rem;
  }
}
@media (min-width: 1140px) {
  body .u-pl-6\:lg {
    padding-left: 6.6666666667rem;
  }
}

.u-pl-7 {
  padding-left: 8.3333333333rem;
}
@media (min-width: 370px) {
  body .u-pl-7\:ss {
    padding-left: 8.3333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-pl-7\:xs {
    padding-left: 8.3333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-pl-7\:sm {
    padding-left: 8.3333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-pl-7\:mobile {
    padding-left: 8.3333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-pl-7\:md {
    padding-left: 8.3333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-pl-7\:lg {
    padding-left: 8.3333333333rem;
  }
}

.u-pr-0 {
  padding-right: 0px;
}
@media (min-width: 370px) {
  body .u-pr-0\:ss {
    padding-right: 0px;
  }
}
@media (min-width: 520px) {
  body .u-pr-0\:xs {
    padding-right: 0px;
  }
}
@media (min-width: 778px) {
  body .u-pr-0\:sm {
    padding-right: 0px;
  }
}
@media (min-width: 820px) {
  body .u-pr-0\:mobile {
    padding-right: 0px;
  }
}
@media (min-width: 960px) {
  body .u-pr-0\:md {
    padding-right: 0px;
  }
}
@media (min-width: 1140px) {
  body .u-pr-0\:lg {
    padding-right: 0px;
  }
}

.u-pr-1 {
  padding-right: 0.8333333333rem;
}
@media (min-width: 370px) {
  body .u-pr-1\:ss {
    padding-right: 0.8333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-pr-1\:xs {
    padding-right: 0.8333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-pr-1\:sm {
    padding-right: 0.8333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-pr-1\:mobile {
    padding-right: 0.8333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-pr-1\:md {
    padding-right: 0.8333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-pr-1\:lg {
    padding-right: 0.8333333333rem;
  }
}

.u-pr-2 {
  padding-right: 1.6666666667rem;
}
@media (min-width: 370px) {
  body .u-pr-2\:ss {
    padding-right: 1.6666666667rem;
  }
}
@media (min-width: 520px) {
  body .u-pr-2\:xs {
    padding-right: 1.6666666667rem;
  }
}
@media (min-width: 778px) {
  body .u-pr-2\:sm {
    padding-right: 1.6666666667rem;
  }
}
@media (min-width: 820px) {
  body .u-pr-2\:mobile {
    padding-right: 1.6666666667rem;
  }
}
@media (min-width: 960px) {
  body .u-pr-2\:md {
    padding-right: 1.6666666667rem;
  }
}
@media (min-width: 1140px) {
  body .u-pr-2\:lg {
    padding-right: 1.6666666667rem;
  }
}

.u-pr-3 {
  padding-right: 2.5rem;
}
@media (min-width: 370px) {
  body .u-pr-3\:ss {
    padding-right: 2.5rem;
  }
}
@media (min-width: 520px) {
  body .u-pr-3\:xs {
    padding-right: 2.5rem;
  }
}
@media (min-width: 778px) {
  body .u-pr-3\:sm {
    padding-right: 2.5rem;
  }
}
@media (min-width: 820px) {
  body .u-pr-3\:mobile {
    padding-right: 2.5rem;
  }
}
@media (min-width: 960px) {
  body .u-pr-3\:md {
    padding-right: 2.5rem;
  }
}
@media (min-width: 1140px) {
  body .u-pr-3\:lg {
    padding-right: 2.5rem;
  }
}

.u-pr-4 {
  padding-right: 3.3333333333rem;
}
@media (min-width: 370px) {
  body .u-pr-4\:ss {
    padding-right: 3.3333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-pr-4\:xs {
    padding-right: 3.3333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-pr-4\:sm {
    padding-right: 3.3333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-pr-4\:mobile {
    padding-right: 3.3333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-pr-4\:md {
    padding-right: 3.3333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-pr-4\:lg {
    padding-right: 3.3333333333rem;
  }
}

.u-pr-5 {
  padding-right: 5rem;
}
@media (min-width: 370px) {
  body .u-pr-5\:ss {
    padding-right: 5rem;
  }
}
@media (min-width: 520px) {
  body .u-pr-5\:xs {
    padding-right: 5rem;
  }
}
@media (min-width: 778px) {
  body .u-pr-5\:sm {
    padding-right: 5rem;
  }
}
@media (min-width: 820px) {
  body .u-pr-5\:mobile {
    padding-right: 5rem;
  }
}
@media (min-width: 960px) {
  body .u-pr-5\:md {
    padding-right: 5rem;
  }
}
@media (min-width: 1140px) {
  body .u-pr-5\:lg {
    padding-right: 5rem;
  }
}

.u-pr-6 {
  padding-right: 6.6666666667rem;
}
@media (min-width: 370px) {
  body .u-pr-6\:ss {
    padding-right: 6.6666666667rem;
  }
}
@media (min-width: 520px) {
  body .u-pr-6\:xs {
    padding-right: 6.6666666667rem;
  }
}
@media (min-width: 778px) {
  body .u-pr-6\:sm {
    padding-right: 6.6666666667rem;
  }
}
@media (min-width: 820px) {
  body .u-pr-6\:mobile {
    padding-right: 6.6666666667rem;
  }
}
@media (min-width: 960px) {
  body .u-pr-6\:md {
    padding-right: 6.6666666667rem;
  }
}
@media (min-width: 1140px) {
  body .u-pr-6\:lg {
    padding-right: 6.6666666667rem;
  }
}

.u-pr-7 {
  padding-right: 8.3333333333rem;
}
@media (min-width: 370px) {
  body .u-pr-7\:ss {
    padding-right: 8.3333333333rem;
  }
}
@media (min-width: 520px) {
  body .u-pr-7\:xs {
    padding-right: 8.3333333333rem;
  }
}
@media (min-width: 778px) {
  body .u-pr-7\:sm {
    padding-right: 8.3333333333rem;
  }
}
@media (min-width: 820px) {
  body .u-pr-7\:mobile {
    padding-right: 8.3333333333rem;
  }
}
@media (min-width: 960px) {
  body .u-pr-7\:md {
    padding-right: 8.3333333333rem;
  }
}
@media (min-width: 1140px) {
  body .u-pr-7\:lg {
    padding-right: 8.3333333333rem;
  }
}

.u-fullwidth {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
}

.fullwidth {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
}

.u-max-column {
  max-width: 1000px;
}

.u-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.middle-decoration {
  position: relative;
}
.middle-decoration span {
  background-color: #d8d8d8;
  position: relative;
  z-index: 2;
  padding-left: 0.5555555556rem;
  padding-right: 0.5555555556rem;
}
.middle-decoration:before {
  content: "";
  width: 160px;
  height: 1px;
  background-color: #ea3544;
  left: calc(50% - 80px);
  top: 50%;
  position: absolute;
}

.text-center {
  text-align: center;
}
@media (min-width: 370px) {
  body .text-center\:ss {
    text-align: center;
  }
}
@media (min-width: 520px) {
  body .text-center\:xs {
    text-align: center;
  }
}
@media (min-width: 778px) {
  body .text-center\:sm {
    text-align: center;
  }
}
@media (min-width: 820px) {
  body .text-center\:mobile {
    text-align: center;
  }
}
@media (min-width: 960px) {
  body .text-center\:md {
    text-align: center;
  }
}
@media (min-width: 1140px) {
  body .text-center\:lg {
    text-align: center;
  }
}

.text-right {
  text-align: right;
}
@media (min-width: 370px) {
  body .text-right\:ss {
    text-align: right;
  }
}
@media (min-width: 520px) {
  body .text-right\:xs {
    text-align: right;
  }
}
@media (min-width: 778px) {
  body .text-right\:sm {
    text-align: right;
  }
}
@media (min-width: 820px) {
  body .text-right\:mobile {
    text-align: right;
  }
}
@media (min-width: 960px) {
  body .text-right\:md {
    text-align: right;
  }
}
@media (min-width: 1140px) {
  body .text-right\:lg {
    text-align: right;
  }
}

.font-bold {
  font-weight: bold;
}

.font-semibold {
  font-weight: 500;
}
/*# sourceMappingURL=maps/application.css.map */
