:root {
  --font-proxima: "Proxima Nova", sans-serif;
  --font-bebas: "BebasNeue", sans-serif;
  --content-width: 1170px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --brand-red: #ed1b2f;
  --brand-black: #231f20;
  --brand-white: #fff;
  --brand-gold: #c3ac90;
  --brand-red-dark: #9e0917;
  --brand-gold-light: #f0ead8;
  --brand-gold-dark: #8d7659;
  --project-text: #283c63;
  --project-primary: #ff403c;
  --project-secondary: #f3f8ff;
  --project-gray: #ededed;
  --text-header: #101010;
  --text-base-text: #626262;
  --button---primary: #ff403c;
  --button---primary-hover: rgba(255, 64, 60, 0.7);
  --button---secondary: #283c63;
  --button---secondary-hover: rgba(40, 60, 99, 0.7);
  --input-bg: #ededed;
  --input-border: #bfbfbf;
  --input---font: #828282;
  --functional---succes: #8cba51;
  --functional---error: #fd5e53;
  --functional---link: #ff9f59;
  --functional---offset: rgba(132, 101, 255, 0.7);
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts//proximanova_regular.otf");
  font-weight: 400;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts//proximanova_regular.otf");
  font-weight: 500;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts//proximanova_bold-SemiBold.ttf");
  font-weight: 600;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts//proximanova_bold.otf");
  font-weight: 700;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts//proximanova_extrabold.otf");
  font-weight: 800;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "BebasNeue";
  src: url("../fonts//ofont.ru_Bebas Neue.ttf");
  font-weight: 700;
  font-display: block;
  font-style: normal;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:not([class]) {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

@media screen and (pointer: fine) {
  html {
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
  }
}
body,
html {
  margin: 0;
  padding: 0;
}

.main {
  margin-top: 7rem;
}

body {
  font-family: var(--font-proxima);
  color: var(--brand-black);
  font-weight: 400;
}

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

.container {
  position: relative;
  padding: 0 2.7rem;
  width: 100%;
  max-width: 127.6rem;
  margin: 0 auto;
  height: 100%;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.6rem;
  }
}
.container--xl {
  max-width: 132.3rem;
}
.container--2xl {
  max-width: 134.3rem;
  padding: 0 1.7rem;
}
.container--sm {
  max-width: 118.6rem;
}

.site-container {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

ul li {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hidden {
  display: none !important;
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-proxima);
}
.btn-reset:focus-visible {
  outline: none;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}
.input-reset:focus-visible {
  outline: none;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  overflow-x: hidden;
  overflow-y: scroll;
}

.section:not(:last-child) {
  margin-bottom: 8.4rem;
}
@media (max-width: 768px) {
  .section:not(:last-child) {
    margin-bottom: 3rem;
  }
}

section {
  scroll-margin-top: 150px;
}

html {
  --refRes: 1350;
  font-size: calc(100vw / var(--refRes) * 10);
}
@media (max-width: 768px) {
  html {
    --refRes: 390 !important;
  }
}

.btn {
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 1.4rem;
  border-radius: 10rem;
  line-height: 100%;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn--xl {
  padding: 1.3rem 3.6rem;
}
.btn--red {
  background: var(--brand-red);
  color: var(--brand-white);
}
.btn--red:disabled {
  cursor: not-allowed;
  background: var(--brand-red-dark);
  color: #9c9c9c;
}
.btn--red:not(:disabled):hover {
  background: var(--brand-red-dark);
}
.btn--with-svg {
  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;
  gap: 1rem;
}
.btn--with-svg svg {
  width: 2rem;
  height: 2rem;
}
.btn--with-svg svg path {
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
}
.btn--bordered-transparent {
  border: 1px solid var(--input-border);
}
.btn--bordered-transparent:hover {
  border-color: var(--brand-red-dark);
  color: var(--brand-red-dark);
}
.btn--bordered-transparent:hover svg path {
  fill: var(--brand-red-dark);
}

.title {
  font-family: var(--font-bebas);
  font-weight: 700;
  font-size: 6.4rem;
}
@media (max-width: 768px) {
  .title--xl {
    font-size: 4.6rem;
  }
}
.title--white {
  color: var(--brand-white);
}
.title--center {
  text-align: center;
}
.title--gold {
  color: var(--brand-gold);
}
@media (max-width: 768px) {
  .title {
    font-size: 3.6rem;
  }
}

.title-h3 {
  font-weight: 600;
  font-size: 3.6rem;
  color: var(--brand-white);
  margin-bottom: 0.8rem;
}
@media (max-width: 768px) {
  .title-h3 {
    font-size: 2.4rem;
  }
}

.text-sm {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--brand-gold);
}
@media (max-width: 768px) {
  .text-sm {
    font-size: 1.2rem;
  }
}

.swiper-buttons-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  position: absolute;
  top: 2.7rem;
  right: 2.1rem;
  left: unset;
  bottom: unset;
  z-index: 2;
  width: auto;
}
@media (max-width: 768px) {
  .swiper-buttons-custom {
    top: 1.7rem;
    right: 1.4rem;
  }
}
.swiper-buttons-custom__btn {
  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;
  min-width: 4rem;
  min-height: 4rem;
  max-width: 4rem;
  max-height: 4rem;
  border: 1px solid var(--input-border);
  border-radius: 0.7rem;
  backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.swiper-buttons-custom__btn img {
  width: 1rem;
  height: 1.7rem;
}
.swiper-buttons-custom__btn:hover {
  border: 1px solid var(--brand-red);
}

.custom-swiper-pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2rem 0;
}
.custom-swiper-pagination .swiper-pagination-bullet {
  background: var(--brand-black);
  opacity: 0.33;
  width: 2rem;
  border-radius: 1rem;
  height: 0.3rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.custom-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 3.8rem;
  opacity: 1;
  background: var(--brand-red);
}

.graph-modal__container--thanks {
  padding: 2.4rem;
  width: 109.5rem;
  height: 44rem;
  -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
}
@media (max-width: 768px) {
  .graph-modal__container--thanks {
    width: 32rem;
    height: 20rem;
  }
}

.modal-thanks .graph-modal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4rem;
  height: 100%;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--text-base-text);
  text-align: center;
  line-height: 120%;
}
@media (max-width: 768px) {
  .modal-thanks .graph-modal__content {
    gap: 2.3rem;
    font-size: 1.3rem;
    line-height: 133%;
    max-width: 21.9rem;
    margin: 0 auto;
  }
}
.modal-thanks .graph-modal__content svg {
  width: 24rem;
  height: 13.1rem;
}
@media (max-width: 768px) {
  .modal-thanks .graph-modal__content svg {
    width: 10rem;
    height: 6rem;
  }
}

