@charset "UTF-8";
:root {
  --brand-color: #E290FF;
  --brand-light: #CFBDFF;
  --bg-color: #171717;
  --accent-dark-color: #212529;
  --accent-light-color: #495057;
  --site-banner-bg: #171717;
  --site-banner-text: white;
  --gradient-1: white;
  --subtle-color: #bdbdbd;
  --light-color: #fff;
  --dark-color: #23272a;
  --font-size-normal: 1.6rem;
  --font-size-medium: clamp(1.6rem, 2vw, 2rem);
  --font-size-large: clamp(6rem, 4vw, 4rem);
  --number-of-columns: 4;
  --page-gutter: 2.4rem;
  --headline-font: "Bebas Neue", sans-serif;
  --body-font: "Montserrat", sans-serif;
}
@media screen and (min-width: 48em) {
  :root {
    --number-of-columns: 8;
    --page-gutter: 4rem;
  }
}
@media screen and (min-width: 64em) {
  :root {
    --number-of-columns: 12;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--body-font);
  font-size: var(--font-size-normal);
  line-height: 1.15;
  color: var(--light-color);
  font-weight: 300;
  background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--headline-font);
  font-weight: normal;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img,
picture {
  display: block;
  max-width: 100%;
}

input,
button {
  font: inherit;
  background-color: transparent;
  border: none;
}

.adaptive-font {
  text-align: center;
}
.adaptive-font--medium {
  font-size: var(--font-size-medium);
  line-height: 140%;
}
.adaptive-font--large {
  font-size: var(--font-size-large);
}

.btn {
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-transition-property: background-color, color, -webkit-box-shadow;
  transition-property: background-color, color, -webkit-box-shadow;
  transition-property: background-color, box-shadow, color;
  transition-property: background-color, box-shadow, color, -webkit-box-shadow;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  white-space: nowrap;
  font-weight: bold;
}
.btn:hover {
  -webkit-box-shadow: 0 0.8rem 1.5rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.8rem 1.5rem rgba(0, 0, 0, 0.2);
}
.btn--action {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.btn--light {
  background-color: var(--light-color);
  color: var(--dark-color);
}
.btn--small {
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 400;
  margin-right: 1.6rem;
  padding: 0.7rem 1.6rem;
}
.btn--brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--brand-color);
  margin-right: 0;
}
.btn--brand:hover {
  background-color: #7983f5;
}
.btn__icon {
  margin-right: 0.8rem;
}
.btn--large {
  font-size: 2rem;
  padding: 1.6rem 3.2rem;
}
.btn--dark {
  background-color: var(--dark-color);
}
.btn--close {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  margin: -0.8rem;
  padding: 0.8rem;
  z-index: 999;
}
@media screen and (min-width: 64em) {
  .btn--small {
    margin-right: 0;
  }
  :is(.btn--open, .btn--close) {
    display: none;
  }
}

.btn-group {
  margin-top: 2.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  gap: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.btn-group-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.btn-group-btn-pill {
  background-color: var(--brand-color);
  border-radius: 2.4rem;
  padding-inline: 0.8rem;
  margin-left: 1rem;
  font-size: 1.2rem;
  line-height: 2.4rem;
  font-weight: 300;
}

.container {
  max-width: 126rem;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.row {
  display: grid;
  grid-template-columns: repeat(var(--number-of-columns), 1fr);
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}
.row > * {
  grid-column: span var(--number-of-columns);
}

header {
  background-color: var(--dark-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 8rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.nav__logo-image {
  display: block;
}
.nav__btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 20px;
}
.nav__backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 997;
}
.nav__menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  width: 33rem;
  background-color: var(--light-color);
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
  padding: 2.4rem 4.8rem 12rem 2.4rem;
  -webkit-transform: translateX(33rem);
  transform: translateX(33rem);
}
.nav__menu--active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.15s;
  transition: -webkit-transform 0.15s;
  transition: transform 0.15s;
  transition: transform 0.15s, -webkit-transform 0.15s;
}
.nav__menu-divider {
  height: 1px;
  background-color: #ebedef;
  margin-top: 2.4rem;
  margin-bottom: 1.6rem;
}
.nav__menu-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.4rem;
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.nav__list-link {
  display: block;
  padding: 0.8rem 1.6rem;
  color: var(--dark-color);
  font-weight: normal;
  text-transform: uppercase;
  font-size: 2rem;
}
@media screen and (min-width: 64em) {
  .nav__menu {
    position: initial;
    width: initial;
    background-color: transparent;
    border-radius: initial;
    padding: initial;
    -webkit-transform: initial;
    transform: initial;
  }
  :is(.nav__menu-logo, .nav__menu-divider, .nav__menu-footer) {
    display: none;
  }
  .nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .nav__list-link {
    padding: 1rem;
    margin-inline: 1rem;
    color: var(--light-color);
    font-weight: 600;
  }
  .nav__list-link:hover {
    color: var(--brand-light);
  }
}

