﻿@font-face {
  font-family: "AvenirNext";
  src: url("https://nationals.dancevision.com/static/fonts/AvenirNext.otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "AvenirNext";
  src: url("https://nationals.dancevision.com/static/fonts/AvenirNext-Bold.otf");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "AvenirNext";
  src: url("https://nationals.dancevision.com/static/fonts/AvenirNext-Italic.otf");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "AvenirNext";
  src: url("../fonts/AvenirNext-Demi.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

* {
  font-family: Avenir Next, ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

:root {
  --color-black: black;
  --color-black-300: #aaa;
  --color-black-700: #3b3b3b;
  --color-red: #da1e28;
  --color-white: white;
  --color-gray: #c8c8c8;
  --color-gray-100: #f2f4f7;
}

.font-weight-light {
  font-weight: 400 !important;
}

.font-weight-normal {
  font-weight: 500 !important;
}

.font-weight-demibold {
  font-weight: 600 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-size-1 {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.font-size-2 {
  font-size: 1rem;
  line-height: 1.5rem;
}

.font-size-3 {
  font-size: 1.5rem;
  line-height: 2rem;
}

.font-size-4 {
  font-size: 1.875rem;
  line-height: 2.375rem;
}

.font-size-5 {
  font-size: 2rem;
  line-height: 2rem;
}

.font-size-6 {
  font-size: 2rem;
  line-height: 2.75rem;
}

.font-size-7 {
  font-size: 2.25rem;
  line-height: 2.75rem;
}

.font-size-8 {
  font-size: 3.75rem;
  line-height: 6rem;
}

.text-white {
  color: var(--color-white, #eee);
}

.text-red {
  color: var(--color-red-primary-500, #da1e28);
}

.text-align-right {
  text-align: right;
}

.link {
  color: var(--color-black, #000);
}

section {
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
}

section:first-of-type {
  padding-top: calc(3rem + 64px);
}

.section-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.border-bottom {
  border-bottom: 2px solid var(--color-black, #000);
}

.margin-bottom-0 {
  margin-bottom: 0 !important;
}

.padding-top-0 {
  padding-top: 0 !important;
}

.padding-bottom-0 {
  padding-bottom: 0 !important;
}

.section-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-cover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.bg-gray {
  background-color: var(--color-gray-100, #f2f4f7);
}

.d-none {
  display: none !important;
}

.button-primary {
  display: inline-flex;
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
}

.button-primary-text {
  color: var(--color-white, #fff);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  display: flex;
  padding: 0.625rem 1.375rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex: 1 0 0;
  border-radius: 100px;
  background: var(--color-black, #000);
}

.button-primary-icon {
  display: flex;
  padding: 0.75rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 100px;
  background: var(--color-black, #000);
}

.button-primary-text-white {
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  display: flex;
  padding: 0.625rem 1.375rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex: 1 0 0;
  border-radius: 100px;
  background: #fff;
}

.button-primary-text-white:hover {
  color: var(--color-black, #000) !important;
}

.button-primary-icon-white {
  display: flex;
  padding: 0.75rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 100px;
  background: #fff;
}

.button-outlined {
  display: inline-flex;
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  color: var(--color-black, #000);
}

.button-outlined-text {
  font-size: 1rem;
  font-weight: 600 !important;
  line-height: 1.5rem;
  display: flex;
  padding: 0.625rem 1.375rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex: 1 0 0;
  border-radius: 100px;
  border: 2px solid var(--color-black, #000);
}

.button-outlined-icon {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 100px;
  border: 2px solid var(--color-black, #000);
}

.rainbow-line {
  width: 100%;
  height: 4px;
}

strong {
  font-weight: 600;
}

i {
  font-style: italic;
}

.accent-image-wrapper {
  border-radius: 50%;
  width: 15rem;
  height: 15rem;
  opacity: 20%;
  filter: blur(1.5rem);
  overflow: hidden;
  position: absolute;
  animation: blob 12s infinite;
}

.accent-image {
  width: 100%;
  height: 100%;
}

h2.section-header-title,
h1.section-header-title {
  color: var(--color-black, #000);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.section-header p.section-header-description {
  font-size: 2.25rem;
  line-height: 2.75rem;
}

.section-header div.section-header-subtitle {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section-header div.section-header-subtitle p {
  font-size: 1.25rem;
  line-height: 1.25rem;
  text-align: left;
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: black;
  color: white;
  opacity: 0;
}

.skip-link:focus {
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .md-font-size-1 {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .md-font-size-2 {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md-font-size-3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md-font-size-4 {
    font-size: 1.875rem;
    line-height: 2.375rem;
  }

  .md-font-size-5 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .md-font-size-6 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .md-font-size-7 {
    font-size: 2.25rem;
    line-height: 2.75rem;
  }

  .md-font-size-8 {
    font-size: 3.75rem;
    line-height: 6rem;
  }

  section {
    padding: 4rem 2rem;
  }

  .section-cover-img img {
    border-radius: 1.5rem;
  }

  .section-header > span,
  .section-header h2.section-header-title,
  h1.section-header-title {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .button-primary {
    width: fit-content;
  }

  .button-outlined {
    width: fit-content;
  }

  .accent-image-wrapper {
    width: 30rem;
    height: 30rem;
  }

  .section-header p.section-header-description {
    font-size: 3rem;
    line-height: 3.75rem;
  }
}

@media screen and (min-width: 992px) {
}

@media screen and (min-width: 1024px) {
  .lg-font-size-1 {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .lg-font-size-2 {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .lg-font-size-3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .lg-font-size-4 {
    font-size: 1.875rem;
    line-height: 2.375rem;
  }

  .lg-font-size-5 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .lg-font-size-6 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .lg-font-size-7 {
    font-size: 2.25rem;
    line-height: 2.75rem;
  }

  .lg-font-size-8 {
    font-size: 3.75rem;
    line-height: 6rem;
  }
}

@media screen and (min-width: 1200px) {
  .xl-font-size-1 {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .xl-font-size-2 {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .xl-font-size-3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .xl-font-size-4 {
    font-size: 1.875rem;
    line-height: 2.375rem;
  }

  .xl-font-size-5 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .xl-font-size-6 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .xl-font-size-7 {
    font-size: 2.25rem;
    line-height: 2.75rem;
  }

  .xl-font-size-8 {
    font-size: 3.75rem;
    line-height: 6rem;
  }

  .section-layout {
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
  }

  .justify-start {
    justify-content: flex-start !important;
  }

  .section-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .max-width-40 {
    width: 100% !important;
    max-width: 40rem !important;
  }

  .max-width-60 {
    width: 100% !important;
    max-width: 60rem !important;
  }
}

@media screen and (min-width: 1400px) {
  section {
    padding: 7rem;
  }

  .first-section {
    padding-top: 150px !important;
  }

  .section-cover-img img {
    width: 80%;
  }

  .section-width-60 {
    width: 60% !important;
  }

  .rainbow-line {
    margin-top: 3rem;
  }

  /* .section-header h2.section-header-title,
  h1.section-header-title {
    font-size: 1.875rem;
    line-height: 3rem;
  } */

  .section-header p.section-header-description {
    font-size: 3.75rem;
    line-height: 4.5rem;
  }
}

@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  33% {
    transform: translate(20px, -20px) scale(1.2);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }

  100% {
    transform: translate(0px, 0px) scale(1);
  }
}
