.hero-prizemoney {
  background-image: url("../img/prizemoney-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;

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

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

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

@keyframes pushUp {
  from {
    transform: translateY(80px);
    /* Initial position pushed down */
  }

  to {
    transform: translateY(0);
    /* Final position at normal height */
  }
}

.hero-prizemoney>h1 {
  color: #fff;
  font-family: "KorolevBold", Sans-serif;
  font-size: 55px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.76);
  text-align: center;
  animation: pushUp 1.5s ease-out;
}

.prizemoney-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: 3rem;
}

.prizemoney-wrapper .cash {
  display: flex;
  color: #1b325f;
  font-family: "AryaDouble", Sans-serif;
  font-size: 90px;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0;
}

.prizemoney-wrapper .prize-title {
  color: #1b325f;
  font-family: "KorolevBold", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.prize-accordion {
  width: 90%;
  margin-block: 4rem;
}

.accordion {
  width: 100%;
}

.accordion-item {
  border: 1px solid #ddd;
  margin-bottom: 8px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(232, 234, 239);
  color: #1b325f;
  padding: 10px;
  cursor: pointer;
}

.accordion-header:hover {
  background: #1b325f;
  color: #fff;
}

.accordion-header.active {
  background-color: #7b1222;
  color: #fff;
}

.accordion-header>h3 {
  font-family: "KorolevBold", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accordion-header>i {
  line-height: 1.4em;
  padding-right: 1rem;
}

.accordion-content {
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 1rem;
}

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

.accordion-content>ul {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #1b325f;
  list-style: disc;
  margin: 0 0 0 3em;
}

.accordion-content a {
  color: #b53253;
  box-shadow: none;
  text-decoration: none;
}

.accordion-content a:hover {
  color: #0693e3;
}

.accordion-content>img {
  margin: auto;
}

.rednote {
  color: #7b1222;
}

@media (width <=780px) {
  .prizemoney-wrapper .cash {
    font-size: 60px;
  }
}
