@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
}
:root {
  --color-light: #ffffff;
  --color-dark: #000000;
  --color-primary: #1258e2;
  --color-accent: #16a249;
  --color-gold: #fac71e;
  --color-btn: #26408B;
  --color-warning: #f15353;
  --color-text: #6b7c94;
  --gradient-gold: linear-gradient(135deg, hsl(46 96% 55%), hsl(46 96% 45%));
  --gradient-primary: linear-gradient(135deg, hsl(220 85% 48%), hsl(220 75% 35%));
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-dark);
  background: #F1EDFF;
}

body.lock {
  overflow: hidden;
}

a {
  color: var(--color-accent);
  transition: color 0.3s ease;
}
a:hover {
  color: var(--color-primary);
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.main__btn {
  padding: 16px 0;
  position: relative;
  overflow: hidden;
  background: var(--color-btn);
  color: var(--color-light);
  border: var(--color-btn);
}
.main__btn::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 100px;
  background-color: rgba(181, 181, 250, 0.5);
  transform: translateX(-200%) skewX(-45deg);
  transition: all 2s ease;
}
.main__btn:hover::before {
  transform: translateX(200%) skewX(-45deg);
}

.section__title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin: 0 auto 3rem;
  text-align: center;
}
@media screen and (max-width: 1200.98px) {
  .section__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768.98px) {
  .section__title {
    font-size: 1.5rem;
  }
}

/*  COMPONENTS  */
.btn {
  display: flex;
  align-items: center;
  border-radius: 32px;
  font-weight: 700;
  border: 1px solid var(--color-dark);
  border: 0px;
}

.main__btn {
  padding: 12px 16px;
  position: relative;
  overflow: hidden;
  background-color: #29335C;
  font-weight: bold;
  color: var(--color-light);
  z-index: 2;
  transition: all 0.3s ease;
}
.main__btn::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.3);
  filter: blur(24px);
  z-index: -1;
  transform: translateX(-350%) skewX(-45deg);
  transition: all 1s ease;
}
.main__btn:hover {
  color: var(--color-light);
}
.main__btn:hover::before {
  transform: translateX(350%) skewX(-45deg);
}

/*  COMPONENTS  */
/*  STRUCTURE  */
.header {
  display: none;
}

.intro {
  background: var(--gradient-primary);
  padding: 3rem 0;
  color: #fff;
}
@media screen and (max-width: 768.98px) {
  .intro {
    padding: 1.875rem 0;
  }
}
.intro__title {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 4rem;
}
@media screen and (max-width: 992.98px) {
  .intro__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768.98px) {
  .intro__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.intro__subtitle {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (max-width: 480.98px) {
  .intro__subtitle {
    display: none;
  }
}
.intro__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0 auto;
}
@media screen and (max-width: 768.98px) {
  .intro__list {
    display: none;
  }
}
.intro__item {
  text-align: center;
  padding: 1rem;
  background-color: var(--color-light);
  border-radius: 0.75rem;
}
.intro__item p {
  color: var(--color-dark);
  font-weight: 700;
  font-size: 1.125rem;
}
.intro__item-media {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
}
.intro__item-media svg {
  width: 2rem;
  height: 2rem;
}

.tickets {
  padding: 3rem 0;
}
@media screen and (max-width: 992.98px) {
  .tickets {
    padding: 1.875rem 0;
  }
}
.tickets__title {
  text-align: center;
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 480.98px) {
  .tickets__title {
    display: none;
  }
}
.tickets__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768.98px) {
  .tickets__list {
    grid-template-columns: 1fr;
  }
}

.ticket {
  position: relative;
  max-width: 1000px;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 1.5rem;
  color: var(--color-dark);
  border: 2px solid #e0e5eb;
  background: var(--color-light);
}
.ticket--vip {
  border-color: var(--color-gold);
}
@media screen and (max-width: 992.98px) {
  .ticket {
    max-width: 480px;
    margin: 0 auto;
  }
}
.ticket__label {
  font-weight: 500;
  text-align: center;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  position: absolute;
  background: var(--gradient-gold);
  color: var(--color-dark);
  width: 100%;
  top: -2px;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}
