@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body {
  background: #000;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  color: #fff;
  font-weight: normal;
}

.wrapper {
  background-image: url('../images/bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

img {
  width: 100%;
  pointer-events: none;
}

section {
  padding: 40px 0;
}

@media (max-width: 992px) {
  section {
    padding: 30px 0;
  }
}

/* #region BTN */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 2px solid #BE0043;
  background: #BE0043;
  box-shadow: 2px -1px 23.6px 0px rgba(190, 0, 67, 0.60);
  padding: 10px 20px;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 100%;
  transition: all .2s linear;
  text-wrap: balance;
}


@media (hover: hover) {
  .btn:hover  {
    background: transparent;
  }
}

@media (hover: none) {
  .btn:active  {
    background: transparent;
  }
}
/* #endregion */

/* #region Container */
.container-fluid {
  max-width: 1070px;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (max-width: 992px) {
  .container-fluid {
    max-width: 720px;
  }
} 

@media screen and (max-width: 768px) {
  .container-fluid {
    max-width: 540px;
  }
} 

.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (max-width: 992px) {
  .container {
    max-width: 720px;
  }
} 

@media screen and (max-width: 768px) {
  .container {
    max-width: 540px;
  }
} 
/* #endregion */

/* #region HEADER */
.header {
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.60);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  -moz-backdrop-filter: blur(5px);
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: all .2s linear;
}

@media (hover: hover) {
  .header__logo:hover  {
    scale: 1.03;
  }
}

@media (hover: none) {
  .header__logo:active  {
    scale: 1.03;
  }
}

.header__logo img {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 8px 10px;
  border-radius: 100px;
  border: 1px solid #BE0043;
  transition: all .2s linear;
}

@media (hover: hover) {
  .header__nav a:hover  {
    background: #BE0043;
  }
}

@media (hover: none) {
  .header__nav a:active  {
    background: #BE0043;
  }
}
/* #endregion */

/* #region  Mobile menu styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.mobile-menu-toggle span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #FFF;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-toggle span:nth-child(1) {
  top: 14px;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 19px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 24px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 30px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.mobile-menu__close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #FFF;
  border-radius: 1px;
}

.mobile-menu__close span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-menu__close span:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 80px;
}

.mobile-menu__nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 100px;
  border: 1px solid #BE0043;
  transition: all .3s ease;
  text-align: center;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a:active {
  background: #BE0043;
  transform: translateX(5px);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}
/* #endregion */

/* #region HERO */
.hero {
  padding-top: 100px;
}

@media (max-width: 992px) {
  .hero {
    padding-top: 60px;
  }
}

.hero__wrapper {
  border-radius: 20px;
  border: 2px solid #BE0043;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%), url('../images/hero.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 0px 19.2px -6px rgba(190, 0, 67, 0.60), 0px 0px 20.8px 10px rgba(190, 0, 67, 0.60);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 33px 40px;
}

@media (max-width: 992px) {
  .hero__wrapper {
    padding: 20px 10px;
  }
}

.hero__wrapper h1 {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-wrap: balance;
}

.hero__wrapper p {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.hero__wrapper a {
  max-width: fit-content;
}
/* #endregion */

/* #region WAY */
.way__wrapper {
  border-radius: 20px;
  border: 1px solid #BE0043;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -moz-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 30px 17px;
}

@media (max-width: 992px) {
  .way__wrapper {
    padding: 20px 10px;
  }
}

.way__wrapper h2 {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.way__wrapper p {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.way__box {
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(190, 0, 67, 0.40) 0%, rgba(190, 0, 67, 0.00) 100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 10px 20px 10px;
}

.way__box-img {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  object-fit: contain;
  margin: 0 auto;
}


.way__box span {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: block;
}

.way__box p {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* #endregion */

/* #region CHOOSE */
.choose__wrapper {
  border-radius: 20px;
  border: 1px solid #BE0043;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -moz-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 30px 17px;
}

@media (max-width: 992px) {
  .way__wrapper {
    padding: 20px 10px;
  }
}

.choose__wrapper h2 {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.choose__boxes {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 992px) {
  .choose__boxes {
    flex-direction: column;
  }
}

.choose__box {
  width: calc((100% - 20px) / 3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(190, 0, 67, 0.40) 0%, rgba(190, 0, 67, 0.00) 100%);
  padding: 10px 10px 20px 10px;
}

@media (max-width: 992px) {
  .choose__box {
    width: 100%;
    max-width: 100%;
  }
}

.choose__box img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.choose__box h3 {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.choose__box p {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
/* #endregion */

/* #region FAQ */
.faq__wrapper {
  border-radius: 20px;
  border: 1px solid #BE0043;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -moz-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 30px 17px;
}

@media (max-width: 992px) {
  .faq__wrapper {
    padding: 20px 10px;
  }
}

.faq__wrapper h2 {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

.faq__box {
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(190, 0, 67, 0.40) 0%, rgba(190, 0, 67, 0.00) 100%);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.faq__box h3 {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.faq__box p {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* #endregion */

/* #region RAGISTRATION */
.registration__wrapper {
  border-radius: 20px;
  border: 1px solid #BE0043;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -moz-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 30px 17px;
}

@media (max-width: 992px) {
  .registration__wrapper {
    padding: 20px 10px;
  }
}

.registration__wrapper h2 {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

.registration__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
}

@media (max-width: 992px) {
  .registration__box {
    flex-direction: column-reverse;
  }
}
/* #endregion */

/* #region FORM */
.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 340px;
  width: 100%;
}

.form h3 {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 6px;
}

.form input {
  border-radius: 100px;
  border: 1px solid #BE0043;
  padding: 10px 20px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  outline: none;
  background: transparent;
  width: 100%;
}

.form input::placeholder {
  color: #FFF;
}

.form textarea {
  resize: none;
  border-radius: 100px;
  border: 1px solid #BE0043;
  padding: 10px 20px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  outline: none;
  background: transparent;
  width: 100%;
}

.form textarea::placeholder {
  color: #FFF;
}

.form button {
  margin-top: 6px;
}

.registration__img {
  max-width: 210px;
  width: 100%;

}

/* #endregion */

/* #region RESPONSIBILITY */
.responsibility {
  border-top: 1px solid #BE0043;
  background: rgba(0, 0, 0, 0.60);
  padding: 20px 0 40px;
  margin-top: 60px;
}

@media (max-width: 992px) {
  .responsibility {
    margin-top: 30px;
  }
}

.responsibility__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.responsibility__wrapper h2 {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.responsibility__wrapper p {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* #endregion */

/* #region FOOTER */
.footer {
  background: #BE0043;
  padding: 20px 0;
}

.footer__top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px 30px;
  flex-wrap: wrap;
  margin: 0 auto 30px;
  width: 100%;
}

.footer__top a {
  transition: all .2s linear;
}

@media (hover: hover) {
  .footer__top a:hover  {
    scale: 1.1;
  }
}

@media (hover: none) {
  .footer__top a:active  {
    scale: 1.1;
  }
}

.footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
}

@media (max-width: 992px) {
  .footer__nav {
    flex-direction: column;
    gap: 10px;
  }
}

.footer__nav a {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: all .2s linear;
}


@media (hover: hover) {
  .footer__nav a:hover  {
    color: #000;
  }
}

@media (hover: none) {
  .footer__nav a:active  {
    color: #000;
  }
}
/* #endregion */

/* #region WINNERS */
.legal__wrapper {
  padding-top: 60px;
}

@media (max-width: 992px) {
  .legal__wrapper {
    padding-top: 30px;
  }
}

.legal__wrapper h2 {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.legal__wrapper p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
}

.legal__wrapper ul {
  margin-bottom: 10px;
  margin-left: 20px;
}

.legal__wrapper ul li {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
  list-style: disc;
}
/* #endregion */

/* #region COOKIES */
.cookies {
  position: fixed;
  bottom: 15px;
  left: 15px;
  border-radius: 20px;
  border: 1px solid #BE0043;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -moz-backdrop-filter: blur(м);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  max-width: 600px;
  width: calc(100% - 30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  z-index: 2;
}

.cookies.show {
  opacity: 1;
  visibility: visible;
}

.cookies.hide {
  opacity: 0;
  visibility: hidden;
}

.cookies h2 {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.cookies p {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.cookies__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

@media (max-width: 576px) {
  .cookies__btns {
    gap: 20px;
  }
}

@media (max-width: 390px) {
  .cookies__btns {
    flex-direction: column;
    gap: 10px;
  }
}

.cookies__bnt {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 100px;
  background: #BE0043;
  box-shadow: 2px -1px 23.6px 0px rgba(190, 0, 67, 0.60);
  border: 1px solid #BE0043;
  color: #FFF;
  text-align: center;  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 10px 30px;
  width: fit-content;
  transition: all .2s linear;
  cursor: pointer;
}

@media (max-width: 390px) {
  .cookies__bnt {
    width: 100%;
  }
}

@media (hover: hover) {
  .cookies__bnt:hover  {
    background: transparent;
  }
}

@media (hover: none) {
  .cookies__bnt:active  {
    background: transparent;
  }
}
/* #endregion */