.disable-scroll {
  height: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 2.3rem;
  z-index: 10;
  background: var(--brand-white);
}
.header.mobile-open .header__mobile {
  right: 0;
}
@media (max-width: 768px) {
  .header {
    padding: 1.2rem 0;
  }
}
.header__wrapper {
  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: 2rem;
}
.header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.1rem;
}
.header__logo img {
  width: 7.5rem;
  height: 4.1rem;
}
@media (max-width: 768px) {
  .header__logo img {
    width: 6rem;
    height: 3.3rem;
  }
}
.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 768px) {
  .header__links {
    display: none;
  }
}
.header__burger {
  display: none;
}
@media (max-width: 768px) {
  .header__burger {
    position: relative;
    display: block;
    width: 2.7rem;
    height: 1.9rem;
    border: unset;
    background: transparent;
    margin-top: 0.5rem;
  }
  .header__burger:after, .header__burger:before, .header__burger span {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.2rem;
    background-color: #000;
  }
  .header__burger:before {
    top: 0;
  }
  .header__burger.burger-open:before {
    top: calc(50% - 0.15rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 100%;
  }
  .header__burger span {
    top: calc(50% - 0.22rem);
  }
  .header__burger.burger-open span {
    width: 0;
  }
  .header__burger:after {
    bottom: 0.3rem;
  }
  .header__burger.burger-open:after {
    bottom: calc(56% - 0.15rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.header__mobile {
  position: fixed;
  top: 6rem;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  z-index: 6;
  padding: 1.7rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__mobile-text {
  font-weight: 400;
  font-size: 1.1rem;
  color: #6f6f6f;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 1.8rem;
}
.header__mobile-wrapper {
  height: 77%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.header__mobile-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__mobile-buttons .header__link.btn--bordered-transparent {
  background: var(--brand-white);
  min-width: 18.7rem;
}
.header__mobile-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.header__mobile-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}
.header__mobile-block span {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--text-base-text);
}
.header__mobile-apps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header__mobile-apps a {
  width: 10.7rem;
  height: 3.2rem;
}
.header__mobile-apps img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__mobile-block-text {
  font-weight: 600;
  font-size: 1.8rem;
  color: #000;
}
.header__mobile-block-text a {
  text-decoration: underline;
}
.header__mobile-block-text--underline {
  text-decoration: underline;
}
.header__mobile-socials {
  position: absolute;
  bottom: 9%;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.1rem;
  padding: 1.4rem 1.7rem;
  border: 1px solid #dbdbdb;
  border-radius: 2rem 2rem 0 0;
}
.header__link {
  min-width: 15rem;
  height: 4rem;
}
.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.3rem;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
}
.header__partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 1.8rem;
}
.header__partners-link img {
  width: 10.7rem;
  height: 3.7rem;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 768px) {
  .header__partners-link img {
    width: 6.7rem;
  }
}
@media (max-width: 768px) {
  .header__auth {
    display: none;
  }
}

.first-section__swiper-slide {
  position: relative;
  overflow: hidden;
  height: 84vh;
  border-radius: 2rem;
}
.first-section__swiper-slide:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(48.08%, rgba(0, 0, 0, 0)), to(#000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48.08%, #000 100%);
}
.first-section__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.first-section__content {
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  gap: 2.1rem;
  padding: 0 6.7rem 4.9rem 6.7rem;
}
@media (max-width: 768px) {
  .first-section__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    height: 100%;
    padding: 2.1rem 1.6rem;
  }
}
.first-section__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.6rem;
}
@media (max-width: 768px) {
  .first-section__info {
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.first-section__title {
  color: var(--brand-white);
}
.first-section__text {
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--input-border);
}
@media (max-width: 768px) {
  .first-section__text {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .first-section__link {
    width: 100%;
  }
}

.audience {
  margin-bottom: 5.7rem;
}
.audience__title {
  text-align: center;
  margin-bottom: 2.8rem;
}
@media (max-width: 768px) {
  .audience__title {
    max-width: 30rem;
    margin: 0 auto 2rem auto;
  }
}
.audience__wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 2rem;
  background: #f8f8f8;
  height: 60.5rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .audience__wrapper {
    height: 19.5rem;
  }
}
.audience__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.audience__bg img {
  width: 100%;
  height: 100%;
}
.audience__big-title {
  font-family: var(--font-bebas);
  font-weight: 700;
  font-size: 31.7rem;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 91%;
}
@media (max-width: 768px) {
  .audience__big-title {
    font-size: 10.2rem;
    letter-spacing: -0.03em;
    color: var(--brand-gold);
  }
}
.audience__items {
  position: absolute;
  left: 3.4rem;
  bottom: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.7rem;
}
@media (max-width: 768px) {
  .audience__items {
    left: 1rem;
    bottom: 1rem;
    gap: 1.7rem;
  }
}
.audience__items-block {
  font-family: var(--font-bebas);
  color: var(--brand-red);
  font-weight: 700;
}
.audience__items-block:nth-child(2) .audience__items-num-md {
  text-indent: -3.1rem;
}
@media (max-width: 768px) {
  .audience__items-block:nth-child(2) .audience__items-num-md {
    text-indent: -1.3rem;
  }
}
.audience__items-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  letter-spacing: -0.03em;
}
.audience__items-num-md {
  font-size: 25rem;
  line-height: 77%;
  letter-spacing: -0.7rem;
}
@media (max-width: 768px) {
  .audience__items-num-md {
    font-size: 8rem;
    letter-spacing: -0.03em;
  }
}
.audience__items-num-sm {
  font-size: 16.3rem;
  line-height: 71%;
}
@media (max-width: 768px) {
  .audience__items-num-sm {
    font-size: 5.2rem;
  }
}
.audience__items-text {
  font-size: 4.2rem;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  .audience__items-text {
    font-size: 1.3rem;
  }
}
.audience__fans {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48.2rem;
  height: 52.1rem;
}
.audience__fans img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .audience__fans {
    width: 18.1rem;
    height: 17.4rem;
  }
}

