@font-face {
  font-family: Inter;
  src: url(/gilzaboom-fonts/gilzaboom-inter-regular.woff2) format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url(/gilzaboom-fonts/gilzaboom-inter-500.woff2) format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url(/gilzaboom-fonts/gilzaboom-inter-700.woff2) format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Bona Nova;
  src: url(/gilzaboom-fonts/gilzaboom-bona-nova-700.woff2) format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:active,
:focus {
  outline: 0;
}

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

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

body,
html {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overscroll-behavior: none;
}

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

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

input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

textarea::placeholder,
input::placeholder {
  color: inherit;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: inherit;
}

input::placeholder,
textarea::placeholder {
  color: inherit;
}

textarea {
  resize: none;
}

button {
  cursor: pointer;
  background-color: transparent;
}

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

a {
  display: inline-block;
  color: inherit;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  display: block;
  /* width: 100%;
  height: 100%; */
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  vertical-align: top;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
}

.w100 {
  width: 100%;
}

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

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.section {
  /* margin-bottom: 40px; */
}

.section_pages {
  margin-top: 100px;
  margin-bottom: 20px;
}

/* @media (max-width: 700px) {
  .section {
    margin-bottom: 40px;
  }
} */

.container {
  max-width: 1240px;
  margin: 0 auto;
}

.container {
  padding: 0 40px;
}

.header_section {
  max-width: 100%;
  margin: 0 auto;
}

.container_section {
  max-width: 1240px;
  margin: 0 auto;
}

@media (max-width: 1300px) {
  .container_section {
    padding: 0 30px;
  }
}

@media (max-width: 991px) {
  .container,
  .container_section {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .container,
  .container_section {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .container,
  .container_section {
    padding: 0 16px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

:root {
  overscroll-behavior: none;
  /* // Шрифты */
  --font-main: "Inter", sans-serif;
  --background-page: #F5F5F5;
  --main: var(--black);
  --black: #000000;
  --white: #ffffff;
  --i: calc(1vw + 1vh);
  --btn-color: #39701f;
  --btn-hover: #59714e;
  --hover-a: #a09f9f;
}

.gilzaboom_page {
  display: flex;
  flex-direction: column;
  font-family: var(--font-main);
  min-height: 100vh;
  overflow: hidden;
  color: var(--main);
  background-color: var(--background-page);

  position: relative;
  z-index: 1;
}

h1 {
}

h2 {
}

h3 {
}

p {
}

.uppercase {
  text-transform: uppercase;
}

@media (max-width: 991px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 16px;
  }
}

.btn {
  border-radius: 6px;
  border: 1px solid #fff;
  background: #39701f;
  color: var(--white);

  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 24px */
  text-transform: uppercase;

  padding: 14px;
  width: 100%;

  display: flex;
  justify-content: center;
}

.btn:hover {
  background-color: var(--btn-hover);
}

.p-r-z-1 {
  position: relative;
  z-index: 1;
}

.p-r-z-3 {
  position: relative;
  z-index: 3;
}

/* font-weight */

.f--w-100 {
  font-weight: 100;
}

.f--w-200 {
  font-weight: 200;
}

.f--w-300 {
  font-weight: 300;
}

.f--w-400 {
  font-weight: 400;
}

.f--w-500 {
  font-weight: 500;
}

.f--w-600 {
  font-weight: 600;
}

.f--w-700 {
  font-weight: 700;
}

.f--w-800 {
  font-weight: 800;
}

.f-w-900 {
  font-weight: 900;
}

/* font-size */

.f-s-10 {
  font-size: 10px;
}

.f-s-12 {
  font-size: 12px;
}

.f-s-14 {
  font-size: 14px;
}

.f-s-16 {
  font-size: 16px;
}

.f-s-20 {
  font-size: 20px;
}

.f-s-16 {
  font-size: 16px;
}

.f-s-18 {
  font-size: 18px;
}

.f-s-20 {
  font-size: 20px;
}

.f-s-26 {
  font-size: 26px;
}

.f-s-30 {
  font-size: 30px;
}

.f-s-32 {
  font-size: 32px;
}

.f-s-40 {
  font-size: 40px;
}

.f-s-50 {
  font-size: 50px;
}

/* padding */

.p-t-20 {
  padding-top: 20px;
}

.p-t-40 {
  padding-top: 40px;
}

.p-t-50 {
  padding-top: 50px;
}

.p-t-80 {
  padding-top: 80px;
}

.p-t-100 {
  padding-top: 100px;
}

.p-b-10 {
  padding-bottom: 10px;
}

.p-b-20 {
  padding-bottom: 20px;
}

.p-b-50 {
  padding-bottom: 50px;
}

.p-b-50 {
  padding-bottom: 50px;
}

/* margin */
.m-t-10 {
  margin-top: 10px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-t-24 {
  margin-top: 24px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-t-40 {
  margin-top: 40px;
}

.m-t-50 {
  margin-top: 50px;
}

.m-t-80 {
  margin-top: 80px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.m-b-40 {
  margin-bottom: 40px;
}

.m-b-50 {
  margin-bottom: 50px;
}

/* flex */

.flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justi-center {
  justify-content: center;
}

.space-between {
  justify-content: space-between;
}

.colum {
  flex-direction: column;
}

.wrap {
  flex-wrap: wrap;
}

.gilzaboom_main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.no-wrap {
  white-space: nowrap;
}

.none-uppercase {
  text-transform: none;
}

.word-break {
  word-break: break-all;
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.img-contain {
  object-fit: contain;
}

.img-cover {
  object-fit: cover;
}

.underline {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.rd-upload img {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.rd-load img {
  opacity: 1;
}

/* !!!!!!!!!!!!!!!!!!!!!!! */
/* gap */
/* !!!!!!!!!!!!!!!!!!!!!!! */
.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.visibility {
  visibility: hidden;
}

/* !!!!!!!!!!!!!!!!!!!!!!! */
/* header */
/* !!!!!!!!!!!!!!!!!!!!!!! */

.gilzaboom_header {
  padding: 10px 0;
  /* z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7; */
  width: 100%;

  background: #0066FF;
}

header .gilzaboom_logo img {
  max-width: 160px;
  height: 30px;
}

@media (max-width: 400px) {
  header .gilzaboom_logo img {
    max-width: 130px;
    height: 30px;
  }
}

/* header .gilzaboom_logo,
header .gilzaboom_logo_burger {
  max-width: 24px;
  width: 100%;
  max-height: 24px;
} */

header .gilzaboom_logo p,
header .gilzaboom_logo_burger p {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

@media (max-width: 400px) {
  header .gilzaboom_logo p,
  header .gilzaboom_logo_burger p {
    font-size: 16px;
  }
}

.gilzaboom_header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.gilzaboom_nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-around;
  gap: 20px;
  padding: 10px 30px;
}

@media (max-width: 991px) {
  .gilzaboom_header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--black);
    z-index: 100;
    padding: 100px 30px 30px 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: auto;
    -webkit-transition:
      opacity 0.2s ease-in-out,
      visibility 0.2s ease-in-out,
      pointer-events 0.2s ease-in-out;
    transition:
      opacity 0.2s ease-in-out,
      visibility 0.2s ease-in-out,
      pointer-events 0.2s ease-in-out;
  }

  .age_disclaimer {
    display: none;
  }
}

@media (max-width: 600px) {
  .gilzaboom_header__menu {
    padding: 80px 30px 30px 30px;
  }
}

.gilzaboom_header__menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}

.gilzaboom_header__exit-menu {
  display: none;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: transparent;
}

@media (max-width: 991px) {
  .gilzaboom_header__exit-menu {
    display: block;
    top: 30px;
    right: 30px;
  }
}

@media (max-width: 600px) {
  .gilzaboom_header__exit-menu {
    top: 15px;
    right: 15px;
  }
}

.gilzaboom_header__exit-menu::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.gilzaboom_header__exit-menu::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.gilzaboom_nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .gilzaboom_nav__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.gilzaboom_nav__item a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-transform: uppercase;
}

@media (max-width: 1190px) {
  .gilzaboom_nav__item a {
    font-size: 10px;
  }
}

@media (max-width: 991px) {
  .gilzaboom_nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .gilzaboom_nav__item a {
    font-size: 12px;
    color: #fff;
  }
}

@media (max-width: 991px) {
  .gilzaboom_nav__list_footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px 30px;
  }
}

@media (max-width: 600px) {
  .gilzaboom_nav__list_footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.gilzaboom_nav__link {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .gilzaboom_nav__link:hover {
    color: var(--hover-a);
  }
}

.gilzaboom_nav__link:focus-visible {
  color: var(--hover-a);
}

.gilzaboom_nav__link:active {
  color: var(--active);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

.gilzaboom_burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 30px;
  height: 18px;
}

@media (max-width: 991px) {
  .gilzaboom_burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.gilzaboom_burger img {
  width: 24px;
  height: 24px;

}

.section_main_text {
  padding-top: 20px;
  padding-bottom: 20px;
  background: #fff;
}

.main_text_block {
  padding: 20px;
  width: 100%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  align-self: stretch;
}

.main_text_container {
  width: 100%;
  max-width: 760px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

.main_text_container h1 {
font-family: "Bona Nova";
font-size: 46px;
font-style: normal;
font-weight: 700;
line-height: 120%; 
text-transform: uppercase;
}

.main_text_container p {
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%; 
}

.main_text_img {
  max-width: 336px;
  width: 100%;
}

.main_text_img img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .section_main_text {
    background: url(/gilzaboom-img/gilzaboom-bg-main-mobile.webp) no-repeat right;
    background-size: contain;
    background-color: #fff;
  }

  .main_text_img_block {
    display: none;
  }
}

@media (max-width: 850px) {
  .main_text_container h1 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {

  .main_text_block {
    padding: 15px;
  }

  .main_text_container h1 {
    font-size: 28px;
  }

  .main_text_container p {
    font-size: 16px;
  }
}

.bg_game_section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.game_main_block {
  width: 100%;
  border-radius: 30px;
  background: #FFF;
  box-shadow: -1px 1px 23.4px 0 rgba(0, 0, 0, 0.30);
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}

.game_main_block h2 {
  font-family: "Bona Nova";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; 
  text-transform: uppercase;
}

.game_card {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}

.game_card img {
    width: 100%;
  height: auto;
  display: block;
}

.game_card p {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}

.play-btn {
  display: flex;
  padding: 14px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 30px;
  background: linear-gradient(90deg, #06F 0%, #3394FF 43.27%, #06F 86.54%);
  box-shadow: 5px 1px 15.9px 0 rgba(255, 255, 255, 0.25);
  max-width: 300px;
  width: 100%;

  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; 
  text-transform: uppercase;
}

.is-game {
  max-width: 1240px;
  width: 100%;
  height: 500px;
}

@media (max-width: 850px) {
  .game_main_block h2 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .game_main_block h2 {
    font-size: 24px;
    text-align: center;
  }

  .game_card p {
    font-size: 14px;
  }

  .game_main_block {
    padding: 40px 16px;
    gap: 30px;
  }
}



.bg_section_about {
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
}

.about_block {
  width: 100%;
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.about_block h2 {
font-family: "Bona Nova";
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 120%; 
text-transform: uppercase;
}

.about_block p {
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%; 
}

.about_list {
  width: 100%;
  max-width: 1240px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.about_item {
  display: flex;
  max-width: 600px;
  width: 100%;
  padding: 20px;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-radius: 20px;
  background: #FFF;
  box-shadow: -1px 1px 23.4px 0 rgba(0, 0, 0, 0.30);
}

.about_item_img {
  max-width: 70px;
  width: 100%;
}

.about_item_img img {
  width: 100%;
  height: auto;
  display: block;
}

.about_item_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
}

.about_item_text span {
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 150%; 
}

.about_item_text p {  
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 150%; 
}

@media (max-width: 600px) {
  .bg_section_about {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #FFFFFF;
  }

  .about_block {
    gap: 20px;
  }

  .about_block h2 {
    font-size: 24px;
  }

  .about_block p {
    font-size: 14px;
  }

  .about_list {
    gap: 10px;
  }
}

.bg_section_game {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about_game_block {
  width: 100%;
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.about_game_block h2 {
  font-family: "Bona Nova";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; 
  text-transform: uppercase;
}

.about_game_data {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.about_game_text {
  border-left: 4px solid #06F;
  display: flex;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.about_game_text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; 
}

.about_game_img {
  max-width: 338px;
  width: 100%;
}

.about_game_img img {
  width: 100%;
  height: auto;
  display: block;
}

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


@media (max-width: 600px) {
  .bg_section_game {
    padding-top: 0;
    padding-bottom: 0;
    background-color: #FFFFFF;
  }

  .about_game_block h2 {
    font-size: 24px;
  }

  .about_game_block {
    gap: 20px;
  }

  .about_game_text {
    display: flex;
    padding-left: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-left: 1px solid #06F;
  }
  
}

.section_form {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff;
}

.block_contact_form {
  width: 100%;
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
}

.form_container_header {
  width: 100%;
  max-width: 500px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form_container_header h2 {
font-family: "Bona Nova";
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 120%; 
text-transform: uppercase;
}

.form_container_header p {
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%; 
text-align: center;
}

.contact_form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact_form p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; 
  color: #151515;
  margin-bottom: -10px;
}

.contact_form input,
.contact_form textarea {
  border-radius: 10px;
  border: 1px solid #E6E6E6;
  background: #F5F5F5;

  padding: 14px 16px;
  color: #999;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
}

.contact_form_btn {
  display: flex;
  padding: 14px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;

  border-radius: 30px;
  background: linear-gradient(90deg, #06F 0%, #3394FF 43.27%, #06F 86.54%);
  box-shadow: 5px 1px 15.9px 0 rgba(255, 255, 255, 0.25);

  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; 
  text-transform: uppercase;
}

.info_block_form {
  border-radius: 10px;
  border: 1px solid #E6E6E6;
  background: #F5F5F5;
  display: flex;
  padding: 14px 16px;
  align-items: center;
  gap: 8px;
  max-width: 500px;
  width: 100%;
}


.info_block_form_text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.info_block_form_text span {
font-family: "Bona Nova";
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: 120%; 
text-transform: uppercase;
}

.info_block_form_text p {
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 150%; 
}

.info_block_form_social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.contact_form textarea {
  min-height: 100px;
}

@media (max-width: 600px) {

  .section_form {
    padding-top: 40px;
    padding-bottom: 40px;

    background-color: #FFFFFF;
  }

  .form_container_header {
    align-items: center;
    gap: 10px;
  }

  .form_container_header h2 {
    font-size: 20px;
  }

  .form_container_header p {
    font-size: 14px;
  }

  .contact_form_btn {
    /* padding: 20px 16px; */
    font-size: 14px;
    /* max-width: 600px; */
  }

  .info_block_form_social {
    flex-direction: column;
  }


}

.success_message {
  display: none;
  color: #272727;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin-top: 10px;

  text-align: center;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.success_message.show {
  display: flex;
}

input,
textarea {
  color: #272727;
  border: 1px solid #272727;
  transition: all 0.3s ease;
  padding: 8px;
  width: 300px;
  margin-bottom: 10px;
}

input:valid,
textarea:valid {
  color: #272727;
  border: 2px solid #272727;
  background-color: var(--background-page);
}

.faq_section {
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 0;
  background-color: #fff;
}

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

.faq_block {
  max-width: 1240px;
  width: 100%;
}

.faq_block_list {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
  flex-direction: column;
}

.faq_list_item {
  position: relative;
  display: flex;
  width: 100%;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 10px;
  border-bottom: 2px solid #000;
}

.faq_list_item::after {
  content: none;
}

.faq_list_item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14px;
}

.faq_header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 15px;
}

.faq_question {
font-family: "Bona Nova";
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 120%; 
text-transform: uppercase;
text-align: left;
}

.faq_list_item.active {
  gap: 16px;
}

.faq_icon {
  transition: transform 0.3s ease;
}
.faq_icon.open {
  transform: rotate(180deg);
}

.faq_answer {
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%; 

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
}

.faq_list_item.active .faq_answer {
  opacity: 1;
}

@media (max-width: 1000px) {
  .faq_block {
    flex-wrap: wrap;
    justify-content: center;
  }

  .faq_block_list {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .faq_list_item {
    max-width: 100%;
  }

}

@media (max-width: 600px) {

  /* .container_faq {
    gap: 16px;
  } */

  .faq_section {
  padding-top: 40px;
  padding-bottom: 40px;
}

  .faq_question {
    font-size: 20px;
  }

  .faq_answer{
    font-size: 14px;
  }

}

.m-t-60 {
  margin-top: 60px;
}

.m-t-100 {
  margin-top: 100px;
}

.section_updates {
  padding: 10px 10px;
}

.section_cards {
  padding: 0 10px;
}

.date_display {
  display: none;
}

.bg_footer_section {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #6D6D6D;
  margin-bottom: 0;
}

.footer_container {
  max-width: 1240px;
  width: 100%;
  gap: 24px;

  display: flex;
  flex-direction: column;
}

.footer_disclaimer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.disclaimer_text {
  color: #272727;
  text-align: center;
  font-family: Kodchasan;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; 
  text-transform: uppercase;
}

.politic_page_links ul {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.politic_page_links li {
  margin: 0;
}

.politic_page_links a {
color: #FFF;
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 150%; 
text-transform: uppercase;
}

.politic_page_links a:hover,
.politic_page_links a:active,
.politic_page_links a:focus {
  color: #272727;
  text-decoration: none;
}

.logo_footer_image {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.footer_18plus {
  max-width: 40px;
  width: 100%;
}

.footer_18plus img {
  width: 100%;
  height: auto;
  display: block;
}

.disclaimer_info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.disclaimer_info p,
.disclaimer_info a {
color: #fff;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%; 
}

@media (max-width: 950px) {
  .politic_page_links ul {
    gap: 20px;
    flex-wrap: wrap;
  }
}


.copyright_footer p {

  color: #FFF;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 150%; /* 24px */
text-transform: uppercase;
}
@media (max-width: 600px) {

  .copyright_footer p {
    font-size: 14px;
    text-align: center;
  }

  .disclaimer_info p, .disclaimer_info a {
    font-size: 14px;
  }

  .logo_footer_image {
    gap: 20px;
  }
}

.gilzaboom_main {
  position: relative;
}

.gilzaboom_page {
  position: relative;
}

@keyframes rotate360 {
  from {
    transform: translateX(50%) rotate(0deg);
  }
  to {
    transform: translateX(50%) rotate(360deg);
  }
}

.section_main_block_results {
  margin-bottom: 0;
}

.results_main_block {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}

.results_main_block h1{
  color: #272727;
font-family: Kodchasan;
font-size: 38px;
font-style: normal;
font-weight: 700;
line-height: 120%; 
text-transform: uppercase;
}

.results_main_block p,
.results_main_list li{
  color: #272727;
font-family: Kodchasan;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 150%; 
}

@media (max-width: 600px) {
  .results_main_block {
    gap: 16px;
  }

  .results_main_block h1{
    font-size: 24px;
  }

  .results_main_block p,
  .results_main_list li{
    font-size: 16px;
}

}

.block_pages_info {
  width: 100%;
  max-width: 1240px;
  display: flex;
  flex-direction: column;

  display: flex;
padding: 40px;
justify-content: center;
gap: 30px;
border-radius: 30px;
background: #FFF;
box-shadow: -1px 1px 23.4px 0 rgba(0, 0, 0, 0.30);
}

.block_pages_info p {
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%; 
}

.block_pages_info ul li {
  list-style: disc !important;
  margin-left: 10px;

font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 24px */

}

@media (max-width: 600px) {
  .block_pages_info {
    padding: 20px 16px;
    gap: 20px;
  }

  .block_pages_info p {
    font-size: 14px;
  }

  .block_pages_info ul li {
    font-size: 14px;
  }
  
}

.status {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);

  /* display: flex; */
  align-items: center;
  justify-content: center;

  padding: 20px;
}

.status.active {
  display: flex;
}


.bg-popup {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;


  padding: 64px;
  border-radius: 35px;
  background: #F3FFF4;
  color: #272727;
}

.bg-popup > *:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width:991px) {
  .bg-popup {
    padding: 32px 24px
  }
}

@media (max-width:600px) {
  .bg-popup {
    padding: 24px 16px
  }
}

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-modal-content {
  background: #0066FF;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.age-modal-content h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.age-modal-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.age-modal-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.age-modal-buttons button {
  padding: 10px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

#ageYes {
  background-color: #0C9100;
  color: #fff;
}

#ageYes:hover {
  background-color: #032300;
}

#ageNo {
  background-color: #c50c0c;
  color: #fff;
}

#ageNo:hover {
  background-color: #999;
}