@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&display=swap");
* {
   padding: 0;
   margin: 0;
   border: 0;
}

*,
*:before,
*:after {
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
}

:focus,
:active {
   outline: none;
}

a:focus,
a:active {
   outline: none;
}

nav,
footer,
header,
aside {
   display: block;
}

html,
body {
   height: 100%;
   width: 100%;
   font-size: 100%;
   line-height: 1;
   font-size: 10px;
   -ms-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
   -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
   font-family: inherit;
}

input::-ms-clear {
   display: none;
}

button {
   cursor: pointer;
}

button::-moz-focus-inner {
   padding: 0;
   border: 0;
}

a,
a:visited {
   text-decoration: none;
}

a:hover {
   text-decoration: none;
}

ul li {
   list-style: none;
}

img {
   vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-size: inherit;
   font-weight: inherit;
}

/*--------------------*/
html {
   font-size: 62.5%;
   scroll-behavior: smooth;
}

body {
   font-family: "Montserrat", sans-serif;
   background: radial-gradient(60.42% 60.42% at 50% 50%, #e151e6 0%, #000000 100%);
   background-repeat: no-repeat;
   background-attachment: fixed;
   color: #fff;
   font-size: 10px;
}

.container {
   max-width: 1650px;
   margin: 0 auto;
   padding: 0 3rem;
}

.lock {
   overflow: hidden;
}

.btn {
   background-color: #e151e6;
   color: #fff;
   border-radius: 35px;
   font-size: 1.8rem;
   line-height: 2rem;
   font-weight: 600;
   text-transform: uppercase;
   text-align: center;
   padding: 1rem;
   width: 100%;
   transition: all 0.3s ease-in-out;
}
.btn:hover {
   filter: brightness(70%);
}

@media screen and (max-width: 768px) {
   .btn {
      font-size: 1rem;
   }
}
/* blocks */
.header {
   width: 100%;
   background: #00000099;
   position: fixed;
   top: 0;
   right: 0;
   z-index: 999;
}
.header__wrap {
   padding: 1.7rem 0;
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.header__nav {
   position: fixed;
   top: 0;
   right: 0;
   z-index: -1;
   width: 350px;
   height: 100%;
   background: #00000099;
   padding: 10rem 0 0 3rem;
   transform: translateX(100%);
   transition: transform 0.5s ease-in;
}
.header__nav.active {
   transform: translateX(0%);
}
.header__item + .header__item {
   margin-top: 1rem;
}
.header__link {
   color: #fff;
   font-size: 3rem;
   transition: all 0.3s ease-in-out;
}
.header__link:hover {
   border-bottom: 2px solid #e151e6;
}
.header__link.active {
   border-bottom: 2px solid #e151e6;
}
.header__box {
   display: flex;
   align-items: center;
   justify-content: space-between;
   column-gap: 2rem;
}
.header__reg {
   padding: 1rem 5rem;
}
.header__burger {
   display: block;
   width: 90px;
   height: 20px;
   background: none;
   border: none;
   padding: 0;
   font-size: 0;
   color: transparent;
   position: relative;
}
.header__burger::before,
.header__burger::after,
.header__burger span {
   display: block;
   width: 30px;
   height: 2px;
   background-color: #fff;
   position: absolute;
   right: 0;
   z-index: 999;
   border-radius: 10px;
}
.header__burger::before,
.header__burger::after {
   content: "";
   transition: linear 0.3s;
}
.header__burger::before {
   top: 0;
}
.header__burger::after {
   bottom: 0;
}
.header__burger span {
   width: 30px;
   top: 44%;
   transition: linear 0.3s;
   transform: scale(1);
}
.header__burger.active span {
   transform: scale(0);
}
.header__burger.active::before,
.header__burger.active::after {
   top: 50%;
}
.header .header__burger.active::before {
   transform: rotate(45deg) translate(0, -15%);
}
.header .header__burger.active::after {
   transform: rotate(-45deg) translate(0, 15%);
}

@media screen and (max-width: 768px) {
   .header__box {
      column-gap: 1rem;
   }
   .header__reg {
      padding: 1rem;
   }
}
@media screen and (max-width: 481px) {
   .header .container {
      padding: 0 1rem;
   }
   .header__logo {
      max-width: 120px;
   }
   .header__logo img {
      width: 100%;
   }
}
.home {
   background: url(../img/bc-home.jpg) center no-repeat;
   background-size: cover;
}
.home__wrap {
   display: flex;
   justify-content: center;
   align-items: flex-end;
   height: 100vh;
   text-align: center;
   padding-bottom: 5rem;
}

.home__title {
   font-size: 7.5rem;
   line-height: 7rem;
   font-weight: 700;
}
.home__subtitle {
   font-size: 1.8rem;
   line-height: 2rem;
   color: #fff500;
}

@media screen and (max-width: 768px) {
   .home__title {
      font-size: 3rem;
      line-height: 4rem;
   }
}
.blank {
   background-color: #000;
}
.blank__title {
   font-size: 5.6rem;
   line-height: 12rem;
   font-weight: 700;
   text-align: center;
}

@media screen and (max-width: 768px) {
   .blank__title {
      font-size: 3rem;
   }
}
.game__wrap {
   padding: 7rem 0;
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 5rem;
}
.game__wrap a {
   transition: all 0.3s ease-in-out;
   border-radius: 92px;
   overflow: hidden;
}
.game__wrap a:hover {
   transform: scale(1.05);
}
.game__wrap img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.about__wrap {
   padding: 4.5rem 0;
   text-align: center;
}
.about__title {
   font-size: 2.4rem;
   line-height: 2.8rem;
   color: #e151e6;
   font-weight: 700;
   background: none;
}
.about__text {
   font-size: 1.8rem;
   line-height: 2.2rem;
   text-transform: uppercase;
   margin-top: 2rem;
}
.about__text + .about__text {
   margin-top: 3rem;
}

.contacts__wrap {
   padding: 4.5rem 0;
}
.contacts__title {
   color: #e151e6;
   text-align: left;
   margin-bottom: 2rem;
}
.contacts__item {
   display: flex;
   align-items: center;
   font-size: 2.4rem;
   line-height: 3rem;
   column-gap: 1.5rem;
}
.contacts__item + .contacts__item {
   margin-top: 2rem;
}

.map__wrap {
   padding: 15rem 0;
}
.map__title {
   font-size: 14.4rem;
   line-height: 10rem;
   font-weight: 700;
   text-align: center;
}

.privacy__wrap {
   padding: 15rem 0 5rem 0;
}
.privacy__title {
   font-size: 3rem;
   font-weight: 700;
   text-transform: uppercase;
   text-align: center;
}
.privacy__list {
   font-size: 1.8rem;
   line-height: 2rem;
   margin-top: 5rem;
}
.privacy__list a {
   color: #fff;
   text-decoration: underline;
}
.privacy__item {
   margin: 2rem 0;
   font-weight: 700;
   font-size: 2rem;
}

.modal {
   display: none;
   -ms-flex-direction: column;
   flex-direction: column;
   -ms-flex-pack: center;
   justify-content: center;
   -ms-flex-align: center;
   align-items: center;
   width: 100%;
   height: 100%;
   padding: 1rem;
   background-color: rgba(0, 0, 0, 0.8);
   position: fixed;
   top: 0;
   left: 0;
   z-index: 999;
}

.modal.show {
   display: -ms-flexbox;
   display: flex;
}

.no-scroll {
   overflow: hidden;
}

.modal__content {
   width: 100%;
   max-width: 700px;
   position: relative;
   background-color: transparent;
   opacity: 0;
   transform: translateY(-50px);
   transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.modal__group {
   display: -ms-flexbox;
   display: flex;
   -ms-flex-direction: column;
   flex-direction: column;
}

.modal__group input {
   height: 88px;
   padding: 2.4rem 2.8rem 3rem;
   background: url(../images/vector.svg) no-repeat;
   background-position: 95% 50%;
   background-color: #fff;
   border: 1px solid #000;
   border-radius: 5px;
}

.modal__group input::-webkit-input-placeholder {
   font-size: 2.5rem;
   font-weight: 500;
   color: #c5c5c5;
}

.modal__group input::-moz-placeholder {
   font-size: 2.5rem;
   font-weight: 500;
   color: #c5c5c5;
}

.modal__group input:-ms-input-placeholder,
.modal__group input::-ms-input-placeholder {
   font-size: 2.5rem;
   font-weight: 500;
   color: #c5c5c5;
}

.modal__group input::placeholder {
   font-size: 2.5rem;
   font-weight: 500;
   color: #c5c5c5;
}

.modal__group label {
   font-size: 2.5rem;
   font-weight: 500;
   color: #0e0b14;
   margin-bottom: 1.5rem;
}

.modal__btn {
   padding: 2.3rem 10rem;
   font-size: 3rem;
   max-width: 290px;
   width: 100%;
   margin: 3rem auto 0;
   background-color: #fff500;
   box-shadow: 0px 0px 50px rgba(255, 184, 0, 0.25);
   border-radius: 100px;
   color: #000;
   font-weight: 700;
}
.modal__close {
   padding: 3rem;
   background: none;
   border: none;
   cursor: pointer;
   position: absolute;
   top: 0rem;
   right: 0rem;
   background: none;
   box-shadow: none;
   margin: 0;
   color: #e151e6;
   max-width: 0;
   transition: all 0.3s ease-in-out;
}
.modal__close::after,
.modal__close::before {
   position: absolute;
   top: 50%;
   left: 29%;
   content: "";
   width: 25px;
   height: 2px;
   background-color: #e151e6;
   transform: translateY(-50%);
}
.modal__close::after {
   transform: rotate(90deg);
}

.modal__close:hover {
   transform: rotate(90deg);
   opacity: 1;
}

.nav-tabs {
   display: -ms-flexbox;
   display: flex;
}

.nav-tab {
   color: #0e0b14;
   font-size: 3rem;
   padding: 20px 30px;
   background: #f58400;
   border: none;
}

.nav-tab.active {
   background: rgba(255, 106, 225, 0.9);
   cursor: default;
}

.tab-content {
   font-size: 20px;
}

.tab-pane {
   display: none;
   padding: 30px;
}

.tab-pane.active {
   display: -ms-flexbox;
   display: flex;
   -ms-flex-direction: column;
   flex-direction: column;
   row-gap: 2rem;
   padding: 5rem 8rem 4.6rem;
   background: rgba(255, 106, 255, 0.9);
   border-bottom-left-radius: 50px;
   border-bottom-right-radius: 50px;
}

.footer__wrap {
   padding: 9rem 0 2rem 0;
   text-align: center;
   font-size: 1.8rem;
   line-height: 2.2rem;
}
.footer__group + .footer__group {
   margin-top: 4.8rem;
}
.footer__icon {
   margin: 4.5rem 0 9.5rem;
}
.footer__box {
   display: flex;
   align-items: center;
   justify-content: space-between;
}
.footer__list {
   display: flex;
   column-gap: 2rem;
}

.footer__nav {
   display: flex;
   justify-content: center;
   column-gap: 7rem;
   margin-top: 2rem;
}
.footer__nav a {
   color: #fff;
   border-bottom: 2px solid #fff;
}

@media screen and (max-width: 768px) {
   .footer__wrap {
      font-size: 1rem;
   }
   .footer__box {
      flex-direction: column;
      row-gap: 2rem;
      margin-top: 4rem;
   }
   .footer__nav {
      column-gap: 1rem;
   }
}