.victories-section {
  position: relative;
  padding-top: 8.8rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .victories-section {
    padding-top: 4.1rem;
    padding-bottom: 3.7rem;
  }
}
.victories-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.07)), color-stop(76.95%, rgba(0, 0, 0, 0.57)), to(rgba(0, 0, 0, 0.77)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.07) 0%, rgba(0, 0, 0, 0.57) 76.95%, rgba(0, 0, 0, 0.77) 100%);
  z-index: 2;
}
.victories-section .container {
  position: relative;
  z-index: 3;
}
.victories-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.victories-section__title {
  margin-bottom: 11.2rem;
}
.victories-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .victories-section__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.4rem;
  }
}
.victories-section__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.7rem;
}
@media (max-width: 768px) {
  .victories-section__block {
    padding-bottom: 1.4rem;
  }
  .victories-section__block:not(:last-child) {
    border-bottom: 0.06rem solid #d9d9d9;
  }
}
.victories-section__block-cup {
  width: 11.9rem;
  height: 21.1rem;
  margin-top: 5.7rem;
}
@media (max-width: 768px) {
  .victories-section__block-cup {
    display: none;
  }
}
.victories-section__block-info {
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 120%;
  color: var(--brand-gold-light);
  max-width: 20.9rem;
  margin-left: auto;
}
@media (max-width: 768px) {
  .victories-section__block-info {
    max-width: 100%;
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--brand-white);
    margin-left: 0;
  }
}
.victories-section__block-info-mobile {
  display: none;
}
@media (max-width: 768px) {
  .victories-section__block-info-mobile {
    display: block;
    width: 3.3rem;
    height: 3.3rem;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}
.victories-section__block-year {
  font-family: var(--font-bebas);
  font-weight: 700;
  font-size: 10.4rem;
  color: var(--brand-gold-light);
}
@media (max-width: 768px) {
  .victories-section__block-year {
    font-family: var(--font-proxima);
    font-weight: 600;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    font-size: 1.6rem;
    color: var(--brand-white);
  }
}
.victories-section__block-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 18rem;
}
@media (max-width: 768px) {
  .victories-section__block-content {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100%;
    width: 100%;
  }
}

