html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
}

a {
  text-decoration: none;
  font-weight: inherit;
  color: inherit;
}
a img {
  border: 0;
}

li {
  list-style: none;
}

fieldset {
  border: 0;
}

button {
  border: 0;
  text-align: left;
  background: transparent;
}

*:focus {
  outline: none;
}

button, input, textarea {
  font: inherit;
  appearance: none;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes header-slide-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/*
	Since SASS does not support variables passing to a content block (Feb 2017), we're globally defining them here
	More info and discussion on this feature can be found here: https://github.com/sass/sass/issues/871
	We prefix the variable names with an underscore (_) to make sure they don't collide with any other variables we might be using
	- Rein, February 2017
*/
@font-face {
  font-family: Alte Haas Grotesk;
  font-style: normal;
  font-weight: normal;
  src: local("Alte Haas Grotesk"), url("../../assets/fonts/AlteHaasGroteskRegular.woff") format("woff");
}
@font-face {
  font-family: Alte Haas Grotesk Bold;
  font-style: normal;
  font-weight: normal;
  src: local("Alte Haas Grotesk Bold"), url("../../assets/fonts/AlteHaasGroteskBold.woff") format("woff");
}
html {
  overflow-y: scroll;
  font-size: 75%;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 78.7692307692%;
  }
}
@media screen and (min-width: 1150px) {
  html {
    font-size: 88.4615384615%;
  }
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 98.4615384615%;
  }
}
@media screen and (min-width: 1375px) {
  html {
    font-size: 105.7692307692%;
  }
}
@media screen and (min-width: 1500px) {
  html {
    font-size: 115.3846153846%;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 123.0769230769%;
  }
}
@media screen and (min-width: 1750px) {
  html {
    font-size: 134.6153846154%;
  }
}
@media screen and (min-width: 1900px) {
  html {
    font-size: 146.1538461538%;
  }
}
@media screen and (min-width: 2000px) {
  html {
    font-size: 153.8461538462%;
  }
}
@media screen and (min-width: 2200px) {
  html {
    font-size: 169.2307692308%;
  }
}
@media screen and (min-width: 2350px) {
  html {
    font-size: 180.7692307692%;
  }
}
@media screen and (min-width: 2400px) {
  html {
    font-size: 184.6153846154%;
  }
}
@media screen and (min-width: 2500px) {
  html {
    font-size: 192.3076923077%;
  }
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: black;
}

::selection {
  background-color: #dc2311;
  color: white;
}

body {
  font-family: Alte Haas Grotesk, sans-serif;
  line-height: 1.7;
  color: black;
  background-color: white;
}

.wrap {
  width: 100%;
  padding: 0 1.75rem;
  margin: 0 auto;
}
@media screen and (min-width: 750px) {
  .wrap {
    width: 95%;
    padding: 0;
  }
}
@media screen and (min-width: 1150px) {
  .wrap {
    width: 90%;
  }
}
@media screen and (min-width: 1500px) {
  .wrap {
    width: 85%;
  }
}

#main {
  padding: 1.75rem 0;
}
@media screen and (min-width: 1024px) {
  #main {
    padding: 3.5rem 0;
  }
}
body.s-01 #main {
  color: #dc2311;
  background-color: white;
}
body.s-02 #main {
  color: #dc2311;
  background-color: white;
}
body.s-03 #main {
  color: white;
  background-color: #dc2311;
}
body.s-04 #main {
  color: black;
  background-color: white;
}
body.s-05 #main {
  color: white;
  background-color: black;
}
body.terminated #main {
  color: #dc29a8;
  background-color: #96f161;
}

#main-content {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1024px) {
  #main-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
#main-content #content {
  flex-grow: 1;
}
@media screen and (min-width: 1024px) {
  #main-content #content {
    width: 63%;
  }
}
#main-content #side {
  flex-grow: 1;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 0.4375rem solid;
}
body.s-01 #main-content #side {
  border-color: #dc2311;
}
body.s-02 #main-content #side {
  border-color: #dc2311;
}
body.s-03 #main-content #side {
  border-color: white;
}
body.s-04 #main-content #side {
  border-color: black;
}
body.s-05 #main-content #side {
  border-color: white;
}
body.terminated #main-content #side {
  border-color: #dc29a8;
}
@media screen and (min-width: 1024px) {
  #main-content #side {
    width: 37%;
    padding-left: 3.5rem;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
  }
}

.main-nav-cols {
  width: 100%;
}
.main-nav-cols > *:first-child {
  margin-bottom: 1.75rem;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .main-nav-cols {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .main-nav-cols > *:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 63%;
    margin-bottom: 0;
  }
}
.main-nav-cols__column {
  flex-direction: column;
}
.main-nav-cols__column > * {
  width: 100%;
}
.main-nav-cols__column > *:first-child {
  width: 100%;
  margin-bottom: 1.75rem;
}
.main-nav-cols__column > *:last-child {
  max-width: 500px;
  margin: 0 auto;
}
body.scrolled .main-nav-cols {
  justify-content: center;
}
body.compact-header .main-nav-cols {
  justify-content: center;
}

#header .main-nav-cols > *:first-child {
  margin-bottom: 0;
}
body.scrolled #header .main-nav-cols > *:first-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  body.scrolled #header .main-nav-cols > *:first-child {
    width: 50%;
  }
}
body.compact-header #header .main-nav-cols > *:first-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  body.compact-header #header .main-nav-cols > *:first-child {
    width: 50%;
  }
}
body.open-menu #header .main-nav-cols > *:first-child {
  margin-bottom: 1.75rem;
}

#header {
  width: 100%;
}
body.s-01 #header {
  color: #dc2311;
  background-color: white;
}
body.s-02 #header {
  color: #dc2311;
  background-color: white;
}
body.s-03 #header {
  color: white;
  background-color: #dc2311;
}
body.s-04 #header {
  color: black;
  background-color: white;
}
body.s-05 #header {
  color: white;
  background-color: black;
}
body.terminated #header {
  color: #dc29a8;
  background-color: #96f161;
}
body.scrolled #header {
  position: fixed;
  z-index: 9999;
  top: 0;
  overflow: hidden;
  animation: header-slide-down 0.3s;
}

#header h2 {
  text-transform: uppercase;
  line-height: 0.8;
  font-size: 3rem;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  padding: 1.75rem 0;
  text-align: center;
}
@media screen and (min-width: 750px) {
  #header h2 {
    text-transform: uppercase;
    line-height: 0.8;
    font-size: 12.9vw;
    font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
    font-weight: bold;
  }
}
body.scrolled #header h2 {
  padding: 0.875rem 0;
  font-size: 1.5rem;
}
body.compact-header #header h2 {
  padding: 0.875rem 0;
  font-size: 1.5rem;
}

.logo-40 svg {
  max-height: 8rem;
}
body.s-01 .logo-40 svg {
  fill: #dc2311;
}
body.s-02 .logo-40 svg {
  fill: #dc2311;
}
body.s-03 .logo-40 svg {
  fill: white;
}
body.s-04 .logo-40 svg {
  fill: black;
}
body.s-05 .logo-40 svg {
  fill: white;
}
body.terminated .logo-40 svg {
  fill: #dc29a8;
}
body.scrolled .logo-40 svg {
  max-height: 5rem;
}
body.compact-header .logo-40 svg {
  max-height: 5rem;
}

.hamburger-icon {
  position: relative;
  display: block;
  height: 1.75rem;
  width: 2.625rem;
  margin: 0 auto;
  border: 0;
  padding: 0;
  cursor: pointer;
  transform-origin: 50% 50%;
  transition: transform 0.2s ease-in-out;
}
.hamburger-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  display: block;
  height: 1.75rem;
  width: 2.625rem;
  margin-top: -0.875rem;
  border-top: 4px solid;
  border-bottom: 4px solid;
  transition: height 0.2s ease-in-out, margin-top 0.2s ease-in-out;
}
body.s-01 .hamburger-icon:before {
  border-color: #dc2311;
}
body.s-02 .hamburger-icon:before {
  border-color: white;
}
body.s-03 .hamburger-icon:before {
  border-color: #dc2311;
}
body.s-04 .hamburger-icon:before {
  border-color: white;
}
body.s-05 .hamburger-icon:before {
  border-color: black;
}
body.terminated .hamburger-icon:before {
  border-color: #dc29a8;
}
.hamburger-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  box-sizing: border-box;
  display: block;
  height: 4px;
  margin-top: -2px;
  transition: transform 0.2s ease-in-out;
}
body.s-01 .hamburger-icon:after {
  background-color: #dc2311;
}
body.s-02 .hamburger-icon:after {
  background-color: white;
}
body.s-03 .hamburger-icon:after {
  background-color: #dc2311;
}
body.s-04 .hamburger-icon:after {
  background-color: white;
}
body.s-05 .hamburger-icon:after {
  background-color: black;
}
body.terminated .hamburger-icon:after {
  background-color: #dc29a8;
}
body.scrolled .hamburger-icon {
  transform: scale(0.8);
}
body.compact-header .hamburger-icon {
  transform: scale(0.8);
}
body.open-menu .hamburger-icon {
  transform: rotate(45deg);
}
body.open-menu .hamburger-icon:before {
  height: 4px;
  border-width: 2px;
  margin-top: -2px;
}
body.open-menu .hamburger-icon:after {
  transform: rotate(90deg);
}
@media screen and (min-width: 1024px) {
  .hamburger-icon {
    display: none;
  }
}

.sub-header {
  display: flex;
  justify-content: space-between;
  padding: 1.1666666667rem 0;
  border-top: 0.4375rem solid;
}
body.scrolled .sub-header {
  padding: 0.5833333333rem 0;
}
body.compact-header .sub-header {
  padding: 0.5833333333rem 0;
}
body.s-01 .sub-header {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-01 .sub-header .active a {
  border-color: #dc2311;
}
body.s-02 .sub-header {
  border-color: white;
  color: white;
  background-color: #dc2311;
}
body.s-02 .sub-header .active a {
  border-color: white;
}
body.s-03 .sub-header {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-03 .sub-header .active a {
  border-color: #dc2311;
}
body.s-04 .sub-header {
  border-color: white;
  color: white;
  background-color: black;
}
body.s-04 .sub-header .active a {
  border-color: white;
}
body.s-05 .sub-header {
  border-color: black;
  color: black;
  background-color: white;
}
body.s-05 .sub-header .active a {
  border-color: black;
}
body.terminated .sub-header {
  border-color: #dc29a8;
  color: #dc29a8;
  background-color: #96f161;
}
body.terminated .sub-header .active a {
  border-color: #dc29a8;
}

#main-nav {
  display: none;
  flex-grow: 3;
  justify-content: space-between;
}
body.open-menu #main-nav {
  display: flex;
  margin-top: 1.75rem;
}
@media screen and (min-width: 1024px) {
  body.open-menu #main-nav {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  #main-nav {
    display: flex;
  }
}
#main-nav ul {
  flex-grow: 1;
}
@media screen and (min-width: 1024px) {
  #main-nav ul {
    display: flex;
    justify-content: space-between;
  }
}
#main-nav ul li {
  text-align: center;
  position: relative;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.05rem;
  margin: 0 0.5em;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  body.s-01 #main-nav ul li:after {
    background-color: #dc2311;
  }
  body.s-02 #main-nav ul li:after {
    background-color: white;
  }
  body.s-03 #main-nav ul li:after {
    background-color: #dc2311;
  }
  body.s-04 #main-nav ul li:after {
    background-color: white;
  }
  body.s-05 #main-nav ul li:after {
    background-color: black;
  }
  body.terminated #main-nav ul li:after {
    background-color: #dc29a8;
  }
  #main-nav ul li.active:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.4375rem;
    left: 0;
    display: block;
    height: 0.4375rem;
  }
}
#main-nav ul li a {
  display: block;
  padding: 0.5833333333rem 0;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  #main-nav ul li a {
    display: inline;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  body.scrolled #main-nav ul li.active:after {
    bottom: -0.1166666667rem;
    height: 0.21875rem;
  }
  body.compact-header #main-nav ul li.active:after {
    bottom: -0.1166666667rem;
    height: 0.21875rem;
  }
  body.scrolled #main-nav ul li {
    font-size: 1rem;
  }
  body.compact-header #main-nav ul li {
    font-size: 1rem;
  }
}

.search {
  display: none;
  justify-content: flex-end;
  height: 50px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .search {
    display: flex;
  }
}
body.scrolled .search {
  display: none;
}
body.compact-header .search {
  display: none;
}
body.open-menu .search {
  display: none;
}
.search label {
  display: none;
}
.search form {
  position: relative;
  width: 100%;
}
.search__btn {
  display: none;
  align-items: center;
  cursor: pointer;
}
.search__btn svg {
  width: 1.75rem;
  height: 1.75rem;
}
body.s-01 .search__btn svg path {
  fill: #dc2311;
}
body.s-02 .search__btn svg path {
  fill: white;
}
body.s-03 .search__btn svg path {
  fill: #dc2311;
}
body.s-04 .search__btn svg path {
  fill: white;
}
body.s-05 .search__btn svg path {
  fill: black;
}
body.terminated .search__btn svg path {
  fill: #dc29a8;
}
@media screen and (min-width: 1024px) {
  .search__btn {
    display: flex;
    align-items: center;
  }
}
.search__popout {
  position: absolute;
  top: calc(100% + 23px);
  width: 400px;
  right: 0;
  display: none;
  z-index: 100;
}
.search input {
  box-sizing: border-box;
  width: 100%;
  padding: 0.5833333333rem 1.1666666667rem;
  border: 0.1458333333rem solid;
  border-radius: 0;
  appearance: none;
}
body.s-01 .search input {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-01 .search input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: #dc2311;
}
body.s-02 .search input {
  border-color: white;
  color: white;
  background-color: #dc2311;
}
body.s-02 .search input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: white;
}
body.s-03 .search input {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-03 .search input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: #dc2311;
}
body.s-04 .search input {
  border-color: white;
  color: white;
  background-color: black;
}
body.s-04 .search input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: white;
}
body.s-05 .search input {
  border-color: black;
  color: black;
  background-color: white;
}
body.s-05 .search input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: black;
}
body.terminated .search input {
  border-color: #dc29a8;
  color: #dc29a8;
  background-color: #96f161;
}
body.terminated .search input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: #dc29a8;
}

.submit {
  position: absolute;
  top: 50%;
  right: 0.875rem;
  width: 1.4583333333rem;
  height: 1.4583333333rem;
  margin-top: -0.7291666667rem;
  text-indent: -9999px;
  cursor: pointer;
}
.submit:after {
  content: "";
  position: absolute;
  top: 0;
  right: 25%;
  bottom: 25%;
  left: 0;
  box-sizing: content-box;
  border: 0.21875rem solid;
  border-radius: 50%;
}
body.s-01 .submit:after {
  border-color: #dc2311;
  background-color: white;
}
body.s-02 .submit:after {
  border-color: white;
  background-color: #dc2311;
}
body.s-03 .submit:after {
  border-color: #dc2311;
  background-color: white;
}
body.s-04 .submit:after {
  border-color: white;
  background-color: black;
}
body.s-05 .submit:after {
  border-color: black;
  background-color: white;
}
body.terminated .submit:after {
  border-color: #dc29a8;
  background-color: #96f161;
}
.submit:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  height: 0.21875rem;
  transform-origin: 100% 50%;
  transform: rotate(40deg);
}
body.s-01 .submit:before {
  background-color: #dc2311;
}
body.s-02 .submit:before {
  background-color: white;
}
body.s-03 .submit:before {
  background-color: #dc2311;
}
body.s-04 .submit:before {
  background-color: white;
}
body.s-05 .submit:before {
  background-color: black;
}
body.terminated .submit:before {
  background-color: #dc29a8;
}

