.hero-dancecamp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;

  position: relative;
  margin-bottom: 0;
  padding: 60px;
  isolation: isolate;
  overflow: hidden;
}

.hero-dancecamp::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #120b32;
  opacity: 0.5;
}

.hero-dancecamp>h2 {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

.hero-dancecamp>h1 {
  color: white;
  font-family: "AryaDouble", Sans-serif;
  font-size: 75px;
  font-weight: 100;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.76);
  text-align: center;
}

.hero-dancecamp img {
  vertical-align: middle;
  display: inline-block;
  height: auto;
  width: 31%;
  margin-top: 1.5rem;
}

.video-bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

.alert-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1em;
  width: calc(80% - 8rem);
  border-left: 5px solid #fc0026;
  background-color: #f2dede;
  color: #a94442;

  &>* {
    margin: 0 0 0.5rem 0;
  }

  position: relative;
  margin-top: 1em;
}

.alert-box.close {
  display: none;
}

.alert {
  display: flex;
  flex-direction: column;
  color: #fc0026;
}

.alert-title {
  font-family: "KorolevBold", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.alert-description {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
}

.alert-close {
  background: transparent;
  padding: 0;
  cursor: pointer;
  margin: 0;
  border: none;
  outline: none;
  font-family: "RobotoCondensed", sans-serif;
  color: #a94442;
  font-size: 20px;

  position: absolute;
  top: 10px;
  left: 97%;
}

.information {
  display: flex;
  justify-content: center;
  margin-inline: auto;
  margin-block: 3rem;
  padding: 1em;
  gap: 1rem;
}

.information>* {
  flex-basis: 100%;
}

.info-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-col p {
  color: #1b325f;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
}

.purchase-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  padding: 1.5rem 1rem;
  font-family: "KorolevBold", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 1px;
  background-color: #7b1222;
  color: white;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
  margin-top: 2rem;
  border-radius: 0 0 0 0;
  outline: none;
  width: 24rem;
}

.purchase-button:hover {
  background-color: #fff;
  color: #7b1222;
  outline: #7b1222 solid 1px;
}

.info-list {
  background: rgb(232, 234, 239);
  padding: 1.5em;
}

.info-list-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.info-icon {
  color: #1b325f;
  width: 1.25em;
  font-size: 25px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.info-list-text {
  color: #1b325f;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0;
}

.line {
  width: 100%;
  position: relative;
  margin-right: 5px;
  border-bottom: 1px #1b325f solid;
}

.heading-title {
  padding: 16px;
}

.heading-title h2 {
  color: #1b325f;
  font-family: "AryaDouble", Sans-serif;
  font-size: 64px;
  font-weight: 100;
  line-height: 1;
  text-align: left;
  word-wrap: break-word;
  margin-block: 3rem;
}

.schedule-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 16px;
  margin-bottom: 4rem;
}

.schedule-flex>* {
  flex: 1 1 48%;
  min-width: 40ch;
}

.schedule-box {
  display: flex;
  flex-direction: column;
  gap: 2em;
  background: rgb(232, 234, 239);
  padding: 1.5em;
  max-width: 48%;
}

.schedule-box .box-title {
  display: flex;
  flex-direction: column;
}

.schedule-box h3 {
  color: #1b325f;
  font-family: "KorolevBold", Sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
}

.schedule-box h2 {
  color: #7b1222;
  font-family: "KorolevBold", Sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.schedule-box .list ul {
  display: flex;
  flex-direction: column;
  gap: 1em;
  color: #1b325f;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  margin-left: 1rem;
  padding-bottom: 2em;
}

@media (width <=768px) {
  .hero-dancecamp img {
    width: 71%;
  }

  .hero-dancecamp>h1 {
    font-size: 37px;
  }

  .alert-box {
    width: calc(100vw - 4rem);
  }

  .information {
    flex-direction: column;
  }
}