.number-section {
  position: relative;
  padding-top: 8.2rem;
  padding-bottom: 7.8rem;
  background: var(--brand-red-dark);
  margin-bottom: 4.5rem;
}
@media (max-width: 768px) {
  .number-section {
    padding-top: 5.2rem;
    padding-bottom: 2.9rem;
    margin-bottom: 3rem;
  }
}
.number-section:before {
  content: "";
  position: absolute;
  background: radial-gradient(67% 67% at 55% 57%, rgba(0, 0, 0, 0) 33%, #000 100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.number-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.number-section__title {
  margin-bottom: 4.7rem;
}
@media (max-width: 768px) {
  .number-section__title {
    margin-bottom: 4.1rem;
  }
}
.number-section__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  row-gap: 3.4rem;
  -webkit-column-gap: 3.8rem;
  -moz-column-gap: 3.8rem;
  column-gap: 3.8rem;
}
@media (max-width: 768px) {
  .number-section__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
}
.number-section__block {
  padding: 2rem 2.4rem;
  backdrop-filter: blur(18.3996925354px);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0.9rem;
}
.number-section__block:nth-child(1), .number-section__block:nth-child(4) {
  max-width: 30.3rem;
}
@media (max-width: 768px) {
  .number-section__block {
    padding: 1.3rem 1.5rem;
  }
  .number-section__block:nth-child(1), .number-section__block:nth-child(4) {
    max-width: 21.1rem;
  }
}
.number-section__block-text {
  color: var(--brand-white);
  font-weight: 700;
  font-size: 1.7rem;
}
@media (max-width: 768px) {
  .number-section__block-text {
    font-size: 1.4rem;
  }
}
.number-section__block-stat {
  font-weight: 600;
  font-size: 5.9rem;
  color: var(--brand-gold);
}
@media (max-width: 768px) {
  .number-section__block-stat {
    font-size: 3.6rem;
  }
}
.number-section__block-bottom {
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--brand-gold);
}
@media (max-width: 768px) {
  .number-section__block-bottom {
    font-size: 1.2rem;
  }
}