.search-mobile {
  width: unset;
  display: none;
  margin-top: 1em;
}
body.open-menu .search-mobile {
  display: block;
}
@media screen and (min-width: 1024px) {
  .search-mobile {
    display: none;
  }
}
.search-mobile input {
  box-sizing: border-box;
  width: 100%;
  padding: 0.5833333333rem 1.1666666667rem;
  border: 0.1458333333rem solid;
  border-radius: 0;
  appearance: none;
}
body.s-01 .search-mobile input {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-01 .search-mobile input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: #dc2311;
}
body.s-02 .search-mobile input {
  border-color: white;
  color: white;
  background-color: #dc2311;
}
body.s-02 .search-mobile input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: white;
}
body.s-03 .search-mobile input {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-03 .search-mobile input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: #dc2311;
}
body.s-04 .search-mobile input {
  border-color: white;
  color: white;
  background-color: black;
}
body.s-04 .search-mobile input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: white;
}
body.s-05 .search-mobile input {
  border-color: black;
  color: black;
  background-color: white;
}
body.s-05 .search-mobile input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: black;
}
body.terminated .search-mobile input {
  border-color: #dc29a8;
  color: #dc29a8;
  background-color: #96f161;
}
body.terminated .search-mobile input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: #dc29a8;
}

.header-social-media {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header-social-media {
    gap: 0.525rem;
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    align-items: center;
  }
  body.scrolled .header-social-media {
    display: none;
  }
  body.compact-header .header-social-media {
    display: none;
  }
  .header-social-media li a {
    display: block;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0.35rem;
    border-radius: 50%;
    text-indent: -9999px;
    background-repeat: no-repeat;
    background-position: center center;
  }
  body.s-01 .header-social-media li a {
    background-color: #dc2311;
  }
  body.s-02 .header-social-media li a {
    background-color: white;
  }
  body.s-03 .header-social-media li a {
    background-color: #dc2311;
  }
  body.s-04 .header-social-media li a {
    background-color: white;
  }
  body.s-05 .header-social-media li a {
    background-color: black;
  }
  body.terminated .header-social-media li a {
    background-color: #dc29a8;
  }
  .header-social-media li a svg {
    display: block;
    width: 100%;
    height: 100%;
  }
  body.s-01 .header-social-media li a svg path {
    fill: white;
  }
  body.s-02 .header-social-media li a svg path {
    fill: #dc2311;
  }
  body.s-03 .header-social-media li a svg path {
    fill: white;
  }
  body.s-04 .header-social-media li a svg path {
    fill: black;
  }
  body.s-05 .header-social-media li a svg path {
    fill: white;
  }
  body.terminated .header-social-media li a svg path {
    fill: #96f161;
  }
}

#intro {
  position: relative;
  height: 0;
  padding-top: 33.3333333333%;
}
@media screen and (min-width: 750px) {
  #intro {
    padding-bottom: 3.5rem;
  }
}
body.s-01 #intro {
  color: white;
  background-color: #dc2311;
}
body.s-02 #intro {
  color: white;
  background-color: #dc2311;
}
body.s-03 #intro {
  color: #dc2311;
  background-color: white;
}
body.s-04 #intro {
  color: white;
  background-color: black;
}
body.s-05 #intro {
  color: black;
  background-color: white;
}
body.terminated #intro {
  color: #96f161;
  background-color: #dc29a8;
}
#intro.small {
  padding-bottom: 0;
}

.intro-slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.intro-slide img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 750px) {
  .intro-slide.has-long-title .intro-slide-title {
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
    font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
    font-weight: bold;
    letter-spacing: 0.05rem;
  }
}
.intro-slide.active {
  opacity: 1;
}
.intro-slide a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
}
@media screen and (min-width: 750px) {
  .intro-slide a {
    top: initial;
  }
}

.intro-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.intro-video video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-slide-footer {
  display: none;
  padding: 1.1666666667rem 0;
}
@media screen and (min-width: 750px) {
  .intro-slide-footer {
    display: block;
  }
}
body.s-01 .intro-slide-footer {
  color: white;
  background-color: #dc2311;
}
body.s-02 .intro-slide-footer {
  color: white;
  background-color: #dc2311;
}
body.s-03 .intro-slide-footer {
  color: #dc2311;
  background-color: white;
}
body.s-04 .intro-slide-footer {
  color: white;
  background-color: black;
}
body.s-05 .intro-slide-footer {
  color: black;
  background-color: white;
}
body.terminated .intro-slide-footer {
  color: #96f161;
  background-color: #dc29a8;
}

.intro-slide-footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.intro-slide-title {
  width: 83%;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.2;
  text-align: right;
}
@media screen and (min-width: 750px) {
  .intro-slide-title {
    width: 66%;
    text-align: center;
    text-transform: uppercase;
    font-size: 3.4rem;
    line-height: 1;
    text-align: center;
    font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
    font-weight: bold;
    letter-spacing: 0.05rem;
  }
}

.intro-slide-date {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  width: 17%;
  text-align: left;
}
@media screen and (min-width: 1375px) {
  .intro-slide-date {
    padding-left: 1.75rem;
  }
}

.intro-slide-more-info {
  display: none;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  width: 17%;
  text-align: right;
}
@media screen and (min-width: 750px) {
  .intro-slide-more-info {
    display: block;
  }
}
@media screen and (min-width: 1375px) {
  .intro-slide-more-info {
    padding-right: 1.75rem;
  }
}

#sub-nav > ul > li {
  margin-bottom: 0.875rem;
}
@media screen and (min-width: 1024px) {
  #sub-nav > ul > li {
    margin-bottom: 1.75rem;
  }
}
#sub-nav > ul > li:last-child {
  margin-bottom: 0;
}
#sub-nav > ul > li > a {
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: 0.05rem;
  display: block;
  padding: 0.5833333333rem 0;
  border-bottom: 0.4375rem solid;
}
body.s-01 #sub-nav > ul > li > a {
  border-color: #dc2311;
  color: #dc2311;
}
body.s-02 #sub-nav > ul > li > a {
  border-color: #dc2311;
  color: #dc2311;
}
body.s-03 #sub-nav > ul > li > a {
  border-color: white;
  color: white;
}
body.s-04 #sub-nav > ul > li > a {
  border-color: black;
  color: black;
}
body.s-05 #sub-nav > ul > li > a {
  border-color: white;
  color: white;
}
body.terminated #sub-nav > ul > li > a {
  border-color: #dc29a8;
  color: #dc29a8;
}
@media screen and (min-width: 1024px) {
  #sub-nav > ul > li > a {
    margin-left: 3.5rem;
    padding: 0.5833333333rem 0;
    border: 0;
  }
  body.s-01 #sub-nav > ul > li > a {
    color: #dc2311;
    background-color: white;
  }
  body.s-02 #sub-nav > ul > li > a {
    color: #dc2311;
    background-color: white;
  }
  body.s-03 #sub-nav > ul > li > a {
    color: white;
    background-color: #dc2311;
  }
  body.s-04 #sub-nav > ul > li > a {
    color: black;
    background-color: white;
  }
  body.s-05 #sub-nav > ul > li > a {
    color: white;
    background-color: black;
  }
  body.terminated #sub-nav > ul > li > a {
    color: #dc29a8;
    background-color: #96f161;
  }
}
@media screen and (min-width: 1024px) {
  #sub-nav > ul > li {
    position: relative;
  }
  #sub-nav > ul > li > a {
    position: relative;
    z-index: 3;
    display: inline-block;
  }
  #sub-nav > ul > li.active > a:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: -0.875rem;
    bottom: 0;
    left: -0.875rem;
    display: block;
  }
  body.s-01 #sub-nav > ul > li.active > a:after {
    background-color: white;
  }
  body.s-02 #sub-nav > ul > li.active > a:after {
    background-color: white;
  }
  body.s-03 #sub-nav > ul > li.active > a:after {
    background-color: #dc2311;
  }
  body.s-04 #sub-nav > ul > li.active > a:after {
    background-color: white;
  }
  body.s-05 #sub-nav > ul > li.active > a:after {
    background-color: black;
  }
  body.terminated #sub-nav > ul > li.active > a:after {
    background-color: #96f161;
  }
  #sub-nav > ul > li.active:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 1.3461538462rem;
    right: 0;
    left: 0;
    display: block;
    height: 0.4375rem;
    width: 100%;
    margin-top: -0.21875rem;
  }
  body.s-01 #sub-nav > ul > li.active:after {
    background-color: #dc2311;
  }
  body.s-02 #sub-nav > ul > li.active:after {
    background-color: #dc2311;
  }
  body.s-03 #sub-nav > ul > li.active:after {
    background-color: white;
  }
  body.s-04 #sub-nav > ul > li.active:after {
    background-color: black;
  }
  body.s-05 #sub-nav > ul > li.active:after {
    background-color: white;
  }
  body.terminated #sub-nav > ul > li.active:after {
    background-color: #dc29a8;
  }
}
#sub-nav > ul > li > ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.875rem;
  margin-bottom: 0.875rem;
  margin-left: -0.4375rem;
  margin-right: -0.4375rem;
}
@media screen and (min-width: 1024px) {
  #sub-nav > ul > li > ul {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}
#sub-nav > ul > li > ul > li {
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.2;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.04rem;
  position: relative;
  display: flex;
  width: 50%;
  padding: 0 0.4375rem;
  margin-bottom: 0.875rem;
  font-size: 0.85rem;
}
@media screen and (min-width: 600px) {
  #sub-nav > ul > li > ul > li {
    width: 33.33%;
    font-size: 1rem;
  }
}
@media screen and (min-width: 750px) {
  #sub-nav > ul > li > ul > li {
    display: inline-block;
    width: auto;
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  #sub-nav > ul > li > ul > li {
    display: block;
    margin-bottom: 0;
  }
}
#sub-nav > ul > li > ul > li a {
  position: relative;
  z-index: 3;
  display: block;
  flex-grow: 1;
  padding: 0.2916666667rem 0.5833333333rem;
  border: 2px solid;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #sub-nav > ul > li > ul > li a {
    display: inline-block;
    padding: 0;
    border: 0;
    text-align: left;
  }
}
body.s-01 #sub-nav > ul > li > ul > li a {
  border-color: #dc2311;
}
body.s-02 #sub-nav > ul > li > ul > li a {
  border-color: #dc2311;
}
body.s-03 #sub-nav > ul > li > ul > li a {
  border-color: white;
}
body.s-04 #sub-nav > ul > li > ul > li a {
  border-color: black;
}
body.s-05 #sub-nav > ul > li > ul > li a {
  border-color: white;
}
body.terminated #sub-nav > ul > li > ul > li a {
  border-color: #dc29a8;
}

body.s-01 #sub-nav > ul > li > ul > li.active a {
  color: white;
  background-color: #dc2311;
}
@media screen and (min-width: 1024px) {
  body.s-01 #sub-nav > ul > li > ul > li.active a {
    color: #dc2311;
    background-color: white;
  }
}
body.s-02 #sub-nav > ul > li > ul > li.active a {
  color: white;
  background-color: #dc2311;
}
@media screen and (min-width: 1024px) {
  body.s-02 #sub-nav > ul > li > ul > li.active a {
    color: #dc2311;
    background-color: white;
  }
}
body.s-03 #sub-nav > ul > li > ul > li.active a {
  color: #dc2311;
  background-color: white;
}
@media screen and (min-width: 1024px) {
  body.s-03 #sub-nav > ul > li > ul > li.active a {
    color: white;
    background-color: #dc2311;
  }
}
body.s-04 #sub-nav > ul > li > ul > li.active a {
  color: white;
  background-color: black;
}
@media screen and (min-width: 1024px) {
  body.s-04 #sub-nav > ul > li > ul > li.active a {
    color: black;
    background-color: white;
  }
}
body.s-05 #sub-nav > ul > li > ul > li.active a {
  color: black;
  background-color: white;
}
@media screen and (min-width: 1024px) {
  body.s-05 #sub-nav > ul > li > ul > li.active a {
    color: white;
    background-color: black;
  }
}
body.terminated #sub-nav > ul > li > ul > li.active a {
  color: #96f161;
  background-color: #dc29a8;
}
@media screen and (min-width: 1024px) {
  body.terminated #sub-nav > ul > li > ul > li.active a {
    color: #dc29a8;
    background-color: #96f161;
  }
}

@media screen and (min-width: 1024px) {
  #sub-nav > ul > li > ul > li {
    padding-left: 3.5rem;
  }
  #sub-nav > ul > li > ul > li.active a:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: -0.875rem;
    bottom: 0;
    left: -0.875rem;
    display: block;
  }
  body.s-01 #sub-nav > ul > li > ul > li.active a:after {
    background-color: white;
  }
  body.s-02 #sub-nav > ul > li > ul > li.active a:after {
    background-color: white;
  }
  body.s-03 #sub-nav > ul > li > ul > li.active a:after {
    background-color: #dc2311;
  }
  body.s-04 #sub-nav > ul > li > ul > li.active a:after {
    background-color: white;
  }
  body.s-05 #sub-nav > ul > li > ul > li.active a:after {
    background-color: black;
  }
  body.terminated #sub-nav > ul > li > ul > li.active a:after {
    background-color: #96f161;
  }
  #sub-nav > ul > li > ul > li.active:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    left: 0;
    display: block;
    height: 0.4375rem;
    width: 100%;
    margin-top: -0.21875rem;
  }
  body.s-01 #sub-nav > ul > li > ul > li.active:after {
    background-color: #dc2311;
  }
  body.s-02 #sub-nav > ul > li > ul > li.active:after {
    background-color: #dc2311;
  }
  body.s-03 #sub-nav > ul > li > ul > li.active:after {
    background-color: white;
  }
  body.s-04 #sub-nav > ul > li > ul > li.active:after {
    background-color: black;
  }
  body.s-05 #sub-nav > ul > li > ul > li.active:after {
    background-color: white;
  }
  body.terminated #sub-nav > ul > li > ul > li.active:after {
    background-color: #dc29a8;
  }
}
.breadcrumbs {
  display: none;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  padding: 0.875rem 0;
}
@media screen and (min-width: 1024px) {
  .breadcrumbs {
    display: block;
  }
}
body.s-01 .breadcrumbs {
  color: #dc2311;
  background-color: white;
}
body.s-02 .breadcrumbs {
  color: #dc2311;
  background-color: white;
}
body.s-03 .breadcrumbs {
  color: white;
  background-color: #dc2311;
}
body.s-04 .breadcrumbs {
  color: black;
  background-color: white;
}
body.s-05 .breadcrumbs {
  color: white;
  background-color: black;
}
body.terminated .breadcrumbs {
  color: #dc29a8;
  background-color: #96f161;
}
.breadcrumbs ul {
  display: flex;
  justify-content: flex-end;
}
.breadcrumbs ul li:after {
  content: "/";
  padding: 0 0.5833333333rem;
}
.breadcrumbs ul li:last-child:after {
  display: none;
}
.breadcrumbs ul li:last-child a {
  border-bottom: 0;
}

