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

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

main {
  background-color: rgb(232, 234, 239);
}

.tickets-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-block: 3rem;
}

.tickets-container>p {
  font-weight: 700;
  text-align: center;
  color: #120b32;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
}

.order-wrapper {
  display: flex;
  gap: 1rem;
}

.order-btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 0 0 0 0;
  box-shadow: 0 4px 4px 0 rgba(5, 0, 40, 0.78);
  padding: 1rem 2rem;
}

.order-btn:hover {
  box-shadow: 0 4px 4px 0 rgba(5, 0, 40, 0.78);
}

.order-btn a {
  flex: 1;
  font-family: "KorolevBold", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
}

.order-btn i {
  font-family: "Font Awesome 5 Free", Sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.5px;
  color: #fff;
}

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

.order-btn-blue:hover {
  background-color: #7b1222;
}

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

.order-btn-red:hover {
  background-color: #1b325f;
}

.dashed-box {
  border: 1px #1b325f dashed;
  padding: 0.5em;
  background-color: #fff;
  margin-inline: 16px;
}

.tickets-info {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  gap: 1rem;
  color: #7b1222;
}

.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
}

.text ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #7b1222;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.icon>i {
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: 0.5px;
  color: #7b1222;
}

.hemisphere-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  inline-size: min(100% - 1rem, 75rem);
  margin-inline: auto;
}

.hemisphere-flex>* {
  flex: 1 1 49%;
  min-width: 30ch;
}

.hemisphere-flex .box>h2 {
  font-family: "KorolevBold", Sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.hemisphere-flex>.box {
  display: flex;
  flex-direction: column;
  padding: 1em;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.h-left {
  color: #1b325f;
}

.h-right {
  color: #7b1222;
}

.card-container {
  perspective: 1000px;
  width: 80%;
  height: 500px;
  margin: 50px auto;
}

.card {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;

  display: flex;
  justify-content: center;
}

.card:hover {
  transform: rotateY(180deg);
}

.card-face {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  border: 1px solid #ccc;
}

.card .front {
  transform: rotateY(0deg);
}

.card .back {
  transform: rotateY(180deg);
  background: rgb(232, 234, 239);
}

.view-seats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.view-seats>p {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.left-side {
  color: #1b325f;
}

.right-side {
  color: #7b1222;
}

.btn-view-seats {
  padding: 10px 20px;
  font-family: "KorolevBold", Sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 2px;

  color: white;
  cursor: pointer;
  border: none;
}

.btn-view-seats:hover {
  background: rgb(232, 234, 239);
}

.btn-north {
  background-color: #1b325f;
  border: 1px solid #1b325f;
}

.btn-north:hover {
  border: 1px solid #1b325f;
  color: #1b325f;
}

.btn-south {
  background-color: #7b1222;
  border: 1px solid #7b1222;
}

.btn-south:hover {
  border: 1px solid #7b1222;
  color: #7b1222;
}

.note-flex {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  width: 90%;
  margin-inline: auto;
  margin-block: 3rem;
}

.note-flex>* {
  flex: 1 1 49%;
  min-width: 30ch;
}

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

.note p {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3em;
  letter-spacing: 0;
}

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

.note a:hover {
  color: #0693e3;
}

.note-left {
  color: #120b32;
}

.note-right {
  color: #1b325f;
}

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

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

@media (width <=768px) {
  .hemisphere-flex {
    flex-direction: column;
  }

  .note-flex {
    flex-direction: column;
  }

  .box {
    margin-inline: 16px;
  }

  .order-wrapper {
    flex-direction: column;
  }
}