.possibilities-section {
  margin-bottom: 4.5rem;
}
@media (max-width: 768px) {
  .possibilities-section {
    margin-bottom: 3rem;
  }
}
.possibilities-section__inner {
  position: relative;
  border-radius: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  overflow: hidden;
  padding-top: 4.1rem;
  padding-bottom: 3rem;
  z-index: 1;
  height: 53.4rem;
}
.possibilities-section__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), color-stop(31.73%, rgba(0, 0, 0, 0)), color-stop(79.81%, rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 31.73%, rgba(0, 0, 0, 0.3) 79.81%, rgba(0, 0, 0, 0.5) 100%);
}
.possibilities-section__info {
  position: relative;
  z-index: 1;
}
.possibilities-section__icon {
  position: relative;
  z-index: 1;
  width: 6.8rem;
  height: 4.8rem;
  margin: 0 auto;
}
.possibilities-section__subtitle {
  font-family: var(--font-bebas);
  font-weight: 700;
  font-size: 3.6rem;
  text-align: center;
  color: var(--brand-gold-light);
}
@media (max-width: 768px) {
  .possibilities-section__subtitle {
    font-size: 2.4rem;
  }
}
.possibilities-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.possibilities-section__bg img {
  width: 100%;
  height: 100%;
}

.advertising-section {
  background: var(--brand-black);
  padding-top: 6.2rem;
  padding-bottom: 2.8rem;
}
@media (max-width: 768px) {
  .advertising-section {
    margin-bottom: 3rem;
  }
}
.advertising-section__title {
  margin-bottom: 3.4rem;
}
.advertising-section__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2.8rem;
}
@media (max-width: 768px) {
  .advertising-section__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.advertising-section__swiper {
  min-width: 0;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .advertising-section__swiper {
    height: 28.7rem;
  }
}
.advertising-section__swiper-slide {
  border-radius: 1rem;
  overflow: hidden;
}
.advertising-section__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4.5rem;
}
@media (max-width: 768px) {
  .advertising-section__actions {
    gap: 2.8rem;
  }
}
.advertising-section__actions-checks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.advertising-section__actions-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 23.5rem;
}
@media (max-width: 768px) {
  .advertising-section__actions-btn {
    width: 100%;
    min-width: 100%;
  }
}
.advertising-section__actions-checkbox {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.2rem;
  border-radius: 1rem;
  backdrop-filter: blur(18.3996925354px);
  background: rgba(0, 0, 0, 0.1);
  padding: 1.8rem 2.3rem;
  font-weight: 400;
  font-size: 2rem;
  color: var(--brand-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.advertising-section__actions-checkbox:has(.advertising-section__actions-input:checked) {
  background: rgba(255, 255, 255, 0.05);
}
.advertising-section__actions-label {
  cursor: pointer;
}
.advertising-section__actions-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1.4rem;
  height: 1.4rem;
  border: 1px solid #F0EAD8;
  border-radius: 0.25rem;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  margin: 0;
}
.advertising-section__actions-input:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='9' height='9' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='8' height='8' rx='1' fill='%23C3AC90'/%3e%3c/svg%3e ");
  border: 1px solid var(--brand-white);
  background-position: center center;
  background-repeat: no-repeat;
}

.block-advertising {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
}
.block-advertising__img {
  border-radius: 2rem;
  width: 100%;
  height: 100%;
}
.block-advertising a {
  display: block;
  width: 100%;
  height: 100%;
}
.block-advertising a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(49.23%, rgba(0, 0, 0, 0)), to(#000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 49.23%, #000 100%);
}
.block-advertising a img {
  width: 100%;
  height: 100%;
}
.block-advertising:not(:has(a)):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(49.23%, rgba(0, 0, 0, 0)), to(#000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 49.23%, #000 100%);
}
.block-advertising__info {
  position: absolute;
  bottom: 2.2rem;
  left: 2.2rem;
  max-width: 57rem;
}
@media (max-width: 768px) {
  .block-advertising__info {
    bottom: 2rem;
    left: 2.1rem;
  }
}

.cases-section {
  margin-bottom: 8.4rem;
}
@media (max-width: 768px) {
  .cases-section {
    margin-bottom: 7rem;
  }
}
.cases-section__inner-wrapper {
  border-radius: 1rem;
  height: 100%;
}
@media (max-width: 768px) {
  .cases-section__inner-wrapper {
    border-radius: 2rem;
  }
}
.cases-section__swiper {
  min-width: 0;
  width: 100%;
  height: 36rem;
  overflow: visible;
}
@media (max-width: 768px) {
  .cases-section__swiper {
    height: 24.2rem;
  }
}
.cases-section__title {
  margin-bottom: 2.9rem;
}