body.s-01 #footer {
  color: #dc2311;
  background-color: white;
}
body.s-02 #footer {
  color: #dc2311;
  background-color: white;
}
body.s-03 #footer {
  color: #dc2311;
  background-color: white;
}
body.s-04 #footer {
  color: black;
  background-color: white;
}
body.s-05 #footer {
  color: black;
  background-color: white;
}
body.terminated #footer {
  color: #dc29a8;
  background-color: #96f161;
}

.footer-row {
  padding: 1.1666666667rem 0;
}
body.s-01 .footer-row {
  border-top: 0.4375rem solid #dc2311;
}
body.s-01 .footer-row.alt {
  color: #dc2311;
  background-color: white;
}
body.s-02 .footer-row {
  border-top: 0.4375rem solid #dc2311;
}
body.s-02 .footer-row.alt {
  color: white;
  background-color: #dc2311;
}
body.s-03 .footer-row {
  border-top: 0.4375rem solid #dc2311;
}
body.s-03 .footer-row.alt {
  color: #dc2311;
  background-color: white;
}
body.s-04 .footer-row {
  border-top: 0.4375rem solid black;
}
body.s-04 .footer-row.alt {
  color: white;
  background-color: black;
}
body.s-05 .footer-row {
  border-top: 0.4375rem solid black;
}
body.s-05 .footer-row.alt {
  color: black;
  background-color: white;
}
body.terminated .footer-row {
  border-top: 0.4375rem solid #dc29a8;
}
body.terminated .footer-row.alt {
  color: #dc29a8;
  background-color: #96f161;
}

.footer-cols {
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .footer-cols {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}

.footer-sitemap {
  display: none;
}
@media screen and (min-width: 1024px) {
  .footer-sitemap {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
  }
}
.footer-sitemap li {
  position: relative;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.05rem;
  margin: 0 0.5em;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  body.s-01 .footer-sitemap li:after {
    background-color: #dc2311;
  }
  body.s-02 .footer-sitemap li:after {
    background-color: white;
  }
  body.s-03 .footer-sitemap li:after {
    background-color: #dc2311;
  }
  body.s-04 .footer-sitemap li:after {
    background-color: white;
  }
  body.s-05 .footer-sitemap li:after {
    background-color: black;
  }
  body.terminated .footer-sitemap li:after {
    background-color: #dc29a8;
  }
  .footer-sitemap li.active:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.4375rem;
    left: 0;
    display: block;
    height: 0.4375rem;
  }
}
body.s-01 .footer-sitemap li:after {
  background-color: #dc2311;
}
body.s-02 .footer-sitemap li:after {
  background-color: #dc2311;
}
body.s-03 .footer-sitemap li:after {
  background-color: #dc2311;
}
body.s-04 .footer-sitemap li:after {
  background-color: black;
}
body.s-05 .footer-sitemap li:after {
  background-color: black;
}
body.terminated .footer-sitemap li:after {
  background-color: #dc29a8;
}

.footer-newsletter {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
}
.footer-newsletter .form {
  position: relative;
  width: 100%;
}
.footer-newsletter label {
  display: none;
}
.footer-newsletter input {
  box-sizing: border-box;
  width: 100%;
  padding: 0.5833333333rem 1.1666666667rem;
  border: 0.1458333333rem solid;
  border-radius: 0;
  appearance: none;
}
body.s-01 .footer-newsletter input {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-01 .footer-newsletter input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: #dc2311;
}
body.s-02 .footer-newsletter input {
  border-color: white;
  color: white;
  background-color: #dc2311;
}
body.s-02 .footer-newsletter input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: white;
}
body.s-03 .footer-newsletter input {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-03 .footer-newsletter input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: #dc2311;
}
body.s-04 .footer-newsletter input {
  border-color: white;
  color: white;
  background-color: black;
}
body.s-04 .footer-newsletter input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: white;
}
body.s-05 .footer-newsletter input {
  border-color: black;
  color: black;
  background-color: white;
}
body.s-05 .footer-newsletter input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: black;
}
body.terminated .footer-newsletter input {
  border-color: #dc29a8;
  color: #dc29a8;
  background-color: #96f161;
}
body.terminated .footer-newsletter input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: #dc29a8;
}
.footer-newsletter button {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: content-box;
  padding: 0.5833333333rem 1.1666666667rem;
  border: 0.1458333333rem solid;
}
body.s-01 .footer-newsletter button {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-01 .footer-newsletter button::-webkit-input-placeholder {
  color: #dc2311;
}
body.s-02 .footer-newsletter button {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-02 .footer-newsletter button::-webkit-input-placeholder {
  color: white;
}
body.s-03 .footer-newsletter button {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-03 .footer-newsletter button::-webkit-input-placeholder {
  color: #dc2311;
}
body.s-04 .footer-newsletter button {
  border-color: black;
  color: black;
  background-color: white;
}
body.s-04 .footer-newsletter button::-webkit-input-placeholder {
  color: white;
}
body.s-05 .footer-newsletter button {
  border-color: black;
  color: black;
  background-color: white;
}
body.s-05 .footer-newsletter button::-webkit-input-placeholder {
  color: black;
}
body.terminated .footer-newsletter button {
  border-color: #dc29a8;
  color: #dc29a8;
  background-color: #96f161;
}
body.terminated .footer-newsletter button::-webkit-input-placeholder {
  color: #dc29a8;
}

.footer-copyright {
  display: flex;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  margin-bottom: 1.75rem;
  text-align: left;
  align-items: center;
  flex-direction: row;
}
.footer-copyright > * {
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .footer-copyright {
    flex-direction: column;
    align-items: flex-start;
    width: 25%;
    margin-bottom: 0;
    text-align: left;
  }
}
.footer-copyright a {
  font-size: 0.75rem;
  position: relative;
}
.footer-copyright a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.11em;
  left: 0;
  height: 0.15em;
  backface-visibility: hidden;
}
body.s-01 .footer-copyright a:after {
  background-color: #dc2311;
}
body.s-02 .footer-copyright a:after {
  background-color: #dc2311;
}
body.s-03 .footer-copyright a:after {
  background-color: white;
}
body.s-04 .footer-copyright a:after {
  background-color: black;
}
body.s-05 .footer-copyright a:after {
  background-color: white;
}
body.terminated .footer-copyright a:after {
  background-color: #dc29a8;
}
.footer-copyright a {
  margin-left: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .footer-copyright a {
    margin-left: unset;
  }
}

.footer-social-media {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 1024px) {
  .footer-social-media {
    justify-content: flex-start;
    width: 25%;
    margin-bottom: 0;
  }
}
.footer-social-media li {
  margin: 0 0.4375rem;
}
@media screen and (min-width: 1024px) {
  .footer-social-media li {
    margin-left: 0;
    margin-right: 0.875rem;
  }
}
.footer-social-media li a {
  display: block;
  width: 2.1875rem;
  height: 2.1875rem;
  padding: 0.5833333333rem;
  border-radius: 50%;
  text-indent: -9999px;
}
body.s-01 .footer-social-media li a {
  background-color: #dc2311;
}
body.s-02 .footer-social-media li a {
  background-color: white;
}
body.s-03 .footer-social-media li a {
  background-color: #dc2311;
}
body.s-04 .footer-social-media li a {
  background-color: white;
}
body.s-05 .footer-social-media li a {
  background-color: black;
}
body.terminated .footer-social-media li a {
  background-color: #dc29a8;
}
.footer-social-media li a svg {
  display: block;
  width: 100%;
  height: 100%;
}
body.s-01 .footer-social-media li a svg path {
  fill: white;
}
body.s-02 .footer-social-media li a svg path {
  fill: #dc2311;
}
body.s-03 .footer-social-media li a svg path {
  fill: white;
}
body.s-04 .footer-social-media li a svg path {
  fill: black;
}
body.s-05 .footer-social-media li a svg path {
  fill: white;
}
body.terminated .footer-social-media li a svg path {
  fill: #96f161;
}

.footer-title {
  text-transform: uppercase;
  line-height: 0.8;
  font-size: 12.9vw;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  font-size: 3rem;
}
@media screen and (min-width: 1024px) {
  .footer-title {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1280px) {
  .footer-title {
    font-size: 5rem;
  }
}
.footer-title {
  display: block;
  margin-bottom: 1.75rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .footer-title {
    width: 50%;
    margin-bottom: 0;
  }
}

.footer-address {
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.2;
  font-size: 1.1rem;
  line-height: 1.35;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .footer-address {
    width: 25%;
    text-align: right;
  }
  .footer-address > address {
    float: right;
  }
}

.footer-copyright {
  display: flex;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  margin-bottom: 1.75rem;
  text-align: left;
  align-items: center;
  flex-direction: row;
}
.footer-copyright > * {
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .footer-copyright {
    flex-direction: column;
    align-items: flex-start;
    width: 25%;
    margin-bottom: 0;
    text-align: left;
  }
}
.footer-copyright a {
  font-size: 0.75rem;
  position: relative;
}
.footer-copyright a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.11em;
  left: 0;
  height: 0.15em;
  backface-visibility: hidden;
}
body.s-01 .footer-copyright a:after {
  background-color: #dc2311;
}
body.s-02 .footer-copyright a:after {
  background-color: #dc2311;
}
body.s-03 .footer-copyright a:after {
  background-color: white;
}
body.s-04 .footer-copyright a:after {
  background-color: black;
}
body.s-05 .footer-copyright a:after {
  background-color: white;
}
body.terminated .footer-copyright a:after {
  background-color: #dc29a8;
}
.footer-copyright a {
  margin-left: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .footer-copyright a {
    margin-left: unset;
  }
}

.footer-partners {
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 1024px) {
  .footer-partners {
    width: 50%;
    margin-bottom: 0;
  }
}
.footer-partners ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: -0.875rem;
  margin-left: -0.4375rem;
  margin-right: -0.4375rem;
}
.footer-partners ul > * {
  width: 25%;
}
.footer-partners ul > * {
  float: left;
  display: flex;
  flex-direction: column;
  padding-top: 0.875rem;
  padding-right: 0.4375rem;
  padding-bottom: 0;
  padding-left: 0.4375rem;
}
@media screen and (min-width: 750px) {
  .footer-partners ul > * {
    width: 20%;
  }
}
@media screen and (min-width: 1500px) {
  .footer-partners ul > * {
    width: 16.6666666667%;
  }
}
@media screen and (min-width: 1750px) {
  .footer-partners ul > * {
    width: 14.2857142857%;
  }
}
.footer-partners ul {
  justify-content: center;
}
.footer-partners ul li {
  display: block;
}
.footer-partners ul img {
  display: block;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
}
body.s-01 .footer-partners ul img:last-child {
  display: none;
}
body.s-02 .footer-partners ul img:last-child {
  display: none;
}
body.s-03 .footer-partners ul img:last-child {
  display: none;
}
body.s-04 .footer-partners ul img:first-child {
  display: none;
}
body.s-05 .footer-partners ul img:first-child {
  display: none;
}
body.terminated .footer-partners ul img:first-child {
  display: none;
}

@media screen and (min-width: 1024px) {
  .footer-credit {
    width: 25%;
  }
}

#tnt {
  display: block;
  width: 5rem;
  height: 2.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  #tnt {
    float: right;
    width: 4rem;
    height: 2rem;
    margin: 0;
  }
}
#tnt svg {
  display: block;
  width: 100%;
  height: 100%;
}
body.s-01 #tnt svg > * {
  fill: #dc2311;
}
body.s-02 #tnt svg > * {
  fill: #dc2311;
}
body.s-03 #tnt svg > * {
  fill: #dc2311;
}
body.s-04 #tnt svg > * {
  fill: black;
}
body.s-05 #tnt svg > * {
  fill: black;
}
body.terminated #tnt svg > * {
  fill: #dc29a8;
}

.recent-announcements {
  margin-bottom: 3.5rem;
}
.recent-announcements h2 {
  text-transform: uppercase;
  font-size: 1.75rem;
  line-height: 1.35;
  text-align: center;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  position: relative;
  padding-bottom: 1em;
}
body.s-01 .recent-announcements h2 {
  color: #dc2311;
}
body.s-02 .recent-announcements h2 {
  color: #dc2311;
}
body.s-03 .recent-announcements h2 {
  color: white;
}
body.s-04 .recent-announcements h2 {
  color: black;
}
body.s-05 .recent-announcements h2 {
  color: white;
}
body.terminated .recent-announcements h2 {
  color: #dc29a8;
}
.recent-announcements h2:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
}
body.s-01 .recent-announcements h2:after {
  background-color: #dc2311;
}
body.s-02 .recent-announcements h2:after {
  background-color: #dc2311;
}
body.s-03 .recent-announcements h2:after {
  background-color: white;
}
body.s-04 .recent-announcements h2:after {
  background-color: black;
}
body.s-05 .recent-announcements h2:after {
  background-color: white;
}
body.terminated .recent-announcements h2:after {
  background-color: #dc29a8;
}
.recent-announcements h2 {
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 750px) {
  .recent-announcements h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
    font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
    font-weight: bold;
    letter-spacing: 0.05rem;
    position: relative;
    padding-bottom: 1em;
  }
  body.s-01 .recent-announcements h2 {
    color: #dc2311;
  }
  body.s-02 .recent-announcements h2 {
    color: #dc2311;
  }
  body.s-03 .recent-announcements h2 {
    color: white;
  }
  body.s-04 .recent-announcements h2 {
    color: black;
  }
  body.s-05 .recent-announcements h2 {
    color: white;
  }
  body.terminated .recent-announcements h2 {
    color: #dc29a8;
  }
  .recent-announcements h2:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 0.4375rem;
  }
  body.s-01 .recent-announcements h2:after {
    background-color: #dc2311;
  }
  body.s-02 .recent-announcements h2:after {
    background-color: #dc2311;
  }
  body.s-03 .recent-announcements h2:after {
    background-color: white;
  }
  body.s-04 .recent-announcements h2:after {
    background-color: black;
  }
  body.s-05 .recent-announcements h2:after {
    background-color: white;
  }
  body.terminated .recent-announcements h2:after {
    background-color: #dc29a8;
  }
  .recent-announcements h2 {
    margin-bottom: 3.5rem;
  }
}

.featured-events h2 {
  text-transform: uppercase;
  font-size: 1.75rem;
  line-height: 1.35;
  text-align: center;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  position: relative;
  padding-bottom: 1em;
}
body.s-01 .featured-events h2 {
  color: #dc2311;
}
body.s-02 .featured-events h2 {
  color: #dc2311;
}
body.s-03 .featured-events h2 {
  color: white;
}
body.s-04 .featured-events h2 {
  color: black;
}
body.s-05 .featured-events h2 {
  color: white;
}
body.terminated .featured-events h2 {
  color: #dc29a8;
}
.featured-events h2:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
}
body.s-01 .featured-events h2:after {
  background-color: #dc2311;
}
body.s-02 .featured-events h2:after {
  background-color: #dc2311;
}
body.s-03 .featured-events h2:after {
  background-color: white;
}
body.s-04 .featured-events h2:after {
  background-color: black;
}
body.s-05 .featured-events h2:after {
  background-color: white;
}
body.terminated .featured-events h2:after {
  background-color: #dc29a8;
}
.featured-events h2 {
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 750px) {
  .featured-events h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
    font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
    font-weight: bold;
    letter-spacing: 0.05rem;
    position: relative;
    padding-bottom: 1em;
  }
  body.s-01 .featured-events h2 {
    color: #dc2311;
  }
  body.s-02 .featured-events h2 {
    color: #dc2311;
  }
  body.s-03 .featured-events h2 {
    color: white;
  }
  body.s-04 .featured-events h2 {
    color: black;
  }
  body.s-05 .featured-events h2 {
    color: white;
  }
  body.terminated .featured-events h2 {
    color: #dc29a8;
  }
  .featured-events h2:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 0.4375rem;
  }
  body.s-01 .featured-events h2:after {
    background-color: #dc2311;
  }
  body.s-02 .featured-events h2:after {
    background-color: #dc2311;
  }
  body.s-03 .featured-events h2:after {
    background-color: white;
  }
  body.s-04 .featured-events h2:after {
    background-color: black;
  }
  body.s-05 .featured-events h2:after {
    background-color: white;
  }
  body.terminated .featured-events h2:after {
    background-color: #dc29a8;
  }
  .featured-events h2 {
    margin-bottom: 3.5rem;
  }
}

