/* THEME VARIABLES */
:root {
  --dark-blue: #18214d;
  --light-blue: #345dee;
  --white: #ffffff;
  --black: #000000;
  --dark-gray: #dfe4ea;
  --light-gray: #eff2f6;
  --border-gray: rgba(255, 255, 255, 0.1);
  --accent-color: #ceff00;
  --error-color: #ff354d;

  --header-height: 6.125rem;

  --border-radius: 0px;

  --border-width: 2px;
  --border: 2px solid;
}

/* FONTS */
@font-face {
  font-family: 'Shapiro 75 Heavy Extd';
  src: url('/fonts/shapiro-75-heavy-extended.woff2') format('woff2'),
    url('/fonts/shapiro-75-heavy-extended.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'Basier Square Regular';
  src: url('/fonts/basier-square-regular.woff2') format('woff2'),
    url('/fonts/basier-square-regular.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'Basier Square Semibold';
  src: url('/fonts/basier-square-semibold.woff2') format('woff2'),
    url('/fonts/basier-square-semibold.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'Izoard Soft Regular';
  src: url('/fonts/izoard-soft-regular.woff2') format('woff2'),
    url('/fonts/izoard-soft-regular.woff') format('woff');
  font-display: swap;
}

body {
  font-size: 1rem;
  font-family: 'Basier Square Regular', sans-serif;
  font-style: normal;
  margin: 0;
  padding: 0;
  color: var(--white);
  background-color: var(--black);
}

.no-scroll {
  margin: 0;
  height: 100%;
  overflow: hidden !important;
}

body * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* ELEMENTS */
a {
  color: var(--white);
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: 'Shapiro 75 Heavy Extd', sans-serif;
  font-weight: normal;
  line-height: 100%;
}

h1 {
  font-size: 3.25rem;
  text-transform: uppercase;
}
h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
}
h3 {
  font-size: 1.75rem;
}

p {
  font-size: 1.25rem;
}

/* BUTTONS */

.btn {
  display: inline-block;
  border: var(--border);
  border-color: var(--accent-color);
  border-radius: var(--border-radius);
  padding: 10px;
  color: var(--black);
  background-color: var(--accent-color);
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Izoard Soft Regular', sans-serif;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 0.05rem;
}

.btn:hover {
  opacity: 0.8;
}

.btn:focus {
  opacity: 0.6;
}

.btn.disabled {
  cursor: not-allowed;
}

.btn.secondary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: transparent;
}

.btn.tertiary {
  background-color: transparent;
}

.btn.tertiary.dark {
  color: var(--white);
  border-color: var(--white);
  border-width: 1px;
}

.btn.tertiary.light {
  color: var(--black);
  border-color: var(--black);
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 780px) {
  .hidden-desktop {
    display: initial !important;
  }

  .hidden-mobile {
    display: none !important;
  }
}

/* SECTIONS */

header,
footer,
section {
  width: 100%;
  padding: 0 10%;
}

header,
footer {
  max-width: 100vw;
}

section {
  padding: 96px 10%;
}

header .wrapper,
footer .wrapper,
section .wrapper {
  max-width: 1300px;
  margin: 0 auto;
}

/* HEADER */

header {
  font-family: 'Izoard Soft Regular', sans-serif;
  background-color: transparent;
  transition: background-color 0.5s;
}

header .header-nav a {
  text-transform: uppercase;
}

header .header-nav a:hover {
  opacity: 80%;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: transparent;
}

.black-bg {
  background-color: var(--black);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
}

.header-nav a {
  margin: 15px;
}

footer {
  border-top: var(--border);
  border-color: var(--white);
  background-color: transparent;
  color: var(--white);
}

.container {
  width: 100%;
}

.mobile-menu {
  cursor: pointer;
  display: none;
}

.mobile-menu img {
  width: 5vw;
}

.menu-display {
  font-family: 'Shapiro 75 Heavy Extd', sans-serif;
  line-height: 100%;
  display: none;
  left: 100vw;
  transition: left 500ms ease-in-out;
}

/* INTRO */

.intro {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: transparent;
}

.intro .btn {
  padding: 16px 35px;
  margin-right: 1.2rem;
}

.intro .sub-header * {
  margin-bottom: 30px;
}

.audience-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.audience-container > h1 {
  margin-bottom: 4rem;
}

.audience-container .row {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  width: 100%;
}

.audience-container .row .col p {
  text-align: center;
}

.audience-container .col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-container {
  width: 100%;
  height: auto;
  margin-bottom: 6rem;
}

.video-container video {
  width: 100%;
  height: auto;
}
.video-player {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.video-player:not(.playing):before {
  content: ' ';
  width: 100px;
  height: 100px;
  background: url(/images/play-button.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-flex;
  position: absolute;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  color: black;
  font-size: 3.5rem;
  padding-top: 6px;
  padding-left: 7px;
  z-index: 10;
}

/* FOOTER */

.footer-container {
  padding: 3rem 0 6rem;
}

.footer-container .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-container .row .col span {
  font-family: 'Izoard Soft Regular', sans-serif;
  font-size: 0.875rem;
  line-height: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

.footer-container a {
  line-height: 1.5625rem;
}

.footer-container .wave a {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.footer-container p {
  font-size: 0.875rem;
}

.footer-container .wave * {
  margin-bottom: 8px;
}

.footer-container .info {
  margin-bottom: 20px;
}

.footer-container .info a {
  margin-bottom: 25px;
}

.footer-container .btn.alt {
  margin-top: 1.3rem;
}

.footer-container .external-links {
  display: flex;
  flex-direction: column;
}

.footer-container .external-links img {
  width: 50px;
  height: 50px;
  cursor: pointer;
  margin-bottom: 35px;
  margin-top: 15px;
}

.footer-container .col {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.8rem;
}

.col.wave .footer-logo {
  margin-bottom: 2rem;
  width: 60%;
}

.mobile-only {
  display: none;
}

@media (max-width: 1130px) {
  /* HEADER */
  header .header-nav {
    display: none;
  }

  .nav-container .hamburguer {
    width: 100%;
  }

  #close-menu {
    width: 24px;
  }

  .mobile-menu {
    display: unset;
  }

  .menu-display {
    position: fixed;
    z-index: 99;
    background: var(--black);
    display: flex;
    visibility: hidden;
    flex-direction: column;
    right: 0;
    bottom: 0;
    top: 0;
    left: 100vw;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.875rem; /* to match left/right margins of header, and have same margin on the bottom */
    padding-top: 1rem; /* to match margin of header, see .nav-container */
    width: 100vw;
  }

  .menu-display.open {
    visibility: visible;
    left: 0;
  }

  .menu-display .header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
  }

  .menu-display .header h3,
  .menu-display .header img {
    cursor: pointer;
  }

  .menu-display .menu-nav {
    display: flex;
    flex-direction: column;
    max-width: 78%;
  }

  .menu-display .menu-nav a {
    margin: 0 0 1.5rem 0;
    font-size: 7vw;
    line-height: 100%;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
  }

  .menu-display .menu-nav a span {
    white-space: nowrap;
  }

  .menu-display .footer {
    width: 100%;
  }

  .btn.tertiary.dark {
    width: fit-content;
  }

  .menu-display .footer .btn {
    width: 100%;
    padding: 1.5rem 0;
    font-size: 1.25rem;
  }
}

/* MOBILE STYLES */
@media (max-width: 780px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 1rem;
  }

  header,
  footer {
    padding: 0 5%;
  }

  /* HEADER */
  .nav-container .logo {
    width: 60%;
  }

  .menu-display .logo {
    width: 60%;
  }

  .menu-display .menu-nav a {
    font-size: 1.5rem;
  }

  .menu-display .footer .btn {
    padding: 0.625rem 0;
    font-size: 0.875rem;
  }

  #close-menu {
    width: 6%;
  }

  /* FOOTER */
  .footer-container .row {
    flex-direction: column;
  }

  .footer-container .row .col span {
    font-size: 0.875rem;
    line-height: 0.875rem;
  }

  .footer-container a {
    line-height: 1.25rem;
  }

  .footer-container .external-links {
    flex-direction: row;
  }

  .footer-container .external-links img {
    margin-right: 35px;
  }

  .footer-container p {
    font-size: 0.75rem;
  }

  .btn,
  .intro .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
  }

  .mobile-only {
    display: unset;
  }

  section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .video-player:not(.playing):before {
    width: 50px;
    height: 50px;
  }
  .video-container {
    margin-bottom: 4rem;
  }
}
