@charset "UTF-8";
/* stylelint-disable no-invalid-position-at-import-rule */
:root {
  --c-text-regular: #fff;
  --c-text-secondary: #5b5b5b;
  --c-button-secondary: #5b5b5b;
  --c-text-label: #bdbdbd;
  --c-text-on: #fff;
  --c-input-placeholder: brig-color(#000, 0.3);
  --c-accent: #b24d2b;
  --c-accent-light: #cc886a;
  --c-error: #ff3b30;
  --bg-element: #fff;
  --bg-app: #0e1317;
  --bg-app-light: #212425;
  --bg-dropdown: #384043;
  --bg-dropdown-list: #4e5557;
  --bg-poppa: #171b1f;
  --radius-poppa: 10px;
  --overlay-poppa: rgba(0, 0, 0, 0.8);
  --c-border: #cecece;
  --radius-s: 4px;
  --radius-l: 30px;
  --tr: 0.3s;
  --tr-regular: all var(--tr) ease;
  --container-padding: 15px;
  --ff-regular: "Progress", sans-serif;
  --ff-title: "Inter", sans-serif;
  --fz-button: 18px;
  --lh-button: 126.5%;
}
@media (max-width: 1100px) {
  :root {
    --container-padding: 10px;
  }
}
@media (max-width: 768px) {
  :root {
    --fz-button: 15px;
    --lh-button: 126%;
  }
}

/* stylelint-disable scss/operator-no-newline-after */
.logo {
  display: block;
}

.logo__pic {
  display: block;
  width: 100%;
  height: 100%;
}

.logo__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.input {
  --border-color: #dfdfdf;
  --border-radius: 0px;
  --text-color: var(--c-text-regular);
  --fz: 18px;
  --lh: 1.4;
  --padding: 22px 22px 22px 68px;
  --label-color: var(--c-text-grey-2);
  --label-top: 16px;
  --label-left: 12px;
  --label-fz: var(--fz);
  --label-lh: var(--lh);
  --message-color: var(--c-text);
  --message-transform: scale(1, 0);
  --message-offset: -1.2em;
  position: relative;
  display: block;
  width: 100%;
  font-family: var(--ff-regular);
}
@media (max-width: 768px) {
  .input {
    --padding: 13px 13px 13px 46px;
    --fz: 15px;
    --lh: 22px;
  }
}

.input--active {
  --border-color: var(--c-text-grey-2);
  --label-top: -9px;
  --lebel-left: 12px;
  --label-fz: calc(var(--label-fz) - 5);
}

.input--invalid {
  --label-color: var(--c-error);
  --message-transform: scale(1);
  --message-color: var(--c-error);
  --message-offset: 5px;
  --border-color: var(--c-error);
}

.input__field {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--padding);
  font-size: var(--fz);
  line-height: var(--lh);
  color: var(--text-color);
  background-color: var(--bg-element);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: inset 0px 0px 40px rgba(188, 188, 188, 0.25);
  transition: all 0.3s ease;
}

.input__field::placeholder {
  color: rgba(0, 0, 0, 0.19);
}

.input__icon {
  position: absolute;
  top: 27px;
  left: 38px;
  z-index: 3;
  display: block;
  width: 18px;
  height: 18px;
}
@media (max-width: 768px) {
  .input__icon {
    top: 18px;
    left: 24px;
    width: 14px;
    height: 14px;
  }
}

.input__label {
  position: absolute;
  top: var(--label-top);
  left: var(--label-left);
  z-index: 3;
  display: inline-block;
  padding-right: 4px;
  padding-left: 4px;
  color: var(--label-color);
  pointer-events: none;
  background-color: var(--bg-element);
  transition: all 0.3s ease;
}

.input__message {
  z-index: 1;
  display: block;
  min-height: 1.2em;
  margin-top: var(--message-offset);
  font-size: var(--fz-tag);
  line-height: var(--lh-tag);
  color: var(--message-color);
  transition: all 0.3s ease;
  transform: var(--message-transform);
  transform-origin: top;
}

.input--textarea .input__field {
  height: 100%;
  padding-left: 42px;
  resize: none;
}

:root {
  --bg-poppa-overlay: rgba(0, 0, 0, 0.8);
  --c-poppa-closer-hover: #ff3b30;
  --z-poppa: 1234567890;
}

.poppa__storage {
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-poppa);
  display: block;
  width: 100%;
  height: 100vh;
  max-height: 1000px;
  pointer-events: none;
}

.poppa__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  max-height: 1000px;
  pointer-events: none;
  background-color: var(--bg-poppa-overlay);
  opacity: 0;
  transition: all 0.3s ease;
}

.poppa__overlay._show {
  pointer-events: initial;
  opacity: 1;
}

.poppa__aligner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1em;
}

.poppa {
  max-width: 900px;
  padding: 1em;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  border-radius: 2em;
  transition: all 0.3s ease;
  transform: scale(0.86);
}

._show .poppa {
  transform: scale(1);
}

.poppa__closer {
  position: absolute;
  top: 1em;
  right: 1em;
  display: block;
  width: 2.5em;
  height: 2.5em;
  font-size: 0;
  background-color: transparent;
  transition: all 0.3s ease;
  --closer-color: #fff;
}

.poppa__closer::before,
.poppa__closer::after {
  position: absolute;
  top: 48%;
  left: 0;
  display: block;
  width: 100%;
  height: 10%;
  content: "";
  background-color: var(--closer-color);
  border-radius: 1em;
  transition: all 0.3s ease;
}

.poppa__closer::before {
  transform: rotate(45deg);
}

.poppa__closer::after {
  transform: rotate(-45deg);
}