.error-404 h2 {
  text-transform: uppercase;
  font-size: 1.75rem;
  line-height: 1.35;
  text-align: center;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  position: relative;
  padding-bottom: 1em;
}
body.s-01 .error-404 h2 {
  color: #dc2311;
}
body.s-02 .error-404 h2 {
  color: #dc2311;
}
body.s-03 .error-404 h2 {
  color: white;
}
body.s-04 .error-404 h2 {
  color: black;
}
body.s-05 .error-404 h2 {
  color: white;
}
body.terminated .error-404 h2 {
  color: #dc29a8;
}
.error-404 h2:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
}
body.s-01 .error-404 h2:after {
  background-color: #dc2311;
}
body.s-02 .error-404 h2:after {
  background-color: #dc2311;
}
body.s-03 .error-404 h2:after {
  background-color: white;
}
body.s-04 .error-404 h2:after {
  background-color: black;
}
body.s-05 .error-404 h2:after {
  background-color: white;
}
body.terminated .error-404 h2:after {
  background-color: #dc29a8;
}
.error-404 h2 {
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 750px) {
  .error-404 h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
    font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
    font-weight: bold;
    letter-spacing: 0.05rem;
    position: relative;
    padding-bottom: 1em;
  }
  body.s-01 .error-404 h2 {
    color: #dc2311;
  }
  body.s-02 .error-404 h2 {
    color: #dc2311;
  }
  body.s-03 .error-404 h2 {
    color: white;
  }
  body.s-04 .error-404 h2 {
    color: black;
  }
  body.s-05 .error-404 h2 {
    color: white;
  }
  body.terminated .error-404 h2 {
    color: #dc29a8;
  }
  .error-404 h2:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 0.4375rem;
  }
  body.s-01 .error-404 h2:after {
    background-color: #dc2311;
  }
  body.s-02 .error-404 h2:after {
    background-color: #dc2311;
  }
  body.s-03 .error-404 h2:after {
    background-color: white;
  }
  body.s-04 .error-404 h2:after {
    background-color: black;
  }
  body.s-05 .error-404 h2:after {
    background-color: white;
  }
  body.terminated .error-404 h2:after {
    background-color: #dc29a8;
  }
}

.event-index-options {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
@media screen and (min-width: 750px) {
  .event-index-options {
    margin-bottom: 3.5rem;
    flex-direction: row;
    justify-content: space-between;
  }
}
.event-index-options__status {
  display: flex;
}
.event-index-options__status a {
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.2;
  font-size: 1.1rem;
  line-height: 1.35;
  display: inline-block;
  padding: 0.875rem 1.1666666667rem;
  margin-right: 1.1666666667rem;
  font-size: 1rem;
}
body.s-01 .event-index-options__status a {
  color: white;
  background-color: #dc2311;
}
body.s-02 .event-index-options__status a {
  color: white;
  background-color: #dc2311;
}
body.s-03 .event-index-options__status a {
  color: #dc2311;
  background-color: white;
}
body.s-04 .event-index-options__status a {
  color: white;
  background-color: black;
}
body.s-05 .event-index-options__status a {
  color: black;
  background-color: white;
}
body.terminated .event-index-options__status a {
  color: #96f161;
  background-color: #dc29a8;
}
body.s-01 .event-index-options__status a {
  color: #dc2311;
  background-color: white;
}
body.s-02 .event-index-options__status a {
  color: #dc2311;
  background-color: white;
}
body.s-03 .event-index-options__status a {
  color: white;
  background-color: #dc2311;
}
body.s-04 .event-index-options__status a {
  color: black;
  background-color: white;
}
body.s-05 .event-index-options__status a {
  color: white;
  background-color: black;
}
body.terminated .event-index-options__status a {
  color: #dc29a8;
  background-color: #96f161;
}
.event-index-options__status a {
  margin-right: 0;
}
body.s-01 .event-index-options__status a.active {
  color: white;
  background-color: #dc2311;
}
body.s-02 .event-index-options__status a.active {
  color: white;
  background-color: #dc2311;
}
body.s-03 .event-index-options__status a.active {
  color: #dc2311;
  background-color: white;
}
body.s-04 .event-index-options__status a.active {
  color: white;
  background-color: black;
}
body.s-05 .event-index-options__status a.active {
  color: black;
  background-color: white;
}
body.terminated .event-index-options__status a.active {
  color: #96f161;
  background-color: #dc29a8;
}
.event-index-options__filters {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
@media screen and (min-width: 750px) {
  .event-index-options__filters {
    flex-direction: row;
  }
}

.event-index-archive {
  float: right;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.2;
  font-size: 1.1rem;
  line-height: 1.35;
  display: inline-block;
  padding: 0.875rem 1.1666666667rem;
  margin-right: 1.1666666667rem;
  font-size: 1rem;
}
body.s-01 .event-index-archive {
  color: white;
  background-color: #dc2311;
}
body.s-02 .event-index-archive {
  color: white;
  background-color: #dc2311;
}
body.s-03 .event-index-archive {
  color: #dc2311;
  background-color: white;
}
body.s-04 .event-index-archive {
  color: white;
  background-color: black;
}
body.s-05 .event-index-archive {
  color: black;
  background-color: white;
}
body.terminated .event-index-archive {
  color: #96f161;
  background-color: #dc29a8;
}
.event-index-archive {
  margin-right: 0;
}
body.s-01 .event-index-archive {
  color: #dc2311;
  background-color: white;
}
body.s-02 .event-index-archive {
  color: #dc2311;
  background-color: white;
}
body.s-03 .event-index-archive {
  color: white;
  background-color: #dc2311;
}
body.s-04 .event-index-archive {
  color: black;
  background-color: white;
}
body.s-05 .event-index-archive {
  color: white;
  background-color: black;
}
body.terminated .event-index-archive {
  color: #dc29a8;
  background-color: #96f161;
}

.event-item {
  margin-bottom: 1.75rem;
  border: 0.4375rem solid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "date photo" "description description" "footer footer";
}
@media screen and (min-width: 750px) {
  .event-item {
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas: "date photo description description description footer";
  }
}
body.s-01 .event-item {
  border-color: #dc2311;
}
body.s-02 .event-item {
  border-color: #dc2311;
}
body.s-03 .event-item {
  border-color: white;
}
body.s-04 .event-item {
  border-color: black;
}
body.s-05 .event-item {
  border-color: white;
}
body.terminated .event-item {
  border-color: #dc29a8;
}
.event-item:last-child {
  margin-bottom: 0;
}
.event-item a {
  display: grid;
  grid-column: 1/-1;
  grid-row: span 2;
  grid-template-columns: subgrid;
  grid-template-rows: subgrid;
}
@media screen and (min-width: 750px) {
  .event-item a {
    grid-column: span 5;
    grid-row: auto;
  }
}
.event-item h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
}
.event-item.has-long-title h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  font-size: 1.25rem;
}
.event-item.compact {
  grid-template-areas: "description footer";
  grid-template-columns: 3fr 1fr;
}
.event-item.compact a {
  grid-column: span 1;
  grid-row: auto;
}
.event-item.compact .event-content {
  padding-left: 1.75rem;
}
.event-item__tickets {
  padding: 0.875rem;
  color: white;
  text-align: center;
  background-color: black;
}
@media screen and (min-width: 750px) {
  .event-item__tickets {
    width: 100%;
  }
}
.event-item__footer {
  grid-area: footer;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  padding: 1.1666666667rem;
}
@media screen and (min-width: 750px) {
  .event-item__footer {
    flex-direction: column;
    text-align: right;
    align-items: center;
  }
}
@media screen and (min-width: 1150px) {
  .event-item {
    font-family: Alte Haas Grotesk, sans-serif;
    line-height: 1.7;
    line-height: 1.4;
    font-size: 0.9rem;
  }
}

.event-content-details {
  margin: 0.875rem 0;
}

.event-content-subtitle {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  margin-right: 0.875rem;
  text-transform: none;
}

.event-content-label {
  flex-grow: 0;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.175rem 0.4375rem;
  margin-top: 0.875rem;
  border: 0.1458333333rem solid;
}
body.s-01 .event-content-label.outline {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-02 .event-content-label.outline {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-03 .event-content-label.outline {
  border-color: white;
  color: white;
  background-color: #dc2311;
}
body.s-04 .event-content-label.outline {
  border-color: black;
  color: black;
  background-color: white;
}
body.s-05 .event-content-label.outline {
  border-color: white;
  color: white;
  background-color: black;
}
body.terminated .event-content-label.outline {
  border-color: #dc29a8;
  color: #dc29a8;
  background-color: #96f161;
}
body.s-01 .event-content-label {
  border-color: #dc2311;
  color: white;
  background-color: #dc2311;
}
body.s-02 .event-content-label {
  border-color: #dc2311;
  color: white;
  background-color: #dc2311;
}
body.s-03 .event-content-label {
  border-color: white;
  color: #dc2311;
  background-color: white;
}
body.s-04 .event-content-label {
  border-color: black;
  color: white;
  background-color: black;
}
body.s-05 .event-content-label {
  border-color: white;
  color: black;
  background-color: white;
}
body.terminated .event-content-label {
  border-color: #dc29a8;
  color: #96f161;
  background-color: #dc29a8;
}

.event-date {
  grid-area: date;
  position: relative;
  height: auto;
  padding-top: 100%;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 1.2;
}
body.s-01 .event-date {
  color: white;
  background-color: #dc2311;
  box-shadow: 0 0 0 0.1rem #dc2311;
}
body.s-02 .event-date {
  color: white;
  background-color: #dc2311;
  box-shadow: 0 0 0 0.1rem #dc2311;
}
body.s-03 .event-date {
  color: #dc2311;
  background-color: white;
  box-shadow: 0 0 0 0.1rem white;
}
body.s-04 .event-date {
  color: white;
  background-color: black;
  box-shadow: 0 0 0 0.1rem black;
}
body.s-05 .event-date {
  color: black;
  background-color: white;
  box-shadow: 0 0 0 0.1rem white;
}
body.terminated .event-date {
  color: #96f161;
  background-color: #dc29a8;
  box-shadow: 0 0 0 0.1rem #dc29a8;
}
.event-date > div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.event-date-day,
.event-date-date {
  display: block;
}

.event-date-day {
  font-family: Alte Haas Grotesk, sans-serif;
  line-height: 1.7;
  line-height: 1.2;
}

.event-date-dash {
  font-family: Alte Haas Grotesk, sans-serif;
  line-height: 1.7;
  line-height: 1.4;
  font-size: 0.9rem;
}

.event-photo {
  grid-area: photo;
  position: relative;
}
@media screen and (min-width: 750px) {
  body.s-01 .event-photo .square-photo img {
    box-shadow: 0.1rem 0 0 0 white;
  }
  body.s-02 .event-photo .square-photo img {
    box-shadow: 0.1rem 0 0 0 white;
  }
  body.s-03 .event-photo .square-photo img {
    box-shadow: 0.1rem 0 0 0 #dc2311;
  }
  body.s-04 .event-photo .square-photo img {
    box-shadow: 0.1rem 0 0 0 white;
  }
  body.s-05 .event-photo .square-photo img {
    box-shadow: 0.1rem 0 0 0 black;
  }
  body.terminated .event-photo .square-photo img {
    box-shadow: 0.1rem 0 0 0 #96f161;
  }
}
body.s-01 .event-photo {
  background-color: #dc2311;
  box-shadow: -0.1rem 0 0 0.1rem #dc2311;
}
body.s-02 .event-photo {
  background-color: #dc2311;
  box-shadow: -0.1rem 0 0 0.1rem #dc2311;
}
body.s-03 .event-photo {
  background-color: white;
  box-shadow: -0.1rem 0 0 0.1rem white;
}
body.s-04 .event-photo {
  background-color: black;
  box-shadow: -0.1rem 0 0 0.1rem black;
}
body.s-05 .event-photo {
  background-color: white;
  box-shadow: -0.1rem 0 0 0.1rem white;
}
body.terminated .event-photo {
  background-color: #dc29a8;
  box-shadow: -0.1rem 0 0 0.1rem #dc29a8;
}

.event-content {
  grid-area: description;
  display: flex;
  flex-direction: column;
  padding: 1.1666666667rem;
}
@media screen and (min-width: 1280px) {
  .event-content {
    padding-left: 2.625rem;
  }
}

.event-content-description {
  width: 100%;
  margin-top: auto;
}
.event-content-description p {
  display: block;
  width: 100%;
}
@media screen and (min-width: 750px) {
  .event-content-description {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .event-content-description {
    display: block;
  }
}

.event-location {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 750px) {
  .event-location {
    align-items: flex-end;
  }
}

#event {
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 750px) {
  #event {
    margin-bottom: 3.5rem;
  }
}
#event > header {
  display: none;
  position: relative;
  padding-bottom: 1em;
}
body.s-01 #event > header {
  color: #dc2311;
}
body.s-02 #event > header {
  color: #dc2311;
}
body.s-03 #event > header {
  color: white;
}
body.s-04 #event > header {
  color: black;
}
body.s-05 #event > header {
  color: white;
}
body.terminated #event > header {
  color: #dc29a8;
}
#event > header:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
}
body.s-01 #event > header:after {
  background-color: #dc2311;
}
body.s-02 #event > header:after {
  background-color: #dc2311;
}
body.s-03 #event > header:after {
  background-color: white;
}
body.s-04 #event > header:after {
  background-color: black;
}
body.s-05 #event > header:after {
  background-color: white;
}
body.terminated #event > header:after {
  background-color: #dc29a8;
}
#event > header {
  padding-bottom: 1.75rem;
  margin-bottom: 2.625rem;
}
@media screen and (min-width: 1024px) {
  #event > header {
    display: block;
  }
}
#event > header h1 {
  text-transform: uppercase;
  font-size: 1.75rem;
  line-height: 1.35;
  text-align: center;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  text-align: center;
}
@media screen and (min-width: 750px) {
  #event > header h1 {
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
    font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
    font-weight: bold;
    letter-spacing: 0.05rem;
    text-align: left;
  }
}
#event > header h2 {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  margin-top: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 750px) {
  #event > header h2 {
    margin-top: 0;
    text-align: left;
  }
}
#event time {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
}