.cases-section__pagination .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: -3rem;
}

.footer__animated {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.footer__animated-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-bebas);
  font-weight: 700;
  font-size: 9rem;
  color: transparent;
  -webkit-text-stroke: 2px var(--brand-red);
  white-space: nowrap;
  margin-bottom: 1.3rem;
}
@media (max-width: 768px) {
  .footer__animated-text {
    font-size: 3.6rem;
    margin-bottom: 1.9rem;
  }
}
.footer__bid {
  padding-top: 2.9rem;
  position: relative;
  background: var(--brand-red-dark);
}
.footer__bid:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(67% 67% at 55% 57%, rgba(0, 0, 0, 0) 33%, #000 100%);
}
.footer__bid-mobile {
  display: none;
}
@media (max-width: 768px) {
  .footer__bid-mobile {
    display: block;
    margin-bottom: 2.1rem;
  }
}
.footer__bid-mobile-title {
  margin-bottom: 1rem;
  font-size: 4.5rem;
}
.footer__bid-mobile-text {
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--brand-white);
}
.footer__bid-inner {
  -webkit-transform: translateY(2.5rem);
  -ms-transform: translateY(2.5rem);
  transform: translateY(2.5rem);
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 69.5rem 1fr;
  grid-template-columns: 69.5rem 1fr;
}
@media (max-width: 768px) {
  .footer__bid-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 3rem;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    padding-bottom: 3.6rem;
  }
}
.footer__bid-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
  padding: 2.7rem 1.9rem 2.7rem 3rem;
  border-radius: 2rem 0 0 2rem;
  -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  background: var(--brand-white);
}
@media (max-width: 768px) {
  .footer__bid-form {
    border-radius: 3rem;
    padding: 3rem 2rem;
  }
}
.footer__bid-input {
  border: 1px solid var(--input-border);
  border-radius: 10rem;
  padding: 1.1rem 1.7rem;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--text-base-text);
  backdrop-filter: blur(15px);
  background: #e5e5e5;
}
.footer__bid-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 2rem;
  overflow: hidden;
  border-radius: 0 2rem 2rem 0;
  z-index: 1;
  padding: 3.1rem;
  height: 100%;
}
@media (max-width: 768px) {
  .footer__bid-content {
    padding: 0;
  }
}
.footer__bid-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 0 2rem 2rem 0;
}
.footer__bid-img img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .footer__bid-img {
    display: none;
  }
}
.footer__bid-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(25%, rgba(0, 0, 0, 0)), color-stop(67.79%, rgba(0, 0, 0, 0)), to(#000));
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 67.79%, #000 100%);
}
.footer__bid-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.1rem;
}
@media (max-width: 768px) {
  .footer__bid-top {
    display: none;
  }
}
.footer__bid-title {
  line-height: 82%;
}
.footer__bid-text {
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--brand-white);
  max-width: 26.3rem;
}
.footer__bid-btn {
  width: 100%;
  padding: 1.3rem 1.2rem;
}
.footer__bid-checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer__bid-checkboxes {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.footer__bid-checkboxes-item {
  position: relative;
}
.footer__bid-checkboxes-input {
  display: none;
}
.footer__bid-checkboxes-label {
  display: block;
  padding: 0.7rem 2rem;
  border: 1px solid var(--input-border);
  border-radius: 10rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--text-base-text);
  -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  background: var(--brand-white);
}
@media (max-width: 768px) {
  .footer__bid-checkboxes-label {
    font-size: 1rem;
    padding: 0.9rem;
    text-align: center;
  }
}
.footer__bid-checkboxes-input:checked + .footer__bid-checkboxes-label {
  background: var(--brand-red);
  color: var(--brand-white);
  border-color: var(--brand-red);
}
.footer__bid-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.2rem;
}
.footer__bid-actions-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 0.6rem;
}
.footer__bid-actions-input {
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--brand-white);
  border-radius: 0.3rem;
  min-width: 1.2rem;
  min-height: 1.2rem;
  max-width: 1.2rem;
  max-height: 1.2rem;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  margin: 0;
  -webkit-appearance: none;
}
.footer__bid-actions-input.invalid {
  border-color: var(--brand-red);
}
.footer__bid-actions-input:checked {
  background-color: var(--brand-red);
  border-color: var(--brand-red);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.footer__bid-actions-label {
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--brand-white);
}
.footer__bid-actions-label a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: var(--brand-gold);
}
@media (max-width: 768px) {
  .footer__bid-actions-label {
    font-size: 1.3rem;
  }
}
.footer__body {
  position: relative;
  padding-top: 5.6rem;
  padding-bottom: 2.5rem;
  background: #222;
}
@media (max-width: 768px) {
  .footer__body {
    padding-top: 2.4rem;
    padding-bottom: 8.4rem;
  }
}
.footer__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.footer__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.footer__top {
  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;
  margin-bottom: 2.7rem;
}
@media (max-width: 768px) {
  .footer__top {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer__logo {
  width: 22.2rem;
  height: 4.2rem;
}
.footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 5.9rem;
}
@media (max-width: 768px) {
  .footer__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 1.8rem;
  }
}
.footer__items-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media (max-width: 768px) {
  .footer__items-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.4rem;
  }
}
.footer__items-block {
  max-width: 23.2rem;
}
@media (max-width: 768px) {
  .footer__items-block {
    max-width: 100%;
    text-align: center;
  }
}
.footer__items-text {
  margin-bottom: 0.9rem;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--text-base-text);
}
.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .footer__socials {
    display: none;
  }
}
.footer__items-socials {
  display: none;
}
@media (max-width: 768px) {
  .footer__items-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer__items-block-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 768px) {
  .footer__items-block-contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 0.5rem;
  }
}
.footer__items-link {
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--brand-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__items-link:hover {
  opacity: 0.6;
}
.footer__items-link--underline {
  text-decoration: underline;
}
.footer__items-apps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.footer__items-apps img {
  width: 10.7rem;
  height: 3.2rem;
}
@media (max-width: 768px) {
  .footer__items-apps img {
    width: 11.5rem;
    height: 3.4rem;
  }
}
.footer__bottom {
  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;
  padding-top: 2.2rem;
  border-top: 1px solid var(--text-base-text);
}
@media (max-width: 768px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.1rem;
    padding-top: 1.9rem;
  }
}
.footer__bottom-text {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--text-base-text);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__bottom-text:hover {
  opacity: 0.6;
}