.poppa__closer:hover::before,
.poppa__closer:hover::after {
  background-color: var(--c-poppa-closer-hover);
}

/*

  Animations

    transition: opacity .5s cubic-bezier(.4,0,0,1),-webkit-transform .5s cubic-bezier(.4,0,0,1)!important;
    transition: transform .5s cubic-bezier(.4,0,0,1),opacity .5s cubic-bezier(.4,0,0,1)!important;

    transition: transform .5s cubic-bezier(.4,0,0,1),opacity .5s cubic-bezier(.4,0,0,1),-webkit-transform .5s cubic-bezier(.4,0,0,1)!important;

    transform: scale(.86);
    opacity: 0;
*/
/*

  poppa theme


*/
.poppa {
  width: 100%;
  max-width: 300px;
  padding-top: 24px;
  padding-right: 18px;
  padding-bottom: 37px;
  padding-left: 18px;
  color: var(--c-text-on);
  background: var(--bg-poppa);
  border-radius: var(--radius-poppa);
}
@media (min-width: 1100px) {
  .poppa {
    max-width: 500px;
  }
}

.poppa--overlay {
  background: var(--bg-poppa-overlay);
}

.poppa__closer {
  --closer-color: #707070;
  font-size: 20px;
  color: transparent;
  background-color: var(--bg-poppa);
  border-radius: var(--radius-poppa);
}
@media (max-width: 768px) {
  .poppa__closer {
    font-size: 12px;
  }
}

.poppa__title {
  margin-bottom: 20px;
  font-family: var(--ff-title);
  font-size: 18px;
  line-height: 126%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.poppa__title-link {
  color: inherit;
}

@media (min-width: 1100px) {
  .poppa__title-link:hover {
    color: var(--c-accent);
  }
}

.poppa__button {
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .poppa__button {
    padding-top: 15px;
    padding-bottom: 16px;
  }
}

.poppa__closer::before,
.poppa__closer::after {
  top: 44%;
  right: 0;
  width: 80%;
  height: 8%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 768px) {
  .poppa__closer::before,
.poppa__closer::after {
    top: 46%;
    width: 70%;
  }
}

.bayan {
  overflow: hidden;
  transition: all 0.4s;
}

.bayan__top {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.bayan__toggler {
  transition: all 0.3s;
}

.bayan__bottom {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s;
}

.bayan__bottom--absolute {
  position: absolute;
}

.bayan--opened .bayan__bottom {
  margin-top: 0;
  opacity: 1;
}

@media (max-width: 1199px) {
  .bayan__bottom--mobile-static {
    position: static;
  }
}
.socials {
  display: flex;
  align-items: center;
}

.socials__link {
  --size: 24px;
  --icon-color: var(--c-text-grey-2);
  display: block;
  width: var(--size);
  min-width: var(--size);
  max-width: var(--size);
  height: var(--size);
  min-height: var(--size);
  max-height: var(--size);
  margin-right: 12px;
  fill: var(--icon-color);
  transition: all 0.3s;
}
@media (max-width: 575px) {
  .socials__link {
    --size: 32px;
    margin-right: 9px;
  }
}

.socials__link--has-stroke {
  stroke: var(--icon-color);
}

.socials__link:last-of-type {
  margin-right: 0;
}

@media (min-width: 1100px) {
  .socials__link:hover {
    --icon-color: var(--c-accent);
  }
}

.socials__icon {
  fill: #fff;
}

.snack {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  background: #000;
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: var(--tr-regular);
}

.snack--visible {
  opacity: 1;
}

.snack__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .snack__container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
  }
}

.snack__hl {
  color: var(--c-text-on);
}

.snack__link {
  color: #f00;
}

@media (max-width: 576px) {
  .snack__buttons {
    max-width: 100%;
    padding-top: 14px;
  }
}

.snack__button {
  width: 20px;
  height: 20px;
  font-size: 15px;
}
@media (max-width: 576px) {
  .snack__button {
    width: 100%;
  }
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url("../resources/fonts/Inter-Regular.woff2") format("woff2"), url("../resources/fonts/Inter-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url("../resources/fonts/Inter-SemiBold.woff2") format("woff2"), url("../resources/fonts/Inter-SemiBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  src: url("../resources/fonts/Inter-Black.woff2") format("woff2"), url("../resources/fonts/Inter-Black.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Progress";
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url("../resources/fonts/progress-bold-italic.woff2") format("woff2"), url("../resources/fonts/progress-bold-italic.woff") format("woff");
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
}

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

html,
body {
  width: 100%;
  min-width: 320px;
  height: 100%;
}

body {
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

button:active {
  outline: none;
}

input[type=submit] {
  cursor: pointer;
}

button {
  color: inherit;
  cursor: pointer;
  background: inherit;
}

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

a {
  color: inherit;
}

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

ul li {
  list-style: none;
  list-style-position: inside;
}

ol li {
  list-style-position: inside;
}

img,
svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}

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

body {
  font-family: var(--ff-regular);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--c-text-regular);
  background: #000;
}

body._lock {
  overflow: hidden;
  touch-action: none;
}

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}
.wrapper > .content {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
}