.event-social-media {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.event-social-media a {
  display: block;
  padding: 0.4375rem;
  border-radius: 1.1666666667rem;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: center center;
}
.event-social-media a svg {
  display: block;
  width: 1.3125rem;
  height: 1.3125rem;
}
body.s-01 .event-social-media a {
  background-color: #dc2311;
}
body.s-02 .event-social-media a {
  background-color: #dc2311;
}
body.s-03 .event-social-media a {
  background-color: white;
}
body.s-04 .event-social-media a {
  background-color: black;
}
body.s-05 .event-social-media a {
  background-color: white;
}
body.terminated .event-social-media a {
  background-color: #dc29a8;
}
body.s-01 .event-social-media a svg path,
body.s-01 .event-social-media a svg polygon {
  fill: white;
}
body.s-02 .event-social-media a svg path,
body.s-02 .event-social-media a svg polygon {
  fill: white;
}
body.s-03 .event-social-media a svg path,
body.s-03 .event-social-media a svg polygon {
  fill: #dc2311;
}
body.s-04 .event-social-media a svg path,
body.s-04 .event-social-media a svg polygon {
  fill: white;
}
body.s-05 .event-social-media a svg path,
body.s-05 .event-social-media a svg polygon {
  fill: black;
}
body.terminated .event-social-media a svg path,
body.terminated .event-social-media a svg polygon {
  fill: #96f161;
}

.event-schedule {
  margin-bottom: 1.75rem;
}
.event-schedule h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  position: relative;
  line-height: 1.6;
  text-align: center;
}
.event-schedule h3 span {
  position: relative;
  z-index: 2;
  padding: 0 1.75rem;
}
body.s-01 .event-schedule h3 span {
  background-color: white;
}
body.s-02 .event-schedule h3 span {
  background-color: white;
}
body.s-03 .event-schedule h3 span {
  background-color: #dc2311;
}
body.s-04 .event-schedule h3 span {
  background-color: white;
}
body.s-05 .event-schedule h3 span {
  background-color: black;
}
body.terminated .event-schedule h3 span {
  background-color: #96f161;
}
.event-schedule h3:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
  margin-top: -0.21875rem;
}
body.s-01 .event-schedule h3:after {
  background-color: #dc2311;
}
body.s-02 .event-schedule h3:after {
  background-color: #dc2311;
}
body.s-03 .event-schedule h3:after {
  background-color: white;
}
body.s-04 .event-schedule h3:after {
  background-color: black;
}
body.s-05 .event-schedule h3:after {
  background-color: white;
}
body.terminated .event-schedule h3:after {
  background-color: #dc29a8;
}
.event-schedule h3 {
  margin-bottom: 1.75rem;
}

.event-schedule-date {
  margin-bottom: 1.75rem;
}
.event-schedule-date:last-child {
  margin-bottom: 0;
}

.event-schedule-title {
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.2;
  padding: 1.75rem 0.875rem;
  text-align: center;
}
body.s-01 .event-schedule-title {
  color: white;
  background-color: #dc2311;
}
body.s-02 .event-schedule-title {
  color: white;
  background-color: #dc2311;
}
body.s-03 .event-schedule-title {
  color: #dc2311;
  background-color: white;
}
body.s-04 .event-schedule-title {
  color: white;
  background-color: black;
}
body.s-05 .event-schedule-title {
  color: black;
  background-color: white;
}
body.terminated .event-schedule-title {
  color: #96f161;
  background-color: #dc29a8;
}

.event-schedule-location {
  margin-top: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 0.4375rem solid;
}
body.s-01 .event-schedule-location {
  border-color: #dc2311;
}
body.s-02 .event-schedule-location {
  border-color: #dc2311;
}
body.s-03 .event-schedule-location {
  border-color: white;
}
body.s-04 .event-schedule-location {
  border-color: black;
}
body.s-05 .event-schedule-location {
  border-color: white;
}
body.terminated .event-schedule-location {
  border-color: #dc29a8;
}
.event-schedule-location:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.event-schedule-location-title {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  margin-bottom: 0.875rem;
}

.event-schedule-performances div {
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.2;
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 0.875rem;
}
.event-schedule-performances div a {
  display: flex;
  justify-content: space-between;
}
.event-schedule-performances div:last-child {
  margin-bottom: 0;
}

.event-info {
  margin-bottom: 1.75rem;
}
.event-info:last-child {
  margin-bottom: 0;
}

.event-info-mobile-header {
  display: block;
  position: relative;
  padding-bottom: 1em;
}
body.s-01 .event-info-mobile-header {
  color: #dc2311;
}
body.s-02 .event-info-mobile-header {
  color: #dc2311;
}
body.s-03 .event-info-mobile-header {
  color: white;
}
body.s-04 .event-info-mobile-header {
  color: black;
}
body.s-05 .event-info-mobile-header {
  color: white;
}
body.terminated .event-info-mobile-header {
  color: #dc29a8;
}
.event-info-mobile-header:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
}
body.s-01 .event-info-mobile-header:after {
  background-color: #dc2311;
}
body.s-02 .event-info-mobile-header:after {
  background-color: #dc2311;
}
body.s-03 .event-info-mobile-header:after {
  background-color: white;
}
body.s-04 .event-info-mobile-header:after {
  background-color: black;
}
body.s-05 .event-info-mobile-header:after {
  background-color: white;
}
body.terminated .event-info-mobile-header:after {
  background-color: #dc29a8;
}
.event-info-mobile-header {
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 1024px) {
  .event-info-mobile-header {
    display: none;
  }
}
.event-info-mobile-header .event-info-mobile-title {
  display: block;
  text-transform: uppercase;
  font-size: 1.75rem;
  line-height: 1.35;
  text-align: center;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  text-align: center;
}
.event-info-mobile-header .event-info-mobile-subtitle {
  display: block;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  margin-top: 0.875rem;
  text-align: center;
}

.event-info-buy-tickets,
.event-info-sold-out {
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.2;
  font-size: 1.1rem;
  line-height: 1.35;
  display: inline-block;
  padding: 0.875rem 1.1666666667rem;
  margin-right: 1.1666666667rem;
  font-size: 1rem;
}
body.s-01 .event-info-buy-tickets,
body.s-01 .event-info-sold-out {
  color: white;
  background-color: #dc2311;
}
body.s-02 .event-info-buy-tickets,
body.s-02 .event-info-sold-out {
  color: white;
  background-color: #dc2311;
}
body.s-03 .event-info-buy-tickets,
body.s-03 .event-info-sold-out {
  color: #dc2311;
  background-color: white;
}
body.s-04 .event-info-buy-tickets,
body.s-04 .event-info-sold-out {
  color: white;
  background-color: black;
}
body.s-05 .event-info-buy-tickets,
body.s-05 .event-info-sold-out {
  color: black;
  background-color: white;
}
body.terminated .event-info-buy-tickets,
body.terminated .event-info-sold-out {
  color: #96f161;
  background-color: #dc29a8;
}
.event-info-buy-tickets,
.event-info-sold-out {
  display: block;
  width: 100%;
  padding: 1.75rem;
  margin-bottom: 1.75rem;
  text-align: center;
  font-size: 1.25rem;
}

.event-info-date {
  text-transform: uppercase;
  font-size: 1.75rem;
  line-height: 1.35;
  text-align: center;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  margin-bottom: 0.5833333333rem;
  text-align: center;
}
@media screen and (min-width: 750px) {
  .event-info-date {
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
    font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
    font-weight: bold;
    letter-spacing: 0.05rem;
  }
}

.event-info-location {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  text-align: center;
}

.event-info-short {
  margin-bottom: 1.75rem;
}

.event-info-labels {
  display: flex;
  justify-content: center;
}

.event-info-details {
  overflow: hidden;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}
.event-info-details > dl {
  width: 100%;
}
.event-info-details > dl dt {
  float: left;
  width: 40%;
  font-weight: bold;
}
.event-info-details > dl dd {
  float: left;
  width: 60%;
  text-align: right;
}

.event-info-text {
  font-size: 0.8rem;
}

.event-info-practical-pages {
  margin-bottom: 1.75rem;
  font-size: 0.8rem;
  text-align: center;
}
.event-info-practical-pages a {
  display: inline-block;
  position: relative;
}
.event-info-practical-pages a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.11em;
  left: 0;
  height: 0.15em;
  backface-visibility: hidden;
}
body.s-01 .event-info-practical-pages a:after {
  background-color: #dc2311;
}
body.s-02 .event-info-practical-pages a:after {
  background-color: #dc2311;
}
body.s-03 .event-info-practical-pages a:after {
  background-color: white;
}
body.s-04 .event-info-practical-pages a:after {
  background-color: black;
}
body.s-05 .event-info-practical-pages a:after {
  background-color: white;
}
body.terminated .event-info-practical-pages a:after {
  background-color: #dc29a8;
}
.event-info-practical-pages a {
  margin-right: 0.5833333333rem;
}
.event-info-practical-pages a:last-child {
  margin-right: 0;
}

.event-concept {
  margin-bottom: 1.75rem;
}
.event-concept h4 {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  position: relative;
  line-height: 1.6;
  text-align: center;
}
.event-concept h4 span {
  position: relative;
  z-index: 2;
  padding: 0 1.75rem;
}
body.s-01 .event-concept h4 span {
  background-color: white;
}
body.s-02 .event-concept h4 span {
  background-color: white;
}
body.s-03 .event-concept h4 span {
  background-color: #dc2311;
}
body.s-04 .event-concept h4 span {
  background-color: white;
}
body.s-05 .event-concept h4 span {
  background-color: black;
}
body.terminated .event-concept h4 span {
  background-color: #96f161;
}
.event-concept h4:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
  margin-top: -0.21875rem;
}
body.s-01 .event-concept h4:after {
  background-color: #dc2311;
}
body.s-02 .event-concept h4:after {
  background-color: #dc2311;
}
body.s-03 .event-concept h4:after {
  background-color: white;
}
body.s-04 .event-concept h4:after {
  background-color: black;
}
body.s-05 .event-concept h4:after {
  background-color: white;
}
body.terminated .event-concept h4:after {
  background-color: #dc29a8;
}
.event-concept h4 {
  margin-bottom: 0.875rem;
}
.event-concept h5 {
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.2;
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 0.875rem;
}

.artist-bio {
  display: flex;
  justify-content: space-between;
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}
@media screen and (min-width: 1024px) {
  .artist-bio {
    margin-bottom: 5.25rem;
  }
}
.artist-bio:last-child {
  margin-bottom: 0;
}

.artist-bio-photo {
  position: relative;
  width: 30%;
  height: 0;
  padding-top: 30%;
}
body.s-01 .artist-bio-photo {
  background-color: #dc2311;
}
body.s-02 .artist-bio-photo {
  background-color: #dc2311;
}
body.s-03 .artist-bio-photo {
  background-color: white;
}
body.s-04 .artist-bio-photo {
  background-color: black;
}
body.s-05 .artist-bio-photo {
  background-color: white;
}
body.terminated .artist-bio-photo {
  background-color: #dc29a8;
}
.artist-bio-photo img {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  border: 0.4375rem solid;
  animation: fadein 0.5s;
}
body.s-01 .artist-bio-photo img {
  border-color: #dc2311;
}
body.s-02 .artist-bio-photo img {
  border-color: #dc2311;
}
body.s-03 .artist-bio-photo img {
  border-color: white;
}
body.s-04 .artist-bio-photo img {
  border-color: black;
}
body.s-05 .artist-bio-photo img {
  border-color: white;
}
body.terminated .artist-bio-photo img {
  border-color: #dc29a8;
}

.artist-bio-content {
  width: 70%;
  padding-left: 1.75rem;
}
@media screen and (min-width: 1024px) {
  .artist-bio-content {
    padding-left: 3.5rem;
  }
}
.artist-bio-content h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 1.6;
  position: relative;
  padding-bottom: 1em;
}
body.s-01 .artist-bio-content h3 {
  color: #dc2311;
}
body.s-02 .artist-bio-content h3 {
  color: #dc2311;
}
body.s-03 .artist-bio-content h3 {
  color: white;
}
body.s-04 .artist-bio-content h3 {
  color: black;
}
body.s-05 .artist-bio-content h3 {
  color: white;
}
body.terminated .artist-bio-content h3 {
  color: #dc29a8;
}
.artist-bio-content h3:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
}
body.s-01 .artist-bio-content h3:after {
  background-color: #dc2311;
}
body.s-02 .artist-bio-content h3:after {
  background-color: #dc2311;
}
body.s-03 .artist-bio-content h3:after {
  background-color: white;
}
body.s-04 .artist-bio-content h3:after {
  background-color: black;
}
body.s-05 .artist-bio-content h3:after {
  background-color: white;
}
body.terminated .artist-bio-content h3:after {
  background-color: #dc29a8;
}
.artist-bio-content h3 {
  margin-bottom: 1.75rem;
  text-align: left;
}
.artist-bio-content h3 sup {
  margin-left: 0.5em;
  font-size: 0.6em;
}
@media screen and (min-width: 750px) {
  .artist-bio-content h3 {
    text-align: center;
  }
}

.artist-bio-read-more {
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  display: inline-block;
  border-bottom: 0.21875rem solid;
  text-transform: lowercase;
}
body.s-01 .artist-bio-read-more {
  border-color: #dc2311;
  color: #dc2311;
}
body.s-02 .artist-bio-read-more {
  border-color: #dc2311;
  color: #dc2311;
}
body.s-03 .artist-bio-read-more {
  border-color: white;
  color: white;
}
body.s-04 .artist-bio-read-more {
  border-color: black;
  color: black;
}
body.s-05 .artist-bio-read-more {
  border-color: white;
  color: white;
}
body.terminated .artist-bio-read-more {
  border-color: #dc29a8;
  color: #dc29a8;
}
.artist-bio-read-more {
  margin-top: 0.875rem;
}

.artist-bio-social-media {
  display: flex;
  justify-content: flex-start;
  margin-top: 1.75rem;
}
@media screen and (min-width: 750px) {
  .artist-bio-social-media {
    justify-content: center;
  }
}
.artist-bio-social-media li {
  margin-right: 0.875rem;
}
@media screen and (min-width: 750px) {
  .artist-bio-social-media li {
    margin: 0 0.4375rem;
  }
}
.artist-bio-social-media li a {
  display: block;
  padding: 0.35rem;
  border-radius: 1.1666666667rem;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: center center;
}
.artist-bio-social-media li a svg {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
}
body.s-01 .artist-bio-social-media li a {
  background-color: #dc2311;
}
body.s-02 .artist-bio-social-media li a {
  background-color: #dc2311;
}
body.s-03 .artist-bio-social-media li a {
  background-color: white;
}
body.s-04 .artist-bio-social-media li a {
  background-color: black;
}
body.s-05 .artist-bio-social-media li a {
  background-color: white;
}
body.terminated .artist-bio-social-media li a {
  background-color: #dc29a8;
}
body.s-01 .artist-bio-social-media li a svg path,
body.s-01 .artist-bio-social-media li a svg polygon {
  fill: white;
}
body.s-02 .artist-bio-social-media li a svg path,
body.s-02 .artist-bio-social-media li a svg polygon {
  fill: white;
}
body.s-03 .artist-bio-social-media li a svg path,
body.s-03 .artist-bio-social-media li a svg polygon {
  fill: #dc2311;
}
body.s-04 .artist-bio-social-media li a svg path,
body.s-04 .artist-bio-social-media li a svg polygon {
  fill: white;
}
body.s-05 .artist-bio-social-media li a svg path,
body.s-05 .artist-bio-social-media li a svg polygon {
  fill: black;
}
body.terminated .artist-bio-social-media li a svg path,
body.terminated .artist-bio-social-media li a svg polygon {
  fill: #96f161;
}