textarea.footer__bid-input {
  border-radius: 2rem;
  resize: none;
}

a.footer__bottom-text {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.social-block {
  gap: 1.1rem;
}
.social-block__inner {
  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;
  gap: 0.7rem;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--brand-red);
  border: 1px solid var(--brand-red);
  border-radius: 10rem;
  max-height: 4rem;
  padding: 1.3rem;
  width: 100%;
}
.social-block__inner--gray {
  border-color: var(--input-border);
}
.social-block__link {
  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;
  min-width: 4rem;
  min-height: 4rem;
  max-width: 4rem;
  max-height: 4rem;
  border-radius: 100%;
  border: 1px solid var(--brand-red);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.social-block__link--gray {
  border-color: var(--input-border);
}
.social-block__link img {
  width: 2.5rem;
  height: 2.5rem;
}
.social-block__link:hover {
  border-color: var(--brand-red-dark);
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 24px;
  -webkit-transform: translate(-50%, 24px);
  -ms-transform: translate(-50%, 24px);
  transform: translate(-50%, 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 90vw;
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 20px 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: rgba(35, 35, 35, 0.95);
  color: #fff;
  -webkit-box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cookie-consent--visible {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.cookie-consent__message {
  font-family: var(--font-proxima);
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .cookie-consent__message {
    font-size: 12px;
  }
}
@media (max-width: 420px) {
  .cookie-consent__message {
    font-size: 12px;
  }
}
.cookie-consent__title {
  font-family: var(--font-proxima);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 0;
  margin-top: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .cookie-consent__title {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  .cookie-consent__title {
    font-size: 15px;
  }
}
.cookie-consent__link {
  color: #fff;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.cookie-consent__button {
  font-family: var(--font-proxima);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 10px 20px;
  width: 100%;
  max-width: 256px;
  border: none;
  border-radius: 12px;
  background-color: #a62316;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cookie-consent__button:hover {
  -webkit-transform: translateY(-0.1875rem);
  -ms-transform: translateY(-0.1875rem);
  transform: translateY(-0.1875rem);
}
@media (max-width: 420px) {
  .cookie-consent__button {
    font-size: 14px;
  }
}
/*# sourceMappingURL=main.css.map */