.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: 100vh;
  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;
}
.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 {
  width: 100%;
  height: 100%;
  max-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.glitch .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) {
  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) {
  background-color: var(--blend-color-2);
  background-blend-mode: var(--blend-mode-2);
  animation-name: glitch-anim-2;
}
.glitch .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) {
  background-color: var(--blend-color-4);
  background-blend-mode: var(--blend-mode-4);
  animation-name: glitch-anim-4;
}
.glitch .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: yellow;
  background-blend-mode: screen;
  transform-origin: top left;
}
.hallucination-effect:after {
  background-color: cyan;
  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);
  }
}
@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;
  transition: all 0.5s;
  color: #b63b39;
}
@media (min-width: 800px) {
  button:hover {
    color: #331212;
  }
}

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

html {
  font-family: Plantagenet Cherokee, serif;
  font-weight: 300;
  line-height: 1.4;
  overflow-y: scroll;
  min-height: 100%;
  font-size: 18px;
}

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

*::selection {
  background-color: #b63b39;
  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: #b63b39;
  text-decoration: none;
  transition: all 0.5s;
}
@media (min-width: 800px) {
  a:hover {
    color: #331212;
  }
}

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

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

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

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

body {
  scrollbar-color: !important;
  scrollbar-width: 4px !important;
}

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

body::-webkit-scrollbar-thumb {
  outline: none;
}

[v-cloak] {
  display: none;
}

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

/* ==========================================================================
  * HELPERS
  * Helpers
  ========================================================================== */
#to-top {
  position: fixed;
  bottom: 20px;
  right: 40px;
  background-color: rgba(182, 59, 57, 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 {
  opacity: 0.6;
}
#to-top.top-visible:hover {
  opacity: 1;
}

.o-btn-primary {
  transition: background-color 0.5s, color 0.5s;
  display: inline-block;
  background-color: #b63b39;
  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: 16.6666666667rem;
  }
}
.o-btn-primary--short {
  min-width: auto;
}

.o-btn-secondary {
  display: inline-block;
  color: #b63b39;
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.7777777778rem;
}

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

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

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

.o-text-h4 {
  font-size: 1.8888888889rem;
  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.5555555556rem;
  }
}

.o-text-h5 {
  font-size: 1.2777777778rem;
  line-height: 1.3;
  line-height: 1.3;
  line-height: 1.3;
  font-weight: 300;
}
@media (max-width: 520px) {
  .o-text-h5 {
    font-size: 1.1111111111rem;
  }
}

.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: #b63b39;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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--background {
  color: #dedede;
}

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

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

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

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

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

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

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