#artist {
  margin-bottom: 1.75rem;
}
#artist > header {
  position: relative;
  padding-bottom: 1em;
}
body.s-01 #artist > header {
  color: #dc2311;
}
body.s-02 #artist > header {
  color: #dc2311;
}
body.s-03 #artist > header {
  color: white;
}
body.s-04 #artist > header {
  color: black;
}
body.s-05 #artist > header {
  color: white;
}
body.terminated #artist > header {
  color: #dc29a8;
}
#artist > header:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
}
body.s-01 #artist > header:after {
  background-color: #dc2311;
}
body.s-02 #artist > header:after {
  background-color: #dc2311;
}
body.s-03 #artist > header:after {
  background-color: white;
}
body.s-04 #artist > header:after {
  background-color: black;
}
body.s-05 #artist > header:after {
  background-color: white;
}
body.terminated #artist > header:after {
  background-color: #dc29a8;
}
#artist > header {
  padding-bottom: 1.75rem;
  margin-bottom: 2.625rem;
}
#artist > header h1 {
  text-transform: uppercase;
  font-size: 1.75rem;
  line-height: 1.35;
  text-align: center;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  text-align: center;
}
@media screen and (min-width: 750px) {
  #artist > header h1 {
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
    font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
    font-weight: bold;
    letter-spacing: 0.05rem;
    text-align: left;
  }
}
#artist > header h1 sup {
  margin-left: 0.5em;
  font-size: 0.6em;
}
#artist > header h2 {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  text-align: left;
}

.artist-content {
  display: flex;
  justify-content: space-between;
}

.artist-text {
  width: 70%;
  padding-left: 1.75rem;
}

.artist-text-footer {
  margin-top: 0.875rem;
}

.artist-visit-site {
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  border-bottom: 2px solid;
}
body.s-01 .artist-visit-site {
  border-bottom-color: #dc2311;
}
body.s-02 .artist-visit-site {
  border-bottom-color: #dc2311;
}
body.s-03 .artist-visit-site {
  border-bottom-color: white;
}
body.s-04 .artist-visit-site {
  border-bottom-color: black;
}
body.s-05 .artist-visit-site {
  border-bottom-color: white;
}
body.terminated .artist-visit-site {
  border-bottom-color: #dc29a8;
}
@media screen and (min-width: 1280px) {
  .artist-visit-site {
    border-width: 3px;
  }
}
@media screen and (min-width: 1750px) {
  .artist-visit-site {
    border-width: 4px;
  }
}

.artist-social-media {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.artist-social-media li {
  margin: 0 0.4375rem;
}
.artist-social-media li a {
  display: block;
  padding: 0.4375rem;
  border-radius: 1.1666666667rem;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: center center;
}
.artist-social-media li a svg {
  display: block;
  width: 1.3125rem;
  height: 1.3125rem;
}
body.s-01 .artist-social-media li a {
  background-color: #dc2311;
}
body.s-02 .artist-social-media li a {
  background-color: #dc2311;
}
body.s-03 .artist-social-media li a {
  background-color: white;
}
body.s-04 .artist-social-media li a {
  background-color: black;
}
body.s-05 .artist-social-media li a {
  background-color: white;
}
body.terminated .artist-social-media li a {
  background-color: #dc29a8;
}
body.s-01 .artist-social-media li a svg * {
  fill: white;
}
body.s-02 .artist-social-media li a svg * {
  fill: white;
}
body.s-03 .artist-social-media li a svg * {
  fill: #dc2311;
}
body.s-04 .artist-social-media li a svg * {
  fill: white;
}
body.s-05 .artist-social-media li a svg * {
  fill: black;
}
body.terminated .artist-social-media li a svg * {
  fill: #96f161;
}
.artist-social-media li.label a {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-indent: 0;
  padding-right: 1.1666666667rem;
}
.artist-social-media li.label a .social-media-title {
  font-family: Alte Haas Grotesk, sans-serif;
  line-height: 1.7;
  line-height: 1.4;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
}
.artist-social-media li.label a .social-media-subtitle {
  font-family: Alte Haas Grotesk, sans-serif;
  line-height: 1.7;
  line-height: 1.4;
  font-size: 0.65rem;
  text-transform: uppercase;
}
.artist-social-media li.label a .label-content {
  padding-left: 0.875rem;
}
body.s-01 .artist-social-media li.label a {
  border: 2px solid #dc2311;
  background-color: white;
}
body.s-02 .artist-social-media li.label a {
  border: 2px solid #dc2311;
  background-color: white;
}
body.s-03 .artist-social-media li.label a {
  border: 2px solid white;
  background-color: #dc2311;
}
body.s-04 .artist-social-media li.label a {
  border: 2px solid black;
  background-color: white;
}
body.s-05 .artist-social-media li.label a {
  border: 2px solid white;
  background-color: black;
}
body.terminated .artist-social-media li.label a {
  border: 2px solid #dc29a8;
  background-color: #96f161;
}
body.s-01 .artist-social-media li.label a svg * {
  fill: #dc2311;
}
body.s-02 .artist-social-media li.label a svg * {
  fill: #dc2311;
}
body.s-03 .artist-social-media li.label a svg * {
  fill: white;
}
body.s-04 .artist-social-media li.label a svg * {
  fill: black;
}
body.s-05 .artist-social-media li.label a svg * {
  fill: white;
}
body.terminated .artist-social-media li.label a svg * {
  fill: #dc29a8;
}

.artist-events {
  margin-bottom: 1.75rem;
}
.artist-events h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 1.6;
  position: relative;
  padding-bottom: 1em;
}
body.s-01 .artist-events h3 {
  color: #dc2311;
}
body.s-02 .artist-events h3 {
  color: #dc2311;
}
body.s-03 .artist-events h3 {
  color: white;
}
body.s-04 .artist-events h3 {
  color: black;
}
body.s-05 .artist-events h3 {
  color: white;
}
body.terminated .artist-events h3 {
  color: #dc29a8;
}
.artist-events h3:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
}
body.s-01 .artist-events h3:after {
  background-color: #dc2311;
}
body.s-02 .artist-events h3:after {
  background-color: #dc2311;
}
body.s-03 .artist-events h3:after {
  background-color: white;
}
body.s-04 .artist-events h3:after {
  background-color: black;
}
body.s-05 .artist-events h3:after {
  background-color: white;
}
body.terminated .artist-events h3:after {
  background-color: #dc29a8;
}
.artist-events h3 {
  margin-bottom: 1.75rem;
  text-align: center;
}
.artist-events:last-child {
  margin-bottom: 0;
}

.artist-event-performance {
  display: flex;
  justify-content: space-between;
  padding: 0.875rem 0;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.2;
  font-size: 1.1rem;
  line-height: 1.35;
  border-bottom: 0.4375rem solid;
}
.artist-event-performance:last-child {
  border-bottom: 0;
}
body.s-01 .artist-event-performance {
  border-color: #dc2311;
}
body.s-02 .artist-event-performance {
  border-color: #dc2311;
}
body.s-03 .artist-event-performance {
  border-color: white;
}
body.s-04 .artist-event-performance {
  border-color: black;
}
body.s-05 .artist-event-performance {
  border-color: white;
}
body.terminated .artist-event-performance {
  border-color: #dc29a8;
}

.artist-index:last-child {
  margin-bottom: 0;
}

.news-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: -1.75rem;
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}
.news-index > * {
  width: 100%;
}
.news-index > * {
  float: left;
  display: flex;
  flex-direction: column;
  padding-top: 1.75rem;
  padding-right: 0.875rem;
  padding-bottom: 0;
  padding-left: 0.875rem;
}
@media screen and (min-width: 750px) {
  .news-index > * {
    width: 50%;
  }
}
@media screen and (min-width: 1150px) {
  .news-index > * {
    width: 33.3333333333%;
  }
}

.news-item {
  display: flex;
  flex-grow: 1;
  border: 0.4375rem solid;
}
body.s-01 .news-item {
  border-color: #dc2311;
}
body.s-02 .news-item {
  border-color: #dc2311;
}
body.s-03 .news-item {
  border-color: white;
}
body.s-04 .news-item {
  border-color: black;
}
body.s-05 .news-item {
  border-color: white;
}
body.terminated .news-item {
  border-color: #dc29a8;
}
.news-item a {
  display: block;
  flex-grow: 1;
}
.news-item h3 {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  margin-bottom: 0.875rem;
}
.news-item img {
  display: block;
  width: 100%;
}

.news-item-content {
  padding: 1.75rem;
}

.newsitem-detail header {
  margin-bottom: 1.75rem;
}
.newsitem-detail h1 {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 1.6;
  position: relative;
  padding-bottom: 1em;
}
body.s-01 .newsitem-detail h1 {
  color: #dc2311;
}
body.s-02 .newsitem-detail h1 {
  color: #dc2311;
}
body.s-03 .newsitem-detail h1 {
  color: white;
}
body.s-04 .newsitem-detail h1 {
  color: black;
}
body.s-05 .newsitem-detail h1 {
  color: white;
}
body.terminated .newsitem-detail h1 {
  color: #dc29a8;
}
.newsitem-detail h1:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
}
body.s-01 .newsitem-detail h1:after {
  background-color: #dc2311;
}
body.s-02 .newsitem-detail h1:after {
  background-color: #dc2311;
}
body.s-03 .newsitem-detail h1:after {
  background-color: white;
}
body.s-04 .newsitem-detail h1:after {
  background-color: black;
}
body.s-05 .newsitem-detail h1:after {
  background-color: white;
}
body.terminated .newsitem-detail h1:after {
  background-color: #dc29a8;
}
.newsitem-detail h1 {
  margin-bottom: 0.875rem;
}
.newsitem-detail time {
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.2;
  font-size: 1.1rem;
  line-height: 1.35;
}

.subscribe-status h2 {
  text-transform: uppercase;
  font-size: 1.75rem;
  line-height: 1.35;
  text-align: center;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  position: relative;
  padding-bottom: 1em;
}
body.s-01 .subscribe-status h2 {
  color: #dc2311;
}
body.s-02 .subscribe-status h2 {
  color: #dc2311;
}
body.s-03 .subscribe-status h2 {
  color: white;
}
body.s-04 .subscribe-status h2 {
  color: black;
}
body.s-05 .subscribe-status h2 {
  color: white;
}
body.terminated .subscribe-status h2 {
  color: #dc29a8;
}
.subscribe-status h2:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
}
body.s-01 .subscribe-status h2:after {
  background-color: #dc2311;
}
body.s-02 .subscribe-status h2:after {
  background-color: #dc2311;
}
body.s-03 .subscribe-status h2:after {
  background-color: white;
}
body.s-04 .subscribe-status h2:after {
  background-color: black;
}
body.s-05 .subscribe-status h2:after {
  background-color: white;
}
body.terminated .subscribe-status h2:after {
  background-color: #dc29a8;
}
.subscribe-status h2 {
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 750px) {
  .subscribe-status h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
    font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
    font-weight: bold;
    letter-spacing: 0.05rem;
    position: relative;
    padding-bottom: 1em;
  }
  body.s-01 .subscribe-status h2 {
    color: #dc2311;
  }
  body.s-02 .subscribe-status h2 {
    color: #dc2311;
  }
  body.s-03 .subscribe-status h2 {
    color: white;
  }
  body.s-04 .subscribe-status h2 {
    color: black;
  }
  body.s-05 .subscribe-status h2 {
    color: white;
  }
  body.terminated .subscribe-status h2 {
    color: #dc29a8;
  }
  .subscribe-status h2:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 0.4375rem;
  }
  body.s-01 .subscribe-status h2:after {
    background-color: #dc2311;
  }
  body.s-02 .subscribe-status h2:after {
    background-color: #dc2311;
  }
  body.s-03 .subscribe-status h2:after {
    background-color: white;
  }
  body.s-04 .subscribe-status h2:after {
    background-color: black;
  }
  body.s-05 .subscribe-status h2:after {
    background-color: white;
  }
  body.terminated .subscribe-status h2:after {
    background-color: #dc29a8;
  }
}

.location-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: -1.75rem;
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}
.location-index > * {
  width: 100%;
}
.location-index > * {
  float: left;
  display: flex;
  flex-direction: column;
  padding-top: 1.75rem;
  padding-right: 0.875rem;
  padding-bottom: 0;
  padding-left: 0.875rem;
}
@media screen and (min-width: 750px) {
  .location-index > * {
    width: 50%;
  }
}
@media screen and (min-width: 1375px) {
  .location-index > * {
    width: 33.3333333333%;
  }
}

.location {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  border: 0.4375rem solid;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
}
.location a {
  display: block;
  flex-grow: 1;
  padding: 1.75rem;
}
body.s-01 .location {
  border-color: #dc2311;
}
body.s-02 .location {
  border-color: #dc2311;
}
body.s-03 .location {
  border-color: white;
}
body.s-04 .location {
  border-color: black;
}
body.s-05 .location {
  border-color: white;
}
body.terminated .location {
  border-color: #dc29a8;
}

.location-detail > header h1 {
  text-transform: uppercase;
  font-size: 2.5rem;
  line-height: 1.2;
  text-align: center;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  position: relative;
  padding-bottom: 1em;
}
body.s-01 .location-detail > header h1 {
  color: #dc2311;
}
body.s-02 .location-detail > header h1 {
  color: #dc2311;
}
body.s-03 .location-detail > header h1 {
  color: white;
}
body.s-04 .location-detail > header h1 {
  color: black;
}
body.s-05 .location-detail > header h1 {
  color: white;
}
body.terminated .location-detail > header h1 {
  color: #dc29a8;
}
.location-detail > header h1:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
}
body.s-01 .location-detail > header h1:after {
  background-color: #dc2311;
}
body.s-02 .location-detail > header h1:after {
  background-color: #dc2311;
}
body.s-03 .location-detail > header h1:after {
  background-color: white;
}
body.s-04 .location-detail > header h1:after {
  background-color: black;
}
body.s-05 .location-detail > header h1:after {
  background-color: white;
}
body.terminated .location-detail > header h1:after {
  background-color: #dc29a8;
}
.location-detail > header h1 {
  text-align: left;
}
.location-detail address {
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.2;
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 1.75rem 0;
}

.location-map {
  height: 26.25rem;
  border: 0.4375rem solid;
  margin-top: 1.75rem;
}
body.s-01 .location-map {
  border-color: #dc2311;
}
body.s-02 .location-map {
  border-color: #dc2311;
}
body.s-03 .location-map {
  border-color: white;
}
body.s-04 .location-map {
  border-color: black;
}
body.s-05 .location-map {
  border-color: white;
}
body.terminated .location-map {
  border-color: #dc29a8;
}

.concept-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: -1.75rem;
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}
.concept-index > * {
  width: 100%;
}
.concept-index > * {
  float: left;
  display: flex;
  flex-direction: column;
  padding-top: 1.75rem;
  padding-right: 0.875rem;
  padding-bottom: 0;
  padding-left: 0.875rem;
}
@media screen and (min-width: 750px) {
  .concept-index > * {
    width: 50%;
  }
}
@media screen and (min-width: 1375px) {
  .concept-index > * {
    width: 33.3333333333%;
  }
}

.concept {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  border: 0.4375rem solid;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
}
.concept a {
  display: block;
  flex-grow: 1;
  padding: 1.75rem;
}
body.s-01 .concept {
  border-color: #dc2311;
}
body.s-02 .concept {
  border-color: #dc2311;
}
body.s-03 .concept {
  border-color: white;
}
body.s-04 .concept {
  border-color: black;
}
body.s-05 .concept {
  border-color: white;
}
body.terminated .concept {
  border-color: #dc29a8;
}