/*
(i) Стили будут применяться ко
всем классам содержащим *__container
Например header__container, main__container и т.д.
*/
.container {
  max-width: 1600px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.section-title {
  position: relative;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  font-size: 90px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 1920px) {
  .section-title {
    max-width: 750px;
    font-size: 65px;
  }
}
@media (max-width: 1720px) {
  .section-title {
    max-width: 600px;
    font-size: 50px;
  }
}
@media (max-width: 992px) {
  .section-title {
    max-width: 380px;
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .section-title {
    max-width: 320px;
  }
}

.section-title::before,
.section-title::after {
  position: absolute;
  display: block;
  width: 88px;
  height: 200px;
  content: "";
  background-image: url("../img/common/title-brace-left.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1920px) {
  .section-title::before,
.section-title::after {
    width: 49px;
    height: 112px;
  }
}
@media (max-width: 992px) {
  .section-title::before,
.section-title::after {
    width: 26px;
    height: 61px;
  }
}

.section-title::before {
  bottom: -40px;
  left: 40px;
}
@media (max-width: 1920px) {
  .section-title::before {
    bottom: -20px;
    left: 50px;
  }
}
@media (max-width: 992px) {
  .section-title::before {
    bottom: -10px;
  }
}
@media (max-width: 576px) {
  .section-title::before {
    left: 0;
  }
}

.section-title::after {
  top: -40px;
  right: -10px;
  transform: scale(-1);
}
@media (max-width: 1920px) {
  .section-title::after {
    top: -20px;
    right: 20px;
  }
}
@media (max-width: 992px) {
  .section-title::after {
    top: -10px;
    right: 40px;
  }
}
@media (max-width: 576px) {
  .section-title::after {
    right: 0;
  }
}

.burger {
  position: relative;
  width: 40px;
  height: 40px;
  transition: var(--tr);
}

.burger span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 40%;
  height: 2px;
  background: var(--c-text-regular);
  transition: var(--tr);
}

.burger span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 5px));
}

.burger span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.burger span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 5px));
}

.burger.is-active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  width: 0;
}

.burger.is-active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.section {
  margin: 120px 0;
}
.section.is-fill {
  padding: 50px 0;
}
.section.have-margin-s {
  margin: 80px 0;
}
@media (max-width: 450px) {
  .section.have-margin-s {
    margin: 60px 0;
  }
}
@media (max-width: 450px) {
  .section {
    margin: 80px 0;
  }
}

.s-header {
  margin-bottom: 40px;
}
@media (max-width: 450px) {
  .s-header {
    margin-bottom: 30px;
  }
}