.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 {
  display: flex;
  font-size: 2.6111111111rem;
  line-height: 1.2;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .o-heading-2 {
    font-size: 2.6111111111rem;
  }
}
@media (max-width: 520px) {
  .o-heading-2 {
    flex-direction: column;
  }
}
.o-heading-2:after {
  display: block;
  content: "";
  height: 8px;
  width: 30px;
  border-radius: 100px;
  margin-top: 1.6666666667rem;
  background-color: #331212;
}
@media (min-width: 520px) {
  .o-heading-2:after {
    flex: 0 0 30px;
  }
}
@media (min-width: 520px) {
  .o-heading-2:after {
    margin-left: 70px;
    margin-right: 70px;
  }
}
@media (max-width: 520px) {
  .o-heading-2:after {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.o-heading-3 {
  display: flex;
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 520px) {
  .o-heading-3 {
    font-size: 1.5555555556rem;
  }
}
.o-heading-3:after {
  display: block;
  content: "";
  height: 8px;
  width: 30px;
  border-radius: 100px;
  background-color: #331212;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.o-heading-4 {
  font-size: 1.2777777778rem;
  line-height: 1.3;
  line-height: 1.3;
}
@media (max-width: 520px) {
  .o-heading-4 {
    font-size: 1.1111111111rem;
  }
}

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

.o-heading-6 {
  font-size: 1.2777777778rem;
  line-height: 1.3;
  line-height: 1.3;
  line-height: 1.3;
  font-weight: 300;
  border-bottom: 1px solid #331212;
  padding-bottom: 0.5em;
}
@media (max-width: 520px) {
  .o-heading-6 {
    font-size: 1.1111111111rem;
  }
}

/* ==========================================================================
  * GOOBAL COMPONENTS
  * Componentes del web
  ========================================================================== */
/* ==========================================================================
  * COMPONENTS
  * Componentes del web
  ========================================================================== */
.c-answers {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
  margin-top: 2em;
  margin-bottom: 2em;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.c-answer__title {
  font-size: 24px;
}
.c-answer__responses {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 0.5em;
}
.c-answer__responses button {
  color: #331212;
}
.c-answer__responses button:before {
  font-family: "FontAwesome";
  content: "\f046";
  content: "\f096";
  margin-right: 0.5em;
  width: 0.6em;
  display: inline-block;
}
.c-answer__responses button.active:before {
  content: "\f046";
}
.c-answer__notice {
  margin-top: 0.5em;
  display: inline-block;
  color: #fff;
  border-radius: 5px;
  padding: 0px 10px;
  background-color: #b63b39;
}

.c-boxinfos {
  margin-top: 3.3333333333rem;
  margin-bottom: 3.3333333333rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  grid-gap: 3.3333333333rem;
  align-items: center;
}
@media (max-width: 520px) {
  .c-boxinfos {
    margin-top: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-boxinfos {
    margin-bottom: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-boxinfos {
    grid-template-columns: 1fr;
    grid-gap: 1.6666666667rem;
  }
}
@media (min-width: 520px) {
  .c-boxinfos__intro {
    grid-column: 2/3;
  }
  .c-boxinfos__boxes {
    grid-column: 1/2;
  }
}
.c-boxinfos__boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.6666666667rem;
}
@media (max-width: 520px) {
  .c-boxinfos__boxes {
    grid-gap: 0.8333333333rem;
  }
}

.c-boxinfo {
  width: 100%;
  aspect-ratio: 3/2;
  background-color: #331212;
  background-repeat: no-repeat;
  background-position: 20px 20px;
  color: #fff;
  border-radius: 10px;
  text-align: left;
}
@media (max-width: 520px) {
  .c-boxinfo {
    background-size: 30px auto;
    aspect-ratio: 1/1;
    height: 100%;
  }
}
.c-boxinfo:hover {
  color: #fff;
  background-color: #b63b39;
}
.c-boxinfo__title {
  position: relative;
  top: 20%;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1.2777777778rem;
  line-height: 1.3;
  line-height: 1.3;
}
@media (max-width: 520px) {
  .c-boxinfo__title {
    font-size: 1.1111111111rem;
  }
}
@media (max-width: 520px) {
  .c-boxinfo__title {
    font-size: 0.8888888889rem;
  }
}

.c-boxinfos-texts {
  background-color: #dedede;
  margin-left: -3000px;
  margin-right: -3000px;
  padding-left: 3000px;
  padding-right: 3000px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-gap: 3.3333333333rem;
}
@media (max-width: 520px) {
  .c-boxinfos-texts {
    padding-top: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-boxinfos-texts {
    padding-bottom: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-boxinfos-texts {
    grid-template-columns: 1fr;
  }
}
.c-boxinfos-texts .c-boxinfo-text {
  scroll-margin-top: 5rem;
}
.c-boxinfos-texts .c-boxinfo-text__title {
  font-size: 1.2777777778rem;
  line-height: 1.3;
  line-height: 1.3;
  margin-bottom: 0.6em;
}
@media (max-width: 520px) {
  .c-boxinfos-texts .c-boxinfo-text__title {
    font-size: 1.1111111111rem;
  }
}

.e-menu-toggler {
  z-index: 20;
  position: relative;
}
.e-menu-toggler__bars {
  width: 1.8888888889rem;
  height: 1.8888888889rem;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.e-menu-toggler__bars__item {
  height: 3px;
  background-color: #b63b39;
  margin: 2px 0;
  width: calc(100% - 10px);
  transition: transform 0.5s;
  border-radius: 2100px;
}
.e-menu-toggler.active .e-menu-toggler__bars__item:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: 2px 6px;
}
.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) {
  transform-origin: 4px -2px;
  transform: rotate(-45deg);
}

.c-donations-index {
  display: grid;
  grid-template-columns: 40% 1fr;
  grid-gap: 3.3333333333rem;
}
@media (max-width: 520px) {
  .c-donations-index {
    grid-template-columns: 1fr;
  }
}
.c-donations-index__map {
  width: 100%;
}

.c-donations-map {
  width: 100%;
  height: 500px;
}

.c-faqs {
  margin-top: 3.3333333333rem;
  margin-bottom: 3.3333333333rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.6666666667rem;
}
@media (max-width: 520px) {
  .c-faqs {
    margin-top: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-faqs {
    margin-bottom: 1.6666666667rem;
  }
}

.c-faq {
  text-align: center;
}
.c-faq__title {
  cursor: pointer;
  font-size: 1.2777777778rem;
  line-height: 1.3;
  line-height: 1.3;
  margin-bottom: 0.3em;
}
@media (max-width: 520px) {
  .c-faq__title {
    font-size: 1.1111111111rem;
  }
}
.active .c-faq__title {
  color: #b63b39;
}
.c-faq__body {
  display: none;
}
.active .c-faq__body {
  animation: toggle 0.5s forwards;
  opacity: 0;
  display: block;
}

@keyframes toggle {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-footer-wrapper {
  background-color: #111;
  color: #fff;
  padding-top: 2.2222222222rem;
}
.c-footer-wrapper a {
  transition: color 0.5s;
  color: #fff;
}
@media (min-width: 800px) {
  .c-footer-wrapper a:hover {
    color: #b63b39;
  }
}
@media (max-width: 520px) {
  .c-footer-wrapper {
    padding-top: 0px;
  }
}

.c-footer {
  display: flex;
  justify-content: center;
}
@media (max-width: 520px) {
  .c-footer {
    flex-direction: column;
    align-items: center;
  }
}
.c-footer__col {
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 520px) {
  .c-footer__col {
    margin-left: 0px;
  }
}
@media (max-width: 520px) {
  .c-footer__col {
    margin-right: 0px;
  }
}
@media (max-width: 520px) {
  .c-footer__col {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.c-footer__col h3 {
  text-transform: uppercase;
  margin-bottom: 1em;
}
@media (max-width: 520px) {
  .c-footer__col h3 {
    text-align: center;
  }
}
.c-footer__col nav ul {
  display: flex;
  flex-direction: column;
}
@media (max-width: 520px) {
  .c-footer__col nav ul {
    align-items: center;
  }
}

.c-footer-data {
  display: flex;
}
.c-footer-data:not(:last-child) {
  margin-bottom: 0.5em;
}
.c-footer-data__icon {
  flex: 0 0 20px;
  text-align: center;
  margin-right: 1em;
}
.c-footer-data__text {
  font-size: 14px;
}

.c-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
@media (max-width: 520px) {
  .c-bottom {
    flex-direction: column;
    align-items: stretch;
  }
}
.c-bottom > div {
  margin-left: 20px;
  margin-right: 20px;
}
.c-bottom__copy {
  font-size: 12px;
}
@media (max-width: 520px) {
  .c-bottom__copy {
    order: 2;
    margin-top: 10px;
    text-align: center;
  }
}
.c-bottom__nav ul {
  display: flex;
}
.c-bottom__nav ul li {
  font-size: 14px;
  margin-left: 10px;
  margin-right: 10px;
}
@media (max-width: 520px) {
  .c-bottom__nav ul li {
    margin-left: 0px;
  }
}
@media (max-width: 520px) {
  .c-bottom__nav ul li {
    margin-right: 0px;
  }
}
@media (max-width: 520px) {
  .c-bottom__nav ul {
    flex-direction: column;
    align-items: center;
  }
}

.c-form .form-fields, .b-form .form-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.6666666667rem 1.6666666667rem;
}
.c-form .form-fields:not(:last-child), .b-form .form-fields:not(:last-child) {
  margin-bottom: 1.6666666667rem;
}
@media (max-width: 520px) {
  .c-form .form-fields, .b-form .form-fields {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-form .input, .b-form .input {
  margin-bottom: 1em;
}
.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, .b-form .input > input[type=text],
.b-form .input > input[type=email],
.b-form .input > input[type=tel],
.b-form .input > select,
.b-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, .b-form .input > input[type=text],
.b-form .input > input[type=email],
.b-form .input > input[type=tel],
.b-form .input > select {
  padding: 0.5em 1em;
  border: none;
  border: 1px solid #d8d8d8;
}
.c-form .input > textarea, .b-form .input > textarea {
  padding: 0.5em 0.5em;
  border: 1px solid #d8d8d8;
}
.c-form .input.textarea, .b-form .input.textarea {
  grid-column: 1/3;
}
.c-form .input.checkbox input[type=checkbox], .b-form .input.checkbox input[type=checkbox] {
  margin-right: 0.5em;
}

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

.form-submit {
  margin-top: 1.6666666667rem;
  margin-bottom: 1.6666666667rem;
}
.form-submit button {
  transition: background-color 0.5s, color 0.5s;
  display: inline-block;
  background-color: #b63b39;
  color: #fff;
  font-weight: 700;
  max-width: 100%;
  padding: 0.4em 1em;
  font-size: 0.8888888889rem;
  text-align: center;
}
@media (min-width: 520px) {
  .form-submit button {
    min-width: 16.6666666667rem;
  }
}
.form-submit button--short {
  min-width: auto;
}

.recaptcha-containter {
  margin-top: 1.6666666667rem;
}

.c-header-block-wrapper {
  margin-top: -5.5555555556rem;
  background-color: #b63b39;
  position: relative;
  padding-bottom: 2.7777777778rem;
  z-index: 2;
}
@media (max-width: 520px) {
  .c-header-block-wrapper {
    padding-bottom: 1.6666666667rem;
  }
}

.c-header-block-back {
  padding-top: 2.7777777778rem;
  padding-bottom: 2.7777777778rem;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  mix-blend-mode: multiply;
  background-position: center -200px;
  filter: grayscale(100%);
  z-index: 1;
}
@media (max-width: 520px) {
  .c-header-block-back {
    padding-top: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-header-block-back {
    padding-bottom: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-header-block-back {
    background-position: center bottom;
    background-size: cover;
  }
}

.c-header-block {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 5.5555555556rem;
  color: #fff;
  height: 13.8888888889rem;
  max-width: 900px;
}
@media (max-width: 520px) {
  .c-header-block {
    padding-top: 6.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-header-block {
    height: auto;
  }
}
@media (max-width: 520px) {
  .c-header-block {
    flex-direction: column;
  }
}
.c-header-block__title {
  font-size: 2.6111111111rem;
  line-height: 1.08;
  line-height: 1.08;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
}
@media (max-width: 520px) {
  .c-header-block__title {
    font-size: 1.5555555556rem;
  }
}
@media (max-width: 520px) {
  .c-header-block__title {
    flex-direction: column;
  }
}
.c-header-block__title:after {
  display: block;
  content: "";
  height: 8px;
  width: 50px;
  border-radius: 100px;
  background-color: #fff;
}
@media (min-width: 520px) {
  .c-header-block__title:after {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media (max-width: 520px) {
  .c-header-block__title:after {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.c-header-block__body {
  text-align: center;
  max-width: 400px;
}

.c-header-wrapper {
  position: relative;
  z-index: 4;
}
.c-header-wrapper.sticking {
  width: 100%;
  background-color: #b63b39;
}

.c-header {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr auto auto;
  align-items: center;
  justify-items: end;
  grid-auto-columns: auto;
  height: 5.5555555556rem;
}
.sticking .c-header {
  height: 3.8888888889rem;
  grid-template-columns: 150px 1fr auto auto;
}
.c-header__logo {
  justify-self: start;
  width: 100%;
}

.c-navmain,
.c-navlangs {
  font-family: Myriad Pro, sans-serif;
}
@media (max-width: 520px) {
  .c-navmain,
.c-navlangs {
    display: none;
  }
}
.c-navmain ul,
.c-navlangs ul {
  display: flex;
}
.c-navmain ul li a,
.c-navmain ul li span,
.c-navlangs ul li a,
.c-navlangs ul li span {
  position: relative;
  padding-left: 0.8333333333rem;
  padding-right: 0.8333333333rem;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
}
.c-navmain ul li a:after,
.c-navmain ul li span:after,
.c-navlangs ul li a:after,
.c-navlangs ul li span:after {
  content: "";
  width: 100%;
  transform: scaleX(0);
  height: 3px;
  position: absolute;
  background-color: #fff;
  bottom: -12px;
  left: 0;
  transition: all 0.5s;
  transform-origin: center;
}
.c-navmain ul li a:hover:after,
.c-navlangs ul li a:hover:after {
  transform: scaleX(1);
}
.c-navmain ul li span:after,
.c-navlangs ul li span:after {
  transform: scaleX(1);
}

.c-dropnav {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  position: absolute;
  background-color: #fff;
  top: 100%;
  transform: translateY(-140%);
  transition: all 0.5s;
  opacity: 0;
  z-index: 3;
}
.c-dropnav.active {
  transform: translateY(0);
  opacity: 1;
}
.c-dropnav ul li {
  text-align: center;
  display: block;
}
.c-dropnav ul li a {
  display: block;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #331212;
  border-bottom: 1px solid #331212;
}
.c-dropnav ul li a:hover {
  background-color: #b63b39;
  color: #fff;
}

.c-headerhome-wrapper {
  margin-top: -5.5555555556rem;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 2;
  background-color: #b63b39;
  height: 100vh;
  padding-top: 8.3333333333rem;
  padding-bottom: 8.3333333333rem;
}
@media (max-width: 520px) {
  .c-headerhome-wrapper {
    padding-top: 6.1111111111rem;
  }
}
@media (max-width: 520px) {
  .c-headerhome-wrapper {
    padding-bottom: 6.1111111111rem;
  }
}

.c-headerhome-wrapper-back {
  padding-top: 2.7777777778rem;
  padding-bottom: 2.7777777778rem;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 1;
  background-position: center center;
  filter: grayscale(100%);
}

.c-headerhome {
  position: relative;
  z-index: 2;
}
.c-headerhome__donalinks, .c-headerhome__links {
  display: flex;
  align-items: center;
}
@media (max-width: 520px) {
  .c-headerhome__donalinks, .c-headerhome__links {
    flex-direction: column;
  }
}
.c-headerhome__title {
  font-size: 2.6111111111rem;
  line-height: 1.08;
  line-height: 1.08;
  color: #fff;
  padding-top: 2.7777777778rem;
  padding-bottom: 2.7777777778rem;
  max-width: 38.8888888889rem;
}
@media (max-width: 520px) {
  .c-headerhome__title {
    font-size: 1.5555555556rem;
  }
}
@media (max-width: 520px) {
  .c-headerhome__title {
    padding-top: 1.1111111111rem;
  }
}
@media (max-width: 520px) {
  .c-headerhome__title {
    padding-bottom: 1.1111111111rem;
  }
}

.c-homelink-banner img {
  max-width: 250px;
}

.c-homelink {
  width: 16.6666666667rem;
  height: 11.1111111111rem;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.8);
  background-size: 40px;
  background-position: 1.6666666667rem 2.2222222222rem;
  text-transform: uppercase;
  border-radius: 10px;
  font-size: 1.2777777778rem;
  line-height: 1.3;
  line-height: 1.3;
}
.c-homelink:hover {
  background-color: white;
}
@media (max-width: 520px) {
  .c-homelink {
    font-size: 1.1111111111rem;
  }
}
@media (max-width: 520px) {
  .c-homelink {
    width: 100%;
    height: auto;
    padding: 20px 20px 20px 100px;
    background-position: 1.6666666667rem 0.8333333333rem;
  }
  .c-homelink:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (min-width: 520px) {
  .c-homelink {
    padding-top: 5.5555555556rem;
    padding-left: 1.6666666667rem;
    padding-right: 3.8888888889rem;
  }
  .c-homelink:not(:last-child) {
    margin-right: 1.1111111111rem;
  }
  .c-homelink.-rounded {
    border-radius: 100%;
    height: 16.6666666667rem;
    padding-top: 8.3333333333rem;
    padding-left: 2.2222222222rem;
    background-position: 2.2222222222rem 3.8888888889rem;
  }
  .c-homelink.-rounded img {
    width: 100%;
  }
  .c-homelink.-rounded.-small {
    width: 11.1111111111rem;
    height: 11.1111111111rem;
    padding-top: 3.8888888889rem;
  }
}
.c-homelink span {
  position: relative;
}
.c-homelink span:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 5px;
  border-radius: 100px;
  background-color: #b63b39;
  right: 0;
  bottom: -15px;
}

.c-infobox {
  padding-top: 3.8888888889rem;
  padding-bottom: 3.8888888889rem;
  display: flex;
  max-width: 1000px;
}
@media (max-width: 520px) {
  .c-infobox {
    padding-top: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-infobox {
    padding-bottom: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-infobox {
    flex-direction: column;
  }
}
.c-infobox__title {
  display: flex;
  font-size: 2.6111111111rem;
  line-height: 1.2;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .c-infobox__title {
    font-size: 2.6111111111rem;
  }
}
@media (max-width: 520px) {
  .c-infobox__title {
    flex-direction: column;
  }
}
.c-infobox__title:after {
  display: block;
  content: "";
  height: 8px;
  width: 30px;
  border-radius: 100px;
  margin-top: 1.6666666667rem;
  background-color: #331212;
}
@media (min-width: 520px) {
  .c-infobox__title:after {
    flex: 0 0 30px;
  }
}
@media (min-width: 520px) {
  .c-infobox__title:after {
    margin-left: 70px;
    margin-right: 70px;
  }
}
@media (max-width: 520px) {
  .c-infobox__title:after {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 520px) {
  .c-infobox__body.-columns-2 {
    columns: 2;
    column-gap: 1.6666666667rem;
  }
}

.c-infos-wrapper {
  background-color: #dedede;
  padding-top: 2.7777777778rem;
  padding-bottom: 2.7777777778rem;
}
@media (max-width: 520px) {
  .c-infos-wrapper {
    padding-top: 1.1111111111rem;
  }
}
@media (max-width: 520px) {
  .c-infos-wrapper {
    padding-bottom: 1.1111111111rem;
  }
}

.c-infos {
  display: flex;
}
@media (max-width: 520px) {
  .c-infos {
    flex-direction: column;
  }
}
.c-infos__title {
  display: flex;
  font-size: 2.6111111111rem;
  line-height: 1.2;
  line-height: 1.2;
  flex: 0 0 200px;
}
@media (max-width: 520px) {
  .c-infos__title {
    font-size: 2.6111111111rem;
  }
}
@media (max-width: 520px) {
  .c-infos__title {
    flex-direction: column;
  }
}
.c-infos__title:after {
  display: block;
  content: "";
  height: 8px;
  width: 30px;
  border-radius: 100px;
  margin-top: 1.6666666667rem;
  background-color: #331212;
}
@media (min-width: 520px) {
  .c-infos__title:after {
    flex: 0 0 30px;
  }
}
@media (min-width: 520px) {
  .c-infos__title:after {
    margin-left: 70px;
    margin-right: 70px;
  }
}
@media (max-width: 520px) {
  .c-infos__title:after {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.c-infos__infos {
  flex-grow: 1;
  display: grid;
  grid-gap: 1.6666666667rem 3.3333333333rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 520px) {
  .c-infos__infos {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.6666666667rem 0.8333333333rem;
  }
}
.c-infos .c-info {
  background-repeat: no-repeat;
  background-size: 2.2222222222rem;
  padding-left: 3.3333333333rem;
}
@media (max-width: 520px) {
  .c-infos .c-info {
    background-size: 1.6666666667rem;
    padding-left: 2.2222222222rem;
  }
}
.c-infos .c-info__title {
  font-size: 1.2777777778rem;
  line-height: 1.3;
  line-height: 1.3;
  margin-bottom: 0.3em;
}
@media (max-width: 520px) {
  .c-infos .c-info__title {
    font-size: 1.1111111111rem;
  }
}
.c-infos .c-info__body {
  font-size: 0.7777777778rem;
}

.c-levels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 6.6666666667rem;
  align-items: center;
}
@media (max-width: 520px) {
  .c-levels {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1.6666666667rem;
  }
}

.c-levels-icons__date {
  text-align: center;
  margin-bottom: 1.6666666667rem;
}
.c-levels-icons__date span {
  display: inline-block;
  border-bottom: 4px solid #b63b39;
  padding-bottom: 0.3em;
}
.c-levels-icons__icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.6666666667rem 3.3333333333rem;
  text-align: center;
}
@media (max-width: 520px) {
  .c-levels-icons__icons {
    grid-gap: 1.6666666667rem;
  }
}

.c-level-icon__title {
  font-size: 1.2777777778rem;
  line-height: 1.3;
  line-height: 1.3;
  margin-top: 0.8333333333rem;
}
@media (max-width: 520px) {
  .c-level-icon__title {
    font-size: 1.1111111111rem;
  }
}

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

.c-levels-info {
  display: flex;
}
.c-levels-info__image {
  flex: 0 0 30px;
  margin-right: 0.7em;
}
.c-levels-info__text {
  margin-top: 0.3em;
  font-size: 0.8888888889rem;
}

body.registers .section-header {
  background-color: #b63b39;
  text-align: center;
}
body.registers .section-title {
  float: none;
  background-color: #b63b39;
  text-align: center;
  width: auto;
}
body.registers .section-title h2 {
  font-size: 36px;
  font-weight: bold;
}
body.registers .section-subnav {
  display: none;
}

.register {
  color: #331212;
}

.register-title {
  text-transform: uppercase;
  color: #331212;
  text-align: center;
  font-weight: bold;
}

.register-success {
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  color: #48bd60;
  margin: 20px;
}
.register-success i {
  margin-right: 10px;
}

.register-city-info {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
}
.register-city-info__icon {
  color: #b63b39;
  font-size: 36px;
}
.register-city-info__text {
  margin-top: 10px;
  color: #331212;
}

.register-cities-wrapper {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 778px) {
  .register-cities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
  }
}
.register-cities ._city {
  text-align: center;
  width: 100%;
  flex-grow: 1;
  display: block;
  margin-bottom: 50px;
}
.register-cities ._city__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b63b39;
  height: 44px;
  overflow: hidden;
}
.register-cities ._city__icon i {
  font-size: 36px;
  line-height: 34px;
}
.register-cities ._city__icon i:before {
  line-height: 34px;
}
.register-cities ._city__icon i.icon-bus {
  font-size: 50px;
}
.register-cities ._city__title {
  text-transform: uppercase;
  color: #331212;
  font-weight: bold;
  font-size: 24px;
  margin: 20px 0px;
}
.register-cities ._city__links {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.register-cities ._city__links a {
  background-color: #b63b39;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 100px;
  padding: 10px 20px;
  margin-bottom: 10px;
  color: #fff;
}
.register-cities ._city__links a:hover {
  opacity: 0.5;
}
.register-cities ._city__links a i {
  margin-right: 5px;
}
.register-cities ._city__link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #b63b39;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 100px;
  padding: 10px 20px;
}
.register-cities ._city__link a {
  margin: 0px 10px;
  color: #fff;
}
.register-cities ._city__link a:hover {
  opacity: 0.5;
}
.register-cities ._city__link i {
  margin-right: 8px;
}

.register-calendar > * {
  text-align: left;
}
.register-calendar > div {
  margin-left: auto;
  margin-right: auto;
}

.register-form .vc-container {
  margin-left: auto;
  margin-right: auto;
  --blue-600: #dc2531;
}
.register-form .vc-grid-cell {
  margin-left: 20px;
}

.register-errors .error-message {
  display: inline-block;
  background-color: #990000;
  color: #fff;
  border-radius: 100px;
  padding: 0.4em 20px;
  font-size: 16px;
}
.register-errors .error-message:before {
  font-awesome: warning;
  margin-right: 8px;
}

#register-form,
.register-form-data {
  margin-left: auto;
  margin-right: auto;
}
#register-form ._button,
.register-form-data ._button {
  border: none;
  color: #fff;
  background-color: #b63b39;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 100px;
  padding: 10px 20px;
}
#register-form ._button i,
.register-form-data ._button i {
  margin-right: 10px;
}
#register-form .recaptcha-containter div,
.register-form-data .recaptcha-containter div {
  margin-left: auto;
  margin-right: auto;
}
#register-form input[type=checkbox],
.register-form-data input[type=checkbox] {
  margin-right: 10px;
}
#register-form label[for=accept],
.register-form-data label[for=accept] {
  font-weight: normal;
}

.register-form-data {
  max-width: 600px;
}

.register-hours {
  display: flex;
  flex-wrap: wrap;
}
.register-hours .input.text {
  flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}
.register-hours > div {
  border: 1px solid #e7e7e7;
  border-radius: 6px;
  text-align: center;
  margin: 5px;
  position: relative;
  width: 80px;
  height: 50px;
  overflow: hidden;
}
.register-hours > div > label {
  position: absolute;
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  transition: all 0.5s;
}
.register-hours > div > label:before {
  transition: all 0.5s;
  margin-left: -5px;
  color: #ccc;
  margin-right: 5px;
  font-awesome: circle-o;
}
.register-hours > div input[type=checkbox] {
  opacity: 0;
}
.register-hours > div input[type=checkbox]:disabled + label {
  opacity: 0.2;
}
.register-hours > div input[type=checkbox]:checked + label {
  background-color: #b63b39;
  color: #fff;
}
.register-hours > div input[type=checkbox]:checked + label:before {
  font-awesome: circle;
  color: #fff;
}

.register-notices {
  margin-left: -3000px;
  margin-right: -3000px;
  padding-left: 3000px;
  padding-right: 3000px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 40px;
  background-color: #ccc;
  display: flex;
  justify-content: center;
  color: #331212;
}
.register-notices__item {
  margin: 0px 50px;
  text-align: center;
}
@media (max-width: 520px) {
  .register-notices__item {
    margin: 0 10px;
  }
}
.register-notices__item__link {
  margin-top: 20px;
}
.register-notices__item__link a {
  display: block;
  border: 1px solid #fff;
  text-transform: uppercase;
  color: inherit;
  border-radius: 100px;
  padding: 5px 20px;
}
.register-notices__item__link a:hover {
  color: #fff;
  background-color: #331212;
  border-color: #331212;
}

.register-success-links {
  display: flex;
  justify-content: center;
}
@media (max-width: 520px) {
  .register-success-links {
    flex-direction: column;
  }
}
.register-success-links a {
  text-align: center;
  margin: 10px 20px;
  color: inherit;
  font-size: 16px;
  border-radius: 1000px;
  border: 1px solid #331212;
  padding: 5px 40px;
}
.register-success-links a:hover {
  background-color: #331212;
  color: #fff;
}

.calendar-register .fc-today {
  background-color: transparent !important;
}
.calendar-register .fc-day-grid-event.active {
  background-color: #48bd60 !important;
  border: none;
}
.calendar-register .fc-day-grid-event {
  cursor: pointer;
}
.calendar-register .fc-day-grid-event:hover {
  opacity: 0.8;
}

.swal-footer {
  display: flex;
  justify-content: center;
}

.register-visits {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.register-visits__item {
  display: inline-flex;
  justify-content: center;
  background: #ccc;
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 10px;
}
.register-visits__item span {
  margin-right: 30px;
}
.register-visits__item button {
  border: none;
  background-color: transparent;
}

.save-hour-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 10000;
}

.save-hour {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  width: 400px;
  height: 370px;
  padding: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-color: #fff;
  left: calc(50% - 200px);
  top: calc(50% - 150px);
}

.save-hour-close {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}

.register-visit {
  display: flex;
  justify-content: space-between;
  background-color: #e7e7e7;
  padding: 1em;
  margin: 0.5em 0px;
  font-size: 17px;
}
.register-visit > div {
  padding: 0px 10px;
}
.register-visit ._name {
  flex-grow: 1;
}
.register-visit ._icon {
  cursor: pointer;
}

.c-register-cancel-visits {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-register-cancel-visits > div {
  margin: 30px;
}

.c-towns {
  columns: 2;
}
.c-towns > div {
  page-break-inside: avoid;
  margin-bottom: 1.6666666667rem;
}

.c-town {
  position: relative;
}
.c-town:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 5px;
  border-radius: 50px;
  background-color: #b63b39;
  top: 0;
  left: -10px;
}
.c-town > div {
  display: flex;
}
.c-town > div i {
  flex: 0 0 20px;
  text-align: center;
  margin-right: 10px;
}
.c-town__title {
  text-transform: uppercase;
  color: #b63b39;
}
.c-town-infowindow .c-town__title {
  font-size: 16px;
}
.c-town__hour {
  font-size: 16px;
}
.c-town-infowindow .c-town__hour {
  font-size: 14px;
}
.c-town__link {
  font-size: 16px;
}
.c-town-infowindow .c-town__link {
  font-size: 14px;
}

.c-town-infowindow {
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.2);
  padding: 20px 20px;
  width: 300px;
  line-height: 1.4;
}

.c-social-wrapper {
  background-color: #b63b39;
  position: relative;
  padding-top: 2.7777777778rem;
  padding-bottom: 2.7777777778rem;
}
@media (max-width: 520px) {
  .c-social-wrapper {
    padding-top: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-social-wrapper {
    padding-bottom: 1.6666666667rem;
  }
}

.c-social-back {
  padding-top: 2.7777777778rem;
  padding-bottom: 2.7777777778rem;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  mix-blend-mode: multiply;
  opacity: 1;
  background-position: center -200px;
  filter: grayscale(100%);
}
@media (max-width: 520px) {
  .c-social-back {
    padding-top: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-social-back {
    padding-bottom: 1.6666666667rem;
  }
}
@media (max-width: 520px) {
  .c-social-back {
    background-position: center bottom;
    background-size: cover;
  }
}

.c-social {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 8.3333333333rem 27.7777777778rem;
  grid-template-areas: "logo title" "logo links";
  justify-content: center;
  align-items: center;
}
@media (max-width: 520px) {
  .c-social {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    align-items: center;
    grid-template-areas: "logo" "title" "links";
  }
}
.c-social__logo {
  grid-area: logo;
}
@media (max-width: 520px) {
  .c-social__logo {
    text-align: center;
  }
  .c-social__logo img {
    width: 100px;
  }
}
.c-social__title {
  grid-area: title;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}
.c-social__title span {
  position: relative;
}
.c-social__title span:after {
  position: absolute;
  left: 15px;
  bottom: -10px;
  content: "";
  height: 2px;
  width: calc(100% - 30px);
  background-color: #fff;
}
.c-social__links {
  grid-area: links;
}
.c-social__links ul {
  display: flex;
  justify-content: center;
}
.c-social__links ul li {
  margin-left: 0.5555555556rem;
  margin-right: 0.5555555556rem;
}
.c-social__links ul li a {
  color: #b63b39;
  background-color: #fff;
  border-radius: 100%;
  display: block;
  width: 2.7777777778rem;
  height: 2.7777777778rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6666666667rem;
}

.c-text h2,
.b-text h2 {
  display: flex;
  font-size: 2.6111111111rem;
  line-height: 1.2;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .c-text h2,
.b-text h2 {
    font-size: 2.6111111111rem;
  }
}
@media (max-width: 520px) {
  .c-text h2,
.b-text h2 {
    flex-direction: column;
  }
}
.c-text h2:after,
.b-text h2:after {
  display: block;
  content: "";
  height: 8px;
  width: 30px;
  border-radius: 100px;
  margin-top: 1.6666666667rem;
  background-color: #331212;
}
@media (min-width: 520px) {
  .c-text h2:after,
.b-text h2:after {
    flex: 0 0 30px;
  }
}
@media (min-width: 520px) {
  .c-text h2:after,
.b-text h2:after {
    margin-left: 70px;
    margin-right: 70px;
  }
}
@media (max-width: 520px) {
  .c-text h2:after,
.b-text h2:after {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.c-text h3,
.b-text h3 {
  display: flex;
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  flex-direction: column;
  text-align: center;
  margin-top: 0.8em;
}
@media (max-width: 520px) {
  .c-text h3,
.b-text h3 {
    font-size: 1.5555555556rem;
  }
}
.c-text h3:after,
.b-text h3:after {
  display: block;
  content: "";
  height: 8px;
  width: 30px;
  border-radius: 100px;
  background-color: #331212;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 520px) {
  .c-text h3,
.b-text h3 {
    margin-top: 0.4em;
  }
}
.c-text h4,
.b-text h4 {
  font-size: 1.2777777778rem;
  line-height: 1.3;
  line-height: 1.3;
  margin-bottom: 0.8em;
}
@media (max-width: 520px) {
  .c-text h4,
.b-text h4 {
    font-size: 1.1111111111rem;
  }
}
.c-text h5,
.b-text h5 {
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #331212;
  padding-bottom: 0.5em;
  margin-bottom: 0.8em;
}
@media (max-width: 520px) {
  .c-text h5,
.b-text h5 {
    font-size: 1.5555555556rem;
  }
}
.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: #b63b39;
  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: #b63b39;
  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;
}

[v-cloak] {
  display: none;
}

.c-custom-links {
  background-color: #331212;
  margin-left: -3000px;
  margin-right: -3000px;
  padding-left: 3000px;
  padding-right: 3000px;
}
.c-custom-links.-columns {
  padding-top: 1.6666666667rem;
  padding-bottom: 1.6666666667rem;
}
.c-custom-links .-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3.3333333333rem;
}
.c-custom-links__title {
  display: flex;
  font-size: 1.8888888889rem;
  line-height: 1.2;
  line-height: 1.2;
  flex-direction: column;
  text-align: center;
  color: #fff;
}
@media (max-width: 520px) {
  .c-custom-links__title {
    font-size: 1.5555555556rem;
  }
}
.c-custom-links__title:after {
  display: block;
  content: "";
  height: 8px;
  width: 30px;
  border-radius: 100px;
  background-color: #331212;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.c-custom-links__title:after {
  background-color: #fff;
}

.c-custom-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.-columns .c-custom-link {
  flex-direction: column;
}
.c-custom-link__text {
  color: #fff;
  padding-top: 1.1111111111rem;
  padding-bottom: 1.1111111111rem;
}
.c-custom-link__link {
  background-color: #fff;
  color: #331212;
  border: 1px solid #fff;
  padding: 0.4em 1em;
}
.c-custom-link__link:hover {
  background-color: #331212;
  color: #fff;
}
.-rows .c-custom-link__link {
  margin-left: 1em;
}

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

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

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

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

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

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

.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: #b63b39;
}

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

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

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

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

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

.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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  .hide-mobile {
    display: none !important;
  }
}

.show-mobile {
  display: none;
}
@media (max-width: 800px) {
  .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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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: 800px) {
  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%;
}

.middle-decoration {
  position: relative;
}
.middle-decoration span {
  background-color: #dedede;
  position: relative;
  z-index: 2;
  padding-left: 0.5555555556rem;
  padding-right: 0.5555555556rem;
}
.middle-decoration:before {
  content: "";
  width: 160px;
  height: 1px;
  background-color: #b63b39;
  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: 800px) {
  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: 800px) {
  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 */