.concept-detail {
  margin-bottom: 1.75rem;
}
.concept-detail > header {
  margin-bottom: 1.75rem;
}
.concept-detail > header h1 {
  text-transform: uppercase;
  font-size: 2.5rem;
  line-height: 1.2;
  text-align: center;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  position: relative;
  padding-bottom: 1em;
}
body.s-01 .concept-detail > header h1 {
  color: #dc2311;
}
body.s-02 .concept-detail > header h1 {
  color: #dc2311;
}
body.s-03 .concept-detail > header h1 {
  color: white;
}
body.s-04 .concept-detail > header h1 {
  color: black;
}
body.s-05 .concept-detail > header h1 {
  color: white;
}
body.terminated .concept-detail > header h1 {
  color: #dc29a8;
}
.concept-detail > header h1:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
}
body.s-01 .concept-detail > header h1:after {
  background-color: #dc2311;
}
body.s-02 .concept-detail > header h1:after {
  background-color: #dc2311;
}
body.s-03 .concept-detail > header h1:after {
  background-color: white;
}
body.s-04 .concept-detail > header h1:after {
  background-color: black;
}
body.s-05 .concept-detail > header h1:after {
  background-color: white;
}
body.terminated .concept-detail > header h1:after {
  background-color: #dc29a8;
}
.concept-detail > header h1 {
  text-align: left;
}

.partners-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: -1.75rem;
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}
.partners-index > * {
  width: 50%;
}
.partners-index > * {
  float: left;
  display: flex;
  flex-direction: column;
  padding-top: 1.75rem;
  padding-right: 0.875rem;
  padding-bottom: 0;
  padding-left: 0.875rem;
}
@media screen and (min-width: 750px) {
  .partners-index {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: -3.5rem;
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }
  .partners-index > * {
    width: 50%;
  }
  .partners-index > * {
    float: left;
    display: flex;
    flex-direction: column;
    padding-top: 3.5rem;
    padding-right: 1.75rem;
    padding-bottom: 0;
    padding-left: 1.75rem;
  }
}
@media screen and (min-width: 750px) and (min-width: 750px) {
  .partners-index > * {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 750px) and (min-width: 1750px) {
  .partners-index > * {
    width: 25%;
  }
}
.partners-index li {
  display: block;
}
.partners-index a {
  display: block;
}
.partners-index img {
  display: none;
  width: 100%;
  height: auto;
}
body.s-01 .partners-index img:nth-child(1) {
  display: block;
}
body.s-02 .partners-index img:nth-child(1) {
  display: block;
}
body.s-03 .partners-index img:nth-child(3) {
  display: block;
}
body.s-04 .partners-index img:nth-child(2) {
  display: block;
}
body.s-05 .partners-index img:nth-child(3) {
  display: block;
}
.search-index h2 {
  text-transform: uppercase;
  font-size: 1.75rem;
  line-height: 1.35;
  text-align: center;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  position: relative;
  padding-bottom: 1em;
}
body.s-01 .search-index h2 {
  color: #dc2311;
}
body.s-02 .search-index h2 {
  color: #dc2311;
}
body.s-03 .search-index h2 {
  color: white;
}
body.s-04 .search-index h2 {
  color: black;
}
body.s-05 .search-index h2 {
  color: white;
}
body.terminated .search-index h2 {
  color: #dc29a8;
}
.search-index h2:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
}
body.s-01 .search-index h2:after {
  background-color: #dc2311;
}
body.s-02 .search-index h2:after {
  background-color: #dc2311;
}
body.s-03 .search-index h2:after {
  background-color: white;
}
body.s-04 .search-index h2:after {
  background-color: black;
}
body.s-05 .search-index h2:after {
  background-color: white;
}
body.terminated .search-index h2:after {
  background-color: #dc29a8;
}
.search-index h2 {
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 750px) {
  .search-index h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
    font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
    font-weight: bold;
    letter-spacing: 0.05rem;
    position: relative;
    padding-bottom: 1em;
  }
  body.s-01 .search-index h2 {
    color: #dc2311;
  }
  body.s-02 .search-index h2 {
    color: #dc2311;
  }
  body.s-03 .search-index h2 {
    color: white;
  }
  body.s-04 .search-index h2 {
    color: black;
  }
  body.s-05 .search-index h2 {
    color: white;
  }
  body.terminated .search-index h2 {
    color: #dc29a8;
  }
  .search-index h2:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 0.4375rem;
  }
  body.s-01 .search-index h2:after {
    background-color: #dc2311;
  }
  body.s-02 .search-index h2:after {
    background-color: #dc2311;
  }
  body.s-03 .search-index h2:after {
    background-color: white;
  }
  body.s-04 .search-index h2:after {
    background-color: black;
  }
  body.s-05 .search-index h2:after {
    background-color: white;
  }
  body.terminated .search-index h2:after {
    background-color: #dc29a8;
  }
}

.search-index-section {
  margin-bottom: 3.5rem;
}
.search-index-section:last-child {
  margin-bottom: 0;
}
.search-index-section > h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 1.6;
  position: relative;
  padding-bottom: 1em;
}
body.s-01 .search-index-section > h3 {
  color: #dc2311;
}
body.s-02 .search-index-section > h3 {
  color: #dc2311;
}
body.s-03 .search-index-section > h3 {
  color: white;
}
body.s-04 .search-index-section > h3 {
  color: black;
}
body.s-05 .search-index-section > h3 {
  color: white;
}
body.terminated .search-index-section > h3 {
  color: #dc29a8;
}
.search-index-section > h3:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
}
body.s-01 .search-index-section > h3:after {
  background-color: #dc2311;
}
body.s-02 .search-index-section > h3:after {
  background-color: #dc2311;
}
body.s-03 .search-index-section > h3:after {
  background-color: white;
}
body.s-04 .search-index-section > h3:after {
  background-color: black;
}
body.s-05 .search-index-section > h3:after {
  background-color: white;
}
body.terminated .search-index-section > h3:after {
  background-color: #dc29a8;
}
.search-index-section > h3 {
  margin-bottom: 1.75rem;
}
.search-index-section.empty > h3 {
  text-align: center;
}

.select {
  position: relative;
}
.select select {
  background-color: #000;
  color: #fff;
  padding: 0.875rem;
  appearance: none;
  width: 100%;
  font-size: 1.15rem;
  padding: 0.675em 6em 0.675em 1em;
  cursor: pointer;
}
.select::before, .select::after {
  --size: 0.3rem;
  content: "";
  position: absolute;
  right: 1rem;
  pointer-events: none;
}
.select::before {
  top: 50%;
  width: 15px;
  height: 10px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23.68 14.62'%3E%3Cpath fill='%23fff' d='m20.9,0l-9.06,9.04L2.78,0,0,2.78l11.84,11.84L23.68,2.78l-2.78-2.78Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.page-block {
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 750px) {
  .page-block {
    margin-bottom: 3.5rem;
  }
}
.page-block h2 {
  text-transform: uppercase;
  font-size: 1.75rem;
  line-height: 1.35;
  text-align: center;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  position: relative;
  padding-bottom: 1em;
}
body.s-01 .page-block h2 {
  color: #dc2311;
}
body.s-02 .page-block h2 {
  color: #dc2311;
}
body.s-03 .page-block h2 {
  color: white;
}
body.s-04 .page-block h2 {
  color: black;
}
body.s-05 .page-block h2 {
  color: white;
}
body.terminated .page-block h2 {
  color: #dc29a8;
}
.page-block h2:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
}
body.s-01 .page-block h2:after {
  background-color: #dc2311;
}
body.s-02 .page-block h2:after {
  background-color: #dc2311;
}
body.s-03 .page-block h2:after {
  background-color: white;
}
body.s-04 .page-block h2:after {
  background-color: black;
}
body.s-05 .page-block h2:after {
  background-color: white;
}
body.terminated .page-block h2:after {
  background-color: #dc29a8;
}
.page-block h2 {
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 750px) {
  .page-block h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
    font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
    font-weight: bold;
    letter-spacing: 0.05rem;
    position: relative;
    padding-bottom: 1em;
  }
  body.s-01 .page-block h2 {
    color: #dc2311;
  }
  body.s-02 .page-block h2 {
    color: #dc2311;
  }
  body.s-03 .page-block h2 {
    color: white;
  }
  body.s-04 .page-block h2 {
    color: black;
  }
  body.s-05 .page-block h2 {
    color: white;
  }
  body.terminated .page-block h2 {
    color: #dc29a8;
  }
  .page-block h2:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 0.4375rem;
  }
  body.s-01 .page-block h2:after {
    background-color: #dc2311;
  }
  body.s-02 .page-block h2:after {
    background-color: #dc2311;
  }
  body.s-03 .page-block h2:after {
    background-color: white;
  }
  body.s-04 .page-block h2:after {
    background-color: black;
  }
  body.s-05 .page-block h2:after {
    background-color: white;
  }
  body.terminated .page-block h2:after {
    background-color: #dc29a8;
  }
}
.page-block:last-child {
  margin-bottom: 0;
}
.page-block .page-block-content {
  display: flex;
  flex-direction: column;
}
.page-block.photo-below-text .page-block-content .page-block-photo {
  order: 3;
  margin-top: 1.75rem;
  margin-bottom: 0;
}
.page-block.photo-text .page-block-content {
  flex-direction: row;
}
.page-block.photo-text .page-block-content .page-block-photo {
  width: 40%;
  padding-right: 1.75rem;
  margin-bottom: 0;
}
.page-block.photo-text .page-block-content .page-block-body {
  width: 60%;
}
.page-block.text-photo .page-block-content {
  flex-direction: row-reverse;
}
.page-block.text-photo .page-block-content .page-block-photo {
  width: 40%;
  padding-left: 1.75rem;
  margin-bottom: 0;
}
.page-block.text-photo .page-block-content .page-block-body {
  width: 60%;
}

.page-block-body {
  flex-grow: 1;
}

.page-block-photo {
  flex-grow: 1;
  width: 100%;
  margin-bottom: 1.75rem;
}
.page-block-photo img {
  display: block;
  width: 100%;
}

.cookie-notice {
  position: fixed;
  z-index: 9999;
  background-color: #fff;
  padding: 0.875rem;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (min-width: 1024px) {
  .cookie-notice {
    font-size: 0.875rem;
    left: unset;
    bottom: 1.75rem;
    right: 1.75rem;
  }
}
.cookie-notice__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.cookie-notice__wrapper > * {
  margin-bottom: 0.525rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .cookie-notice__wrapper > * {
    text-align: left;
  }
}
.cookie-notice__wrapper > *:last-child {
  margin-bottom: unset;
}
.cookie-notice__footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.875rem;
}
@media screen and (min-width: 600px) {
  .cookie-notice__footer {
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .cookie-notice__footer {
    justify-content: flex-start;
  }
}
.cookie-notice__link {
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
}
.cookie-notice__link:after {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml;utf8,<svg width='24' xmlns='http://www.w3.org/2000/svg' height='24' fill='none' viewBox='0 0 24 24'><path stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M9.25 4.75H6.75C5.64543 4.75 4.75 5.64543 4.75 6.75V17.25C4.75 18.3546 5.64543 19.25 6.75 19.25H17.25C18.3546 19.25 19.25 18.3546 19.25 17.25V14.75'/><path stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M19.25 9.25V4.75H14.75'/><path stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M19 5L11.75 12.25'/></svg>");
  background-size: cover;
  width: 16px;
  height: 16px;
  margin-left: 0.25em;
}
.cookie-notice__button--essential, .cookie-notice__button--agree {
  text-align: center;
  cursor: pointer;
  border: 1px solid green;
  color: green;
  transform: scale(1);
  transition: transform 300ms ease-in-out;
  padding: 0.35rem 0.875rem;
}
.cookie-notice__button--essential:hover, .cookie-notice__button--agree:hover {
  transform: scale(1.03);
}
.cookie-notice__button--agree {
  background-color: green;
  color: white;
}

.wysiwyg strong {
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
}
.wysiwyg em {
  font-style: italic;
}
.wysiwyg p, .wysiwyg ul, .wysiwyg ol {
  margin-bottom: 1.75rem;
}
.wysiwyg p:last-child, .wysiwyg ul:last-child, .wysiwyg ol:last-child {
  margin-bottom: 0;
}
.wysiwyg a {
  position: relative;
  border-bottom: 2px solid;
}
body.s-01 .wysiwyg a {
  border-color: #dc2311;
}
body.s-02 .wysiwyg a {
  border-color: #dc2311;
}
body.s-03 .wysiwyg a {
  border-color: white;
}
body.s-04 .wysiwyg a {
  border-color: black;
}
body.s-05 .wysiwyg a {
  border-color: white;
}
body.terminated .wysiwyg a {
  border-color: #dc29a8;
}
@media screen and (min-width: 1280px) {
  .wysiwyg a {
    border-width: 3px;
  }
}
@media screen and (min-width: 1750px) {
  .wysiwyg a {
    border-width: 4px;
  }
}
.wysiwyg ul li {
  margin-left: 2rem;
  list-style: square;
}

.thumb-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: -1.75rem;
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}
.thumb-grid > * {
  width: 100%;
}
.thumb-grid > * {
  float: left;
  display: flex;
  flex-direction: column;
  padding-top: 1.75rem;
  padding-right: 0.875rem;
  padding-bottom: 0;
  padding-left: 0.875rem;
}
@media screen and (min-width: 600px) {
  .thumb-grid > * {
    width: 50%;
  }
}
@media screen and (min-width: 750px) {
  .thumb-grid > * {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 1150px) {
  .thumb-grid > * {
    width: 25%;
  }
}

.thumb-item {
  display: flex;
  flex-grow: 1;
  border-bottom: 0.4375rem solid;
}
.thumb-item a {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  padding-bottom: 1.75rem;
}
.thumb-item span {
  line-height: 1.5;
}
@media screen and (min-width: 750px) {
  .thumb-item.alt {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .thumb-item.alt a {
    padding-bottom: 0;
  }
  .thumb-item.alt .thumb-item-title {
    order: 1;
  }
  .thumb-item.alt .thumb-item-subtitle {
    order: 2;
    margin-bottom: 1.75rem;
  }
  .thumb-item.alt .thumb-item-photo {
    order: 3;
    margin-bottom: 0;
    margin-top: auto;
  }
}

.thumb-item-photo {
  position: relative;
  width: 100%;
  margin-bottom: 1.75rem;
}
body.s-01 .thumb-item-photo {
  background-color: #dc2311;
}
body.s-02 .thumb-item-photo {
  background-color: #dc2311;
}
body.s-03 .thumb-item-photo {
  background-color: white;
}
body.s-04 .thumb-item-photo {
  background-color: black;
}
body.s-05 .thumb-item-photo {
  background-color: white;
}
body.terminated .thumb-item-photo {
  background-color: #dc29a8;
}
.thumb-item-photo img {
  border: 0.4375rem solid;
}

.thumb-item-title {
  display: block;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 0.5833333333rem;
}

.thumb-item-subtitle {
  display: block;
}

.videos-index {
  margin-bottom: 3.5rem;
}
.videos-index:last-child {
  margin-bottom: 0;
}
.videos-index h2 {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 1.6;
  position: relative;
  padding-bottom: 1em;
}
body.s-01 .videos-index h2 {
  color: #dc2311;
}
body.s-02 .videos-index h2 {
  color: #dc2311;
}
body.s-03 .videos-index h2 {
  color: white;
}
body.s-04 .videos-index h2 {
  color: black;
}
body.s-05 .videos-index h2 {
  color: white;
}
body.terminated .videos-index h2 {
  color: #dc29a8;
}
.videos-index h2:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
}
body.s-01 .videos-index h2:after {
  background-color: #dc2311;
}
body.s-02 .videos-index h2:after {
  background-color: #dc2311;
}
body.s-03 .videos-index h2:after {
  background-color: white;
}
body.s-04 .videos-index h2:after {
  background-color: black;
}
body.s-05 .videos-index h2:after {
  background-color: white;
}
body.terminated .videos-index h2:after {
  background-color: #dc29a8;
}
.videos-index h2 {
  margin-bottom: 1.75rem;
  text-align: center;
}
@media screen and (min-width: 750px) {
  .videos-index h2 {
    text-align: left;
  }
}

.videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: -1.75rem;
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}
.videos > * {
  width: 100%;
}
.videos > * {
  float: left;
  display: flex;
  flex-direction: column;
  padding-top: 1.75rem;
  padding-right: 0.875rem;
  padding-bottom: 0;
  padding-left: 0.875rem;
}
@media screen and (min-width: 750px) {
  .videos > * {
    width: 50%;
  }
}
.videos > div {
  display: block;
}