.active-link {
  color: var(--brand-light);
}

.pace .pace-progress {
  background: var(--brand-light);
  background-color: red;
}

.hide-mobi, .hide-desktop {
  display: none;
}

@media screen and (max-width: 48em) {
  .show-mobi {
    display: block;
  }
}

@media screen and (min-width: 48em) {
  .show-desktop {
    display: block;
  }
}

section.hero {
  padding: 0;
}

.showcase {
  background-color: var(--bg-color);
  position: relative;
}
.showcase img {
  width: 100%;
}
.showcase__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 320px;
  margin-inline: auto;
  z-index: 1;
  max-width: 320px;
  margin-inline: auto;
}
@media screen and (min-width: 48em) {
  .showcase__content {
    max-width: 100%;
  }
}
.showcase__content h1 {
  font-size: 6.5rem;
  line-height: 1;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 48em) {
  .showcase__content h1 {
    font-size: 6.5rem;
    text-align: center;
  }
}
@media screen and (min-width: 68em) {
  .showcase__content h1 {
    font-size: 10rem;
  }
}
.showcase__images {
  max-width: 1400px;
  margin-inline: auto;
  margin-top: 5rem;
  margin-bottom: 5rem;
  overflow: hidden;
}

.site-notice {
  background-color: var(--site-banner-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.site-notice p {
  color: var(--site-banner-text);
  font-weight: normal;
  display: block;
  padding: 1rem 1rem;
  font-size: 12px;
}
@media screen and (min-width: 48em) {
  .site-notice p {
    font-size: var(--font-size-medium);
  }
}
.site-notice button.close {
  margin-right: 1.5rem;
  padding-left: 1.5rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-notice a {
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}
.site-notice .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.site-notice .content img {
  margin-bottom: 0;
  margin-top: auto;
}

.social {
  background: var(--accent-dark-color);
  padding: 1.5rem 0.5rem;
}
.social .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section__intro p {
  max-width: 580px;
  margin-inline: auto;
  letter-spacing: 1px;
  margin-top: 2rem;
}
.section__intro h2 {
  line-height: 1;
}

.music-cards {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.music-cards img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .music-cards {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.music-cards__album-date {
  color: var(--subtle-color);
  display: block;
  margin-top: 0.3rem;
}
.music-cards__btn-group {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.music-cards__btn-group .btn {
  width: 100%;
}
@media screen and (min-width: 580px) {
  .music-cards__btn-group .btn {
    width: initial;
  }
}
.music-cards p {
  line-height: 1.7;
}
.music-cards h3 {
  font-size: 4rem;
}
.music-cards p {
  font-size: 18px;
  margin-top: 2rem;
  margin-bottom: auto;
}
.music-cards__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 520px;
  margin: 1rem;
  margin-inline: auto;
  border-radius: 10px;
  background: var(--accent-dark-color);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .music-cards__card {
    max-width: 1000px;
    margin-bottom: 0;
    margin-top: 0;
    margin-inline: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .music-cards__card:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.music-cards__card:not(:first-child) {
  margin-top: 6rem;
}
.music-cards__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.music-cards__image, .music-cards__content {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .music-cards__image, .music-cards__content {
    width: 50%;
  }
}
.music-cards__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 3rem;
}

.about {
  background-color: white;
}
@media screen and (min-width: 48em) {
  .about {
    padding: 0;
  }
}
.about .content {
  max-width: 480px;
  margin-inline: auto;
}
@media screen and (min-width: 48em) {
  .about .content {
    padding-right: 2.7rem;
  }
}
.about .section__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media screen and (min-width: 48em) {
  .about .section__intro {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .about .section__intro > * {
    -webkit-box-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
  }
}
.about .section__intro h2, .about .section__intro p {
  text-align: center;
}
@media screen and (min-width: 48em) {
  .about .section__intro h2, .about .section__intro p {
    text-align: left;
  }
}
.about .section__intro h2 {
  color: var(--dark-color);
}
.about .section__intro p {
  color: var(--dark-color);
  line-height: 1.7;
}
.about img {
  margin: 0;
  width: 100%;
  max-width: 400px;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 48em) {
  .about img {
    max-width: 100%;
    margin-bottom: 0;
  }
}
.about .btn-group {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 48em) {
  .about .btn-group {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}

.videos {
  padding-bottom: 5rem;
}
@media screen and (min-width: 48em) {
  .videos {
    padding-bottom: 15rem;
  }
}
.videos .section__intro p {
  max-width: 100%;
}
.videos .swiper-button-next, .videos .swiper-button-prev {
  color: var(--brand-color);
}
.videos img.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  max-width: 25%;
}
.videos .swiper {
  margin-top: 3.5rem;
}
@media screen and (min-width: 48em) {
  .videos .swiper {
    margin-top: 5.5rem;
  }
}
.videos .swiper-wrapper {
  height: initial;
}
.videos .swiper-slide {
  -webkit-transform: scale(0.85) !important;
  transform: scale(0.85) !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.videos .swiper-slide .media {
  border-radius: 28px;
}
.videos .swiper-slide-active {
  -webkit-transform: scale(1) !important;
  transform: scale(1) !important;
}
.videos .swiper-slide-active .media {
  border: 3px solid var(--brand-color);
  height: auto;
}
.videos a[data-micromodal-trigger] {
  pointer-events: none;
}
.videos .swiper-slide-active a[data-micromodal-trigger] {
  pointer-events: all;
}
.videos .slider-vid {
  position: relative;
}
.videos .slider-vid .media {
  width: 100%;
}
@media (min-width: 1600px) {
  .videos .media-container {
    max-width: 1600px;
    margin-inline: auto;
  }
  .videos .media-container .swiper-button-next {
    right: 0;
  }
  .videos .media-container .swiper-button-prev {
    left: 0;
  }
}

.iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/**************************\
  Basic Modal Styles
\**************************/
.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}
.modal .modal__container div[data-micromodal-close] {
  width: 100%;
  height: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  cursor: pointer;
  background: transparent !important;
}
.modal .modal__container div[data-micromodal-close] > svg {
  width: 20px;
  height: 20px;
  background: white !important;
  fill: black;
  color: black;
  padding: 10px;
  margin: 5px;
  border-radius: 4px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.modal__container {
  /* padding: 30px; */
  max-width: 1000px;
  width: 100%;
  height: auto;
  border-radius: 4px;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
    transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
    transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
  z-index: 99999;
  position: relative;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pace-running {
  overflow: hidden;
}

.pace {
  position: fixed;
  z-index: 2000;
  top: 50%;
  left: 50%;
  background-color: var(--brand-light);
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  pointer-events: all;
}

.pace.pace-inactive {
  display: none;
}

div[data-progress-text] {
  -webkit-transform: scale(1.5) !important;
  transform: scale(1.5) !important;
}
div[data-progress-text]::after {
  display: block;
  position: relative;
  content: attr(data-progress-text);
  font-size: 18px;
  line-height: 1;
  text-align: center;
  font-weight: bold;
  color: black;
  margin-top: 2rem;
}

.pace img {
  -webkit-animation: wave-animation 3s infinite;
  animation: wave-animation 3s infinite;
}

.pace-progress {
  display: none;
}

.pace .pace-progress:after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: attr(data-progress-text);
  font-size: 18px;
  line-height: 1;
  text-align: center;
  font-weight: bold;
  color: black;
}

.custom-page-loader img {
  -webkit-animation: wave-animation 3s infinite;
  animation: wave-animation 3s infinite;
}

@-webkit-keyframes wave-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(14deg);
    transform: rotate(14deg);
  }
  20% {
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
  }
  30% {
    -webkit-transform: rotate(14deg);
    transform: rotate(14deg);
  }
  40% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes wave-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(14deg);
    transform: rotate(14deg);
  }
  20% {
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
  }
  30% {
    -webkit-transform: rotate(14deg);
    transform: rotate(14deg);
  }
  40% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
footer {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
footer a {
  color: var(--brand-light);
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}
footer .section__intro p {
  max-width: 480px;
}
footer .social {
  background: transparent;
}
footer .copywrite {
  margin-top: 3.5rem;
}
footer .copywrite span {
  text-align: center;
  display: block;
  color: var(--subtle-color);
}