@charset "UTF-8";
@import "https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  height: 100%;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  border-radius: 0;
}

:root {
  --primary: #0267ff;
  --black: #0d0d0d;
  --secondGray: #868686;
  --white: #ffffff;
  --blue00: #a8d5f5;
  --bluefooter: #1086ff;
  --blue0: #199fff;
  --blue1: #1594ff;
  --blue2: #128aff;
  --blue3: #0d80ff;
  --blue4: #0a75ff;
  --blue5: #0168d2;
  --blue6: #1d5ea0;
  --blue7: #066bff;
  --blue8: #0d74fc;
  --orange2: #f9a17a;
  --primaryOrange: #f35f2f;
  --orange4: #f26e41;
  --orange3: #f5875e;
  --orange1: #fcbb96;
  --orange0: #ffd4b3;
  --orange5: #df572a;
  --red: #f00;
  --bar: #a0d7ff;
  --inputError: rgba(255, 0, 0, 1);
}

.primaryButton {
  height: 64rem;
  display: flex;
  width: 100%;
  padding: 20rem 26rem;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  flex-shrink: 0;
  background-color: var(--primary);
  color: var(--white) !important;
  font-family: "Golos Text", sans-serif;
  font-size: 14rem;
  font-weight: 500;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

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

.primaryButton:active {
  background-color: var(--blue2);
}

.primaryButton__icon {
  width: 26rem;
  height: 26rem;
}

.primaryButton_orange {
  background-color: var(--primaryOrange);
}

.nonPrimaryButton {
  height: 64rem;
  display: flex;
  width: 100%;
  padding: 19rem 25rem;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  flex-shrink: 0;
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: "Golos Text", sans-serif;
  font-size: 14rem;
  font-weight: 500;
  cursor: pointer;
}

.nonPrimaryButton:hover {
  border-color: rgba(var(--primary, 0));
  background-color: var(--blue3);
  color: var(--white);
}

.nonPrimaryButton:active {
  background-color: var(--blue2);
  border-color: rgba(var(--primary, 0));
  color: var(--white);
}

.nonPrimaryButton__icon {
  width: 26rem;
  height: 26rem;
}

.blackNoPrimary {
  color: var(--white);
}

.blackNoPrimary:hover {
  color: var(--black);
}

.blackNoPrimary:active {
  color: var(--black);
}

.orangePrimary {
  background-color: var(--primaryOrange);
}

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

.orangePrimary:active {
  background-color: var(--orange3);
}

.orangeNonPrimary {
  color: var(--white);
  border: 1px solid var(--white) !important;
}

.orangeNonPrimary:hover {
  background: var(--orange5) !important;
  padding: 18rem 24rem;
  border: 1px solid var(--white);
}

.orangeNonPrimary:active {
  background-color: unset !important;
}

.orangeNonPrimaryDefault {
  color: var(--primaryOrange);
  border: 1px solid var(--primaryOrange) !important;
}

.orangeNonPrimaryDefault:hover {
  background: var(--primaryOrange) !important;
  padding: 18rem 24rem;
  border: 1px solid var(--white);
}

.orangeNonPrimaryDefault:active {
  background-color: unset !important;
}

@media (max-width: 864px) {
  .primaryButton {
    font-size: 14rem;
    padding: 20rem 15rem;
    height: 50rem;
    max-height: 50rem;
  }

  .nonPrimaryButton {
    font-size: 14rem;
    padding: 19rem 14rem;
    height: 50rem;
    max-height: 50rem;
  }

  .nonPrimaryButton:hover {
    border: 0;
    background-color: var(--blue3);
    padding: 20rem 15rem;
    color: var(--white);
  }

  .nonPrimaryButton:active {
    background-color: var(--blue2);
    border: 0;
    padding: 20rem 15rem;
    color: var(--white);
  }

  .orangeNonPrimaryDefault:hover {
    padding: 18rem 13rem;
  }
}

.accordeon {
  background-color: var(--white);
  padding: 30rem 0;
  transition: 0.2s color linear;
}

.accordeon__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.accordeon__flex__text {
  color: var(--black);
  font-family: "Golos Text", sans-serif;
  font-size: 25rem;
  font-weight: 500;
  max-width: 90%;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.accordeon__flex__text_menu {
  font-size: 16rem;
}

.accordeon__flex__img {
  width: 8rem;
  height: 8rem;
}

.accordeon__contentText {
  display: none;
  margin-top: 30rem;
  padding-bottom: 0rem;
  color: rgba(var(--black), 0.5);
  font-family: "Golos Text";
  font-size: 16rem;
  line-height: 130%;
  /* 20.8px */
}

.accordeon__contentText__imgGrid {
  margin-top: 30rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30rem;
}

.accordeon__contentText__imgGrid__img {
  width: 100%;
  height: 100%;
}

.accordeon__contentList {
  display: none;
}

.accordeon__contentList> :not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordeon__contentList__item {
  margin-top: 20rem;
  padding-bottom: 20rem;
}

.accordeon__list {
  list-style: disc;
  padding-left: 20rem;
}

.accordeon__document {
  margin-top: 30rem;
}

.accordeon__document> :not(:first-child) {
  margin-top: 30rem;
}

.accordeon__document__item {
  cursor: pointer;
  display: flex;
  align-items: start;
  gap: 22rem;
}

.accordeon__document__item p {
  margin-top: 10rem;
}

.accordeon__document__item__img {
  width: 25rem;
  height: 25rem;
}

.accordeon_menu {
  padding: 0 0 0rem 0;
}

.accordeon_menu .accordeon__flex {
  justify-content: flex-start;
  gap: 8rem;
}

.accordeon_menu .accordeon__flex__text {
  font-size: 16rem;
}

.accordeon_menu .accordeon__flex__text:hover {
  color: var(--primary);
}

.accordeon_menu .accordeon__contentList {
  padding: 10rem 0 0;
}

.accordeon_menu .accordeon__contentList__item {
  margin-top: 20rem;
  padding-bottom: 10rem;
}

.accordeon_menu .accordeon__contentList__item a {
  color: var(--black);
  font-size: 16rem;
  font-weight: 400;
  text-decoration: none;
  line-height: 120%;
  /* 16.8px */
}

.accordeon_menu .accordeon__contentList__item a:hover {
  color: var(--primary);
}

.contentListBlackBorder> :not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordeon__black {
  background-color: var(--black);
}

.accordeon__black__text {
  color: var(--white);
}

.open {
  display: block;
}

.up_arrow {
  transform: rotate(180deg);
}

.primaryText {
  color: var(--primary);
}

.mt40 {
  margin-top: 40rem;
}

.mt30 {
  margin-top: 30rem;
}

.pl20 {
  padding-left: 20rem;
}

@media (max-width: 864px) {
  .accordeon {
    padding: 20rem 0;
  }

  .accordeon__flex__text {
    font-size: 14rem;
    max-width: 322rem;
  }

  .accordeon__contentText {
    margin-top: 20rem;
    padding-bottom: 20rem;
    font-size: 14rem;
  }

  .accordeon__contentText__imgGrid {
    display: block;
  }

  .accordeon__list {
    margin-top: 20rem;
  }

  .accordeon_menu {
    padding: 10rem 0;
  }

  .accordeon_menu .accordeon__flex {
    padding: 20rem 0;
    justify-content: space-between;
    gap: 8rem;
  }

  .accordeon_menu .accordeon__flex__text {
    font-size: 18rem;
  }

  .accordeon_menu .accordeon__flex__text:hover {
    color: var(--primary);
  }

  .accordeon_menu .accordeon__contentList {
    padding: 0;
  }

  .accordeon_menu .accordeon__contentList__item {
    margin-top: 0rem;
    padding-bottom: 0rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .accordeon_menu .accordeon__contentList__item:last-of-type {
    border-bottom: none;
  }

  .accordeon_menu .accordeon__contentList__item a {
    display: block;
    padding: 20rem 0;
    color: var(--black);
    font-size: 14rem;
    font-weight: 400;
    text-decoration: none;
    line-height: 120%;
    /* 16.8px */
  }

  .accordeon_menu .accordeon__contentList__item a:hover {
    color: var(--primary);
  }

  .accordeon_menu .accordeon__contentList__item .accordeon {
    padding: 0;
  }

  .accordeon_menu .accordeon__contentList__item .accordeon__flex {
    padding: 20rem 0;
  }

  .accordeon_menu .accordeon__contentList__item .accordeon__flex__text {
    font-size: 14rem;
    font-weight: 400;
  }

  .accordeon_menu .accordeon__contentList__item .accordeon__contentList {
    padding-bottom: 20rem;
  }

  .accordeon_menu .accordeon__contentList__item .accordeon__contentList__item {
    border: none;
  }

  .accordeon_menu .accordeon__contentList__item .accordeon__contentList__item:first-of-type a {
    padding: 10rem 0 15rem;
  }

  .accordeon_menu .accordeon__contentList__item .accordeon__contentList__item a {
    padding: 15rem 0;
  }

  .accordeon_mob-footer .accordeon__flex {
    padding: 10rem 0;
  }

  .accordeon_mob-footer .accordeon__contentList__item:first-of-type {
    margin-top: 30rem;
  }

  .accordeon_mob-footer .accordeon__contentList__item a {
    font-weight: 400;
  }
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.1;
}

.dividerBlack {
  background-color: #000;
}

.previewTile {
  /* H2 */
  color: var(--white);
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 100rem;
  line-height: 95%;
  /* 95px */
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.newsTitle {
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 60rem;
  line-height: 58rem;
  letter-spacing: 0.02em;
  color: var(--black);
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.previewDescription {
  /* H6 */
  color: var(--white);
  font-size: 25rem;
  font-weight: 500;
  line-height: 120%;
}

.grayDescription {
  color: var(--black);
  font-size: 16rem;
  line-height: 130%;
  opacity: 0.5;
  -webkit-text-fill-color: var(--black);
}

.grayDescription {
  color: var(--black);
  font-size: 16rem;
  line-height: 130%;
  opacity: 0.5;
  -webkit-text-fill-color: var(--black);
}

.redDescription {
  color: var(--red);
  -webkit-text-fill-color: var(--red);
  font-size: 16rem;
  line-height: 130%;
  opacity: 0.5;
}

.grayDescriptionBold {
  color: var(--black);
  text-decoration: none;
  font-size: 16rem;
  line-height: 130%;
  opacity: 0.5;
  font-weight: 500;
}

.grayDescriptionLittleMobile {
  color: var(--black);
  font-size: 16rem;
  line-height: 130%;
  opacity: 0.5;
}

.whiteLittleText {
  color: var(--white);
  font-size: 16rem;
  line-height: 130%;
}

.grayDescriptionLittle {
  color: var(--black);
  font-size: 14rem;
  line-height: 130%;
  opacity: 0.5;
}

.sectionTitle {
  color: var(--black);
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 60rem;
  /* Используйте 'px' вместо 'rem' для поддержки Safari */
  line-height: 95%;
  /* 57px */
  letter-spacing: 1.2rem;
  text-transform: uppercase;
  /* Добавьте вендорные префиксы для поддержки старых версий Safari */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.insideContentTitleText {
  color: var(--black);
  font-size: 25rem;
  font-weight: 500;
  line-height: 120%;
}

.secondGrayDescription {
  font-size: 16rem;
  font-weight: 500;
  line-height: 19.2rem;
  color: var(--secondGray);
}

.bigBlueText {
  color: var(--Primary, #0267ff);
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 140rem;
  line-height: 73%;
  letter-spacing: 2rem;
  text-transform: uppercase;
  margin-right: 15rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.factoringCardTitle {
  color: var(--black);
  font-size: 25rem;
  font-weight: 500;
  line-height: 120%;
}

.aboutCardText {
  color: var(--black);
  font-size: 25rem;
  font-weight: 500;
  line-height: 120%;
}

.cardTitle {
  color: var(--black);
  font-size: 16rem;
  font-weight: 500;
  opacity: 1 !important;
  text-decoration: none;
}

.cardTitleLight {
  color: var(--black);
  font-size: 16rem;
  font-weight: 400;
  opacity: 1 !important;
  text-decoration: none;
}

.newsText {
  color: var(--black);
  font-size: 16rem;
  line-height: 21rem;
  letter-spacing: 0;
}

.cardTitleOpacity {
  color: var(--black);
  font-size: 15rem;
  line-height: 130%;
  opacity: 0.5;
}

.redDescriptionDefault {
  color: var(--red);
  font-size: 16rem;
}

.blackDescriptionDefault {
  color: var(--black);
  font-size: 16rem;
  line-height: 130%;
}

.blackDescriptionLittle {
  color: var(--black);
  font-size: 14rem;
}

.redDescription {
  color: var(--red);
  font-size: 16rem;
}

.redText {
  color: var(--red);
}

.blueScreenText {
  color: var(--primary);
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 25rem;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mediumBlueScreenTextBlack {
  color: var(--black);
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 40rem;
  line-height: 120%;
  /* 48px */
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.descriptionBlueText {
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 25rem;
  line-height: 26.12rem;
  letter-spacing: 0.05em;
  text-align: left;
  color: var(--primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bigCardTitle {
  color: var(--black);
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 40rem;
  line-height: 42rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.formTextContainer {
  width: 50%;
}

.formTextContainer__text {
  margin: 0 auto;
  text-align: center;
}

.formTextContainer__flatText {
  margin: 0 auto;
  max-width: 423rem;
  text-align: center;
}

.maxWidth450 {
  max-width: 450rem;
}

.opacityText {
  opacity: 0.3;
}

.bannerDescription {
  color: var(--white);
  font-size: 25rem;
  font-weight: 500;
  line-height: 120%;
}

.moreNewsText {
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  color: var(--primary);
  font-size: 40rem;
  line-height: 42rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.textDecorationNone {
  text-decoration: none;
}

@media (max-width: 864px) {
  .moreNewsText {
    font-size: 30rem;
    line-height: 28rem;
    letter-spacing: 0.02em;
  }

  .previewTile {
    font-size: 50rem;
    letter-spacing: 1px;
  }

  .previewDescription {
    font-size: 18rem;
  }

  .grayDescription {
    font-size: 14rem;
  }

  .sectionTitle {
    font-size: 40rem;
    letter-spacing: 0.8px;
  }

  .insideContentTitleText {
    font-size: 18rem;
  }

  .cardTitle {
    font-size: 14rem;
  }

  .redDescription {
    font-size: 14rem;
  }

  .bannerDescription {
    font-size: 18rem;
  }

  .factoringCardTitle {
    font-size: 14rem;
  }

  .whiteLittleText {
    font-size: 14rem;
  }

  .aboutCardText {
    font-size: 12rem;
  }

  .grayDescriptionLittleMobile {
    font-size: 12rem;
  }

  .blackDescriptionDefault {
    font-size: 14rem;
  }

  .mediumBlueScreenTextBlack {
    font-size: 32rem;
    line-height: 36rem;
    letter-spacing: 0.64px;
  }

  .newsTitle {
    font-size: 40rem;
    line-height: 38rem;
    letter-spacing: 0.02em;
  }

  .newsText {
    font-size: 14rem;
    line-height: 16.8rem;
  }

  .bigCardTitle {
    font-size: 25rem;
    line-height: 24rem;
  }

  .bigBlueText {
    font-size: 80rem;
    line-height: 80rem;
    letter-spacing: 0.02em;
  }
}

.mobileTabs {
  display: flex;
  align-items: center;
}

.mobileTabs__button {
  padding: 20rem 0;
  flex-basis: 50%;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #868686;
  text-align: center;
  font-size: 14rem;
  font-weight: 500;
  line-height: normal;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.input {
  border: 0;
  background: 0;
  width: 100%;
  outline: none;
  max-height: 50rem;
  padding: 19rem 20rem 20rem 20rem;
  background: transparent;
  background: var(--white);
  border: 1px solid rgba(13, 13, 13, 0.5);
  color: var(--black);
  font-size: 16rem;
  font-weight: 500;
}

.input::placeholder {
  color: var(--black, #0d0d0d);
  font-family: "Golos Text", sans-serif;
  font-size: 16rem;
  font-weight: 500;
  opacity: 0.3;
}

.input:disabled {
  color: var(--black, #0d0d0d);
  font-family: "Golos Text", sans-serif;
  font-size: 16rem;
  font-weight: 500;
}

.input:hover,
.input:focus {
  border: 1px solid var(--primary);
}

.input_error {
  border: 1px solid var(--inputError);
}

.label {
  display: block;
  color: var(--black);
  font-size: 16rem;
  font-weight: 500;
  opacity: 0.5;
  margin-bottom: 15rem;
}

.uploadInput {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.upload {
  cursor: pointer;
  align-items: center;
  gap: 7rem;
  display: inline-flex;
}

.upload__main {
  display: flex;
  align-items: center;
  gap: 7rem;
}

.upload__main:hover .upload__text {
  color: var(--primary);
  opacity: 1;
}

.upload__icon {
  width: 24rem;
  height: 24rem;
}

.upload__text {
  display: block;
  text-decoration: underline;
  color: var(--black);
  font-size: 16rem;
  font-weight: 500;
}

.upload__loading {
  width: 27rem;
  height: 27rem;
  animation: rotate 1s linear infinite;
}

.upload__fileBlock {
  display: flex;
  align-items: center;
  gap: 10rem;
}

.upload__fileBlock__text {
  font-size: 16rem;
  line-height: 20.6rem;
  color: var(--black);
  opacity: 0.5;
}

.upload__fileBlock__close {
  width: 27rem;
  height: 27rem;
  cursor: pointer;
  border: 1px solid var(--blue5);
  border-radius: 100%;
  background-image: url("data:image/svg+xml,%3csvg%20width='11'%20height='11'%20viewBox='0%200%2011%2011'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M9.78858%200.596194L5.19238%205.19239M5.19238%205.19239L0.596189%200.596194M5.19238%205.19239L0.596189%209.78858M5.19238%205.19239L9.78858%209.78858'%20stroke='%230168D2'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 13rem 13rem;
  background-color: transparent;
}

.upload__fileBlock__close:hover {
  border: 0;
  background-color: var(--blue00);
}

@media (max-width: 864px) {
  .label {
    font-size: 14rem;
    margin-bottom: 15rem;
  }

  .upload {
    display: block;
  }

  .upload__main {
    margin-bottom: 10rem;
  }

  .upload__text {
    font-size: 14rem;
  }
}

.opacityText {
  opacity: 0.5;
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.nonPrimaryLink {
  color: var(--black);
  font-size: 16rem;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  text-decoration-line: underline;
  background: transparent;
  border: 0;
}

.nonPrimaryLinkBold {
  font-size: 16rem;
  font-weight: 500;
  line-height: 19rem;
  letter-spacing: 0;
  color: var(--black);
  text-decoration: underline;
}

.primaryLink {
  color: var(--primary);
  font-size: 16rem;
  font-weight: 500;
  background: transparent;
  border: 0;
  text-decoration: none;
}

.primaryLink:hover {
  color: var(--blue3);
}

.primaryLink:active {
  color: var(--blue2);
}

.defaultLink {
  color: var(--black);
  font-size: 16rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
}

.defaultLink:hover {
  color: var(--primary);
}

.defaultLink:active {
  color: var(--blue2);
}

.primaryLinkWithDecoration,
.primaryOrangeLinkWithDecoration {
  color: var(--primary);
  font-size: 16rem;
  font-weight: 500;
  background: transparent;
  border: 0;
  text-decoration: underline;
}

.primaryLinkWithDecoration:hover,
.primaryOrangeLinkWithDecoration:hover {
  color: var(--blue3);
}

.primaryLinkWithDecoration:active,
.primaryOrangeLinkWithDecoration:active {
  color: var(--blue2);
}

.primaryOrangeLinkWithDecoration {
  color: var(--primaryOrange);
}

@media (max-width: 864px) {
  .primaryLink {
    font-size: 14rem;
  }

  .nonPrimaryLink {
    font-size: 14rem;
  }

  .defaultLink {
    font-size: 14rem;
  }
}

.select {
  position: relative;
  z-index: 1000;
}

.select__placeholder {
  color: var(--Black, #0d0d0d);
  font-family: "Golos Text", sans-serif;
  font-size: 16rem;
  font-weight: 500;
  opacity: 0.3;
}

.select__button {
  text-align: center;
  font-family: "Golos Text", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: 0;
  width: 100%;
  outline: none;
  height: 50rem;
  padding: 19rem 20rem 20rem 20rem;
  background: transparent;
  background: var(--white);
  border: 1px solid rgba(13, 13, 13, 0.5);
  color: var(--black);
  font-size: 16rem;
  font-weight: 500;
}

.select__button::-webkit-input-placeholder {
  color: rgba(13, 13, 13, 0.3);
}

.select__button:-moz-placeholder {
  color: rgba(13, 13, 13, 0.3);
}

.select__button::-moz-placeholder {
  color: rgba(13, 13, 13, 0.3);
}

.select__button:-ms-input-placeholder {
  color: rgba(13, 13, 13, 0.3);
}

.select__button:hover,
.select__button:focus {
  border: 1px solid var(--blue3);
}

.select__button__arrowUp {
  display: none;
}

.select__list {
  display: none;
  position: absolute;
  top: 50rem;
  left: 0;
  width: 100%;
  padding: 0 0;
  z-index: 999;
}

.select__list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: 0;
  width: 100%;
  outline: none;
  height: 50rem;
  padding: 19rem 20rem 20rem 20rem;
  background-color: var(--white);
  background: var(--white);
  border: 1px solid rgba(2, 103, 255, 0.5);
  cursor: pointer;
  color: var(--black);
  font-size: 16rem;
  font-weight: 500;
}

.select__list__item::-webkit-input-placeholder {
  color: rgba(13, 13, 13, 0.3);
}

.select__list__item:-moz-placeholder {
  color: rgba(13, 13, 13, 0.3);
}

.select__list__item::-moz-placeholder {
  color: rgba(13, 13, 13, 0.3);
}

.select__list__item:-ms-input-placeholder {
  color: rgba(13, 13, 13, 0.3);
}

.select__list__item:hover,
.select__list__item:focus {
  color: var(--primary);
  border: 1px solid var(--blue3);
}

.select:has(.input_error) .select__button {
  border: 1px solid var(--inputError);
}

.select.error .select__button {
  border: 1px solid var(--inputError);
}

.buttonLink {
  border: 0;
  background: 0;
  width: fit-content;
  gap: 10rem;
  padding: 0;
  outline: none;
  height: fit-content;
  background: transparent;
  background: transparent;
  color: var(--black);
  font-size: 16rem;
  font-weight: 500;
}

.buttonLink:hover,
.buttonLink:focus {
  color: var(--black);
  border: 0;
}

.itemLink {
  border: 0;
  background: 0;
  width: fit-content;
  outline: none;
  height: 20rem;
  background: transparent;
  background: transparent;
  border: none;
  color: var(--black);
  font-size: 16rem;
  font-weight: 500;
}

.itemLink:hover,
.itemLink:focus {
  color: var(--black);
  border: none;
}

.textCenter {
  text-align: center;
}

.textCenter> :first-child {
  flex-basis: 90%;
}

.selectOpen {
  z-index: 1002;
}

.relativeList {
  position: relative;
  top: 0;
}

.numberList__item {
  display: flex;
  align-items: center;
}

.numberList__item:first-child {
  margin-bottom: 20rem;
  margin-top: 0;
}

.numberList__item:not(:first-child) {
  margin-bottom: 20rem;
  margin-top: 20rem;
}

/* .numberList__item:last-child {
  margin-bottom: 0;
  margin-top: 20rem;
} */

.numberList__item> :first-child {
  margin-right: 22rem;
}

.numberList__item__number {
  padding: 13rem 15rem;
  width: 40rem;
  height: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--blue7);
  font-size: 16rem;
  border: 2px solid var(--blue7);
  border-radius: 50%;
}

.numberList__item__img {
  width: 46rem;
  height: 46rem;
}

.numberList__button {
  margin-top: 40rem;
  max-width: 450rem;
}

.orangeCircle {
  border: 2px solid var(--primaryOrange);
  color: var(--primaryOrange);
}

.littleCircle {
  width: 26rem;
  height: 26rem;
  font-size: 10rem;
  border-radius: 100%;
  padding: 10rem;
}

@media (max-width: 864px) {
  .numberList__item:first-child {
    margin-bottom: 20rem;
    margin-top: 0;
  }

  .numberList__item:not(:first-child) {
    margin-bottom: 20rem;
    margin-top: 20rem;
  }

  .numberList__item:last-child {
    margin-bottom: 0;
    margin-top: 20rem;
  }

  .numberList__item> :first-child {
    margin-right: 15rem;
  }

  .numberList__item__number {
    font-size: 14rem;
  }

  .numberList__item__img {
    width: 24rem;
    height: 22rem;
  }
}

.bigBlueCenterText {
  text-align: center;
  max-width: 969rem;
  margin-right: auto;
  margin-left: auto;
  color: var(--Primary, #0267ff);
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 100rem;
  line-height: 95%;
  /* 95px */
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 120rem;
}

.blackText {
  color: var(--black);
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  letter-spacing: 2%;
}

@media (max-width: 864px) {
  .bigBlueCenterText {
    max-width: unset;
    margin: 0 0 80rem;
    font-size: 50rem;
    letter-spacing: 1px;
  }
}

.pop-up {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40rem;
  background-color: rgba(0, 0, 0, 0.3);
}

.pop-up__form {
  position: relative;
}

.pop-up__close {
  position: absolute;
  top: 40rem;
  right: 40rem;
  cursor: pointer;
}

.pop-up__close svg path {
  stroke: rgba(13, 13, 13, 0.5);
}

.pop-up__close:hover svg path {
  stroke: rgb(1, 104, 210);
}

.pop-up__mobile-item {
  display: none;
}

@media (max-width: 864px) {
  .pop-up {
    display: block;
    padding: 0rem;
    overflow-y: auto;
    background: #fff;
  }

  .pop-up__mobile-item {
    display: block;
  }

  .pop-up__header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
    width: 100%;
    padding: 10rem 16rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .pop-up__header img {
    height: 30rem;
  }

  .pop-up__close {
    position: fixed;
    top: 12rem;
    right: 16rem;
    z-index: 1;
  }

  .pop-up__close svg path {
    stroke: rgb(1, 104, 210);
  }
}

.form__row-input {
  border: 0;
  background: 0;
  width: 100%;
  outline: none;
  max-height: 50rem;
  padding: 19rem 20rem 20rem 20rem;
  background: transparent;
  background: var(--white);
  border: 1px solid rgba(13, 13, 13, 0.5);
  font-family: "TT Hoves Reguar", sans-serif;
  color: var(--black);
  font-size: 16rem;
  font-weight: 600;
}

.form__row-input:focus {
  border: 1px solid rgb(2, 103, 255);
}

.form__row-input:not(:placeholder-shown) {
  border: 1px solid rgb(2, 103, 255);
}

.form__row-input_textarea {
  resize: none;
  width: 100%;
  height: 104rem;
  max-height: 104rem;
}

.form__row-input_textarea:invalid {
  border: 1px solid rgba(13, 13, 13, 0.5);
}

.form__row-input.input_error {
  border: 1px solid var(--inputError) !important;
}

.form__decor-line {
  width: 100%;
  height: 1px;
  background-color: rgba(13, 13, 13, 0.5);
}

.form__submit {
  min-height: 64rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form__agreement {
  width: 100%;
  color: rgba(13, 13, 13, 0.5);
  font-size: 16rem;
  font-weight: 400;
  line-height: 20.8rem;
  text-align: center;
}

.form__agreement a {
  text-decoration: underline;
  color: rgba(13, 13, 13, 0.5);
}

.form_pop-up {
  width: 100%;
  max-width: 800rem;
  height: fit-content;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30rem;
  padding: 90rem 100rem;
  background-color: #fff;
}

.form_pop-up.form .form__title {
  margin-bottom: 10rem;
  font-family: "TT Bluescreens Trial DemiBold";
  font-size: 60rem;
  line-height: 57rem;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.form_pop-up.form .form__row {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15rem;
}

.form_pop-up.form .form__row-title {
  color: rgba(0, 0, 0, 0.5);
  font-size: 16rem;
  font-weight: 500;
  line-height: 19.2rem;
  text-align: left;
}

.form_pop-up.form .form__decor-line {
  margin: 10rem 0;
}

@media (max-width: 864px) {
  .form {
    padding: 40rem 15rem;
  }

  .form_pop-up {
    height: fit-content;
    min-height: 100%;
    max-height: fit-content;
    gap: 20rem;
  }

  .form_pop-up.form .form__title {
    font-size: 40rem;
  }
}

.request-cookie {
  width: 877rem;
  position: fixed;
  z-index: 100000000;
  right: 40rem;
  bottom: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50rem;
  padding: 25rem 25rem 25rem 30rem;
  background-color: white;
}

.request-cookie__description {
  flex: 1;
}

.request-cookie__description a {
  text-decoration: none;
  color: var(--primary);
}

.request-cookie__approval {
  width: 160rem;
}

@media (max-width: 864px) {
  .request-cookie {
    width: 100%;
    right: 0;
    bottom: 0;
    flex-direction: column;
    gap: 20rem;
    padding: 20rem 14rem;
  }

  .request-cookie__description {
    font-size: 14rem;
  }

  .request-cookie__approval {
    width: 100%;
  }
}

.important-news {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.important-news__data {
  position: relative;
  width: 600rem;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 50rem;
  padding: 50rem 50rem 80rem;
  background-color: #fff;
}

.important-news__close {
  position: absolute;
  right: 25rem;
  top: 25rem;
  width: 24rem;
  height: 24rem;
  cursor: pointer;
}

.important-news__close svg {
  width: 100%;
  height: 100%;
}

.important-news__data-title {
  text-transform: uppercase;
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 60rem;
  line-height: 57rem;
  letter-spacing: 0.02em;
  text-align: left;
}

.important-news__data-description {
  display: flex;
  flex-direction: column;
  gap: 40rem;
  font-size: 30rem;
  font-weight: 400;
  line-height: 39rem;
  text-align: left;
}

.important-news__data-description * {
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

@media (max-width: 864px) {
  .important-news__data {
    width: calc(100vw - 30rem);
    max-height: calc(100% - 30rem);
    padding: 50rem 30rem;
    gap: 30rem;
  }

  .important-news__close {
    top: 20rem;
    right: 20rem;
    width: 22rem;
    height: 22rem;
  }

  .important-news__data-title {
    padding-right: 20rem;
    font-size: 40rem;
    line-height: 38rem;
  }

  .important-news__data-description {
    gap: 30rem;
    font-size: 18rem;
    line-height: 23.4rem;
  }
}

.banking-group {
  position: relative;
}

.banking-group__button {
  height: 44rem;
  width: fit-content;
  padding: 0 17rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  cursor: pointer;
  background-color: var(--primary);
}

.banking-group__button:hover {
  background-color: var(--blue3);
}

.banking-group__button:active {
  background-color: var(--blue2);
}

.banking-group__text {
  margin: 0;
  color: var(--white);
  font-size: 14rem;
  font-weight: 500;
  line-height: 16.8rems;
  text-align: center;
}

.banking-group__links-container {
  position: absolute;
  z-index: 10000000;
  bottom: -18rem;
  width: 100%;
  transform: translateY(100%);
  padding: 2rem 13rem 5rem;
  background-color: #fff;
}

.banking-group__links-container::before {
  content: " ";
  position: absolute;
  top: 0;
  left: calc(50% - 10rem);
  transform: translateY(-100%);
  border: 10rem solid transparent;
  border-bottom: 15rem solid #fff;
}

.banking-group__link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8rem;
  padding: 10rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-size: 16rem;
  font-weight: 400;
  line-height: 20.8rem;
  text-align: left;
}

.banking-group__link:first-of-type {
  border: none;
}

.banking-group__link:hover {
  color: var(--primary);
}

.banking-group__link:active {
  color: var(--blue2);
}

.banking-group__link_natural-person:hover {
  color: var(--primaryOrange);
}

.banking-group__link_natural-person:active {
  color: var(--orange2);
}

.sectionHeader {
  overflow: hidden;
  margin-bottom: 50rem;
}

.sectionHeader__flex {
  display: flex;
  margin-bottom: 30rem;
}

.sectionHeader__flex__title {
  flex-basis: 50%;
}

.sectionHeader__flex__divider {
  display: none;
}

.sectionHeader__flex__description {
  margin-bottom: 20rem;
  display: none;
}

.sectionHeader__flex__tabs {
  flex-basis: 50%;
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
}

.sectionHeader__flex__tabs__button {
  position: relative;
  display: block;
  text-decoration: none;
  text-align: center;
  flex: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--black);
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 25rem;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  opacity: 0.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sectionHeader__flex__tabs_with-bottom-line .sectionHeader__flex__tabs__button:not(.orangeActiveSectionHeaderTabs):after,
.sectionHeader__flex__tabs_with-bottom-line .sectionHeader__flex__tabs__button:not(.activeSectionHeaderTabs):after {
  position: absolute;
  margin-top: 29rem;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(13, 13, 13, 0.2);
}

.sectionHeader__flex__mobileTabs {
  display: none;
}

.sectionHeader__flex__columns {
  display: flex;
  flex-basis: 50%;
  align-items: flex-end;
}

.sectionHeader__flex__columns__column {
  flex-basis: 50%;
  color: var(--primary);
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 25rem;
  font-styline-height: normal;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.activeSectionHeaderTabs {
  opacity: 1;
  position: relative;
  color: var(--primary);
}

.activeSectionHeaderTabs:after {
  position: absolute;
  margin-top: 28rem !important;
  display: block;
  content: "";
  width: 100% !important;
  height: 4rem !important;
  background: var(--primary) !important;
}

.orangeActiveSectionHeaderTabs {
  opacity: 1;
  position: relative;
  color: var(--primaryOrange);
}

.orangeActiveSectionHeaderTabs:after {
  position: absolute;
  margin-top: 28rem;
  display: block;
  content: "";
  width: 100%;
  height: 4rem;
  background: var(--primaryOrange);
}

.sectionFlex {
  display: flex;
}

.sectionFlex__side {
  flex-basis: 50%;
}

.withGap {
  gap: 20rem;
}

.maxDescription {
  max-width: 726rem;
}

.maxLittleDescription {
  max-width: 386rem;
}

.sectionHeaderLittleMarginBottom {
  margin-bottom: 20rem;
}

.sectionHeaderMiddleMarginBottom {
  margin-bottom: 30rem;
}

.basis35 {
  flex-basis: 35%;
}

.basis15 {
  flex-basis: 15%;
}

@media (max-width: 864px) {
  .sectionHeader {
    margin-bottom: 30rem;
  }

  .sectionHeader>.divider {
    display: none;
  }

  .sectionHeader__flex {
    display: block;
    margin-bottom: 0;
  }

  .sectionHeader__flex__columns {
    display: none;
  }

  .sectionHeader__flex__title {
    margin-bottom: 30rem;
  }

  .sectionHeader__flex__description {
    margin-bottom: 20rem;
    display: block;
  }

  .sectionHeader__flex__divider {
    display: block;
  }

  .sectionHeader__flex__tabs {
    display: none;
  }

  .sectionHeader__flex__mobileTabs {
    margin-top: 10rem;
    display: flex;
  }
}

.flexTitle {
  display: flex;
  align-items: center;
  gap: 20rem;
}

.flexTitle__img {
  width: 26rem;
  height: 26rem;
}

.flexTitle .cardTitle {
  min-height: unset;
  max-width: 264rem;
}

.bigCard {
  display: flex;
  flex-direction: column;
  padding: 40rem 40rem 40rem 35rem;
  box-shadow: 0 4px 15px 0 rgba(146, 146, 146, 0.2);
  transition: 0.2s all linear;
}

.bigCard__descriptionMargin {
  margin-bottom: 20rem;
}

.bigCard__header {
  margin-bottom: 113rem;
}

.bigCard__header__title {
  margin-bottom: 25rem;
}

.bigCard__header__descriptionBig {
  max-width: 388rem;
}

.bigCard__header__description {
  max-width: 292rem;
}

.bigCard__bottomFlex {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
}

.bigCard__bottomFlex__blueText {
  color: var(--Primary, #0267ff);
  /* Big Caption */
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 130rem;
  line-height: 73%;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: 15rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bigCard__bottomFlex__description {
  max-width: 247rem;
}

.bigCard:hover {
  box-shadow: 0 4px 30px 0 rgba(2, 103, 255, 0.3);
}

.bigCard__button {
  margin-top: 40rem;
}

.noMinHeight {
  min-height: unset;
}

.littleCard {
  padding: 30rem;
}

.littleHeaderMarginBottom {
  margin-bottom: 59rem;
}

.cardEquipment {
  padding: 30rem 40rem 100rem 30rem;
}

.cardLeasing {
  padding: 30rem 19rem 40rem 30rem;
}

.minHeightForDescription {
  min-height: 39rem;
}

.bigCardBlock {
  display: block;
}

.bigCardFlex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

@media (max-width: 864px) {
  .minHeightForDescription {
    min-height: fit-content;
  }

  .bigCard {
    padding: 20rem;
  }

  .bigCard__header {
    margin-bottom: 32rem;
  }

  .bigCard__header__title {
    margin-bottom: 20rem;
  }

  .bigCard__bottomFlex__blueText {
    font-size: 80rem;
    margin-right: 15rem;
    line-height: 100%;
  }

  .bigCard__button {
    margin-top: 20rem;
  }

  .bigCard__descriptionMargin {
    margin-bottom: 10rem;
  }

  .littleCard {
    padding: 20rem 30rem 53rem 20rem;
  }

  .littleHeaderMarginBottom {
    margin-bottom: 50rem;
  }

  .cardLeasing {
    padding: 20rem 20rem 33rem 20rem;
  }

  .flexTitle {
    display: flex;
    align-items: start;
    gap: 20rem;
  }

  .flexTitle__img {
    display: none;
  }

  .flexTitle .cardTitle {
    min-height: unset;
    max-width: unset;
  }
}

.swiper-wrapper {
  height: fit-content !important;
}

.swiper-slide {
  height: auto !important;
}

.cardSwiper {
  position: relative;
  z-index: 100;
  box-sizing: border-box;
}

.cardSwiper__swiper {
  padding: 0 20rem;
  height: auto !important;
}

.cardSwiper__swiper__wrapper {
  padding: 50rem 0 50rem;
  height: auto !important;
  align-items: stretch !important;
}

.cardSwiper__swiper__linkSlide {
  text-decoration: none;
}

.newsSwiper {
  position: relative;
}

.newsSwiper__swiper {
  padding: 20rem;
  height: fit-content;
  min-height: 620rem;
}

.newsSwiper__swiper__wrapper {
  padding-top: 20rem;
}

.newsSwiper__swiper__linkSlide {
  text-decoration: none;
}

.customArrowButton {
  width: 60rem;
  height: 60rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  background-size: 12rem 22rem;
  border: 0;
  background-image: url("data:image/svg+xml,%3csvg%20width='8'%20height='12'%20viewBox='0%200%208%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1%201L6%206L1%2011'%20stroke='%230D0D0D'%20stroke-width='1.5'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  transition: 0.2s background-color linear;
}

.customArrowButton:hover {
  background-color: var(--primary);
  background-image: url("data:image/svg+xml,%3csvg%20width='17'%20height='26'%20viewBox='0%200%2017%2026'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M2%202L14%2013L2%2024'%20stroke='white'%20stroke-width='3'/%3e%3c/svg%3e");
}

.swiperButtonFlex {
  display: flex;
  align-items: center;
}

.swiperButtonFlex:has(.swiper-button-lock) {
  display: none;
}

.customNext {
  position: absolute;
  top: 40%;
  right: -14rem;
}

.boxButton {
  background-color: #fff;
  box-shadow: 0 4px 15px 0 rgba(146, 146, 146, 0.2);
}

.customPrev {
  position: absolute;
  top: 40%;
  left: -14rem;
}

.prevButton {
  transform: rotate(180deg);
}

.custom-swiper-button-disabled {
  display: none !important;
}

.custom-swiper-button-disabled-opacity {
  opacity: 0.5;
}

@media (max-width: 864px) {
  .newsSwiper__swiper {
    padding: 10rem;
  }
}

.dividerList__item {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 25rem 0;
}

.dividerList__item:hover>.dividerList__item__title,
.dividerList__item:hover>.dividerList__item__value,
.dividerList__item:hover .dividerList__item__flexValue__firstValue,
.dividerList__item:hover .dividerList__item__flexValue__secondValue {
  color: var(--primary) !important;
  opacity: 1;
}

.dividerList__item:hover+.divider {
  background-color: var(--primary);
  opacity: 1;
}

.dividerList__item__title {
  flex-basis: 50%;
}

.dividerList__item__title__text {
  max-width: 645rem;
}

.dividerList__item__value {
  flex-basis: 50%;
  text-decoration: none;
}

.dividerList__item__flexValue {
  flex-basis: 50%;
  display: flex;
  align-items: center;
}

.dividerList__item__flexValue__firstValue {
  flex-basis: 50%;
  color: var(--black);
  font-size: 16rem;
  line-height: 130%;
  opacity: 0.5;
}

.dividerList__item__flexValue__secondValue {
  flex-basis: 50%;
  color: var(--black);
  font-size: 16rem;
  line-height: 130%;
  opacity: 0.5;
}

@media (max-width: 864px) {
  .dividerList__item {
    padding: 20rem 0;
    display: block;
  }

  .dividerList__item> :first-child {
    margin-bottom: 20rem;
  }

  .dividerList__item__title {
    flex-basis: 50%;
    color: var(--black);
    font-size: 14rem;
    line-height: 130%;
    opacity: 0.5;
    margin-bottom: 20rem;
  }

  .dividerList__item__value {
    flex-basis: 50%;
    color: var(--black);
    font-size: 18rem;
    font-weight: 500;
    opacity: 1;
  }

  .dividerList__item__flexValue {
    display: block;
  }

  .dividerList__item__flexValue__firstValue {
    color: var(--black) !important;
    font-size: 18rem;
    font-weight: 500;
    opacity: 1;
  }

  .dividerList__item__flexValue__secondValue {
    display: none;
  }
}

.accordeonMenu .accordeon:first-child {
  padding-top: 0;
}

.accordeonMenu__mobile {
  display: none;
}

.accordeonMenu_small-padding .accordeon__contentText {
  padding-bottom: 0px;
}

@media (max-width: 864px) {
  .accordeonMenu__desktop {
    display: none;
  }

  .accordeonMenu__mobile {
    display: block;
  }
}

.threeBlueCard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.threeBlueCard__card {
  height: 350rem;
  padding: 40rem 130rem 40rem 40rem;
  position: relative;
}

.threeBlueCard__card__questionBlock {
  position: absolute;
  bottom: 40rem;
  right: 40rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.threeBlueCard__card__questionBlock:hover>.threeBlueCard__card__questionBlock__tooltip {
  display: block;
}

.threeBlueCard__card__questionBlock__tooltip {
  display: none;
  position: absolute;
  bottom: -60rem;
  right: 50rem;
  padding: 24rem 16rem 21rem 18rem;
  background: var(--white);
  min-width: 500rem;
  box-shadow: 0px 4px 15px 0px rgba(146, 146, 146, 0.2);
}

.threeBlueCard__card__questionBlock__tooltip__list {
  list-style: decimal;
  padding-left: 18rem;
}

.threeBlueCard__card__questionBlock__tooltip__list__item {
  margin-bottom: 4rem;
}

.threeBlueCard__card__questionBlock__img {
  width: 10rem;
  height: 15rem;
}

.threeBlueCard__card__title {
  display: flex;
  align-items: start;
  color: var(--white);
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 60rem;
  line-height: 95%;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 30rem;
}

.threeBlueCard__card__title__number {
  margin-right: 10rem;
}

.threeBlueCard__card__description {
  text-wrap: pretty;
  max-width: 392rem;
  color: var(--white);
  font-size: 16rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
}

.threeBlueCard__firstCard {
  background-color: var(--bluefooter);
}

.threeBlueCard__secondCard {
  background-color: var(--blue5);
}

.threeBlueCard__thirdCard {
  background-color: var(--blue6);
}

.threeOrangeCard__firstCard {
  background-color: var(--orange2);
}

.threeOrangeCard__secondCard {
  background-color: var(--orange3);
}

.threeOrangeCard__thirdCard {
  background-color: var(--primaryOrange);
}

.threeOrangeCard__description {
  max-width: unset;
}

@media (max-width: 864px) {
  .threeBlueCard {
    display: block;
  }

  .threeBlueCard__card {
    padding: 25rem 15rem 75rem 15rem;
    height: 184rem;
  }

  .threeBlueCard__card__title {
    font-size: 40rem;
    letter-spacing: 0.8px;
  }

  .threeBlueCard__card__description {
    font-size: 14rem;
  }

  .threeBlueCard__card__questionBlock {
    position: absolute;
    bottom: 15rem;
    right: 15rem;
    width: 30rem;
    height: 30rem;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .threeBlueCard__card__questionBlock:hover>.threeBlueCard__card__questionBlock__tooltip {
    display: block;
  }

  .threeBlueCard__card__questionBlock__tooltip {
    display: none;
    position: absolute;
    bottom: -200rem;
    right: 0rem;
    padding: 12rem 8rem 10rem 9rem;
    background: var(--white);
    min-width: 300rem;
    box-shadow: 0px 4px 15px 0px rgba(146, 146, 146, 0.2);
    z-index: 100;
  }

  .threeBlueCard__card__questionBlock__tooltip__list {
    list-style: decimal;
    padding-left: 18rem;
  }

  .threeBlueCard__card__questionBlock__tooltip__list__item {
    margin-bottom: 4rem;
  }

  .threeBlueCard__card__questionBlock__img {
    width: 10rem;
    height: 15rem;
  }

  .threeBlueCard__thirdCard {
    padding: 25rem 15rem 30rem 15rem;
  }
}

.lineFlexInputBox {
  display: flex;
  align-items: center;
  margin-bottom: 30rem;
}

.lineFlexInputBox> :first-child {
  margin-right: 20rem;
}

.lineFlexInputBox__side {
  flex-basis: 50%;
}

.lineFlexInputBox__divider {
  margin-bottom: 40rem;
}

.lineFlexInputBox__input {
  margin-bottom: 30rem;
}

.lineFlexInputBox__button {
  width: 50%;
  margin-bottom: 30rem;
}

.lineFlexInputBox__inputWithSelect {
  display: flex;
  align-items: center;
}

.lineFlexInputBox__inputWithSelect__topSelect {
  position: relative;
  z-index: 1000000;
}

.lineFlexInputBox__inputWithSelect__input {
  flex: 1;
  border-right: 0;
}

.lineFlexInputBox__inputWithSelect__select {
  flex-basis: 140rem;
}

@media (max-width: 864px) {
  .lineFlexInputBox__inputWithSelect__select {
    flex-basis: 111rem;
  }

  .lineFlexInputBox__button {
    width: 100%;
  }

  .lineFlexInputBox__text {
    width: 100%;
    text-align: center;
  }
}

.mobileButtonSwiper {
  margin-top: 30rem;
  overflow-x: scroll;
  margin-bottom: 30rem;
}

.mobileButtonSwiper__flexButtonMenu {
  padding: 0 15rem;
  z-index: 13;
  display: flex;
  overflow-x: scroll;
  width: max-content;
  align-items: center;
}

.mobileButtonSwiper__flexButtonMenu::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

.mobileButtonSwiper__flexButtonMenu> :not(:last-child) {
  margin-right: 1rem;
}

.gapMedium> :not(:last-child) {
  margin-right: 10rem;
}

.documentsModule__topDivider {
  display: none;
}

.documentsModule__item {
  display: flex;
  align-items: center;
  margin-top: 22rem;
  margin-bottom: 22rem;
}

.documentsModule__item__title {
  display: flex;
  align-items: center;
  flex-basis: 50%;
}

.documentsModule__item__title__img {
  width: 26rem;
  height: 26rem;
}

.documentsModule__item__title> :first-child {
  margin-right: 22rem;
}

.documentsModule__item__format {
  flex-basis: 50%;
}

@media (max-width: 864px) {
  .documentsModule__topDivider {
    display: block;
  }

  .documentsModule__item {
    display: block;
  }

  .documentsModule__item__format {
    display: none;
  }
}

.buttonMenu> :not(:last-child) {
  margin-bottom: 20rem;
}

.buttonMenu__button {
  background: transparent;
  border: none;
  color: var(--black);
  font-size: 16rem;
  font-weight: 600;
  cursor: pointer;
}

.buttonMenu__button:hover {
  color: var(--primary);
}

.close-btn {
  position: absolute;
  right: 20rem;
  top: 20rem;
  width: 33rem;
  height: 33rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: rotate(45deg);
}

.close-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.close-btn::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
}

.alert {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000000;
  background: rgba(0, 0, 0, 0.2);
}

.animation_show {
  animation: opacityShow 0.2s ease-in-out both;
}

@keyframes opacityShow {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.animation_close {
  animation: opacityClose 0.2s ease-in-out both;
}

@keyframes opacityClose {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.alert-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 532rem;
  width: 804rem;
  display: flex;
  background-color: var(--white);
}

.alert-container__left-side {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(211, 234, 250);
}

.alert-container__img {
  width: 253rem;
}

.alert-container__right-side {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-container__text-message {
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 40rem;
  line-height: 45.2rem;
  text-align: center;
  text-transform: uppercase;
  color: rgb(1, 104, 210);
}

.alert-container .close-btn::after,
.alert-container .close-btn::before {
  background-color: rgb(1, 104, 210);
}

.alertError .alert-container__left-side {
  background: rgb(255, 221, 221);
}

.alertError .alert-container__text-message {
  color: rgb(255, 0, 0);
}

.alertError .alert-container .close-btn::after,
.alertError .alert-container .close-btn::before {
  background-color: rgb(255, 0, 0);
}

.alertCopy {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  z-index: 10001;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.5);
  font-size: 20rem;
  padding: 20rem 0;
}

.close {
  display: none;
}

.container {
  padding: 0 40rem;
}

.zeroMargin {
  margin: 0;
}

.littleContainer {
  padding: 0 20rem;
}

.noOverflow {
  overflow: hidden;
}

.header {
  background-color: var(--white);
  height: 80rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__titleBox {
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}

.header__titleBox> :first-child {
  margin-right: 6.5rem;
}

.header__titleBox__img {
  height: 53rem;
}

.header__titleBox__text {
  color: var(--primary);
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 56.117rem;
  line-height: 84%;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.navigation {
  display: flex;
  align-items: start;
  align-self: flex-end;
  height: 100%;
}

.navigation> :first-child {
  margin-right: 154rem;
}

.navigation__list {
  display: flex;
  align-items: center;
  align-self: flex-end;
  height: 100%;
}

.navigation__list__item {
  text-align: center;
  min-width: 150rem;
  transition: 0.2s all linear;
  align-self: flex-end;
}

.navigation__list__item:hover>a {
  color: var(--primary);
}

.navigation__list__item::after {
  display: block;
  position: relative;
  content: "";
  width: 100%;
  height: 4rem;
  color: var(--primary);
  background-color: transparent;
  margin-top: 29rem;
}

.navigation__list__item.activeNavigationItemLink * {
  color: var(--primary);
}

.navigation__list__item.activeNavigationItemLink::after {
  display: block;
  position: relative;
  content: "";
  width: 100%;
  height: 4rem;
  color: var(--primary);
  background-color: var(--primary);
  margin-top: 29rem;
}

.navigation__list__item_orange.activeNavigationItemLink * {
  color: var(--primaryOrange);
}

.navigation__list__item_orange.activeNavigationItemLink::after {
  color: var(--primaryOrange);
  background-color: var(--primaryOrange);
}

.navigation__list__link {
  cursor: pointer;
  padding: 0 14.5rem;
  text-decoration: none;
  color: var(--black);
  font-size: 16rem;
  font-weight: 500;
}

.navigation__secondList {
  display: flex;
  height: 100%;
  align-items: center;
}

.navigation__secondList> :not(:last-child) {
  margin-right: 40rem;
}

.navigation__secondList__item {
  display: flex;
  align-items: center;
}

.navigation__secondList__item:hover button {
  color: var(--primary);
}

.navigation__secondList__item:hover a {
  color: var(--primary);
}

.navigation__secondList__item:hover .navigation__secondList__button__img {
  display: none;
}

.navigation__secondList__item:hover .navigation__secondList__button__imgBlue {
  display: block;
}

.navigation__secondList__item.activeNavigationItemLink {
  position: relative;
}

.navigation__secondList__item.activeNavigationItemLink * {
  color: var(--primary);
}

.navigation__secondList__item.activeNavigationItemLink::after {
  display: none;
}

.navigation__secondList__button {
  text-decoration: none;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 16rem;
  font-weight: 500;
  padding: 20rem 0;
}

.navigation__secondList__button__img {
  width: 8rem;
}

.navigation__secondList__button__imgBlue {
  display: none;
  width: 8rem;
  transform: rotate(180deg);
}

.contactBox {
  display: flex;
}

.contactBox> :first-child {
  margin-right: 30rem;
}

.contactBox__item {
  display: flex;
  align-items: center;
}

.contactBox__item> :first-child {
  margin-right: 10rem;
}

.contactBox__item__img {
  width: 26rem;
  height: 26rem;
}

.contactBox__item__text {
  text-decoration: none;
  color: var(--black);
  font-size: 16rem;
  font-weight: 500;
}

.mobileBox {
  display: none;
  align-items: center;
}

.mobileBox__internetBank {
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--primary);
  background-color: var(--blue00);
  padding: 9rem 11rem 11rem 12rem;
  font-family: Golos Text;
  font-size: 14rem;
  font-weight: 500;
}

.mobileBox__button {
  width: 32rem;
  height: 7rem;
  border: 0;
  background: transparent url("data:image/svg+xml,%3csvg%20width='32'%20height='7'%20viewBox='0%200%2032%207'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cline%20y1='0.5'%20x2='32'%20y2='0.5'%20stroke='%230267FF'/%3e%3cline%20y1='6.5'%20x2='32'%20y2='6.5'%20stroke='%230267FF'/%3e%3c/svg%3e") no-repeat center center;
  background-size: contain;
  cursor: pointer;
}

.mobileBoxButtonOpen {
  background-image: url("data:image/svg+xml,%3csvg%20width='24'%20height='23'%20viewBox='0%200%2024%2023'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cline%20y1='-0.5'%20x2='30.9008'%20y2='-0.5'%20transform='matrix(0.711955%200.702225%20-0.711955%200.702225%201%201)'%20stroke='%230267FF'/%3e%3cline%20y1='-0.5'%20x2='30.9008'%20y2='-0.5'%20transform='matrix(0.711955%20-0.702225%200.711955%200.702225%201%2023)'%20stroke='%230267FF'/%3e%3c/svg%3e");
  width: 32rem;
  height: 22rem;
}

.mobileMenu {
  display: none;
  background-color: var(--white);
  position: fixed;
  top: 50rem;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 999;
}

.mobileMenu__container {
  padding: 0 15rem;
}

.mobileMenu__columnFlex {
  display: flex;
  justify-content: space-between;
  height: 100%;
  flex-direction: column;
}

.mobileMenu__title {
  display: none;
  color: var(--black);
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 50rem;
  line-height: 95%;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 30rem 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mobileMenu__link {
  color: var(--black);
  font-size: 14rem;
  font-weight: 400;
  text-decoration: none;
  line-height: 120%;
  /* 16.8px */
}

.mobileMenu__linkPadding {
  display: block;
  color: var(--black);
  font-size: 18rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 120%;
  padding: 30rem 0;
}

.mobileMenu__flexLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobileMenu__flexLink img {
  height: 5rem;
  width: 10rem;
}

.mobileMenu__siteSections {
  color: var(--black);
  font-size: 12rem;
  font-weight: 500;
  line-height: 120%;
  /* 14.4px */
  opacity: 0.5;
  margin-bottom: 20rem;
}

.mobileMenu__buttonBox {
  display: flex;
  flex-direction: column;
  gap: 20rem;
  padding: 40rem 0 30rem 0;
}

.mobileMenu__hotlineBox {
  margin-top: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20rem 26rem;
  border: 1px solid var(--primary);
  background: var(--white);
}

.mobileMenu__hotlineBox__text {
  color: var(--black);
  font-size: 14rem;
  font-weight: 500;
  opacity: 0.5;
}

.mobileMenu__hotlineBox__link {
  color: var(--primary);
  font-size: 14rem;
  font-weight: 500;
  text-decoration: none;
}

.mobileMenu__hotlineBox> :first-child {
  margin-right: 10rem;
}

.mobileMenu__bottomSwitcher {
  display: flex;
  align-items: center;
}

.mobileMenu__bottomSwitcher__button {
  padding: 20rem 0;
  flex-basis: 50%;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 14rem;
  font-weight: 500;
  line-height: normal;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.activeMenuButtonSwitch {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.activeMenuButtonSwitchOrange {
  color: var(--primaryOrange);
  border-bottom: 2px solid var(--primaryOrange);
}

.footer {
  padding: 30rem 40rem 20rem 40rem;
  background-color: var(--black);
  display: flex;
  align-items: flex-start;
  height: 739rem;
}
.footer ul, .footer ol { 
padding-left: 0rem;
}
.footer__side {
  flex-basis: 50%;
  height: 100%;
  display: flex;
  align-self: start;
  flex-direction: column;
  justify-content: space-between;
}

.footer__topNavigation {
  display: flex;
  align-items: center;
}

.footer__topNavigation> :not(:last-child) {
  margin-right: 27rem;
}

.footer__subNavigation {
  max-width: 430rem;
}

.footer__subNavigation__link {
  text-decoration: none;
  font-size: 16rem;
  font-weight: 500;
  line-height: 19.2rem;
  text-align: left;
  color: var(--secondGray);
  transition: color 0.2s linear;
}

.footer__subNavigation__link:hover {
  color: var(--white);
}

.footer__subNavigation> :not(:last-child) {
  margin-bottom: 30rem;
}

.footer__link {
  color: var(--white);
  font-size: 16rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.2s opacity linear;
}

.footer__link:hover {
  opacity: 1;
}

.footer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__header__internetBank {
  display: flex;
  align-items: center;
  gap: 14rem;
}

.footer__header__internetBank__list {
  display: flex;
  align-items: center;
  gap: 25rem;
}

.footer__header__topNavigation {
  display: flex;
  align-items: center;
}

.footer__header__topNavigation> :first-child {
  margin-right: 23rem;
}

.footer__hotline {
  display: flex;
  align-items: center;
}

.footer__hotline__text {
  color: var(--white);
  font-size: 16rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.5;
}

.footer__hotline> :first-child {
  margin-right: 7px;
}

.footer__mainNavigation {
  display: flex;
}

.footer__mainNavigation__side {
  flex-basis: 50%;
}

.footer__mainNavigation__title {
  margin-bottom: 40rem;
  color: var(--white);
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 40rem;
  line-height: 120%;
  letter-spacing: 2rem;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.footer__mainNavigation__list> :not(:last-child) {
  margin-bottom: 30rem;
}

.footer__copyText {
  max-width: 446rem;
  font-size: 14rem;
  font-weight: 500;
  line-height: 17rem;
  letter-spacing: 0;
  text-align: left;
  color: var(--white);
  opacity: 0.5;
}

.footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer__bottom__info {
  display: flex;
  align-items: center;
  gap: 26rem;
}

.footer__bottom__link {
  color: var(--White, #fff);
  font-family: "TT Hoves", sans-serif;
  font-size: 16rem;
  font-weight: 400;
  line-height: 20.8rem;
  text-decoration-line: underline;
  opacity: 0.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.footer__bottom__socialNetwork {
  display: flex;
  align-items: center;
  gap: 15rem;
}

.footer__bottom__img {
  width: 40rem;
  height: 40rem;
}

.menuContainer {
  display: none;
  position: absolute;
  top: 80rem;
  right: 0;
  left: 0;
  z-index: 10000000;
  height: calc(100vh - 80rem);
  background: rgba(0, 0, 0, 0.5);
}

.menuContainer__content {
  display: flex;
  height: 100%;
  background-color: var(--white);
}

.menuContainer__content__photoSide {
  display: none;
  flex-basis: 50%;
  flex-direction: column;
}

.menuContainer__content__photoSide__img {
  flex: 1;
  width: 960rem;
  height: 621rem;
  object-fit: cover;
}

.menuContainer__content__photoSide__textBox {
  display: flex;
  height: 199rem;
}

.menuContainer__content__photoSide__textBox__text {
  background-color: var(--blue2);
  flex-grow: 1;
  font-size: 20rem;
  padding: 40rem 0 40rem 40rem;
}

.menuContainer__content__photoSide__textBox__text_orange {
  background-color: var(--orange2);
}

.menuContainer__content__photoSide__textBox__text__title {
  color: var(--white);
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 40rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  max-width: 90%;
  margin-bottom: 39rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.menuContainer__content__photoSide__textBox__text__description {
  color: var(--white);
  font-size: 16rem;
  font-weight: 500;
}

.menuContainer__content__photoSide__textBox__decorRectangle {
  flex-basis: 80rem;
}

.menuContainer__content__photoSide__textBox__decorRectangle_blue {
  background-color: var(--blue4);
}

.menuContainer__content__photoSide__textBox__decorRectangle_darkBlue {
  background-color: var(--blue5);
}

.menuContainer__content__photoSide__textBox__decorRectangle_orange {
  background-color: var(--orange4);
}

.menuContainer__content__photoSide__textBox__decorRectangle_darkOrange {
  background-color: var(--orange5);
}

.menuContainer__content__photoSide.open {
  display: flex;
}

.menuContainer__content__menuSide {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 50%;
  padding: 40rem 46rem 40rem 40rem;
}

.menuContainer__content__menuSide__flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menuContainer__content__menuSide__title {
  color: var(--black);
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 100rem;
  line-height: 95%;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 60rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.menuContainer__content__menuSide__menu {
  display: grid;
  grid-template-columns: 270rem 270rem 1fr;
  gap: 30rem;
}

.menuContainer__content__menuSide__menu__list> :not(:last-child) {
  margin-bottom: 30rem;
}

.menuContainer__content__menuSide__menu__list__link {
  color: var(--black);
  font-size: 16rem;
  font-weight: 500;
  text-decoration: none;
}

.menuContainer__content__menuSide__menu__list__link:hover {
  color: var(--primary);
}

.menuContainer__content__menuSide__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menuContainer__content__menuSide__footer__box {
  display: flex;
  align-items: center;
  gap: 27rem;
}

.openMobile {
  display: block;
}

.logoBig {
  display: flex;
  align-items: center;
  max-height: 115rem;
}

.logoBig__img {
  height: 114.616rem;
}

.logoBig__text {
  color: #868686;
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 72rem;
  font-style: normal;
  line-height: 84%;
  text-transform: uppercase;
  max-width: 289rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.logoBig:first-child {
  margin-right: 7rem;
}

.subFooter {
  display: flex;
  align-items: center;
}

.subFooter a {
  text-decoration: none;
}

.subFooter__help {
  position: relative;
  flex-basis: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--white);
  text-align: center;
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 60rem;
  font-style: normal;
  line-height: 95%;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background-color: var(--bluefooter);
  border: 0;
  cursor: pointer;
  padding: 131rem 0;
  max-height: 300rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.subFooter__help__elips {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 224rem;
  height: 224rem;
}

.subFooter__help__elipsOpen {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 224rem;
  height: 224rem;
}

.subFooter__link {
  position: relative;
  flex-basis: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--white);
  text-align: center;
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 60rem;
  font-style: normal;
  line-height: 95%;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background-color: var(--bluefooter);
  border: 0;
  cursor: pointer;
  padding: 131rem 0;
  max-height: 300rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.subFooter__link__elips {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 224rem;
  height: 224rem;
}

.subFooter__link__elipsOpen {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 224rem;
  height: 224rem;
}

.subFooter__feetback {
  position: relative;
  flex-basis: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--white);
  text-align: center;
  font-family: "TT Bluescreens Trial DemiBold", sans-serif;
  font-size: 60rem;
  font-style: normal;
  line-height: 95%;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background-color: var(--blue0);
  border: 0;
  cursor: pointer;
  padding: 131rem 0;
  max-height: 300rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.subFooter__feetback {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 131rem 0;
}

.singleButtonSubFooter {
  flex-basis: 100%;
}

.mobileFooter {
  display: none;
  background-color: var(--black);
  padding-top: 30rem;
  padding-bottom: 20px;
}

.mobileFooter__contactLink {
  display: block;
  color: var(--white, #fff);
  font-size: 14rem;
  line-height: 120%;
  font-weight: 500;
  text-decoration: none;
  padding: 30rem 0;
}

.mobileFooter__buttonContainer {
  margin-bottom: 60rem;
  display: flex;
  flex-direction: column;
  gap: 20rem;
}

.mobileFooter__siteContent {
  color: var(--white);
  font-family: "Golos Text", sans-serif;
  font-size: 12rem;
  font-weight: 500;
  line-height: 120%;
  opacity: 0.5;
  margin-bottom: 20px;
}

.mobileFooter__link {
  color: var(--white, #fff);
  font-size: 14rem;
  line-height: 120%;
  text-decoration: none;
}

.mobileFooter__logoBox {
  margin-top: 100rem;
}

.mobileFooter__socialNetwork {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15rem;
  padding: 40rem 0;
}

.mobileFooter__subNavigation {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15rem;
  padding-bottom: 40rem;
}

.mobileFooter__subNavigation__link {
  text-decoration: none;
  font-size: 16rem;
  font-weight: 400;
  line-height: 19.2rem;
  text-align: left;
  color: var(--secondGray);
  border-bottom: 1px solid var(--secondGray);
  transition: color 0.2s linear;
}

.mobileFooter__description {
  text-decoration: none;
  font-size: 14rem;
  font-weight: 400;
  line-height: 18.2rem;
  text-align: left;
  color: var(--secondGray);
  transition: color 0.2s linear;
}

.open {
  display: block;
}

.bodyModalOpen {
  overflow-y: hidden;
}

.whiteColor {
  color: var(--white);
}

.overflowHidden {
  overflow: hidden;
}

.mobile {
  display: none;
}

@media (max-width: 864px) {
  .alert-container {
    width: calc(100% - 30rem);
    height: calc(100% - 30rem);
    flex-direction: column;
  }

  .alert-container__left-side {
    width: 100%;
    height: 50%;
  }

  .alert-container__right-side {
    width: 100%;
    height: 50%;
  }

  .alert-container .close-btn {
    top: 10rem;
    right: 10rem;
    width: 22rem;
    height: 22rem;
  }

  .littleContainer {
    padding: 0 16rem;
  }

  .container {
    padding: 0 16rem;
  }

  .navigation {
    display: none;
  }

  .contactBox {
    display: none;
  }

  .footer {
    display: none;
  }

  .mobileBox {
    display: flex;
  }

  .mobileFooter {
    display: block;
  }

  .logoBig__text {
    font-size: 65.779rem;
  }

  .logoBig__img {
    width: 100%;
    height: 105.728rem;
  }

  .subFooter {
    display: block;
  }

  .subFooter__help {
    font-size: 40rem;
    padding: 36rem 0;
  }

  .subFooter__help__elips {
    display: none;
  }

  .subFooter__help__elipsOpen {
    width: 60rem;
    height: 60rem;
  }

  .subFooter__feetback {
    padding: 36rem 0;
    font-size: 40rem;
  }

  .header {
    height: 50rem;
  }

  .header__titleBox__text {
    display: none;
  }

  .header__titleBox__img {
    width: 21.93rem;
    height: 30rem;
  }

  .singleButtonSubFooter {
    padding: 30rem 47rem;
  }

  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }
}

html {
  /* Desktop */
  /* Mobile */
}

@media (min-width: 865px) {
  html {
    font-size: calc(100vw / 1920);
  }
}

@media (max-width: 864px) {
  html {
    font-size: calc(100vw / 375);
  }
}

* {
  box-sizing: border-box;
  font-family: "Golos Text", sans-serif;
  font-size: 16rem;
}

body {
  font-family: "Golos Text", sans-serif;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

ul,
ol {
  list-style: disc;
  padding-left: 20rem;
}

ul *,
ol * {
  color: inherit;
  font-size: inherit;
}

a {
  color: inherit;
}

b {
  font-weight: 600;
}

i {
  font-style: italic;
}

u {
  text-decoration: underline;
}

del {
  text-decoration: line-through;
}

.close {
  display: none;
}

.preview {
  margin-bottom: 60rem;
}

.preview__grid {
  display: grid;
  grid-template-columns: 766rem auto;
}

.preview__grid__textBox {
  background-color: var(--blue0);
  padding: 232rem 132rem 80rem 40rem;
}

.preview__grid__textBox__description {
  margin-bottom: 60rem;
}

.preview__grid__textBox__title {
  max-width: 592rem;
}

.preview__grid__textBox__button {
  width: 344rem;
  margin-top: 60rem;
}

.preview__grid__cards {
  display: grid;
  grid-template-columns: 81rem 523rem auto;
}

.preview__grid__cards__firstCard {
  position: relative;
  background-color: var(--blue2);
}

.preview__grid__cards__firstCard__firstImg {
  top: 276rem;
  left: 100rem;
  width: 98rem;
  height: 98rem;
  position: absolute;
}

.preview__grid__cards__firstCard__secondImg {
  position: absolute;
  top: 276rem;
  right: 100rem;
  width: 98rem;
  height: 98rem;
}

.preview__grid__cards__secondCard {
  position: relative;
  background-color: var(--blue4);
}

.preview__grid__cards__secondCard__firstImg {
  top: 276rem;
  left: 51rem;
  width: 98rem;
  height: 98rem;
  position: absolute;
}

.preview__grid__cards__secondCard__secondImg {
  position: absolute;
  width: 98rem;
  height: 98rem;
  top: 276rem;
  right: -25rem;
  transform: rotate(180deg);
}

.preview__grid__cards__thirdCard {
  position: relative;
  z-index: 10;
  background-color: var(--blue5);
}

.preview__grid__cards__thirdCard__firstImg {
  display: none;
  position: absolute;
}

.preview__grid__cards__thirdCard__secondImg {
  position: absolute;
  display: none;
}

.linkSlide {
  display: block;
  text-decoration: none;
}

.news {
  margin-bottom: 120rem;
}

.news__mobile {
  display: none;
}

.news__mobileButtonSwiper {
  display: none;
}

.news__title {
  margin-bottom: 50rem;
}

.news__buttons {
  margin-bottom: 70rem;
}

.news__swiperPress__slide__desktop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  gap: 30rem;
}

.news__swiperPress__slide__mobile {
  display: none;
}

.news__swiperPress__slide__mobile> :not(:last-child) {
  margin-bottom: 15rem;
}

.news__swiperPress__slide__card {
  padding: 40rem;
  background: var(--white);
  box-shadow: 0 4px 15px 0 rgba(146, 146, 146, 0.2);
  transition: 0.2s all linear;
  display: flex;
  flex-direction: column;
}

.news__swiperPress__slide__card:hover {
  box-shadow: 0px 4px 30px 0px rgba(2, 103, 255, 0.3);
}

.news__swiperPress__slide__card__title {
  margin-bottom: 81rem;
  max-width: 513rem;
}

.news__swiperPress__slide__card .grayDescription {
  margin-top: auto;
}

.news__swiperPress__slide__topText {
  color: var(--black);
  font-size: 16rem;
  line-height: 130%;
  margin-bottom: 30rem;
}

.news__swiperPress__slide__description {
  max-width: 525rem;
  margin-bottom: 93rem;
}

.news__swiperPress__slide__img {
  width: 100%;
  height: 100%;
}

.news__swiperPress__slide__imgBottom {
  width: 183rem;
  height: 61rem;
}

.news__swiperPress__slide__button {
  max-width: 220rem;
}

.zeroPadding {
  padding: 0;
}

.dividerMargin {
  margin-top: 30rem;
}

.banner {
  background-color: var(--blue3);
  padding: 205rem 0 149rem 0;
  margin-bottom: 120rem;
}

.banner__imgContainer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner__imgContainer__img {
  width: 188rem;
  height: 188rem;
  text-align: center;
}

.banner__title {
  text-align: center;
}

.banner__titleContainer {
  max-width: 900rem;
  margin: 0 auto 48rem;
}

.banner__description {
  text-align: center;
}

.banner__ellipseFlex {
  display: none;
  align-items: center;
  justify-content: space-between;
}

.banner__ellipseFlex__ellipse {
  width: 72rem;
  height: 72rem;
}

.rate {
  margin-bottom: 120rem;
}

.conditional {
  margin-bottom: 200rem;
}

.blueCards {
  margin-bottom: 120rem;
}

.application {
  margin-bottom: 120rem;
}

.application__mobile {
  display: none;
}

.information {
  margin-bottom: 120rem;
}

.information__maxWidthTitle {
  max-width: 777rem;
}

.information__divider {
  margin-bottom: 40rem;
}

.information__accordeonMenu .accordeon:first-child {
  padding-top: 0;
}

.information__mobile {
  display: none;
}

.documents {
  margin-bottom: 120rem;
}

.documents .sectionHeader {
  margin-bottom: 0;
}

.advantages {
  margin-bottom: 115rem;
}

.branding {
  margin-bottom: 120rem;
}

.branding__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30rem;
}

.branding__header__button {
  display: none;
}

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

.branding__flex__card {
  flex: 1;
  box-shadow: 0 4px 15px 0 rgba(146, 146, 146, 0.2);
  padding: 30rem 0 30rem 30rem;
  display: flex;
  align-items: start;
  gap: 30rem;
}

.branding__flex__card__img {
  width: 72rem;
  height: 100rem;
}

.branding__flex__card__textSide__title {
  margin-bottom: 25rem;
}

@media (max-width: 864px) {
  .preview {
    margin-bottom: 30rem;
  }

  .preview__grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .preview__grid__textBox {
    padding: 30rem 15rem;
  }

  .preview__grid__textBox__description {
    margin-bottom: 30rem;
  }

  .preview__grid__textBox__title {
    max-width: unset;
  }

  .preview__grid__textBox__button {
    width: 100%;
    margin-top: 30rem;
  }

  .preview__grid__cards {
    display: grid;
    grid-template-columns: 24rem 130rem auto;
    height: 150rem;
  }

  .preview__grid__cards__firstCard {
    background-color: var(--blue5);
  }

  .preview__grid__cards__firstCard__firstImg {
    display: none;
  }

  .preview__grid__cards__firstCard__secondImg {
    display: none;
  }

  .preview__grid__cards__secondCard {
    position: relative;
    background-color: var(--blue4);
  }

  .preview__grid__cards__secondCard__firstImg {
    display: block;
    transform: rotate(90deg);
    width: 35rem;
    height: 35rem;
    top: 45rem;
    left: 170rem;
    right: unset;
  }

  .preview__grid__cards__secondCard__secondImg {
    display: block;
    width: 35rem;
    height: 35rem;
    top: -8rem;
    left: 170rem;
    right: unset;
    transform: rotate(90deg);
  }

  .preview__grid__cards__thirdCard {
    background-color: var(--blue1);
    position: relative;
  }

  .preview__grid__cards__thirdCard__firstImg {
    display: block;
    transform: rotate(90deg);
    width: 35rem;
    height: 35rem;
    top: 18rem;
    left: 170rem;
    right: unset;
  }

  .preview__grid__cards__thirdCard__secondImg {
    display: block;
    width: 35rem;
    height: 35rem;
    top: 72rem;
    left: 170rem;
    right: unset;
  }

  .preview__grid__cards__forthCard {
    height: 115rem;
    background-color: var(--blue2);
    position: relative;
  }

  .cards {
    margin-bottom: 80rem;
  }

  .cards__flex {
    display: block;
  }

  .cards__flex>.bigCard {
    padding: 20rem 0 50rem 20rem;
  }

  .cards__flex>.bigCard .cardTitle {
    margin: 0;
  }

  .cards__flex> :not(:last-child) {
    margin: 0 0 15rem;
  }

  .banner {
    padding: 80rem 13rem 80rem 15rem;
    margin-bottom: 80rem;
  }

  .banner__imgContainer {
    display: none;
    margin-bottom: 30rem;
  }

  .banner__titleContainer {
    max-width: unset;
    margin: 0 0 40rem;
  }

  .banner__title {
    text-align: start;
  }

  .banner__description {
    text-align: start;
  }

  .banner__ellipseFlex {
    display: flex;
  }

  .conditional {
    margin-bottom: 100rem;
  }

  .information {
    margin-bottom: 80rem;
  }

  .information__desktop {
    display: none;
  }

  .information__mobile {
    display: block;
  }

  .application {
    margin-bottom: 80rem;
  }

  .application__mobile {
    display: block;
  }

  .application__desktop {
    display: none;
  }

  .documents {
    margin-bottom: 80rem;
  }

  .rate {
    margin-bottom: 80rem;
  }

  .news {
    margin-bottom: 50rem;
  }

  .news__desktop {
    display: none;
  }

  .news__mobile {
    display: block;
  }

  .news__mobileButtonSwiper {
    display: block;
  }

  .news__customPrevPressPress {
    display: none;
  }

  .news__customNextPressPress {
    display: none;
  }

  .news__customPrevEventsPress {
    display: none;
  }

  .news__customNextEventsPress {
    display: none;
  }

  .news__customPrevSmiPress {
    display: none;
  }

  .news__customNextSmiPress {
    display: none;
  }

  .news__customPrevAboutPress {
    display: none;
  }

  .news__customNextAboutPress {
    display: none;
  }

  .news__customPrevAboutPress {
    display: none;
  }

  .news__customNextUpdatePress {
    display: none;
  }

  .news__customPrevUpdatePress {
    display: none;
  }

  .news__swiperPress__slide__desktop {
    display: none;
  }

  .news__swiperPress__slide__mobile {
    display: block;
  }

  .news__swiperPress__slide__card {
    padding: 20rem;
  }

  .news__swiperPress__slide__card__title {
    margin-bottom: 31rem;
  }

  .advantages {
    margin-bottom: 80rem;
  }

  .advantages .sectionHeader {
    margin-bottom: 10rem;
  }

  .advantages .numberList__item:first-of-type {
    padding-top: 20rem;
    border-top: 1px solid rgba(146, 146, 146, 0.2);
  }

  .advantages .numberList__item:last-child {
    margin-bottom: 20rem;
    margin-top: 20rem;
  }

  .advantages__desktop .basis35,
  .advantages__desktop .basis15 {
    display: none;
  }

  .advantages__desktop .sectionFlex__side {
    width: 100%;
    flex-basis: 100%;
  }

  .branding {
    margin-bottom: 80rem;
  }

  .branding__header {
    display: block;
    margin-bottom: 30rem;
  }

  .branding__header__title {
    margin-bottom: 30rem;
  }

  .branding__header__link {
    display: none;
  }

  .branding__header__button {
    display: block;
  }

  .branding__flex {
    display: block;
  }

  .branding__flex> :not(:last-child) {
    margin-bottom: 15rem;
  }

  .branding__flex__card {
    padding: 20rem;
  }

  .branding__flex__card__textSide__title {
    margin-bottom: 15rem;
  }

  .branding__flex__card__img {
    width: 72rem;
    height: 100rem;
  }

  .branding__flex__card__description {
    max-width: 197rem;
  }

  .mobileClose {
    display: none;
  }
}