.hero-registration {
  background-image: url("../img/registration-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-registration::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #120b32;
  opacity: 0.5;
}

.hero-registration > 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-registration > 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;
}

.information-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
}

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

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

  position: relative;
}

.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-right: 20px;
  cursor: pointer;
  margin: 0;
  border: none;
  outline: none;
  font-family: "RobotoCondensed", sans-serif;
  color: #a94442;
  font-size: 20px;

  position: absolute;
  top: 10px;
  left: calc(100% - 1.5em);
}

.dashed-box {
  border: 1px #1b325f dashed;
  width: calc(90% - 2rem);
}

.box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 3rem;
  background: rgb(232, 234, 239);
  height: 100%;
}

.box .title {
  display: flex;
  gap: 1rem;
}

.box .title i {
  color: #1b325f;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.4em;
}

.box .title h3 {
  font-family: "KorolevBold", Sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ticketorder {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1em;
}

.ticketorder a {
  text-decoration: none;
}

.ticketorder .tickets-link {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  color: #1b325f;
  text-align: center;
}

.ticket-btn {
  color: #fff;
  padding: 0.5em 2em;
  border: none;

  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 1em;
}

.ticket-btn span {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ticket-btn-blue {
  background-color: #1b325f;
}

.ticket-btn-red {
  background-color: #7b1222;
}

.information-section .line-container {
  text-align: center;
  color: #120b32;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  margin-inline: 1rem;
  padding-bottom: 2rem;
  border-bottom: #120b32 1px solid;
}

.information-section p {
  text-align: center;
  color: #120b32;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  margin-inline: 16px;
}

.register-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.register-section h2 {
  color: #120b32;
  font-family: "KorolevBold", Sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
}

.register-grid {
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  gap: 0.5rem;
  align-items: stretch;
}

.register-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  width: 100%;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
  background: #1b325f;
  border-radius: 16px;
}

.register-box a {
  text-decoration: none;
  color: white;
}

.register-box h3 {
  font-family: "KorolevBold", Sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
}

.register-box p {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: white;
  text-align: center;
}

.register-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  padding: 23px 25px;
  font-size: 30px;
  color: #1b325f;
}

.register-box .icon i {
  font-size: 50px;
  text-align: center;
}

.register-box .icon-fedex {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  padding: 30px 15px;
  font-size: 30px;
  color: #1b325f;
}

.register-box .icon-fedex svg {
  width: 60px;
  height: auto;
}

.btn-email {
  padding: 10px 20px;
  font-family: "KorolevBold", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background-color: white;
  color: #1b325f;
  cursor: pointer;
  border: none;
}

.btn-email:hover {
  background-color: #7b1222;
  color: white;
}

.divider {
  display: flex;
  align-items: center;
  position: relative;
}

.line {
  width: 100%;
  position: relative;
  margin-inline: 10px;
  border-bottom: 1px #120b32 solid;
}

.star {
  width: 1em;
  height: 1em;
  font-weight: 900;
  font-size: 20px;
  text-align: center;
  line-height: 1;
  color: #120b32;
}

.divider-container {
  width: 85%;
}

.category-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-block: 2rem;
}

.category-flex .category-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 4rem 1rem 1rem;
}

.category-flex .category-box .content h3 {
  font-family: "KorolevBold", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0px;
  text-align: center;
}

.category-flex .category-box .content p {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
}

.cat-left {
  background-color: #fff9f9;
  color: #7b1222;
}

.cat-left i {
  width: 1em;
  height: 1em;
  font-size: 50px;
}

.cat-right {
  background-color: #e8eaef;
  color: #1b325f;
}

.cat-right i {
  width: 1em;
  height: 1em;
  font-size: 50px;
}

.forms-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin-block: 2rem;
}

.forms-section a {
  text-decoration: none;
}

.forms-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  inline-size: min(100% - 1rem, 75rem);
  margin-inline: auto;
}

.forms-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding-inline: 3rem;
}

.forms-item i {
  line-height: 2em;
  font-size: 20px;
  color: #7b1222;
}

.forms-item h3 {
  font-family: "KorolevBold", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0px;
  color: #7b1222;
}

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

.forms-item ul {
  color: #1b325f;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 2rem;
}

@media (width <=900px) {
  .box {
    flex-direction: column;
    gap: 1rem;
  }

  .ticketorder,
  .ticketorder a,
  .ticketorder .ticket-btn {
    width: 100%;
  }

  .information-section .line-container {
    margin-inline: 4rem;
  }
}

@media (width <=768px) {
  .register-grid {
    grid-template-columns: repeat(2, 2fr);
  }

  .register-box {
    width: 100%;
    height: auto;
    padding-block: 2rem;
  }

  .category-flex {
    flex-direction: column;
    align-items: center;
  }

  .category-flex .category-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: 100%;
  }

  .forms-section {
    align-items: flex-start;
  }
}