.header {
  position: fixed;
  top: 80px;
  right: 0;
  left: 0;
  z-index: 100;
  max-width: 1995px;
  padding-top: 35px;
  padding-bottom: 35px;
  margin-right: auto;
  margin-left: auto;
  clip-path: polygon(0 2%, 100% 8%, 98% 88%, 3% 100%);
  background-color: #000000;
  transition: all 0.3s ease;
}
@media (max-width: 1920px) {
  .header {
    top: 40px;
    max-width: 1125px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media (max-width: 992px) {
  .header {
    top: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .header {
    top: 0;
    padding-top: 0;
    padding-bottom: 0;
    clip-path: none;
  }
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 100%;
  padding-right: 130px;
}
@media (max-width: 1920px) {
  .header__container {
    padding-right: 70px;
  }
}
@media (max-width: 992px) {
  .header__container {
    padding-right: 55px;
  }
}
@media (max-width: 576px) {
  .header__container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.header__logo {
  max-width: 295px;
  margin-right: 110px;
  transition: all 0.3s;
}
@media (max-width: 1920px) {
  .header__logo {
    max-width: 165px;
    margin-right: 61px;
  }
}
@media (max-width: 992px) {
  .header__logo {
    max-width: 102px;
    margin-right: 31px;
  }
}
@media (max-width: 576px) {
  .header__logo {
    position: relative;
    z-index: 2;
    margin-right: auto;
    margin-bottom: -45px;
  }
}

@media (max-width: 576px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translateY(-120%);
  }
}

@media (max-width: 576px) {
  .header--opened .header__nav {
    pointer-events: initial;
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(0);
  }
}

.header__nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 576px) {
  .header__nav-links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.header__nav-item {
  --fz: 25px;
  margin-right: 58px;
}
@media (max-width: 1920px) {
  .header__nav-item {
    margin-right: 28px;
    --fz: 14px;
  }
}
@media (max-width: 992px) {
  .header__nav-item {
    --fz: 12px;
    margin-right: 10px;
  }
}
@media (max-width: 576px) {
  .header__nav-item {
    height: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.header__nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 576px) {
  .header__nav-item:last-child {
    margin-bottom: 0;
  }
}

.header__nav-link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 27px;
  font-size: var(--fz);
  color: #fff;
}
@media (max-width: 1920px) {
  .header__nav-link {
    padding: 0 17px;
  }
}
@media (max-width: 992px) {
  .header__nav-link {
    padding: 0 8px;
  }
}

.header__burger {
  position: relative;
  z-index: 2;
}
@media (min-width: 577px) {
  .header__burger {
    display: none;
  }
}

@media (min-width: 577px) {
  .header--scrolled {
    top: 0;
    max-width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

.header--scrolled .header__container {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1921px) {
  .header--scrolled .header__container {
    max-width: 1750px;
  }
}

@media (min-width: 577px) {
  .header--scrolled .header__logo {
    max-width: 193px;
  }
}
@media (min-width: 577px) and (max-width: 1920px) {
  .header--scrolled .header__logo {
    max-width: 108px;
  }
}
@media (min-width: 577px) and (max-width: 992px) {
  .header--scrolled .header__logo {
    max-width: 54px;
  }
}

.hero {
  padding-top: 300px;
  background-color: #c93515;
  background-image: url("../img/hero/hero-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1920px) {
  .hero {
    padding-top: 140px;
  }
}
@media (max-width: 1720px) {
  .hero {
    padding-top: 190px;
  }
}
@media (max-width: 992px) {
  .hero {
    padding-top: 70px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 87px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding-top: 45px;
  }
}

.hero__container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 2150px;
  padding-right: 0;
  padding-left: 0;
  margin-left: 0;
}
@media (max-width: 1920px) {
  .hero__container {
    max-width: 1750px;
  }
}
@media (max-width: 1720px) {
  .hero__container {
    max-width: 1250px;
  }
}
@media (max-width: 576px) {
  .hero__container {
    flex-direction: column;
  }
}

.hero__figure {
  position: relative;
  max-width: 995px;
}
@media (max-width: 1920px) {
  .hero__figure {
    max-width: 830px;
    height: 980px;
  }
}
@media (max-width: 1720px) {
  .hero__figure {
    max-width: 589px;
    height: 670px;
  }
}
@media (max-width: 1200px) {
  .hero__figure {
    max-width: 500px;
    height: 550px;
  }
}
@media (max-width: 992px) {
  .hero__figure {
    max-width: 450px;
    height: 480px;
  }
}
@media (max-width: 768px) {
  .hero__figure {
    max-width: 400px;
    height: 410px;
  }
}
@media (max-width: 576px) {
  .hero__figure {
    max-width: 450px;
    height: 500px;
    margin-right: auto;
    transform: translateX(-60px);
  }
}
@media (max-width: 335px) {
  .hero__figure {
    max-width: 360px;
    height: 350px;
  }
}

.hero__figure::before {
  position: absolute;
  top: 280px;
  left: 330px;
  z-index: 2;
  display: block;
  width: 88px;
  height: 109px;
  content: "";
  background-image: url("../img/hero/cracker-1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 1720px) {
  .hero__figure::before {
    top: 154px;
    left: 185px;
    width: 49px;
    height: 62px;
  }
}
@media (max-width: 768px) {
  .hero__figure::before {
    top: 97px;
    left: 89px;
    width: 38px;
    height: 40px;
  }
}

.hero__pic {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
}

.hero__pic::before {
  position: absolute;
  top: 40%;
  right: -150px;
  z-index: 2;
  display: block;
  width: 118px;
  height: 129px;
  content: "";
  background-image: url("../img/hero/cracker-2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 1720px) {
  .hero__pic::before {
    right: -90px;
    width: 77px;
    height: 79px;
  }
}
@media (max-width: 992px) {
  .hero__pic::before {
    right: -40px;
  }
}
@media (max-width: 768px) {
  .hero__pic::before {
    top: 42%;
    right: -50px;
    width: 67px;
    height: 47px;
  }
}
@media (max-width: 576px) {
  .hero__pic::before {
    top: 34%;
    right: -40px;
    width: 67px;
    height: 37px;
  }
}

.hero__pic::after {
  position: absolute;
  right: -190px;
  bottom: 24%;
  z-index: 2;
  display: block;
  width: 158px;
  height: 169px;
  content: "";
  background-image: url("../img/hero/cracker-3.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 1720px) {
  .hero__pic::after {
    right: -110px;
    bottom: 23%;
    width: 99px;
    height: 102px;
  }
}
@media (max-width: 992px) {
  .hero__pic::after {
    right: -80px;
  }
}
@media (max-width: 768px) {
  .hero__pic::after {
    right: -77px;
    bottom: 21%;
    width: 99px;
    height: 62px;
  }
}
@media (max-width: 576px) {
  .hero__pic::after {
    right: -44px;
    bottom: 13%;
    width: 49px;
    height: 52px;
  }
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
}

.hero__button {
  position: absolute;
  right: 10px;
  bottom: 200px;
  z-index: 4;
  display: block;
  width: 100%;
  max-width: 540px;
  padding: 30px;
  margin-right: 0;
  margin-bottom: -100px;
  margin-left: auto;
  clip-path: polygon(0 2%, 100% 8%, 98% 88%, 3% 100%);
  font-size: 35px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #000;
  transition: all 0.3s;
}
@media (max-width: 1720px) {
  .hero__button {
    right: -20px;
    bottom: 40px;
    max-width: 304px;
    padding: 10px 16px;
    font-size: 20px;
    transform: translate(-26px, -100px);
  }
}
@media (max-width: 768px) {
  .hero__button {
    bottom: 22px;
    max-width: 190px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .hero__button {
    bottom: 55px;
  }
}
@media (max-width: 335px) {
  .hero__button {
    bottom: -15px;
  }
}

@media (any-hover: hover) {
  .hero__button:hover {
    color: #000;
    background-color: #fff;
  }
}

.hero-offer {
  width: 100%;
  max-width: 727px;
  padding-top: 130px;
  padding-right: 15px;
  padding-bottom: 48px;
  margin-left: auto;
}
@media (max-width: 1720px) {
  .hero-offer {
    max-width: 486px;
    padding-top: 70px;
    padding-right: 0px;
    padding-bottom: 28px;
  }
}
@media (max-width: 1200px) {
  .hero-offer {
    max-width: 400px;
  }
}
@media (max-width: 992px) {
  .hero-offer {
    padding-left: 60px;
  }
}
@media (max-width: 768px) {
  .hero-offer {
    max-width: 300px;
    padding-top: 40px;
    padding-right: 40px;
    padding-left: 0;
  }
}
@media (max-width: 576px) {
  .hero-offer {
    max-width: 280px;
    padding-top: 10px;
    padding-right: 0;
    padding-bottom: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}

.hero-offer__date {
  max-width: 360px;
  margin-right: auto;
  margin-bottom: 51px;
  margin-left: auto;
}
@media (max-width: 1720px) {
  .hero-offer__date {
    max-width: 202px;
    margin-bottom: 31px;
  }
}
@media (max-width: 768px) {
  .hero-offer__date {
    max-width: 127px;
    margin-bottom: 18px;
  }
}
@media (max-width: 576px) {
  .hero-offer__date {
    margin-bottom: 8px;
  }
}

.hero-offer__date-pic {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-offer__date-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-offer__title {
  max-width: 617px;
  margin-right: auto;
  margin-bottom: 29px;
  margin-left: auto;
}
@media (max-width: 1920px) {
  .hero-offer__title {
    max-width: 346px;
    margin-bottom: 19px;
  }
}
@media (max-width: 992px) {
  .hero-offer__title {
    max-width: 218px;
    margin-bottom: 10px;
  }
}

.hero-offer__title-pic {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-offer__title-img {
  object-fit: contain;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-offer__subtitle {
  text-align: left;
}
@media (max-width: 1720px) {
  .hero-offer__subtitle {
    margin-bottom: 7px;
  }
}
@media (max-width: 576px) {
  .hero-offer__subtitle {
    text-align: center;
  }
}

.hero-offer__subtitle::before,
.hero-offer__subtitle::after {
  display: none;
}

.hero-offer__desc {
  margin-bottom: 25px;
  font-family: "Inter", sans-serif;
  font-size: 25px;
}
@media (max-width: 1720px) {
  .hero-offer__desc {
    max-width: 470px;
    margin-bottom: 0;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .hero-offer__desc {
    font-size: 8px;
  }
}
@media (max-width: 576px) {
  .hero-offer__desc {
    margin-bottom: 10px;
    font-size: 10px;
    text-align: center;
  }
}

.hero-offer__desc:last-of-type {
  margin-bottom: 22px;
}
@media (max-width: 1720px) {
  .hero-offer__desc:last-of-type {
    margin-bottom: -28px;
  }
}

.hero-offer__logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
  padding-left: 20px;
}
@media (max-width: 576px) {
  .hero-offer__logos {
    justify-content: center;
  }
}

.hero-offer__logo-pic {
  width: 144px;
  margin-right: 36px;
}
@media (max-width: 1720px) {
  .hero-offer__logo-pic {
    width: 80px;
  }
}
@media (max-width: 768px) {
  .hero-offer__logo-pic {
    width: 50px;
    max-height: 70px;
    margin-right: 26px;
  }
}

.hero-offer__logo-pic:last-of-type {
  margin-right: 0;
}

.hero-offer__logo-img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.fund {
  padding-top: 133px;
  padding-bottom: 85px;
  background-color: #000;
}
@media (max-width: 1720px) {
  .fund {
    padding-top: 73px;
    padding-bottom: 15px;
  }
}
@media (max-width: 992px) {
  .fund {
    padding-top: 33px;
  }
}
@media (max-width: 576px) {
  .fund {
    padding-bottom: 25px;
  }
}

.fund__container {
  max-width: 1640px;
  margin-bottom: 140px;
}
@media (max-width: 1920px) {
  .fund__container {
    max-width: 1300px;
  }
}
@media (max-width: 1720px) {
  .fund__container {
    max-width: 940px;
    margin-bottom: 72px;
  }
}
@media (max-width: 992px) {
  .fund__container {
    max-width: 530px;
    margin-bottom: 42px;
  }
}
@media (max-width: 576px) {
  .fund__container {
    margin-bottom: 32px;
  }
}

.fund__title {
  position: relative;
  z-index: 2;
  margin-bottom: 110px;
}
@media (max-width: 1720px) {
  .fund__title {
    margin-bottom: 56px;
  }
}
@media (max-width: 992px) {
  .fund__title {
    margin-bottom: 29px;
  }
}
@media (max-width: 576px) {
  .fund__title {
    margin-bottom: 5px;
  }
}

.fund__cup {
  position: relative;
  z-index: 1;
}

.fund__cup::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  width: 100%;
  max-width: 1085px;
  height: 1085px;
  max-height: 1085px;
  margin-right: auto;
  margin-left: auto;
  content: "";
  background: #ff0000;
  filter: blur(269.5px);
}
@media (max-width: 1920px) {
  .fund__cup::before {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 992px) {
  .fund__cup::before {
    width: 360px;
    height: 300px;
    filter: blur(109.5px);
  }
}

.fund__cup::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  height: 500px;
  margin-top: 220px;
  content: "";
  background-image: url("../img/common/arrow-bg.svg");
  background-position: top left;
}
@media (max-width: 1920px) {
  .fund__cup::after {
    height: 320px;
    margin-top: 110px;
    background-size: 160px;
  }
}
@media (max-width: 992px) {
  .fund__cup::after {
    height: 230px;
    margin-top: 0px;
    background-size: 90px;
  }
}
@media (max-width: 576px) {
  .fund__cup::after {
    width: calc(100% + 30px);
    height: 145px;
    margin-top: 50px;
    margin-left: -15px;
    background-size: 70px;
  }
}

.fund__pic {
  display: block;
  width: 100%;
  max-width: 887px;
  height: 100%;
  min-height: 400px;
  margin-right: auto;
  margin-left: auto;
  transform: translateX(50px);
}
@media (max-width: 1720px) {
  .fund__pic {
    max-width: 505px;
    min-height: 200px;
    transform: translateX(30px);
  }
}
@media (max-width: 992px) {
  .fund__pic {
    max-width: 275px;
    transform: translateX(13px);
  }
}

.fund__img {
  display: block;
  width: 100%;
  height: 100%;
}

.fund__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 478px);
  row-gap: 100px;
  justify-content: space-between;
  margin-top: -710px;
}
@media (max-width: 1920px) {
  .fund__cards {
    grid-template-columns: repeat(2, 368px);
    margin-top: -600px;
  }
}
@media (max-width: 1720px) {
  .fund__cards {
    grid-template-columns: repeat(2, 268px);
    row-gap: 50px;
    margin-top: -400px;
  }
}
@media (max-width: 992px) {
  .fund__cards {
    grid-template-columns: repeat(2, 148px);
    row-gap: 30px;
    margin-top: -220px;
  }
}
@media (max-width: 576px) {
  .fund__cards {
    grid-template-columns: repeat(1, 248px);
    justify-content: center;
    margin-top: unset;
  }
}
@media (max-width: 375px) {
  .fund__cards {
    grid-template-columns: repeat(1, 148px);
  }
}

.fund-card {
  padding-top: 30px;
  background-image: url("../img/common/card-border.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
}
@media (max-width: 1720px) {
  .fund-card {
    padding-top: 17px;
  }
}
@media (max-width: 992px) {
  .fund-card {
    padding-top: 10px;
  }
}

.fund-card:nth-of-type(2) {
  order: 3;
}

.fund-card:nth-of-type(4) {
  order: 4;
}

.fund-card__heading {
  margin-bottom: 3px;
  font-size: 70px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 1920px) {
  .fund-card__heading {
    font-size: 40px;
  }
}
@media (max-width: 992px) {
  .fund-card__heading {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .fund-card__heading {
    font-size: 30px;
  }
}
@media (max-width: 375px) {
  .fund-card__heading {
    font-size: 22px;
  }
}

.fund-card__pic {
  display: block;
  width: 100%;
  height: 145px;
}
@media (max-width: 1920px) {
  .fund-card__pic {
    height: 84px;
  }
}
@media (max-width: 992px) {
  .fund-card__pic {
    height: 44px;
  }
}
@media (max-width: 576px) {
  .fund-card__pic {
    height: 84px;
  }
}
@media (max-width: 375px) {
  .fund-card__pic {
    height: 44px;
  }
}

.fund-card__img {
  display: block;
  width: 100%;
  height: 100%;
}

.stream {
  position: relative;
  z-index: 1;
}

.stream__title {
  margin-bottom: 70px;
}
@media (max-width: 1720px) {
  .stream__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .stream__title {
    margin-bottom: 16px;
  }
}

.stream__channels {
  display: flex;
  justify-content: center;
  margin-bottom: 160px;
}
@media (max-width: 1920px) {
  .stream__channels {
    margin-bottom: 80px;
  }
}
@media (max-width: 992px) {
  .stream__channels {
    margin-bottom: 40px;
  }
}

.stream-channel {
  margin-right: 78px;
}
@media (max-width: 1920px) {
  .stream-channel {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .stream-channel {
    max-width: 110px;
  }
}

.stream-channel:last-child {
  margin-right: 0;
}

.stream-channel__icon {
  display: block;
  height: 82px;
  fill: #fff;
}
@media (max-width: 1920px) {
  .stream-channel__icon {
    height: 62px;
  }
}
@media (max-width: 992px) {
  .stream-channel__icon {
    height: 25px;
  }
}

@media (any-hover: hover) {
  .stream-channel__icon:hover {
    fill: #000;
  }
}

.stream-channel--active.stream-channel--twitch .stream-channel__icon {
  fill: #5c16c5;
}

.stream-channel--active.stream-channel--vk .stream-channel__icon {
  fill: #0077ff;
}

.stream__video {
  display: none;
  max-width: 1620px;
  height: 833px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1920px) {
  .stream__video {
    max-width: 900px;
    height: 473px;
  }
}
@media (max-width: 992px) {
  .stream__video {
    max-width: 590px;
    height: 313px;
  }
}
@media (max-width: 576px) {
  .stream__video {
    width: calc(100% + 30px);
    height: 165px;
    margin-left: -15px;
  }
}

.stream__video--active {
  display: block;
}

.stream__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #333;
}

.about {
  position: relative;
  z-index: 3;
  padding-top: 150px;
  padding-bottom: 231px;
  clip-path: polygon(0 7%, 100% 0%, 100% 100%, 0% 88%);
  background: linear-gradient(180deg, rgba(125, 11, 0, 0.5) 18.2%, #c81200 76.03%);
}
@media (max-width: 1720px) {
  .about {
    padding-top: 110px;
    padding-bottom: 134px;
  }
}
@media (max-width: 992px) {
  .about {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}
@media (max-width: 576px) {
  .about {
    padding-top: 44px;
    clip-path: polygon(0 7%, 100% 0%, 100% 96%, 0% 91%);
  }
}

.about::before {
  position: absolute;
  top: -60px;
  right: 0;
  left: 0;
  display: block;
  width: 92%;
  height: 390px;
  margin-right: auto;
  margin-left: auto;
  pointer-events: none;
  content: "";
  background-image: url("../img/common/arrow-bg.svg");
  background-position: left top;
  transform: rotate(356deg);
}
@media (max-width: 1920px) {
  .about::before {
    width: 100%;
    height: 250px;
    background-size: 160px;
  }
}
@media (max-width: 992px) {
  .about::before {
    top: -70px;
    height: 180px;
    background-size: 90px;
  }
}

.about__container {
  max-width: 1800px;
}
@media (max-width: 1720px) {
  .about__container {
    max-width: 1050px;
  }
}
@media (max-width: 992px) {
  .about__container {
    max-width: 580px;
  }
}

.about__title {
  margin-bottom: 30px;
}
@media (max-width: 1720px) {
  .about__title {
    margin-bottom: 10px;
  }
}

.about__title::before,
.about__title::after {
  display: none;
}

.about-card {
  position: relative;
  z-index: 1;
  padding-bottom: 86px;
}
@media (max-width: 1720px) {
  .about-card {
    padding-bottom: 36px;
  }
}
@media (max-width: 992px) {
  .about-card {
    padding-bottom: 15px;
  }
}

.about-card::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 75%;
  clip-path: polygon(0 1%, 98% 12%, 100% 100%, 1% 100%);
  content: "";
  background: rgba(0, 0, 0, 0.2);
}

.about-card__pic {
  display: block;
  max-width: 1088px;
  margin-right: auto;
  margin-bottom: -30px;
  margin-left: auto;
}
@media (max-width: 1720px) {
  .about-card__pic {
    max-width: 628px;
    margin-bottom: -20px;
  }
}
@media (max-width: 992px) {
  .about-card__pic {
    max-width: 338px;
    margin-bottom: -10px;
  }
}
@media (max-width: 576px) {
  .about-card__pic {
    width: calc(100% + 40px);
    max-width: 420px;
    margin-left: -20px;
  }
}

.about-card__img {
  display: block;
}

.about-card__title {
  margin-bottom: 38px;
  font-family: "Inter", sans-serif;
  font-size: 90px;
  font-style: italic;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 1720px) {
  .about-card__title {
    margin-bottom: 15px;
    font-size: 50px;
  }
}
@media (max-width: 992px) {
  .about-card__title {
    margin-bottom: -2px;
    font-size: 28px;
  }
}

.about-card__button {
  display: block;
  width: 100%;
  max-width: 735px;
  padding: 33px;
  margin-right: auto;
  margin-left: auto;
  clip-path: polygon(0 9%, 100% 0%, 96% 100%, 2% 100%);
  clip-path: polygon(0 2%, 100% 0%, 96% 100%, 2% 100%);
  font-family: "Inter", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
  color: #ffffff;
  text-align: center;
  background-color: transparent;
  background-image: url("../img/common/button.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s;
}
@media (max-width: 1720px) {
  .about-card__button {
    max-width: 415px;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .about-card__button {
    max-width: 226px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
  }
}

@media (any-hover: hover) {
  .about-card__button:hover {
    color: #000;
    background-color: #fff;
  }
}

.teams {
  position: relative;
  z-index: 2;
  padding-top: 224px;
  padding-bottom: 189px;
  margin-top: -160px;
  clip-path: polygon(0 0%, 100% 0%, 100% 86%, 0% 97%);
  background-color: #000;
  background-image: url("../img/teams/teams-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1720px) {
  .teams {
    padding-top: 194px;
    padding-bottom: 149px;
  }
}
@media (max-width: 1620px) {
  .teams {
    padding-bottom: 79px;
  }
}
@media (max-width: 1200px) {
  .teams {
    padding-bottom: 129px;
  }
}
@media (max-width: 992px) {
  .teams {
    padding-top: 174px;
    padding-bottom: 69px;
  }
}
@media (max-width: 576px) {
  .teams {
    padding-top: 188px;
    clip-path: polygon(0 0%, 100% 0%, 100% 92%, 0% 95%);
  }
}

.teams__title {
  max-width: 800px;
  margin-bottom: 80px;
}
@media (max-width: 1920px) {
  .teams__title {
    max-width: 600px;
  }
}
@media (max-width: 1720px) {
  .teams__title {
    max-width: 490px;
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .teams__title {
    max-width: 310px;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .teams__title::before {
    left: 30px;
  }
}

.teams__title::after {
  top: -80px;
}
@media (max-width: 1920px) {
  .teams__title::after {
    top: -40px;
  }
}
@media (max-width: 992px) {
  .teams__title::after {
    top: -20px;
  }
}
@media (max-width: 576px) {
  .teams__title::after {
    right: 20px;
  }
}

.teams__gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1920px) {
  .teams__gallery {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 992px) {
  .teams__gallery {
    max-width: 500px;
  }
}

.teams-card {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 262px;
  margin-right: 18px;
  margin-left: 18px;
}
@media (max-width: 1920px) {
  .teams-card {
    max-width: 162px;
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 992px) {
  .teams-card {
    max-width: 72px;
  }
}

.faq {
  position: relative;
  z-index: 1;
  padding-top: 130px;
  padding-bottom: 350px;
  margin-top: -190px;
  background-color: #c81201;
}
@media (max-width: 1920px) {
  .faq {
    padding-top: 144px;
    padding-bottom: 199px;
  }
}
@media (max-width: 992px) {
  .faq {
    padding-top: 164px;
    padding-bottom: 106px;
  }
}
@media (max-width: 576px) {
  .faq {
    padding-bottom: 67px;
  }
}

.faq::after {
  position: absolute;
  right: 0;
  bottom: -110px;
  left: 0;
  z-index: -1;
  display: block;
  width: 88%;
  height: 400px;
  margin-right: auto;
  margin-left: auto;
  pointer-events: none;
  content: "";
  background-image: url("../img/common/arrow-bg.svg");
  background-position: left top;
  transform: rotate(356deg);
}
@media (max-width: 1920px) {
  .faq::after {
    bottom: -210px;
    height: 370px;
    background-size: 160px;
  }
}
@media (max-width: 992px) {
  .faq::after {
    bottom: -130px;
    width: 100%;
    height: 220px;
    background-size: 90px;
  }
}

.faq__container {
  position: relative;
  z-index: 2;
  max-width: 1510px;
}
@media (max-width: 576px) {
  .faq__container {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.faq__title {
  margin-bottom: 95px;
}
@media (max-width: 1920px) {
  .faq__title {
    margin-bottom: 55px;
  }
}
@media (max-width: 992px) {
  .faq__title {
    margin-bottom: 25px;
  }
}
@media (max-width: 576px) {
  .faq__title {
    margin-bottom: 18px;
  }
}

.faq__title::before,
.faq__title::after {
  display: none;
}

.faq__cards {
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1920px) {
  .faq__cards {
    max-width: 840px;
  }
}
@media (max-width: 992px) {
  .faq__cards {
    max-width: 450px;
  }
}

.faq-card {
  margin-bottom: 28px;
  color: #000;
  background-color: #fff;
  --padding-horizontal: 120px;
}
@media (max-width: 1920px) {
  .faq-card {
    --padding-horizontal: 60px;
    margin-bottom: 18px;
  }
}
@media (max-width: 992px) {
  .faq-card {
    --padding-horizontal: 30px;
    margin-bottom: 11px;
  }
}
@media (max-width: 576px) {
  .faq-card {
    --padding-horizontal: 11px;
  }
}

.faq-card:last-of-type {
  margin-bottom: 0;
}

.faq-card__top {
  position: relative;
  padding: 7px var(--padding-horizontal);
}
@media (max-width: 1920px) {
  .faq-card__top {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}
@media (max-width: 922px) {
  .faq-card__top {
    padding-top: 1px;
    padding-bottom: 1px;
  }
}

.faq-card__top::before,
.faq-card__top::after {
  position: absolute;
  top: 50%;
  right: 125px;
  display: block;
  width: 20px;
  height: 8px;
  content: "";
  background-color: #000;
  transition: all 0.2s ease-in;
  transform: translateY(-50%);
}
@media (max-width: 1920px) {
  .faq-card__top::before,
.faq-card__top::after {
    right: 60px;
    width: 16px;
    height: 6px;
  }
}
@media (max-width: 992px) {
  .faq-card__top::before,
.faq-card__top::after {
    right: 35px;
    width: 8px;
    height: 2px;
  }
}
@media (max-width: 576px) {
  .faq-card__top::before,
.faq-card__top::after {
    right: 8px;
  }
}

.faq-card__top::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-card__question {
  font-family: var(--ff-regular);
  font-size: 48px;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 1920px) {
  .faq-card__question {
    font-size: 26px;
  }
}
@media (max-width: 992px) {
  .faq-card__question {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .faq-card__question {
    max-width: 90%;
  }
}

.faq-card__bottom {
  padding: 7px var(--padding-horizontal);
  padding-bottom: 40px;
  font-family: var(--ff-regular);
}

.faq-card__bottom h4 {
  margin-bottom: 19px;
  font-family: var(--ff-regular);
  font-size: 48px;
  color: #000000;
}
@media (max-width: 1920px) {
  .faq-card__bottom h4 {
    font-size: 27px;
  }
}
@media (max-width: 992px) {
  .faq-card__bottom h4 {
    font-size: 14px;
  }
}

.faq-card__bottom ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.faq-card__bottom li,
.faq-card__bottom p {
  position: relative;
  font-size: 30px;
}
@media (max-width: 1920px) {
  .faq-card__bottom li,
.faq-card__bottom p {
    font-size: 17px;
  }
}
@media (max-width: 992px) {
  .faq-card__bottom li,
.faq-card__bottom p {
    font-size: 13px;
  }
}

.faq-card__bottom ul li::before {
  position: absolute;
  left: -15px;
  content: "●";
}
@media (min-width: 1920px) {
  .faq-card__bottom ul li::before {
    left: -25px;
  }
}

.bayan--opened .faq-card__top::after {
  transform: translateY(-50%);
}

.footer {
  padding-top: 81px;
  padding-bottom: 90px;
  background-color: #000;
  background-image: url("../img/footer/footer-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1920px) {
  .footer {
    padding-top: 45px;
    padding-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .footer {
    padding-top: 22px;
    padding-bottom: 24px;
  }
}

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

.footer__link {
  margin-bottom: 64px;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  color: #ff0000;
  text-align: center;
}
@media (max-width: 1920px) {
  .footer__link {
    margin-bottom: 34px;
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .footer__link {
    margin-bottom: 13px;
    font-size: 11px;
  }
}

.footer__socials {
  margin-bottom: 71px;
}
@media (max-width: 1920px) {
  .footer__socials {
    margin-bottom: 36px;
  }
}
@media (max-width: 992px) {
  .footer__socials {
    margin-bottom: 22px;
  }
}

.footer__socials .socials__link {
  --size: 80px;
  margin-right: 27px;
  margin-left: 27px;
}
@media (max-width: 1920px) {
  .footer__socials .socials__link {
    --size: 50px;
    margin-right: 17px;
    margin-left: 17px;
  }
}
@media (max-width: 992px) {
  .footer__socials .socials__link {
    --size: 22px;
    margin-right: 7px;
    margin-left: 7px;
  }
}

.footer__socials .socials__icon {
  fill: #fff;
}

@media (any-hover: hover) {
  .footer__socials .socials__icon:hover {
    fill: #ff0000;
  }
}

.footer__copy {
  font-family: "Inter", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 1920px) {
  .footer__copy {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .footer__copy {
    font-size: 9px;
  }
}
@media (max-width: 576px) {
  .footer__copy {
    font-size: 10px;
  }
}

.modal-rules {
  max-width: 900px;
  max-height: 80vh;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.modal-rules h2 {
  margin-top: 3em;
  margin-bottom: 1.5em;
  font-size: 28px;
}

.modal-rules h3 {
  margin-top: 3em;
  margin-bottom: 1.5em;
  font-size: 20px;
}

.modal-rules p {
  margin-bottom: 1.5em;
}

.modal-rules table {
  margin-bottom: 1.5em;
  text-align: left;
}
@media (max-width: 576px) {
  .modal-rules table {
    width: 790px;
  }
}

.modal-rules__table {
  max-width: 100%;
  overflow-x: auto;
}

@media (max-width: 576px) {
  #snack-cookies .snack__container {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
  #snack-cookies .snack__container .snack__desc {
    font-size: 12px;
  }
}
/*# sourceMappingURL=../maps/style.css.map */