.ticket__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}
@media screen and (max-width: 768.98px) {
  .ticket__inner {
    padding: 1rem;
    gap: 1rem;
  }
}
.ticket__media {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100px;
}
@media screen and (max-width: 768.98px) {
  .ticket__media {
    height: 80px;
  }
}
.ticket__media img {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.25rem;
}
.ticket__rating {
  display: flex;
  align-items: center;
}
.ticket__rating svg {
  width: 1rem;
  height: 1rem;
  color: #facc15;
}
.ticket__rating-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #6b7c94;
  margin-left: 0.5rem;
}
.ticket__rating-score {
  font-size: 1.125rem;
  font-weight: 700;
  margin-left: auto;
  display: inline-block;
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  background-color: var(--color-accent);
  color: var(--color-light);
}
.ticket__bonus {
  border-radius: 0.75rem;
  background: var(--gradient-primary);
  text-align: center;
}
.ticket__bonus-text {
  color: #f8fafc;
  padding: 1rem;
  font-size: 0.875rem;
}
.ticket__bonus-text span {
  display: block;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-light);
  margin-top: 0.25rem;
}
.ticket__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.ticket__item {
  background: #f1f5f9;
  padding: 0.75rem;
  border-radius: 0.75rem;
  text-align: center;
}
.ticket__item:nth-child(1) svg {
  color: var(--color-primary);
}
.ticket__item:nth-child(1) p {
  color: var(--color-primary);
}
.ticket__item:nth-child(2) p {
  color: var(--color-accent);
}
.ticket__item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}
.ticket__item-text {
  font-size: 1rem;
  font-weight: 600;
}
.ticket__item-text span {
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.ticket__pay-list {
  display: flex;
  gap: 0.5rem;
}
.ticket__pay-item {
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.125rem 0.625rem;
  font-weight: 700;
  background: #f0f2f4;
  border-radius: 100px;
}
.ticket__btn {
  flex-shrink: 0;
  margin-left: auto;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-gold);
  color: var(--color-dark);
  max-width: 100%;
  width: 100%;
  text-align: center;
}

.info {
  padding: 3rem 0;
}
@media screen and (max-width: 992.98px) {
  .info {
    padding: 1.875rem 0;
  }
}
.info__title {
  margin-bottom: 2rem;
}
.info__subtitle {
  margin-bottom: 1.5rem;
}
.info__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768.98px) {
  .info__list {
    grid-template-columns: 1fr;
  }
}
.info__item {
  border-radius: 0.75rem;
  background: var(--color-light);
  padding: 1.5rem;
}
.info__item:nth-child(1) svg, .info__item:nth-child(4) svg {
  color: var(--color-primary);
}
.info__item:nth-child(2) svg {
  color: var(--color-gold);
}
.info__item:nth-child(3) svg {
  color: var(--color-accent);
}
.info__heading {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.info__heading svg {
  width: 1.5rem;
  height: 1.5rem;
}
.info__item-title {
  font-size: 1.5rem;
  font-weight: 500;
}

.advice {
  padding: 3rem 0;
  background: #F0F2F4;
}
@media screen and (max-width: 992.98px) {
  .advice {
    padding: 1.875rem 0;
  }
}
.advice__title {
  margin-bottom: 2rem;
}
.advice__subtitle {
  margin-bottom: 1.5rem;
}
.advice__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 768.98px) {
  .advice__list {
    grid-template-columns: 1fr;
  }
}
.advice__item {
  display: flex;
  gap: 1rem;
  border-radius: 0.75rem;
  background: var(--color-light);
  padding: 1.5rem;
}
.advice__item:nth-child(1) svg, .advice__item:nth-child(4) svg {
  color: var(--color-accent);
}
.advice__item:nth-child(2) svg {
  color: var(--color-primary);
}
.advice__item:nth-child(3) svg {
  color: var(--color-gold);
}
.advice__item svg {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
}
.advice__text {
  font-size: 1rem;
  color: var(--color-text);
}
.advice__text span {
  color: var(--color-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  display: block;
}

.popular {
  padding: 3rem 0;
}
@media screen and (max-width: 992.98px) {
  .popular {
    padding: 1.875rem 0;
  }
}
.popular__title {
  margin-bottom: 2rem;
}
.popular__subtitle {
  margin-bottom: 1.5rem;
}
.popular__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.popular__item {
  background: var(--color-light);
  padding: 1.5rem;
  border-radius: 0.75rem;
}
.popular__item-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768.98px) {
  .popular__item-title {
    font-size: 1.25rem;
  }
}