.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56%;
  border: 0.4375rem solid;
}
body.s-01 .video {
  border-color: #dc2311;
}
body.s-02 .video {
  border-color: #dc2311;
}
body.s-03 .video {
  border-color: white;
}
body.s-04 .video {
  border-color: black;
}
body.s-05 .video {
  border-color: white;
}
body.terminated .video {
  border-color: #dc29a8;
}
.video > div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
.video > div iframe {
  width: 100%;
  height: 100%;
}

.pagination {
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
}
.pagination ul {
  display: flex;
  flex-wrap: wrap;
}
.pagination ul li a {
  display: block;
  height: 1.75rem;
  padding: 0 0.5833333333rem;
  line-height: 1.75rem;
}
.pagination ul li.active a {
  font-weight: bold;
}
body.s-01 .pagination ul li.active a {
  background-color: #dc2311;
  color: white;
}
body.s-02 .pagination ul li.active a {
  background-color: #dc2311;
  color: white;
}
body.s-03 .pagination ul li.active a {
  background-color: white;
  color: #dc2311;
}
body.s-04 .pagination ul li.active a {
  background-color: black;
  color: white;
}
body.s-05 .pagination ul li.active a {
  background-color: white;
  color: black;
}
body.terminated .pagination ul li.active a {
  background-color: #dc29a8;
  color: #96f161;
}

.page-subnav-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: -1.75rem;
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}
.page-subnav-blocks > * {
  width: 100%;
}
.page-subnav-blocks > * {
  float: left;
  display: flex;
  flex-direction: column;
  padding-top: 1.75rem;
  padding-right: 0.875rem;
  padding-bottom: 0;
  padding-left: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .page-subnav-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: -3.5rem;
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }
  .page-subnav-blocks > * {
    width: 50%;
  }
  .page-subnav-blocks > * {
    float: left;
    display: flex;
    flex-direction: column;
    padding-top: 3.5rem;
    padding-right: 1.75rem;
    padding-bottom: 0;
    padding-left: 1.75rem;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .page-subnav-blocks > * {
    width: 33.3333333333%;
  }
}

.page-subnav-block a {
  display: block;
}
.page-subnav-block h5 {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 1.2;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  line-height: 1.6;
  position: relative;
  padding-bottom: 1em;
}
body.s-01 .page-subnav-block h5 {
  color: #dc2311;
}
body.s-02 .page-subnav-block h5 {
  color: #dc2311;
}
body.s-03 .page-subnav-block h5 {
  color: white;
}
body.s-04 .page-subnav-block h5 {
  color: black;
}
body.s-05 .page-subnav-block h5 {
  color: white;
}
body.terminated .page-subnav-block h5 {
  color: #dc29a8;
}
.page-subnav-block h5:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 0.4375rem;
}
body.s-01 .page-subnav-block h5:after {
  background-color: #dc2311;
}
body.s-02 .page-subnav-block h5:after {
  background-color: #dc2311;
}
body.s-03 .page-subnav-block h5:after {
  background-color: white;
}
body.s-04 .page-subnav-block h5:after {
  background-color: black;
}
body.s-05 .page-subnav-block h5:after {
  background-color: white;
}
body.terminated .page-subnav-block h5:after {
  background-color: #dc29a8;
}
.page-subnav-block h5 {
  margin-bottom: 1.75rem;
}

.tooltip {
  vertical-align: middle;
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.3em;
  border: 0.1458333333rem solid;
  border-radius: 50%;
  cursor: help;
}
.tooltip:after {
  content: "i";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  line-height: 1em;
  font-size: 0.7em;
  text-align: center;
  font-weight: bold;
}
body.s-01 .tooltip {
  border-color: #dc2311;
}
body.s-01 .tooltip:after {
  color: #dc2311;
}
body.s-02 .tooltip {
  border-color: #dc2311;
}
body.s-02 .tooltip:after {
  color: #dc2311;
}
body.s-03 .tooltip {
  border-color: white;
}
body.s-03 .tooltip:after {
  color: white;
}
body.s-04 .tooltip {
  border-color: black;
}
body.s-04 .tooltip:after {
  color: black;
}
body.s-05 .tooltip {
  border-color: white;
}
body.s-05 .tooltip:after {
  color: white;
}
body.terminated .tooltip {
  border-color: #dc29a8;
}
body.terminated .tooltip:after {
  color: #dc29a8;
}

.tooltip-text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0.5em;
  font-size: 0.8rem;
}
body.s-01 .tooltip-text {
  background-color: #dc2311;
  color: white;
}
body.s-02 .tooltip-text {
  background-color: #dc2311;
  color: white;
}
body.s-03 .tooltip-text {
  background-color: white;
  color: #dc2311;
}
body.s-04 .tooltip-text {
  background-color: black;
  color: white;
}
body.s-05 .tooltip-text {
  background-color: white;
  color: black;
}
body.terminated .tooltip-text {
  background-color: #dc29a8;
  color: #96f161;
}

.square-photo {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
body.s-01 .square-photo {
  background-color: #dc2311;
}
body.s-02 .square-photo {
  background-color: #dc2311;
}
body.s-03 .square-photo {
  background-color: white;
}
body.s-04 .square-photo {
  background-color: black;
}
body.s-05 .square-photo {
  background-color: white;
}
body.terminated .square-photo {
  background-color: #dc29a8;
}
.square-photo > img {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  animation: fadein 0.5s;
}

.newsletter-subscribe-prompt {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.newsletter-subscribe-prompt__content {
  display: block;
  width: 90%;
  padding: 2.625rem 3.5rem;
  animation: fadeInContent forwards 0.5s;
}
body.s-01 .newsletter-subscribe-prompt__content {
  color: #dc2311;
  background-color: white;
}
body.s-02 .newsletter-subscribe-prompt__content {
  color: #dc2311;
  background-color: white;
}
body.s-03 .newsletter-subscribe-prompt__content {
  color: white;
  background-color: #dc2311;
}
body.s-04 .newsletter-subscribe-prompt__content {
  color: black;
  background-color: white;
}
body.s-05 .newsletter-subscribe-prompt__content {
  color: white;
  background-color: black;
}
body.terminated .newsletter-subscribe-prompt__content {
  color: #dc29a8;
  background-color: #96f161;
}
@media screen and (min-width: 750px) {
  .newsletter-subscribe-prompt__content {
    width: 75%;
  }
}
@media screen and (min-width: 1150px) {
  .newsletter-subscribe-prompt__content {
    width: 50%;
  }
}
.newsletter-subscribe-prompt__title {
  display: block;
  margin-bottom: 1.1666666667rem;
}
.newsletter-subscribe-prompt__title .title {
  text-transform: uppercase;
  font-size: 1.75rem;
  line-height: 1.35;
  text-align: center;
  font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  text-align: center;
}
@media screen and (min-width: 750px) {
  .newsletter-subscribe-prompt__title .title {
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
    font-family: Alte Haas Grotesk Bold, Alte Haas Grotesk, sans-serif;
    font-weight: bold;
    letter-spacing: 0.05rem;
    text-align: left;
  }
}
@media screen and (min-width: 600px) {
  .newsletter-subscribe-prompt__title {
    margin-bottom: 1.75rem;
  }
}
.newsletter-subscribe-prompt__description {
  display: block;
  margin-bottom: 1.75rem;
}
.newsletter-subscribe-prompt .fieldset__input {
  margin-bottom: 0.875rem;
}
.newsletter-subscribe-prompt .fieldset__input .field {
  box-sizing: border-box;
  width: 100%;
  padding: 0.5833333333rem 1.1666666667rem;
  border: 0.1458333333rem solid;
  border-radius: 0;
  appearance: none;
}
body.s-01 .newsletter-subscribe-prompt .fieldset__input .field {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-01 .newsletter-subscribe-prompt .fieldset__input .field::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: #dc2311;
}
body.s-02 .newsletter-subscribe-prompt .fieldset__input .field {
  border-color: white;
  color: white;
  background-color: #dc2311;
}
body.s-02 .newsletter-subscribe-prompt .fieldset__input .field::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: white;
}
body.s-03 .newsletter-subscribe-prompt .fieldset__input .field {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-03 .newsletter-subscribe-prompt .fieldset__input .field::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: #dc2311;
}
body.s-04 .newsletter-subscribe-prompt .fieldset__input .field {
  border-color: white;
  color: white;
  background-color: black;
}
body.s-04 .newsletter-subscribe-prompt .fieldset__input .field::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: white;
}
body.s-05 .newsletter-subscribe-prompt .fieldset__input .field {
  border-color: black;
  color: black;
  background-color: white;
}
body.s-05 .newsletter-subscribe-prompt .fieldset__input .field::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: black;
}
body.terminated .newsletter-subscribe-prompt .fieldset__input .field {
  border-color: #dc29a8;
  color: #dc29a8;
  background-color: #96f161;
}
body.terminated .newsletter-subscribe-prompt .fieldset__input .field::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: #dc29a8;
}
.newsletter-subscribe-prompt__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.75rem;
}
.newsletter-subscribe-prompt__overlay {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation: fadeInOverlay forwards 0.35s;
}
body.s-01 .newsletter-subscribe-prompt__overlay {
  background-color: #dc2311;
}
body.s-02 .newsletter-subscribe-prompt__overlay {
  background-color: #dc2311;
}
body.s-03 .newsletter-subscribe-prompt__overlay {
  background-color: white;
}
body.s-04 .newsletter-subscribe-prompt__overlay {
  background-color: black;
}
body.s-05 .newsletter-subscribe-prompt__overlay {
  background-color: white;
}
body.terminated .newsletter-subscribe-prompt__overlay {
  background-color: #dc29a8;
}
.newsletter-subscribe-prompt .button {
  cursor: pointer;
  padding: 0.5833333333rem 1.1666666667rem;
  border: 0.1458333333rem solid transparent;
}
.newsletter-subscribe-prompt .button--highlight {
  border: 0.1458333333rem solid;
}
body.s-01 .newsletter-subscribe-prompt .button--highlight {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-01 .newsletter-subscribe-prompt .button--highlight::-webkit-input-placeholder {
  color: #dc2311;
}
body.s-02 .newsletter-subscribe-prompt .button--highlight {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-02 .newsletter-subscribe-prompt .button--highlight::-webkit-input-placeholder {
  color: white;
}
body.s-03 .newsletter-subscribe-prompt .button--highlight {
  border-color: #dc2311;
  color: #dc2311;
  background-color: white;
}
body.s-03 .newsletter-subscribe-prompt .button--highlight::-webkit-input-placeholder {
  color: #dc2311;
}
body.s-04 .newsletter-subscribe-prompt .button--highlight {
  border-color: black;
  color: black;
  background-color: white;
}
body.s-04 .newsletter-subscribe-prompt .button--highlight::-webkit-input-placeholder {
  color: white;
}
body.s-05 .newsletter-subscribe-prompt .button--highlight {
  border-color: black;
  color: black;
  background-color: white;
}
body.s-05 .newsletter-subscribe-prompt .button--highlight::-webkit-input-placeholder {
  color: black;
}
body.terminated .newsletter-subscribe-prompt .button--highlight {
  border-color: #dc29a8;
  color: #dc29a8;
  background-color: #96f161;
}
body.terminated .newsletter-subscribe-prompt .button--highlight::-webkit-input-placeholder {
  color: #dc29a8;
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(3%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.95;
  }
}
.button-group {
  display: flex;
  align-items: center;
}
.button-group > * {
  margin-right: 1.75rem;
}
.button-group > *:last-child {
  margin-right: 0;
}

@media screen and (min-width: 1024px) {
  .fieldset__group {
    display: flex;
    gap: 0.875rem;
  }
  .fieldset__group > fieldset {
    width: 100%;
  }
}

.checkbox {
  /*
  	Config
   */
  position: relative;
  padding-left: 2.1875rem;
  touch-callout: none;
  user-select: none;
}
.checkbox__field {
  position: absolute;
  top: 0.7rem;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
  width: 1.1666666667rem;
  height: 1.1666666667rem;
  transform: translateY(-0.4375rem);
  opacity: 0;
}
.checkbox__label:before, .checkbox__label:after {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
  width: 1.1666666667rem;
  height: 1.1666666667rem;
  transform: translateY(-0.4375rem);
}
.checkbox__label:before {
  border: 1px solid;
  vertical-align: middle;
}
body.s-01 .checkbox__label:before {
  border-color: #dc2311;
  background-color: white;
}
body.s-02 .checkbox__label:before {
  border-color: #dc2311;
  background-color: white;
}
body.s-03 .checkbox__label:before {
  border-color: white;
  background-color: #dc2311;
}
body.s-04 .checkbox__label:before {
  border-color: black;
  background-color: white;
}
body.s-05 .checkbox__label:before {
  border-color: white;
  background-color: black;
}
body.terminated .checkbox__label:before {
  border-color: #dc29a8;
  background-color: #96f161;
}
.checkbox__label:after {
  transform: scale(0.01) translateY(-0.4375rem);
  transition: background-color 0.1s, transform 0.15s;
}
body.s-01 .checkbox__label:after {
  background-color: #dc2311;
}
body.s-02 .checkbox__label:after {
  background-color: #dc2311;
}
body.s-03 .checkbox__label:after {
  background-color: white;
}
body.s-04 .checkbox__label:after {
  background-color: black;
}
body.s-05 .checkbox__label:after {
  background-color: white;
}
body.terminated .checkbox__label:after {
  background-color: #dc29a8;
}
.checkbox__label a {
  border-bottom: 1px solid;
}
body.s-01 .checkbox__label a {
  border-color: #dc2311;
}
body.s-02 .checkbox__label a {
  border-color: #dc2311;
}
body.s-03 .checkbox__label a {
  border-color: white;
}
body.s-04 .checkbox__label a {
  border-color: black;
}
body.s-05 .checkbox__label a {
  border-color: white;
}
body.terminated .checkbox__label a {
  border-color: #dc29a8;
}
.checkbox input:checked + label:after {
  transform: scale(1) translateY(-0.4375rem);
}