.stats {
  padding: 3rem 0;
  background: var(--gradient-primary);
  color: var(--color-light);
}
.stats__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768.98px) {
  .stats__list {
    grid-template-columns: 1fr;
  }
}
.stats__item {
  text-align: center;
}
.stats__item svg {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
}
.stats__num {
  text-align: center;
  display: block;
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.footer {
  padding: 3rem 0;
  background: #1d2530;
  color: var(--color-light);
}
@media screen and (max-width: 992.98px) {
  .footer {
    padding-top: 1.5rem;
  }
}
.footer__list {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 992.98px) {
  .footer__list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768.98px) {
  .footer__list {
    flex-direction: column;
  }
}
.footer a {
  color: var(--color-gold);
  position: relative;
}
.footer a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  background-color: var(--color-gold);
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.footer a:hover::before {
  width: 100%;
}
.footer__help {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 992.98px) {
  .footer__help {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer__help a::before {
  content: none;
}
.footer__media {
  max-width: 180px;
  width: 100%;
  padding: 0.625rem;
  height: 100px;
}
.footer__media img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.footer__media--invert {
  background-color: var(--color-light);
  border-radius: 0.75rem;
}
.footer__description {
  margin-bottom: 2rem;
}
.footer__description p + p {
  margin-top: 1.5rem;
}
.footer__description b {
  font-size: 18px;
}
.footer__info {
  padding-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-top: 1px solid #e0e5eb;
}
@media screen and (max-width: 768.98px) {
  .footer__info {
    flex-direction: column;
    gap: 1rem;
  }
}
.footer__info svg {
  width: 1.5rem;
  height: 1.5rem;
}
.footer__info img {
  width: 1.5rem;
  height: 1.5rem;
}
.footer__info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__info-item span {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.footer__info-item:nth-child(2) svg {
  color: var(--color-primary);
}
.footer__info-item:nth-child(3) svg {
  color: #ee9d2b;
}
.footer__copy {
  text-align: center;
}

/*  STRUCTURE  */
/*  COMPONENTS  */
.cookies-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--color-dark);
  color: var(--color-light);
  padding: 1.5rem 1rem;
  text-align: center;
  z-index: 1000;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.cookies-banner__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  width: 100%;
  gap: 1rem;
}
@media screen and (max-width: 768.98px) {
  .cookies-banner__btns {
    flex-direction: column;
    align-items: center;
  }
}
.cookies-banner button {
  margin: 0 5px;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  border-radius: 0.375rem;
  max-width: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#accept-cookies {
  background-color: #1dd494;
  color: var(--color-dark);
  font-weight: 700;
  transition: transform 0.5s ease;
}

#accept-cookies:hover {
  transform: scale(1.1);
}

#reject-cookies {
  background-color: var(--color-warning);
  color: var(--color-dark);
  font-weight: 700;
  transition: transform 0.5s ease;
}

#reject-cookies:hover {
  transform: scale(1.1);
}

.service-page {
  padding: 5rem 0;
  color: var(--color-light);
}
.service-page h2 {
  margin-bottom: 0.625rem;
}
.service-page p {
  margin-bottom: 1rem;
}
.service-page p.service-page__subtitle {
  margin-bottom: 2.5rem;
}
.service-page ul {
  margin-bottom: 1rem;
  padding-left: 18px;
}
.service-page li {
  list-style-type: disc;
}
.service-page li + li {
  margin-top: 0.25rem;
}
.service-page a {
  color: var(--color-primary);
}
.service-page a:hover {
  color: var(--color-accent);
}
.service-page__title {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  line-height: 1.625;
  text-align: center;
  color: var(--color-dark);
}
.service-page__subtitle {
  text-align: center;
}
.service-page__content {
  padding: 2rem;
  border-radius: 1.25rem;
  background: #F0F2F4;
  border: 2px solid #e0e5eb;
  color: var(--color-dark);
}
.service-page__text {
  margin-bottom: 1rem;
}
.service-page__list {
  padding-left: 18px;
  margin-bottom: 1rem;
}

/*  COMPONENTS  *//*# sourceMappingURL=main.css.map */