@charset "UTF-8";
:root {
  --font-family: "Inter", sans-serif;
  --content-width: rem(1160);
  --container-offset: rem(48);
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --white: #fff;
  --black: #000;
  --text: #626262;
  --e3: #E3E3E3;
  --border: #ededed;
  --blue: #008DD2;
  --green: #47AA22;
  --red: #E31E24;
  --orange: #EF7F1A;
  --yellow: #FECC00;
  --light-blue: #F3F8FF;
  --teal: #26AFB5;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
@font-face {
  font-family: "ProstoOne";
  src: url("../fonts//ProstoOne-Regular.woff");
  font-weight: 400;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts//Inter-Light.woff2");
  font-weight: 300;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts//Inter-Regular.woff2");
  font-weight: 400;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts//Inter-Medium.woff2");
  font-weight: 500;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts//Inter-Bold.woff2");
  font-weight: 700;
  font-display: block;
  font-style: normal;
}
/* @include font-face-format("Roboto", "/Roboto-Regular", 400, normal, woff2);
@include font-face-format("Roboto", "/Roboto-Bold", 600, normal, woff2); */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.2;
  font-family: var(--font-family);
  color: var(--black);
}
*:not([class]) {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: clip;
}

@media screen and (pointer: fine) {
  html {
    width: 100vw;
  }
}
body,
html {
  margin: 0;
  padding: 0;
}

main {
  width: 100vw;
}

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

.container {
  position: relative;
  padding: 0 4.8rem;
  width: 100%;
  max-width: 125.6rem;
  margin: 0 auto;
  height: 100%;
}
.container_small {
  max-width: 113.6rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.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;
}

.hidden {
  display: none !important;
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-family);
}
.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;
}

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

.title {
  font-weight: 400;
  font-family: "ProstoOne", serif;
  font-size: 4rem;
  color: var(--black);
}
@media (max-width: 768px) {
  .title {
    font-size: 2.4rem;
  }
}
.title_white {
  color: #fff;
}
.title_tac {
  text-align: center;
}
.title_mb {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .title_mb {
    margin-bottom: 3.5rem;
  }
}

.inner {
  /* margin-top: rem(120);
  margin-bottom: rem(120); */
}

.section {
  margin-top: 12rem;
  margin-bottom: 12rem;
}
@media (max-width: 768px) {
  .section {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }
}
.section_page {
  margin-top: 6rem;
  margin-bottom: 23rem;
}
@media (max-width: 768px) {
  .section_page {
    margin-top: 4rem;
    margin-bottom: 8rem;
  }
}

.btn {
  display: inline-block;
  height: 4.9rem;
  background: #fff;
  color: var(--black);
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0rem 3.5rem;
  border-radius: 1rem;
  cursor: pointer;
  text-align: center;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.btn_blue {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.btn_border {
  border: 0.1rem solid var(--border);
}

.btn-hover {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  cursor: pointer;
}
@media (min-width: 769px) {
  .btn-hover:hover {
    background: var(--btn-bg);
    border-color: var(--btn-border);
    color: var(--btn-color);
  }
}

.btn-hover-green {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  cursor: pointer;
}
@media (min-width: 769px) {
  .btn-hover-green:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
  }
}

.accordion {
  margin-bottom: 3rem;
}
.accordion:last-child {
  margin-bottom: 0;
}
.accordion__header {
  background-color: var(--light-blue);
  padding: 2rem 3.1rem;
  border-radius: 1rem;
  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;
  cursor: pointer;
}
@media (max-width: 768px) {
  .accordion__header {
    padding: 2rem 2.2rem;
  }
}
.accordion__header-title {
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .accordion__header-title {
    font-weight: 600;
    font-size: 1.6rem;
  }
}
.accordion__header-arrow {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: auto;
  width: 1.7rem;
  height: 1rem;
}
@media (max-width: 768px) {
  .accordion__header-arrow {
    width: 1.4rem;
    height: 0.9rem;
  }
}
.accordion__header-icon {
  margin-right: 0.9rem;
  width: 3rem;
  height: 3rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.accordion__header-icon svg, .accordion__header-icon img {
  width: 100%;
  height: 100%;
}
.accordion.active .accordion__header-arrow {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.accordion__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: 3.5rem;
  min-height: 0;
}
@media (max-width: 768px) {
  .accordion__content {
    gap: 3rem;
  }
}
.accordion__content-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  overflow: hidden;
  -webkit-transition: grid-template-rows 0.3s;
  transition: grid-template-rows 0.3s;
  transition: grid-template-rows 0.3s, -ms-grid-rows 0.3s;
}
.accordion.active .accordion__content-wrapper {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.accordion__content-item {
  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: 18rem;
  padding: 0 4.5rem;
}
.accordion__content-item:first-child {
  padding-top: 4rem;
}
@media (max-width: 768px) {
  .accordion__content-item:first-child {
    padding-top: 3rem;
  }
}
@media (max-width: 768px) {
  .accordion__content-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 2rem;
    padding: 0 2.5rem;
  }
}
.accordion__content-title {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.accordion__content-title_addition {
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: none;
}
@media (max-width: 768px) {
  .accordion__content-title_addition {
    font-size: 1.6rem;
  }
}
.accordion__content-description {
  font-size: 1.6rem;
}
.accordion__content-btn {
  border: 1px solid #e3e3e3;
}

/*---tabs---*/
/* Скрываем стандартный input */
.tabs__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid #c7c7c7;
  border-radius: 1rem;
  height: 6.2rem;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .tabs__header {
    -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;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 768px) {
  .tabs__header-item {
    width: 100%;
  }
}
.tabs__header-radio {
  display: none;
}
.tabs__header-name {
  cursor: pointer;
  display: block;
  font-weight: 500;
  font-size: 1.8rem;
  padding: 2rem 4.5rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .tabs__header-name {
    width: 100%;
    padding: 2rem 0;
    text-align: center;
  }
}
.tabs__header-radio:checked + .tabs__header-name {
  color: var(--white);
  background-color: var(--blue);
}
.tabs__content {
  border-radius: 1rem;
  border: 1px solid #c7c7c7;
  padding: 2rem 3rem;
}
.tabs__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #c7c7c7;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .tabs__content-item {
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    gap: 1.8rem;
  }
}
.tabs__content-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}
.tabs__content-link {
  font-size: 1.6rem;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .tabs__content-link {
    display: none;
  }
}
.tabs__content-link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.8rem;
}
.tabs__content-type {
  font-size: 1.6rem;
  pointer-events: none;
}
@media (max-width: 768px) {
  .tabs__content-type {
    pointer-events: all;
    text-decoration: underline;
  }
}

.hint {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 2.5rem;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .hint {
    padding: 1rem 1.5rem;
  }
}
.hint__icon {
  width: 2.4rem;
  height: 2.4rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.hint__text {
  font-size: 1.6rem;
  color: var(--text);
}
@media (max-width: 768px) {
  .hint__text {
    text-align: center;
  }
}
.calendar-container {
  background-color: white;
  width: 100%;
  margin-top: 0.8rem;
}

.calendar-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.calendar-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.2rem;
}

.calendar-panel {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 768px) {
  .calendar-panel#right-panel {
    display: none;
  }
}

.panel-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.3rem;
}

.month-selector {
  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: 0.4rem;
  width: 29.8rem;
}
@media (max-width: 768px) {
  .month-selector {
    width: 100%;
  }
}

.month-name {
  font-weight: 600;
  text-align: center;
  font-size: 1.6rem;
  white-space: nowrap;
}

.nav-button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
}

.prev-month, .next-month {
  width: 4rem;
  height: 4rem;
  -webkit-box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.1019607843);
  box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 10rem;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.nav-button:hover {
  background-color: var(--light-blue);
}

.weekdays {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
  grid-template-columns: repeat(7, 1fr);
}
.weekdays div {
  width: 4.2rem;
  height: 4rem;
  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;
  font-size: 1.4rem;
  text-align: center;
}

.days-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem 0.3rem;
}
@media (max-width: 768px) {
  .days-grid {
    gap: 0.5rem 0.3rem;
  }
}

.day {
  height: 4rem;
  width: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 1rem;
  border: 0.1rem solid var(--border);
  cursor: pointer;
  font-size: 1.6rem;
}

.day:hover {
  background-color: #f0f0f0;
}

.day.other-month {
  color: #ccc;
  opacity: 0;
  pointer-events: none;
}

.day.selected {
  background-color: #4a90e2;
  color: white;
}

.day.in-range {
  background-color: rgba(71, 170, 34, 0.6666666667);
  color: #fff;
}

.day.start-date, .day.end-date {
  background-color: var(--green);
  color: white;
}

.day.today {
  border: 1px solid #4a90e2;
}

.selected-range {
  margin-top: 20px;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 5px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  display: none;
}

.reset-button {
  background-color: #f44336;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.reset-button:hover {
  background-color: #d32f2f;
}

.calendar-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1.9rem;
  -moz-column-gap: 1.9rem;
  column-gap: 1.9rem;
  margin-top: 1.3rem;
}
@media (max-width: 768px) {
  .calendar-buttons {
    margin: 0 auto;
    margin-top: 3.9rem;
    max-width: 30rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .el-desktop {
    display: none !important;
  }
}

.el-mobile {
  display: none !important;
}
@media (max-width: 768px) {
  .el-mobile {
    display: block !important;
  }
}

.header {
  width: 100vw;
  position: sticky;
  top: 0;
  height: 11.6rem;
  background: #fff;
  z-index: 10;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (max-width: 768px) {
  .header {
    height: 5.9rem;
  }
}
.header_scroll {
  height: 7.4rem;
}
@media (max-width: 768px) {
  .header_scroll {
    height: 5.9rem;
  }
}
@media (min-width: 769px) {
  .header_scroll .header__wrap {
    height: 7.4rem;
  }
  .header_scroll .header__inner {
    height: 6.8rem;
  }
  .header_scroll .header__top {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }
  .header_scroll .header__bot {
    -webkit-transform: translateY(calc(-100% - 0.4rem));
    -ms-transform: translateY(calc(-100% - 0.4rem));
    transform: translateY(calc(-100% - 0.4rem));
  }
  .header_scroll .header__logo {
    -webkit-transform: translateY(0rem);
    -ms-transform: translateY(0rem);
    transform: translateY(0rem);
    width: 16.7rem;
    height: 5.5rem;
  }
  .header_scroll .header__phone {
    opacity: 0;
    pointer-events: none;
  }
  .header_scroll .header__left {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.header__wrap {
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0509803922);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding-top: 0.6rem;
  height: 11.6rem;
  background: #fff;
  z-index: 2;
  position: relative;
}
@media (max-width: 768px) {
  .header__wrap {
    height: 5.9rem;
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5.5rem;
  -moz-column-gap: 5.5rem;
  column-gap: 5.5rem;
  padding-left: 8.6rem;
  padding-right: 7.2rem;
}
@media (max-width: 768px) {
  .header__inner {
    padding: 0 2rem;
    width: 100%;
  }
}
.header__left {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 21.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-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .header__left {
    width: 9.9rem;
  }
}
.header__logo {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  width: 20rem;
  height: 6.5rem;
  margin-top: 0.2rem;
}
@media (max-width: 768px) {
  .header__logo {
    width: 9.9rem;
    height: 2.9rem;
    margin-top: 0;
  }
}
.header__logo img {
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: block;
}
.header__phone {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 500;
  color: var(--text);
  margin-top: 0.9rem;
  display: block;
  text-decoration: none;
}
@media (max-width: 768px) {
  .header__phone {
    display: none;
  }
}
.header__right {
  width: 100%;
}
@media (max-width: 768px) {
  .header__right {
    display: none;
  }
}
.header__top {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  border-bottom: 0.2rem solid var(--border);
  padding-top: 0.7rem;
  padding-bottom: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .header__top {
    display: none;
  }
}
.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 2.2rem;
  -moz-column-gap: 2.2rem;
  column-gap: 2.2rem;
  margin-left: auto;
}
@media (max-width: 768px) {
  .header__buttons {
    display: none;
  }
}
.header__buttons_mobile {
  display: none;
}
@media (max-width: 768px) {
  .header__buttons_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
  }
}
.header__btn {
  border: 0.1rem solid var(--border);
  padding: 0.9rem 1.9rem;
  font-size: 1.4rem;
  color: var(--text);
  height: auto;
  font-family: "Inter";
}
.header__btn_blue {
  background: var(--blue);
  color: #fff;
  font-size: 1.6rem;
  border-color: var(--blue);
  line-height: 1.9rem;
}
.header__bot {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1rem;
}
@media (max-width: 768px) {
  .header__bot {
    display: none;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav * {
  color: #000;
}
.header__nav_top {
  font-size: 1.4rem;
}
.header__nav_top * {
  color: #343434;
}
.header__link {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (min-width: 769px) {
  .header__link:hover {
    color: var(--blue);
  }
}
.header__search-icon {
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__search-icon {
    -webkit-transform: translateY(0.2rem);
    -ms-transform: translateY(0.2rem);
    transform: translateY(0.2rem);
  }
}
.header__search-icon svg {
  pointer-events: none;
  width: 3.2rem;
  height: 3.2rem;
}
@media (max-width: 768px) {
  .header__search-icon svg {
    width: 2.6rem;
    height: 2.6rem;
  }
}
.header__search-icon svg path {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (min-width: 769px) {
  .header__search-icon:hover svg path {
    fill: var(--blue);
  }
}
.header__search {
  position: absolute;
  width: 118.7rem;
  height: 7rem;
  background: #fff;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0509803922);
  padding: 1.7rem 4.6rem 1.4rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  opacity: 0;
  visibility: hidden;
  top: 50%;
}
@media (max-width: 768px) {
  .header__search {
    height: 5.7rem;
    width: 100vw;
    padding: 1rem 2rem;
  }
}
.header__search_open {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header__search-text {
  color: var(--blue);
  font-size: 1.6rem;
  margin-right: 1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header__search-text {
    display: none;
  }
}
.header__search-input {
  border: none;
  outline: none;
  font-size: 1.6rem;
  padding: 1rem 0.5rem;
  width: 86rem;
}
@media (max-width: 768px) {
  .header__search-input {
    width: 27rem;
    font-size: 1.2rem;
    padding: 1rem 0;
  }
}
.header__search-input::-webkit-input-placeholder {
  color: #C7C7C7;
}
.header__search-input::-moz-placeholder {
  color: #C7C7C7;
}
.header__search-input:-ms-input-placeholder {
  color: #C7C7C7;
}
.header__search-input::-ms-input-placeholder {
  color: #C7C7C7;
}
.header__search-input::placeholder {
  color: #C7C7C7;
}
.header__search-input:not(:-moz-placeholder-shown) + .header__search-clear {
  display: block;
}
.header__search-input:not(:-ms-input-placeholder) + .header__search-clear {
  display: block;
}
.header__search-input:not(:placeholder-shown) + .header__search-clear {
  display: block;
}
.header__search-results {
  width: 103.5rem;
  height: auto;
  max-height: 20.5rem;
  background: #fff;
  border-radius: 0 0 1rem 1rem;
  position: absolute;
  right: 0;
  top: 7rem;
  z-index: -1;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0509803922);
  padding: 2.4rem 2.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 3rem;
  overflow: auto;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .header__search-results {
    row-gap: 2rem;
    font-size: 1.2rem;
    width: 100vw;
    padding: 2.6rem 2rem;
    padding-top: 1.7rem;
    top: 5.7rem;
  }
}
.header__search-results_hidden {
  display: none;
}
.header__search-line {
  padding-bottom: 1rem;
  font-size: 1.6rem;
  border-bottom: 0.2rem solid var(--border);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (max-width: 768px) {
  .header__search-line {
    font-size: 1.2rem;
  }
}
@media (min-width: 769px) {
  .header__search-line:hover {
    border-bottom: 0.2rem solid var(--blue);
  }
}
.header__search-clear {
  display: none;
  margin: 0 2.2rem;
  cursor: pointer;
  width: 1.7rem;
  height: 1.7rem;
}
@media (max-width: 768px) {
  .header__search-clear {
    width: 1.7rem;
    height: 1.7rem;
    margin: 0 1.8rem;
  }
}
.header__search-clear img, .header__search-clear svg {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.header__search-btn {
  padding: 1rem 3.5rem;
  height: auto;
  margin-left: auto;
}
@media (max-width: 768px) {
  .header__search-btn {
    padding: 0 1.2rem;
    font-size: 1.2rem;
    height: 3.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 6.1rem;
  }
}
.header__burger {
  display: none;
}
@media (max-width: 768px) {
  .header__burger {
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 0.4rem;
    width: 2.6rem;
    height: 2.6rem;
  }
  .header__burger span {
    width: 2.2rem;
    height: 0.3rem;
    background: #343434;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
}
@media (max-width: 768px) {
  .header__burger_open span:nth-of-type(1) {
    -webkit-transform: translateY(0.7rem) rotate(45deg);
    -ms-transform: translateY(0.7rem) rotate(45deg);
    transform: translateY(0.7rem) rotate(45deg);
  }
  .header__burger_open span:nth-of-type(2) {
    opacity: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
  }
  .header__burger_open span:nth-of-type(3) {
    -webkit-transform: translateY(-0.7rem) rotate(-45deg);
    -ms-transform: translateY(-0.7rem) rotate(-45deg);
    transform: translateY(-0.7rem) rotate(-45deg);
  }
}
.header__mobile-menu {
  display: none;
}
@media (max-width: 768px) {
  .header__mobile-menu {
    position: fixed;
    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;
    overflow-y: auto;
    top: 5.9rem;
    left: 0;
    width: 100vw;
    height: calc(100dvh - 5.9rem);
    background: #fff;
    z-index: -1;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    padding: 0 2rem;
    padding-top: 2.2rem;
  }
  .header__mobile-menu .header__phone {
    display: block;
    text-align: center;
    margin-bottom: 5.5rem;
  }
  .header__mobile-menu .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2rem;
    width: 100%;
  }
  .header__mobile-menu .header__nav_top {
    padding: 3rem 0;
    margin: 3rem 0;
    border-top: 0.2rem solid var(--border);
    border-bottom: 0.2rem solid var(--border);
  }
  .header__mobile-menu .header__btn {
    display: block;
    margin-bottom: 2rem;
  }
  .header__mobile-menu .header__btn_blue {
    margin-top: 1rem;
  }
}
.header__mobile-menu_open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.main-first {
  position: relative;
  height: calc(100svh - 11.6rem);
}
@media (max-width: 768px) {
  .main-first {
    height: calc(100svh - 5.9rem);
  }
}
.main-first + section {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .main-first + section {
    margin-top: 7rem;
  }
}
.main-first .container {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.main-first__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.main-first__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1.5rem;
}
@media (max-width: 768px) {
  .main-first__box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.main-first__content {
  padding-top: 6.8rem;
}
@media (max-width: 768px) {
  .main-first__content {
    padding-top: 0;
  }
}
.main-first__title {
  font-size: 5rem;
  margin-bottom: 2.1rem;
  max-width: 80rem;
}
@media (max-width: 768px) {
  .main-first__title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}
.main-first__description {
  font-size: 1.8rem;
  font-weight: 300;
  max-width: 64.2rem;
}
@media (max-width: 768px) {
  .main-first__description {
    font-size: 1.4rem;
  }
}
.main-first__image {
  width: 34.9rem;
  height: 37.4rem;
  position: relative;
}
@media (max-width: 768px) {
  .main-first__image {
    width: 100%;
    height: 16.6rem;
    margin-top: 3rem;
  }
}
.main-first__image img {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
}
.main-first__card {
  width: 27rem;
  height: 16.4rem;
  position: absolute;
  will-change: transform;
}
@media (max-width: 768px) {
  .main-first__card {
    width: 14.3rem;
    height: 8.7rem;
  }
}
.main-first__card img {
  width: 100%;
  height: 100%;
  display: block;
}
.main-first__card_1 {
  -webkit-transform: rotate(-41deg);
  -ms-transform: rotate(-41deg);
  transform: rotate(-41deg);
  top: 10.8rem;
  left: 3.2rem;
  z-index: 5;
  -webkit-animation: card1 1s 1.1s forwards;
  animation: card1 1s 1.1s forwards;
}
@media (max-width: 768px) {
  .main-first__card_1 {
    -webkit-animation: unset;
    animation: unset;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    top: 4rem;
    left: 10.5rem;
    -webkit-animation: card1Mobile 1s 1.1s forwards;
    animation: card1Mobile 1s 1.1s forwards;
  }
}
.main-first__card_2 {
  -webkit-transform: rotate(-41deg);
  -ms-transform: rotate(-41deg);
  transform: rotate(-41deg);
  top: 10.8rem;
  left: 3.2rem;
  z-index: 4;
}
@media (max-width: 768px) {
  .main-first__card_2 {
    -webkit-animation: unset;
    animation: unset;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    top: 4rem;
    left: 10.5rem;
    -webkit-animation: card2Mobile 1s 1.1s forwards;
    animation: card2Mobile 1s 1.1s forwards;
  }
}
.main-first__card_3 {
  -webkit-transform: rotate(-41deg);
  -ms-transform: rotate(-41deg);
  transform: rotate(-41deg);
  top: 10.8rem;
  left: 3.2rem;
  z-index: 3;
  -webkit-animation: card3 1s 1.1s forwards;
  animation: card3 1s 1.1s forwards;
}
@media (max-width: 768px) {
  .main-first__card_3 {
    -webkit-animation: unset;
    animation: unset;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    top: 4rem;
    left: 10.5rem;
    -webkit-animation: card3Mobile 1s 1.1s forwards;
    animation: card3Mobile 1s 1.1s forwards;
  }
}
.main-first__card_4 {
  -webkit-transform: rotate(-41deg);
  -ms-transform: rotate(-41deg);
  transform: rotate(-41deg);
  top: 10.8rem;
  left: 3.2rem;
  z-index: 2;
  -webkit-animation: card4 1s 1.1s forwards;
  animation: card4 1s 1.1s forwards;
}
@media (max-width: 768px) {
  .main-first__card_4 {
    -webkit-animation: unset;
    animation: unset;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    top: 4rem;
    left: 10.5rem;
    -webkit-animation: card4Mobile 1s 1.1s forwards;
    animation: card4Mobile 1s 1.1s forwards;
  }
}
@media (max-width: 768px) {
  .main-first__scroll {
    overflow-x: auto;
    width: calc(100% + 4rem);
    margin-left: -2rem;
    padding-left: 2rem;
    padding-right: 0rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .main-first__scroll::-webkit-scrollbar {
    display: none;
  }
}
.main-first__links {
  margin-top: 2.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .main-first__links {
    width: 110.5rem;
  }
}
.main-first__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  border-radius: 1rem;
  border: 0.1rem solid var(--e3);
  padding: 1.5rem 3.1rem;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (max-width: 768px) {
  .main-first__btn {
    height: 4.9rem;
    padding: 0 3.1rem;
  }
  .main-first__btn:nth-last-of-type(1) {
    margin-right: 2rem;
  }
}
@media (min-width: 769px) {
  .main-first__btn:hover {
    color: #fff;
    background: var(--main-first-btn-hover);
  }
}
.main-first__btn img, .main-first__btn svg {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
}
.main-first__colored-lines {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.main-first__colored-lines span {
  height: 0.6rem;
  width: 100%;
  display: block;
}
.main-first__colored-lines span:nth-of-type(1) {
  background: var(--red);
}
.main-first__colored-lines span:nth-of-type(2) {
  background: var(--yellow);
}
.main-first__colored-lines span:nth-of-type(3) {
  background: var(--blue);
}

@-webkit-keyframes card1 {
  0% {
    -webkit-transform: rotate(-41deg);
    transform: rotate(-41deg);
    top: 10.8rem;
    left: 3.2rem;
  }
  100% {
    -webkit-transform: rotate(-53.73deg);
    transform: rotate(-53.73deg);
    top: 7.6rem;
    left: 1rem;
  }
}

@keyframes card1 {
  0% {
    -webkit-transform: rotate(-41deg);
    transform: rotate(-41deg);
    top: 10.8rem;
    left: 3.2rem;
  }
  100% {
    -webkit-transform: rotate(-53.73deg);
    transform: rotate(-53.73deg);
    top: 7.6rem;
    left: 1rem;
  }
}
@-webkit-keyframes card3 {
  0% {
    -webkit-transform: rotate(-41deg);
    transform: rotate(-41deg);
    top: 10.8rem;
    left: 3.2rem;
  }
  100% {
    -webkit-transform: rotate(-24.11deg);
    transform: rotate(-24.11deg);
    top: 14.8rem;
    left: 4.9rem;
  }
}
@keyframes card3 {
  0% {
    -webkit-transform: rotate(-41deg);
    transform: rotate(-41deg);
    top: 10.8rem;
    left: 3.2rem;
  }
  100% {
    -webkit-transform: rotate(-24.11deg);
    transform: rotate(-24.11deg);
    top: 14.8rem;
    left: 4.9rem;
  }
}
@-webkit-keyframes card4 {
  0% {
    -webkit-transform: rotate(-41deg);
    transform: rotate(-41deg);
    top: 10.8rem;
    left: 3.2rem;
  }
  100% {
    -webkit-transform: rotate(-9.42deg);
    transform: rotate(-9.42deg);
    top: 18.9rem;
    left: 6.8rem;
  }
}
@keyframes card4 {
  0% {
    -webkit-transform: rotate(-41deg);
    transform: rotate(-41deg);
    top: 10.8rem;
    left: 3.2rem;
  }
  100% {
    -webkit-transform: rotate(-9.42deg);
    transform: rotate(-9.42deg);
    top: 18.9rem;
    left: 6.8rem;
  }
}
@-webkit-keyframes card1Mobile {
  0% {
    left: 10.5rem;
  }
  100% {
    left: 19rem;
  }
}
@keyframes card1Mobile {
  0% {
    left: 10.5rem;
  }
  100% {
    left: 19rem;
  }
}
@-webkit-keyframes card2Mobile {
  0% {
    left: 10.5rem;
  }
  100% {
    left: 13.1rem;
  }
}
@keyframes card2Mobile {
  0% {
    left: 10.5rem;
  }
  100% {
    left: 13.1rem;
  }
}
@-webkit-keyframes card3Mobile {
  0% {
    left: 10.5rem;
  }
  100% {
    left: 7.2rem;
  }
}
@keyframes card3Mobile {
  0% {
    left: 10.5rem;
  }
  100% {
    left: 7.2rem;
  }
}
@-webkit-keyframes card4Mobile {
  0% {
    left: 10.5rem;
  }
  100% {
    left: 1.3rem;
  }
}
@keyframes card4Mobile {
  0% {
    left: 10.5rem;
  }
  100% {
    left: 1.3rem;
  }
}
.main-news__swiper {
  position: relative;
}
@media (max-width: 768px) {
  .main-news__swiper {
    width: calc(100% + 4rem);
    margin-left: -2rem;
  }
}
.main-news__swiper .swiper {
  position: relative;
  overflow: visible;
  overflow-x: clip;
}
@media (max-width: 768px) {
  .main-news__swiper .swiper {
    width: 100%;
    padding-left: 2rem;
  }
}
.main-news__swiper .swiper-wrapper {
  height: 100%;
  position: relative;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-bottom: 0.2rem;
}
.main-news__swiper-slide {
  width: 26.6rem;
  max-width: 26.6rem;
  border-radius: 1rem;
  border: 0.1rem solid var(--e3);
  margin-right: 3.2rem;
  height: auto;
  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-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .main-news__swiper-slide {
    margin-right: 1.5rem;
    max-width: unset;
  }
}
.main-news__swiper-slide:nth-last-of-type(1) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .main-news__swiper-slide:nth-last-of-type(1) {
    margin-right: 2rem;
  }
}
@media (min-width: 769px) {
  .main-news__swiper-slide:hover {
    -webkit-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.0509803922);
    box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.0509803922);
  }
  .main-news__swiper-slide:hover .main-news__swiper-link {
    text-decoration: underline;
  }
}
.main-news__swiper-cover {
  width: 100%;
  height: 17.4rem;
}
.main-news__swiper-cover img {
  width: 100%;
  height: 100%;
  display: block;
}
.main-news__swiper-content {
  padding: 1rem 1.4rem;
  min-height: 13.6rem;
  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-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.main-news__swiper-text {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 2rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
@media (max-width: 768px) {
  .main-news__swiper-text {
    -webkit-line-clamp: 4;
  }
}
.main-news__swiper-link {
  margin-top: auto;
  display: block;
  font-size: 1.6rem;
  color: var(--blue);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  font-weight: 500;
  min-height: 2.1rem;
}
.main-news__swiper-prev, .main-news__swiper-next {
  width: 4.8rem;
  height: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.0509803922);
  border: 0.1rem solid #EDEDED;
  border-radius: 10rem;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-2.4rem);
  -ms-transform: translateY(-2.4rem);
  transform: translateY(-2.4rem);
}
@media (max-width: 768px) {
  .main-news__swiper-prev, .main-news__swiper-next {
    display: none;
  }
}
.main-news__swiper-prev svg, .main-news__swiper-next svg {
  width: 1.4rem;
  height: 2rem;
}
.main-news__swiper-prev.swiper-button-disabled, .main-news__swiper-next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.main-news__swiper-prev {
  padding-right: 0.2rem;
  left: -7.5rem;
}
.main-news__swiper-next {
  padding-left: 0.2rem;
  right: -7.5rem;
}
.main-news__btn {
  margin-top: 4.5rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 24rem;
}

@media (max-width: 768px) {
  .main-app {
    padding-top: 4.5rem;
  }
}
.main-app__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 6rem;
  -moz-column-gap: 6rem;
  column-gap: 6rem;
  border-radius: 1rem;
  background: linear-gradient(95.67deg, #008DD2 1.86%, #1351AF 98.78%);
  padding: 4.7rem 6rem 4rem 6rem;
  position: relative;
}
@media (max-width: 768px) {
  .main-app__box {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    padding: 18.9rem 1.6rem 2.8rem 1.6rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 3.2rem;
  }
}
.main-app__qr {
  width: 16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 2rem;
}
@media (max-width: 768px) {
  .main-app__qr {
    row-gap: 1.3rem;
  }
}
.main-app__qr-image {
  width: 16rem;
  height: 16rem;
  border-radius: 1rem;
  overflow: hidden;
}
.main-app__qr-image img {
  width: 100%;
  height: 100%;
  display: block;
}
.main-app__qr-googleplay {
  width: 16rem;
  height: 5rem;
  border-radius: 1rem;
  overflow: hidden;
}
.main-app__qr-googleplay img {
  width: 100%;
  height: 100%;
  display: block;
}
.main-app__content {
  width: 55rem;
}
.main-app__title {
  font-size: 2.6rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .main-app__title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 2rem;
  }
}
.main-app__text {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
}
@media (max-width: 768px) {
  .main-app__text {
    text-align: center;
  }
}
.main-app__text + .main-app__text {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .main-app__text + .main-app__text {
    margin-top: 1.8rem;
  }
}
.main-app__text_small {
  font-weight: 300;
  font-size: 1.2rem;
}
.main-app__buttons {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
}
@media (max-width: 768px) {
  .main-app__buttons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 1rem;
    margin-top: 2.4rem;
    margin-bottom: 0.9rem;
  }
}
@media (max-width: 768px) {
  .main-app__btn {
    width: 24rem;
    height: 3.9rem;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.main-app__image {
  width: 24.6rem;
  height: 42.9rem;
  position: absolute;
  bottom: 0;
  right: 5.2rem;
}
@media (max-width: 768px) {
  .main-app__image {
    width: 16.7rem;
    height: 20.6rem;
    bottom: unset;
    top: -4.5rem;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }
}
.main-app__image img {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .main-virtual {
    padding-top: 3.2rem;
  }
}
.main-virtual__top {
  padding: 5.1rem 6rem;
  border-radius: 1rem;
  border: 0.2rem solid var(--blue);
  margin-bottom: 3rem;
  position: relative;
}
@media (max-width: 768px) {
  .main-virtual__top {
    padding: 17.5rem 2rem 2.2rem 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-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.main-virtual__title {
  max-width: 57.4rem;
  font-size: 3rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .main-virtual__title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
}
.main-virtual__text {
  max-width: 57.4rem;
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .main-virtual__text {
    text-align: center;
  }
}
.main-virtual__btn {
  border: 0.1rem solid var(--border);
  font-size: 1.6rem;
  font-weight: 500;
}
.main-virtual__image {
  width: 43.7rem;
  height: 36.2rem;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 768px) {
  .main-virtual__image {
    width: 26rem;
    height: 19.2rem;
    bottom: unset;
    top: -3.2rem;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }
}
.main-virtual__image img {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 768px) {
  .main-virtual__swiper {
    width: calc(100% + 4rem);
    padding-left: 2rem;
    margin-left: -2rem;
    overflow: visible;
  }
}
.main-virtual__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .main-virtual__box {
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
  }
}
.main-virtual__card {
  width: 27rem;
}
@media (max-width: 768px) {
  .main-virtual__card {
    margin-right: 1.5rem;
  }
  .main-virtual__card:nth-last-of-type(1) {
    margin-right: 2rem;
  }
}
@media (min-width: 769px) {
  .main-virtual__card:hover .main-virtual__card-btn {
    background: var(--btn-bg);
    border-color: var(--btn-border);
    color: var(--btn-color);
  }
}
.main-virtual__card-image {
  margin-bottom: 2rem;
  height: 16.4rem;
}
.main-virtual__card-image img {
  width: 100%;
  height: 100%;
  display: block;
}
.main-virtual__card-title {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
}
.main-virtual__card-text {
  font-size: 1.6rem;
  max-width: 20.9rem;
  margin-bottom: 2rem;
}
.main-virtual__card-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 0.1rem solid var(--border);
}

@media (max-width: 768px) {
  .main-price {
    padding-top: 3.9rem;
  }
}
.main-price__box {
  background: linear-gradient(264.24deg, #EEF4EF 1.64%, #ECEFEC 51.66%, #E4F4E5 100%);
  padding: 4.6rem 6rem 5.3rem 6rem;
  border-radius: 1rem;
  position: relative;
}
@media (max-width: 768px) {
  .main-price__box {
    padding: 10.5rem 2rem 2rem 1.6rem;
  }
}
.main-price__title {
  font-size: 3.2rem;
  max-width: 66.7rem;
  margin-bottom: 1.3rem;
}
@media (max-width: 768px) {
  .main-price__title {
    font-size: 2.4rem;
    text-align: center;
  }
}
.main-price__text {
  font-size: 1.6rem;
  max-width: 66.7rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .main-price__text {
    text-align: center;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .main-price__btn {
    width: 100%;
    height: 3.9rem;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.main-price__image {
  width: 14.1rem;
  height: 16.8rem;
  position: absolute;
  top: 4.1rem;
  right: 13.5rem;
}
@media (max-width: 768px) {
  .main-price__image {
    width: 10.4rem;
    height: 12.4rem;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    top: -3.9rem;
  }
}
.main-price__image img {
  width: 100%;
  height: 100%;
  display: block;
}

.main-services__swiper {
  overflow: visible;
}
@media (max-width: 768px) {
  .main-services__swiper {
    overflow: visible;
    width: calc(100% + 4rem);
    padding-left: 2rem;
    margin-left: -2rem;
  }
}
.main-services__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2.5rem 1.6rem;
}
@media (min-width: 769px) {
  .main-services__box {
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
    transform: translate3d(0px, 0px, 0px) !important;
  }
}
@media (max-width: 768px) {
  .main-services__box {
    -ms-flex-wrap: unset;
    flex-wrap: unset;
    gap: 0;
  }
}
.main-services__card {
  width: 37.6rem;
  border-radius: 1rem;
  border: 0.2rem solid var(--border);
  padding: 2.8rem;
  min-height: 23.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .main-services__card {
    width: 33rem;
    margin-right: 1.5rem;
  }
  .main-services__card:nth-last-of-type(1) {
    margin-right: 2rem;
  }
}
@media (min-width: 769px) {
  .main-services__card:hover {
    -webkit-box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
  }
  .main-services__card:hover .main-services__card-link {
    text-decoration: underline;
  }
  .main-services__card:hover .main-services__card-icon {
    opacity: 1;
  }
}
.main-services__card-title {
  font-size: 1.8rem;
  font-weight: 600;
  max-width: 21.2rem;
  margin-bottom: 1.5rem;
}
.main-services__card-text {
  font-size: 1.6rem;
  max-width: 24.6rem;
}
.main-services__card-link {
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--blue);
  display: block;
  margin-top: auto;
}
.main-services__card-icon {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 1.2rem;
  bottom: 1.8rem;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.main-services__card-icon svg {
  width: 9rem;
  height: 9rem;
}
@media (max-width: 768px) {
  .main-services__card-icon {
    opacity: 1;
    right: 1.6rem;
    bottom: 1.8rem;
  }
  .main-services__card-icon svg {
    width: 7rem;
    height: 7rem;
  }
}

.main-locations__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 1rem;
  background: linear-gradient(264.24deg, #EEF2F4 1.64%, #ECEEEF 51.66%, #E4F2F4 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .main-locations__box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.main-locations__content {
  padding: 7.1rem 6rem;
  width: 50%;
}
@media (max-width: 768px) {
  .main-locations__content {
    width: 100%;
    padding: 2.4rem 3rem;
  }
}
.main-locations__map {
  width: 50%;
  height: 36.6rem;
}
@media (max-width: 768px) {
  .main-locations__map {
    width: 100%;
    height: 25.5rem;
  }
}
.main-locations__title {
  font-size: 3.2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .main-locations__title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
}
.main-locations__text {
  font-size: 1.6rem;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .main-locations__text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .main-locations__btn {
    width: 100%;
    height: 4.9rem;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.search-page__top {
  margin-bottom: 5.5rem;
}
@media (max-width: 768px) {
  .search-page__top {
    margin-bottom: 3.5rem;
  }
}
.search-page__input {
  padding-bottom: 1.5rem;
  margin-bottom: 1.4rem;
  border-bottom: 0.1rem solid var(--blue);
  position: relative;
}
@media (max-width: 768px) {
  .search-page__input {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}
.search-page__input input {
  font-size: 3.2rem;
  font-family: "ProstoOne", serif;
  width: 100%;
  border: none;
  outline: none;
  height: 3.8rem;
  padding: 0 !important;
  padding-right: 5rem !important;
}
@media (max-width: 768px) {
  .search-page__input input {
    font-size: 2rem;
    height: 2.4rem;
    padding: 0 !important;
    padding-right: 3.6rem !important;
  }
}
.search-page__icon {
  width: 3.4rem;
  height: 3.2rem;
  position: absolute;
  right: 0;
  top: 0.2rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .search-page__icon {
    width: 2.5rem;
    height: 2.4rem;
  }
}
.search-page__icon svg, .search-page__icon img {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.search-page__count {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .search-page__count {
    font-size: 1.6rem;
  }
}
.search-page__count span {
  font-weight: 500;
}
.search-page__results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 3.5rem;
}
@media (max-width: 768px) {
  .search-page__results {
    row-gap: 2rem;
  }
}
.search-page__card {
  padding: 3.5rem 6rem;
  border-radius: 1rem;
  border: 0.1rem solid var(--border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1.5rem;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (max-width: 768px) {
  .search-page__card {
    padding: 2rem;
    row-gap: 1rem;
  }
}
@media (min-width: 769px) {
  .search-page__card:hover {
    background: var(--blue);
  }
  .search-page__card:hover .search-page__card-title {
    color: #fff;
  }
  .search-page__card:hover .search-page__card-text {
    color: #fff;
  }
}
.search-page__card-title {
  font-size: 2.4rem;
  font-weight: 600;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (max-width: 768px) {
  .search-page__card-title {
    font-size: 2rem;
  }
}
.search-page__card-text {
  font-size: 1.8rem;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (max-width: 768px) {
  .search-page__card-text {
    font-size: 1.6rem;
  }
}

.questions.section_page {
  margin-bottom: 11.2rem;
}
@media (max-width: 768px) {
  .questions.section_page {
    margin-bottom: 8rem;
  }
}
.questions .accordion {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .questions .accordion {
    margin-bottom: 3rem;
  }
}
.questions .accordion__header-title {
  max-width: 91.8rem;
}
@media (max-width: 768px) {
  .questions .accordion__header-title {
    font-weight: 500;
    max-width: 24rem;
  }
}
.questions .accordion__content-item {
  padding: 2rem 3rem;
  border: 0.1rem solid var(--border);
  border-radius: 1rem;
  margin-top: 0.6rem;
}
@media (max-width: 768px) {
  .questions .accordion__content-item {
    padding: 2rem 1.7rem;
  }
}
.questions .accordion__content-item p {
  line-height: 1.4;
}
.questions__form {
  border-radius: 1rem;
  background: linear-gradient(95.67deg, #008DD2 1.86%, #1351AF 98.78%);
  padding: 3.8rem;
  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;
  margin-top: 4.4rem;
}
@media (max-width: 768px) {
  .questions__form {
    margin-top: 5rem;
    padding: 2.3rem 2.6rem;
  }
}
.questions__form-title {
  font-size: 3.2rem;
  margin-bottom: 2.3rem;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .questions__form-title {
    font-size: 2.4rem;
  }
}
.questions__form-text {
  font-size: 2rem;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .questions__form-text {
    font-size: 1.8rem;
  }
}
.questions__form-btn {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .questions__form-btn {
    margin-top: 3.5rem;
  }
}

.news {
  margin-bottom: 14.2rem;
}
@media (max-width: 768px) {
  .news {
    margin-bottom: 7.3rem;
  }
}
.news__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 3rem;
}
@media (max-width: 768px) {
  .news__box {
    row-gap: 5rem;
  }
}
.news__card {
  width: 100%;
  height: 23.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 1rem;
  background: var(--light-blue);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (min-width: 769px) {
  .news__card:hover {
    -webkit-box-shadow: 0 0.4rem 1rem 0.1rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.4rem 1rem 0.1rem rgba(0, 0, 0, 0.15);
    -webkit-transform: translateY(-0.5rem);
    -ms-transform: translateY(-0.5rem);
    transform: translateY(-0.5rem);
  }
}
@media (max-width: 768px) {
  .news__card {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-height: 41.2rem;
    height: auto;
  }
}
.news__card-image {
  width: 50%;
  height: 23.9rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news__card-image {
    width: 100%;
    height: 15.5rem;
  }
}
.news__card-image img {
  width: 100%;
  height: 100%;
  display: block;
}
.news__card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.6rem 2rem;
  width: 50%;
}
@media (max-width: 768px) {
  .news__card-content {
    width: 100%;
  }
}
.news__card-title {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 2.6rem;
}
.news__card-text {
  font-size: 1.6rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
@media (max-width: 768px) {
  .news__card-text {
    margin-bottom: auto;
  }
}
.news__card-text:has(> p + p) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1rem;
}
.news__card-date {
  color: var(--text);
  font-size: 1.4rem;
  margin-top: auto;
}
@media (max-width: 768px) {
  .news__card-date {
    margin-top: 2.5rem;
  }
}
.news__title {
  font-size: 3.2rem;
  margin-top: 9rem;
  margin-bottom: 5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .news__title {
    font-size: 2.4rem;
    margin-top: 8rem;
    margin-bottom: 5.5rem;
  }
}

.legal-entities {
  padding-bottom: 8rem;
}
.legal-entities .accordion__content-description span {
  white-space: nowrap;
}

.bread-crumbs {
  margin-top: 2rem;
}
.top-block .bread-crumbs {
  margin-top: 0;
}
.bread-crumbs__path {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.1rem;
  white-space: nowrap;
}
.bread-crumbs__path .t-caption, .bread-crumbs__path a {
  color: #626262;
  font-size: 1.2rem;
}
.bread-crumbs__path div:nth-last-of-type(1) {
  text-overflow: ellipsis;
  overflow: hidden;
}

.disclosure {
  padding-bottom: 8rem;
}
.disclosure__main {
  margin-bottom: 6rem;
}
.disclosure__main .accordion__content .accordion__content-item:first-child {
  padding-top: 0;
}

.top-block {
  padding-top: 2rem;
  margin-bottom: 5.2rem;
}
@media (max-width: 768px) {
  .top-block {
    margin-bottom: 4.5rem;
  }
}
.top-block_background {
  background-color: var(--light-blue);
  padding-bottom: 3.3rem;
}
@media (max-width: 768px) {
  .top-block_background {
    padding-bottom: 2rem;
    margin-bottom: 3rem;
  }
}
.top-block__title {
  font-family: "ProstoOne";
  font-weight: 400;
  font-size: 3.2rem;
  text-transform: uppercase;
  text-align: center;
  margin-top: 2.6rem;
  margin-bottom: 1.1rem;
}
@media (max-width: 768px) {
  .top-block__title {
    font-size: 2.4rem;
  }
}
.top-block__title:has(+ *) {
  margin-bottom: 2rem;
}
.top-block__subtitle {
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  max-width: 93.6rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .top-block__subtitle {
    max-width: unset;
    margin: 0;
    font-size: 1.6rem;
  }
}
.top-block__subtitle_big {
  font-size: 2.4rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .top-block__subtitle_big {
    font-size: 1.6rem;
  }
}

.counteraction {
  padding-bottom: 7.5rem;
}
@media (max-width: 768px) {
  .counteraction {
    padding-bottom: 4rem;
  }
}
.counteraction__text {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}
.counteraction__text:last-child {
  margin-bottom: 0;
}
.counteraction__text-wrapper {
  margin-bottom: 5rem;
}
.counteraction .accordion__content-item {
  gap: 1rem;
}
.counteraction .accordion__content {
  margin-bottom: 6.5rem;
}
.counteraction .accordion__content-item {
  padding: 0;
}
.counteraction__other {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
}

.virtual-card-first {
  margin-top: 8rem;
}
.virtual-card-first .main-virtual__title {
  font-size: 3rem;
}

.virtual-card-release {
  margin-top: 14rem;
}
.virtual-card-release__wrapper {
  position: relative;
  border-radius: 1rem;
  border: 2px solid var(--border);
  padding: 5rem 11.6rem;
  padding-left: 49rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .virtual-card-release__wrapper {
    padding: 2.5rem 2rem;
    padding-top: 18rem;
  }
}
.virtual-card-release__title {
  font-family: "ProstoOne";
  font-size: 2.6rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .virtual-card-release__title {
    margin-bottom: 2.5rem;
  }
}
.virtual-card-release__step {
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
}
.virtual-card-release__step:last-child {
  margin-bottom: 0;
}
.virtual-card-release__step::before {
  content: "—";
  margin-right: 0.5rem;
}
.virtual-card-release__image {
  position: absolute;
  bottom: 0;
  left: 6rem;
  width: 34.7rem;
  height: 41.1rem;
}
@media (max-width: 768px) {
  .virtual-card-release__image {
    bottom: unset;
    top: -7rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 29.4rem;
    height: 21.7rem;
    overflow: hidden;
  }
}
.virtual-card-release__image img {
  width: 34.7rem;
  height: 41.1rem;
}
@media (max-width: 768px) {
  .virtual-card-release__image img {
    width: 29.4rem;
    height: 33.1rem;
  }
}
.virtual-card-release__hint {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  width: 72rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .virtual-card-release__hint {
    width: 100%;
    padding: 1rem 1.5rem;
  }
}
.virtual-card-release__hint-icon {
  width: 2.4rem;
  height: 2.4rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.virtual-card-release__hint-text {
  font-size: 1.6rem;
  color: var(--text);
}
@media (max-width: 768px) {
  .virtual-card-release__hint-text {
    text-align: center;
  }
}

.virtual-card-info {
  margin-top: 10rem;
  margin-bottom: 11.7rem;
}
@media (max-width: 768px) {
  .virtual-card-info {
    margin-top: 6rem;
    margin-bottom: 6.8rem;
  }
}
.virtual-card-info__item {
  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;
  max-width: 82.6rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 9rem;
}
@media (max-width: 768px) {
  .virtual-card-info__item {
    max-width: 100%;
    margin-bottom: 5rem;
  }
}
.virtual-card-info__item:last-child {
  margin-bottom: 0;
}
.virtual-card-info__title {
  font-family: "ProstoOne";
  font-size: 2.6rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .virtual-card-info__title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
.virtual-card-info__subtitle {
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .virtual-card-info__subtitle {
    margin-bottom: 2rem;
  }
}
.virtual-card-info__subtitle_list {
  margin-bottom: 1.5rem;
}
.virtual-card-info__text {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .virtual-card-info__text {
    margin-bottom: 2rem;
  }
}
.virtual-card-info__text span {
  font-weight: 500;
}
.virtual-card-info__btn {
  border-radius: 1rem;
  border: 1px solid var(--border);
}
.virtual-card-info__list-item {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.virtual-card-info__list-item:last-child {
  margin-bottom: 0;
}

.type-cards {
  margin-top: 2.6rem;
  margin-bottom: 8.1rem;
}
@media (max-width: 768px) {
  .type-cards {
    margin-top: 7.4rem;
    margin-bottom: 6rem;
  }
}
.type-cards__inner {
  border-radius: 1rem;
  border: 2px solid var(--border);
  padding: 3.2rem 6.5rem;
  padding-bottom: 2.6rem;
  position: relative;
}
@media (min-width: 769px) {
  .type-cards__inner {
    min-height: 26.4rem;
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .type-cards__inner {
    padding: 3.5rem 2rem;
    padding-top: 13.2rem;
  }
}
.type-cards__info {
  max-width: 55.5rem;
}
@media (max-width: 768px) {
  .type-cards__info {
    max-width: 100%;
  }
}
.type-cards__title {
  font-family: "ProstoOne";
  font-size: 3.2rem;
  max-width: 51rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .type-cards__title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 100%;
  }
}
.civil-card .type-cards__title {
  max-width: 36.3rem;
}
.type-cards__description {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .type-cards__description {
    margin-bottom: 2rem;
    text-align: center;
  }
}
.type-cards__price {
  font-weight: 500;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .type-cards__price {
    text-align: center;
  }
}
.type-cards__preview {
  width: 28rem;
  height: 17.5rem;
  -o-object-fit: fill;
  object-fit: fill;
  border-radius: 1rem;
  position: absolute;
  -webkit-transform: rotate(9deg);
  -ms-transform: rotate(9deg);
  transform: rotate(9deg);
  -webkit-box-shadow: 12px 15px 25px 0 rgba(12, 59, 133, 0.33);
  box-shadow: 12px 15px 25px 0 rgba(12, 59, 133, 0.33);
  top: 4.7rem;
  right: 15.4rem;
}
@media (max-width: 768px) {
  .type-cards__preview {
    border-radius: 0.7rem;
    width: 20rem;
    height: 12.5rem;
    top: -3.5rem;
    right: 50%;
    -webkit-transform: translate(50%, 0) rotate(9deg);
    -ms-transform: translate(50%, 0) rotate(9deg);
    transform: translate(50%, 0) rotate(9deg);
  }
}

.conditions {
  max-width: 104rem;
  margin: 0 auto;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .conditions {
    max-width: 100%;
    margin: 0;
    margin-bottom: 8rem;
  }
}
.conditions__title {
  font-family: "ProstoOne";
  font-size: 2.6rem;
  text-align: center;
  max-width: 90.8rem;
  margin: 0 auto;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .conditions__title {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    max-width: 100%;
  }
}
.conditions__description {
  font-size: 1.6rem;
  text-align: center;
  max-width: 90.8rem;
  margin: 0 auto;
  margin-bottom: 1rem;
}
.conditions__description:last-of-type {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .conditions__description {
    max-width: 100%;
    margin-bottom: 3.5rem;
  }
}
.conditions__items {
  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;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .conditions__items {
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
}
.conditions__item {
  background-color: var(--light-blue);
  border-radius: 1rem;
  padding: 2rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .conditions__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
  }
}
.conditions__item-title {
  font-weight: 500;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .conditions__item-title {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
}
.conditions__item-value {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .conditions__item-value {
    text-align: center;
  }
}

.tariffs {
  width: calc(100% + 4rem);
  margin-left: -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.tariffs__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 10rem;
  -moz-column-gap: 10rem;
  column-gap: 10rem;
  row-gap: 4rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 769px) {
  .tariffs__cards {
    max-width: 104rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .tariffs__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    row-gap: 0;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    margin-bottom: 1.5rem;
  }
}
.tariffs__card {
  border-radius: 1rem;
  border: 2px solid var(--border);
  padding: 3rem 3.5rem;
  padding-bottom: 4.3rem;
  width: 47rem;
  position: relative;
  background-color: #fff;
  cursor: pointer;
  /* .civil-card &-name{
      margin-bottom: rem(25);
      @include mobile{
          margin-bottom: rem(20);
      }
  } */
}
@media (max-width: 768px) {
  .tariffs__card {
    padding: 2.5rem;
    width: 35rem;
    height: 21rem;
  }
}
.tariffs__card-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: 2.5rem;
  max-width: 32.6rem;
}
@media (max-width: 768px) {
  .tariffs__card-info {
    gap: 2rem;
    max-width: 100%;
    position: relative;
    z-index: 5;
  }
}
.tariffs__card-name {
  font-weight: 500;
  font-size: 2rem;
  width: calc(100% + 5rem);
}
@media (max-width: 768px) {
  .tariffs__card-name {
    font-size: 1.8rem;
    width: calc(100% + 1rem);
  }
}
.tariffs__card-price {
  font-family: "ProstoOne";
  font-size: 4.8rem;
}
@media (max-width: 768px) {
  .tariffs__card-price {
    font-size: 4rem;
  }
}
.tariffs__card-description {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .tariffs__card-description {
    font-size: 1.4rem;
    max-width: 21.7rem;
  }
}
.tariffs__card-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11.5rem;
  height: 18rem;
}
@media (max-width: 768px) {
  .tariffs__card-decoration {
    width: 11.5rem;
    height: 16rem;
  }
}
.school-card .tariffs__card-decoration rect {
  fill: #EF7F1A;
}
.tariffs__card-wrapper {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 768px) {
  .tariffs__card-wrapper {
    width: 35rem;
    height: 21rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
.tariffs__card-wrapper:hover .tariffs__card_hover {
  opacity: 1;
}
.tariffs__card_hover {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border: none;
  -webkit-box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 2.7rem 3.4rem;
  z-index: 10;
  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) {
  .tariffs__card_hover {
    padding: 2rem 2.5rem;
    padding-bottom: 1.4rem;
  }
}
.tariffs__card_hover-text {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  max-width: 36.8rem;
}
.tariffs__card_hover-text:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .tariffs__card_hover-text {
    font-size: 1.2rem;
    z-index: 5;
  }
}
.tariffs__card_hover .hint {
  border: 1px solid var(--border);
  background-color: var(--light-blue);
  margin: 0;
  margin-top: auto;
  padding: 0.5rem 1rem;
  z-index: 5;
  cursor: pointer;
}
.tariffs__card_hover .hint .hint__text {
  font-size: 1.4rem;
  color: black;
}
@media (max-width: 768px) {
  .tariffs__card_hover .hint .hint__text {
    font-size: 1.2rem;
  }
}
.tariffs__card_hover .hint .hint__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
}
.tariffs__card_hover .hint .hint__icon path {
  fill: black;
}
@media (max-width: 768px) {
  .tariffs__card_hover .hint .hint__icon {
    width: 1.8rem;
    height: 1.8rem;
  }
}

.hint__wrapper {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  height: 4.6rem;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  /* &:hover{
      height: rem(95);
      @include mobile{
          height: fit-content;
      }
  } */
}
.hint__wrapper:has(> .hint__prompt) {
  cursor: pointer;
}
@media (max-width: 768px) {
  .hint__wrapper {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.hint__prompt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0 1rem 1rem 1rem;
  border: 1px solid var(--border);
  padding: 1rem 3.5rem;
  position: absolute;
  left: 2.5rem;
  top: 5.6rem;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
}
.hint__prompt::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 40px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .hint__prompt {
    display: none;
  }
}
.hint__prompt .hint__prompt-text {
  color: var(--blue);
  font-size: 1.6rem;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
@media (max-width: 768px) {
  .hint__prompt .hint__prompt-text {
    font-size: 1.4rem;
  }
}

.hint__wrapper:hover .hint__prompt, .hint__wrapper:hover .hint__prompt:hover {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  pointer-events: all;
  opacity: 1;
}

.hint__wrapper:hover .hint svg path {
  fill: var(--blue);
}
@media (max-width: 768px) {
  .hint__wrapper:hover .hint svg path {
    fill: #828282;
  }
}

.hint__wrapper:hover .hint .hint__text {
  color: black;
}
@media (max-width: 768px) {
  .hint__wrapper:hover .hint .hint__text {
    color: var(--text);
  }
}

.tariffs .hint__wrapper {
  margin-bottom: 5.1rem;
}

.civil-card, .pensioner-card, .student-card, .school-card {
  margin-bottom: 18rem;
}
@media (max-width: 768px) {
  .civil-card, .pensioner-card, .student-card, .school-card {
    margin-bottom: 6rem;
  }
}

.pensioner-card, .student-card {
  margin-bottom: 18rem;
}
.pensioner-card .conditions, .student-card .conditions {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .pensioner-card, .student-card {
    margin-bottom: 6rem;
  }
}

.virtual-card-first .main-virtual__text {
  margin-bottom: 0;
}

.united-card {
  margin-bottom: 12rem;
}
@media (max-width: 768px) {
  .united-card {
    margin-bottom: 6rem;
  }
}
.united-card__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1.5rem;
  font-size: 1.6rem;
  margin: 0 auto;
  margin-bottom: 9rem;
  max-width: 104rem;
}
@media (max-width: 768px) {
  .united-card__description {
    text-align: center;
    row-gap: 1rem;
    margin-bottom: 4.5rem;
  }
}
.united-card .type-cards {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .united-card .type-cards {
    margin-bottom: 2rem;
    margin-top: 4rem;
  }
}
@media (max-width: 768px) {
  .united-card .type-cards__inner {
    padding-right: 2rem;
    padding-left: 2rem;
    padding-bottom: 2.4rem;
    padding-top: 16.5rem;
  }
}
@media (max-width: 768px) {
  .united-card .type-cards__preview {
    top: -0.5rem;
  }
}
.united-card .type-cards__title {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.united-card .type-cards__subtitle {
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .united-card .type-cards__subtitle {
    text-align: center;
  }
}
.united-card .type-cards__list {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 0.5rem;
}
@media (max-width: 768px) {
  .united-card .type-cards__list {
    text-align: center;
  }
}
.united-card .type-cards__list li {
  font-size: 1.4rem;
  list-style: disc;
  margin-left: 2rem;
}
@media (max-width: 768px) {
  .united-card .type-cards__list li {
    list-style: none;
    margin-left: 0;
  }
}
.united-card .type-cards__btn {
  border: 0.1rem solid var(--border);
}
@media (max-width: 768px) {
  .united-card .type-cards__btn {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
  }
}
.united-card .conditions__description {
  font-weight: 500;
  margin-bottom: 0;
}
.united-card .conditions {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .united-card .conditions {
    margin-bottom: 3rem;
  }
}
.united-card__text {
  margin-top: 3.5rem;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .united-card__text {
    margin-top: 2rem;
  }
}
.united-card__text > a {
  color: var(--blue);
  text-decoration: underline;
}
.united-card .main-virtual__card-title {
  margin-bottom: 2rem;
}
.united-card .main-virtual__card-text {
  display: none;
}

.text-page {
  margin-bottom: 12.6rem;
}
.text-page .content-cms h2, .text-page .content-cms h3, .text-page .content-cms h4, .text-page .content-cms h5 {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .text-page .content-cms h2, .text-page .content-cms h3, .text-page .content-cms h4, .text-page .content-cms h5 {
    margin-top: 3.6rem;
  }
}
.text-page .content-cms h2 {
  font-size: 3.2rem;
  line-height: 4rem;
  font-weight: 700;
}
.text-page .content-cms h2 + div:has(> img) {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .text-page .content-cms h2 {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
.text-page .content-cms h3 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .text-page .content-cms h3 {
    font-size: 2rem;
  }
}
.text-page .content-cms h4 {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .text-page .content-cms h4 {
    font-size: 1.8rem;
  }
}
.text-page .content-cms p {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.75;
}
.text-page .content-cms p > a {
  color: var(--blue);
  text-decoration: underline;
  background: unset;
  height: unset;
  border-radius: unset;
  padding: 0;
  margin: 0;
}
.text-page .content-cms p + p {
  margin-top: 1rem;
}
.text-page .content-cms a {
  padding: 0 3.5rem;
  height: 4.9rem;
  background: var(--blue);
  border-radius: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 11.2rem;
}
@media (max-width: 768px) {
  .text-page .content-cms a {
    margin-top: 6rem;
  }
}
.text-page .content-cms q {
  margin-top: 11.2rem;
  margin-bottom: 11.2rem;
  font-size: 2rem;
  display: block;
  padding: 4.2rem 3.5rem;
  border-radius: 1rem;
  background: var(--light-blue);
  line-height: 1.4;
  quotes: none;
}
@media (max-width: 768px) {
  .text-page .content-cms q {
    margin-top: 6rem;
    margin-bottom: 6rem;
    padding: 1.7rem 2rem;
    font-size: 1.8rem;
  }
}
.text-page .content-cms div:has(> table) {
  margin-top: 11.2rem;
  margin-bottom: 11.2rem;
  padding: 2.9rem 6rem;
  background: var(--light-blue);
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .text-page .content-cms div:has(> table) {
    margin-top: 6rem;
    margin-bottom: 6rem;
    padding: 1rem 0rem;
    overflow-x: auto;
    display: block;
  }
}
.text-page .content-cms table {
  font-size: 1.6rem;
  width: 100%;
  font-weight: 400;
}
@media (max-width: 768px) {
  .text-page .content-cms table {
    width: 50rem;
    margin: 0 1rem;
  }
}
.text-page .content-cms table th, .text-page .content-cms table td {
  font-weight: 400;
  padding: 1.1rem 0;
  text-align: center;
  min-width: 25rem;
}
@media (max-width: 768px) {
  .text-page .content-cms table th, .text-page .content-cms table td {
    padding: 1.3rem 0;
    min-width: unset;
    width: 15rem;
  }
}
.text-page .content-cms table th:nth-of-type(2), .text-page .content-cms table td:nth-of-type(2) {
  min-width: 56rem;
}
@media (max-width: 768px) {
  .text-page .content-cms table th:nth-of-type(2), .text-page .content-cms table td:nth-of-type(2) {
    min-width: 7rem;
  }
}
.text-page .content-cms table th {
  line-height: 1.3;
}
.text-page .content-cms ul {
  margin-top: 5rem;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1rem;
}
.text-page .content-cms ul li {
  font-size: 1.6rem;
  line-height: 1.75;
  display: block;
  position: relative;
  padding-left: 5rem;
}
@media (max-width: 768px) {
  .text-page .content-cms ul li {
    padding-left: 2.5rem;
  }
}
.text-page .content-cms ul li::before {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  background: #c4c4c4;
  border-radius: 10rem;
  position: absolute;
  top: 1rem;
  left: 0;
}
@media (max-width: 768px) {
  .text-page .content-cms ul li::before {
    width: 0.6rem;
    height: 0.6rem;
    left: 0.8rem;
    background: #000;
  }
}
.text-page .content-cms ol {
  margin-top: 5rem;
  list-style: none;
  counter-reset: my-counter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1rem;
}
.text-page .content-cms ol li {
  font-size: 1.6rem;
  line-height: 1.75;
  position: relative;
  counter-increment: my-counter;
  padding-left: 5rem;
}
@media (max-width: 768px) {
  .text-page .content-cms ol li {
    padding-left: 2.5rem;
  }
}
.text-page .content-cms ol li::before {
  content: counter(my-counter) ".";
  color: var(--text);
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .text-page .content-cms ol li::before {
    left: 0.4rem;
    color: #000;
  }
}
.text-page .content-cms figure {
  margin-top: 11.2rem;
  margin-bottom: 11.2rem;
}
@media (max-width: 768px) {
  .text-page .content-cms figure {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
.text-page .content-cms figure img {
  display: block;
  width: 100%;
  border-radius: 1rem;
}
.text-page .content-cms figure figcaption {
  margin-top: 2.2rem;
  font-size: 1.6rem;
  color: #717171;
  text-align: center;
  font-style: italic;
}
@media (max-width: 768px) {
  .text-page .content-cms figure figcaption {
    margin-top: 1rem;
  }
}
.text-page .content-cms div:has(> img + div) {
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  overflow: hidden;
  height: 23.9rem;
}
@media (max-width: 768px) {
  .text-page .content-cms div:has(> img + div) {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 43.6rem;
  }
}
.text-page .content-cms div:has(> img + div):has(+ div) {
  margin-bottom: 3rem;
}
.text-page .content-cms div:has(> img + div) + div:has(> img) {
  margin-top: 3rem !important;
}
.text-page .content-cms div:has(> img + div) img {
  width: 50%;
  height: 100%;
  display: block;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .text-page .content-cms div:has(> img + div) img {
    height: 15.5rem;
    width: 100%;
  }
}
.text-page .content-cms div:has(> img + div) h4 {
  margin-top: 0;
}
.text-page .content-cms div:has(> img + div) p {
  margin-top: 2.6rem;
  text-align: left;
  line-height: 1.2;
  width: 100%;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
@media (max-width: 768px) {
  .text-page .content-cms div:has(> img + div) p {
    -webkit-line-clamp: 8;
    margin-top: 1rem;
  }
}
.text-page .content-cms div:has(> img + div) p:has(> span) {
  margin-top: auto;
}
.text-page .content-cms div:has(> img + div) p:has(> span) span {
  font-size: 1.4rem;
  color: var(--text);
}
.text-page .content-cms div:has(> img + div) > div {
  padding: 1.5rem 2rem;
  width: 50%;
  height: 100%;
  margin: 0;
}
@media (max-width: 768px) {
  .text-page .content-cms div:has(> img + div) > div {
    height: 28rem;
  }
}
@media (max-width: 768px) {
  .text-page .content-cms div:has(> img + div) > div {
    width: 100%;
  }
}
.text-page .content-cms div:has(> video) {
  position: relative;
  margin-top: 11.2rem;
  margin-bottom: 11.2rem;
  border-radius: 1rem;
  overflow: hidden;
  padding: 0;
}
@media (max-width: 768px) {
  .text-page .content-cms div:has(> video) {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
.text-page .content-cms div:has(> video) img {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: block;
}
.text-page .content-cms div:has(> video) img:hover + svg {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.text-page .content-cms div:has(> video) svg {
  width: 7.6rem;
  height: 7.6rem;
  pointer-events: none;
  z-index: 5;
  position: absolute;
  left: calc(50% - 3.8rem);
  top: calc(50% - 3.8rem);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.text-page .content-cms video {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 1;
  display: block;
}
.text-page .content-cms div {
  background: var(--light-blue);
  padding: 2.2rem 20rem;
  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;
  margin: 11.2rem 0;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .text-page .content-cms div {
    margin-top: 6rem;
    margin-bottom: 6rem;
    padding: 2.1rem 1.7rem;
  }
}
.text-page .content-cms div h2 {
  text-align: center;
  font-weight: 500;
  margin: 0;
}
.text-page .content-cms div p {
  text-align: center;
}
.text-page .content-cms div a {
  margin-top: 4rem;
  background: #fff;
  border: 0.1rem solid #E3E3E3;
  color: #000;
}
@media (max-width: 768px) {
  .text-page .content-cms div a {
    margin-top: 2.5rem;
  }
}

.error-footer {
  display: none;
}
@media (max-width: 768px) {
  .error-footer {
    display: block;
  }
}
.error__inner {
  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;
  max-width: 69.2rem;
  margin: 0 auto;
  height: calc(100svh - 11.6rem);
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .error__inner {
    height: calc(100svh - 5.9rem);
  }
}
.error__image {
  width: 31.1rem;
  height: 15.4rem;
}
.error__image img, .error__image svg {
  width: 100%;
  height: 100%;
  display: block;
}
.error__title {
  font-size: 3.2rem;
  margin-top: 1rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .error__title {
    font-size: 2.4rem;
  }
}
.error__text {
  font-size: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .error__text {
    font-size: 1.8rem;
  }
}
.error__btn {
  margin-top: 3.8rem;
  border: 0.1rem solid var(--border);
}
@media (max-width: 768px) {
  .error__btn {
    margin-top: 3rem;
  }
}

.physical-entities {
  margin-bottom: 17rem;
}
@media (max-width: 768px) {
  .physical-entities {
    margin-bottom: 6rem;
  }
}
.physical-entities .disclosure {
  padding-bottom: 0;
}
.physical-entities .disclosure__main {
  margin-bottom: 0;
}
.physical-entities .virtual-card-info {
  margin-top: 0;
  margin-bottom: 0;
}
.physical-entities .virtual-card-info__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1rem;
}
.physical-entities .virtual-card-info__item {
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .physical-entities .virtual-card-info__item {
    margin-bottom: 5rem;
  }
}
.physical-entities .virtual-card-info__item:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .physical-entities .accordion__content-item {
    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;
    padding-left: 0;
    padding-right: 0;
  }
  .physical-entities .accordion__content-item * {
    text-align: center;
  }
}
.physical-entities__instruction {
  width: 100%;
  max-width: 95rem;
  margin: 9.7rem auto;
  border: 0.2rem solid var(--blue);
  padding: 4.8rem;
  border-radius: 1rem;
  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;
}
@media (max-width: 768px) {
  .physical-entities__instruction {
    margin: 6rem auto;
    max-width: 35rem;
    padding: 3.8rem 2rem;
  }
}
.physical-entities__instruction-title {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .physical-entities__instruction-title {
    text-align: center;
    font-size: 2.4rem;
  }
}
.physical-entities__instruction-text {
  font-size: 1.8rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .physical-entities__instruction-text {
    text-align: center;
  }
}
.physical-entities__instruction-btn {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .physical-entities__instruction-btn {
    margin-top: 3rem;
  }
}

.balance {
  margin-bottom: 18rem;
}
@media (max-width: 768px) {
  .balance {
    margin-bottom: 6rem;
  }
}
.balance .section {
  margin-top: 9rem;
  margin-bottom: 9rem;
}
@media (max-width: 768px) {
  .balance .section {
    margin-top: 7.7rem;
    margin-bottom: 7.7rem;
  }
}
.balance .section:nth-of-type(1) {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .balance .section:nth-of-type(1) {
    margin-top: 4.2rem;
  }
}
.balance .section:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .balance .main-app {
    padding-top: 0;
  }
  .balance .main-app .balance__title {
    margin-bottom: 8.5rem;
  }
}
.balance__title {
  font-size: 2.6rem;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .balance__title {
    margin-bottom: 3.5rem;
    font-size: 2.4rem;
  }
}
.balance__info .balance__title {
  margin-bottom: 4rem;
}
.balance__info .hint__wrapper {
  margin-top: 3rem;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .balance__info .hint__wrapper {
    margin-bottom: 3.3rem;
  }
}
.balance__info .hint__wrapper:hover .hint svg path {
  fill: #828282;
}
.balance__info .hint__wrapper:hover .hint .hint__text {
  color: var(--text);
}
.balance__text {
  font-size: 1.6rem;
  text-align: center;
  max-width: 104rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1rem;
}
.balance__text p > span {
  font-weight: 500;
}
.balance__text + .balance__text {
  margin-top: 3rem;
}
.balance__swiper {
  padding-bottom: 0.1rem;
  max-width: 104rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .balance__swiper {
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 4rem;
    padding-right: 2rem;
    width: calc(100% + 4rem);
    overflow: visible;
  }
}
@media (min-width: 769px) {
  .balance__swiper .swiper-wrapper {
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
    transform: translate3d(0px, 0px, 0px) !important;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.balance__swiper-slide {
  width: 31rem;
  border: 0.1rem solid var(--border);
  border-radius: 1rem;
  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;
  padding: 2.4rem 1.1rem;
}
@media (max-width: 768px) {
  .balance__swiper-slide {
    margin-right: 2rem;
  }
}
@media (min-width: 769px) {
  .balance__swiper-slide:hover .balance__swiper-btn {
    background: var(--btn-bg);
    border-color: var(--btn-border);
    color: var(--btn-color);
  }
}
.balance__swiper-title {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
.balance__swiper-image {
  width: 11.5rem;
  height: 11.5rem;
  margin-top: 2.4rem;
  margin-bottom: 2.5rem;
}
.balance__swiper-image img {
  width: 100%;
  height: 100%;
  display: block;
}
.balance__swiper-btn {
  border: 0.1rem solid var(--border);
}
.balance__form {
  padding: 4rem;
  background: var(--light-blue);
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 2.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .balance__form {
    padding: 2rem;
  }
}
.balance__form-line {
  width: 83rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .balance__form-line {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
}
.balance__form-line:has(> .balance__form-note) {
  padding-bottom: 2.2rem;
}
.balance__form-title {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .balance__form-title {
    margin-bottom: 1rem;
  }
}
.balance__form-input {
  height: 4rem;
  padding: 0rem 2rem;
  font-size: 1.6rem;
  border: 0.1rem solid var(--border);
  border-radius: 1rem;
  outline: none;
  width: 39.3rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.balance__form-input.js-modal-open {
  cursor: pointer;
}
@media (max-width: 768px) {
  .balance__form-input {
    width: 100%;
  }
}
.balance__form-input:disabled {
  border: 0.1rem solid #929292;
  background: transparent;
}
.balance__form-icon {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  right: 1.5rem;
}
@media (max-width: 768px) {
  .balance__form-icon {
    top: 3.8rem;
  }
}
.balance__form-buttons {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.5rem;
  -moz-column-gap: 3.5rem;
  column-gap: 3.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .balance__form-buttons {
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 1rem;
    margin-top: 1rem;
  }
  .balance__form-buttons .btn {
    width: 22rem;
  }
  .balance__form-buttons .btn.js-details-btn-table {
    width: 27rem;
  }
}
.balance__form-note {
  position: absolute;
  font-size: 1.4rem;
  right: 16.6rem;
  top: 4.5rem;
  color: #101010;
}
@media (max-width: 768px) {
  .balance__form-note {
    bottom: 0;
    top: unset;
    right: unset;
    left: 0.5rem;
  }
}
.balance__form-response {
  font-size: 1.6rem;
  color: #101010;
  opacity: 0;
  border-radius: 1rem;
  pointer-events: none;
  text-align: center;
  display: none;
  margin-bottom: -3rem;
  margin-top: 1rem;
}
.balance__form-response_success {
  display: block;
  opacity: 1;
  pointer-events: all;
  color: var(--green);
}
.balance__form-response_error {
  display: block;
  opacity: 1;
  pointer-events: all;
  color: var(--red);
}
@media (max-width: 768px) {
  .balance__form-response {
    position: relative;
    font-size: 1.4rem;
    margin-bottom: -2rem;
  }
}
.balance .main-locations__content {
  padding-top: 5.2rem;
  padding-bottom: 5.2rem;
  padding-right: 4rem;
}
@media (max-width: 768px) {
  .balance .main-locations__content {
    padding: 2.2rem 2.2rem;
  }
}
.balance .main-locations__map {
  height: auto;
}
@media (max-width: 768px) {
  .balance .main-locations__map {
    height: 25.5rem;
  }
}
.balance .main-locations__text {
  max-width: 47.2rem;
  margin-bottom: 0;
}
.balance .main-locations__text + .main-locations__text {
  margin-top: 1rem;
}
.balance .main-locations__hint {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  font-size: 1.6rem;
  color: var(--text);
  border-radius: 1rem;
  background: #fff;
  padding: 1.2rem 1.5rem;
  max-width: 49rem;
  margin-top: 3rem;
  margin-bottom: -2rem;
}
@media (max-width: 768px) {
  .balance .main-locations__hint {
    margin-top: 2rem;
    margin-bottom: 0;
  }
}
.balance .main-locations__hint svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
}
.balance .main-locations__btn {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .balance .main-locations__btn {
    margin-top: 2rem;
  }
}

.rules {
  margin-bottom: 18rem;
}
@media (max-width: 768px) {
  .rules {
    margin-bottom: 6rem;
  }
}
.rules .section {
  margin-top: 9rem;
  margin-bottom: 9rem;
}
@media (max-width: 768px) {
  .rules .section {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
.rules .section:nth-of-type(1) {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .rules .section:nth-of-type(1) {
    margin-top: 4.2rem;
  }
}
.rules .section:nth-last-of-type(1) {
  margin-bottom: 0;
}
.rules__title {
  margin-bottom: 4rem;
  font-size: 2.6rem;
}
@media (max-width: 768px) {
  .rules__title {
    margin-bottom: 2.5rem;
    font-size: 2.4rem;
  }
}
.rules-instruction__box {
  max-width: 104rem;
  margin: 0 auto;
  border-radius: 1rem;
  border: 0.1rem solid var(--blue);
  padding: 4.9rem 6rem;
  padding-left: 37rem;
  position: relative;
}
@media (max-width: 768px) {
  .rules-instruction__box {
    padding: 2.4rem 1.9rem;
    padding-top: 15rem;
    margin-top: 8rem;
  }
}
@media (max-width: 768px) {
  .rules-instruction__title {
    text-align: center;
  }
}
.rules-instruction__image {
  position: absolute;
  width: 37.7rem;
  height: 30.2rem;
  left: 0.9rem;
  top: 2rem;
  pointer-events: none;
}
@media (max-width: 768px) {
  .rules-instruction__image {
    width: 19rem;
    height: 19rem;
    top: -6rem;
    left: 8.2rem;
  }
}
.rules-instruction__image img {
  width: 100%;
  height: 100%;
  display: block;
}
.rules-instruction__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 2rem;
  padding-left: 2rem;
}
.rules-instruction__li {
  font-size: 1.6rem;
}
.rules-info__text {
  font-size: 1.6rem;
  max-width: 104rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1rem;
}
.rules-forbidden__box {
  background: var(--light-blue);
  border-radius: 1rem;
  padding: 7.1rem 11.4rem;
  max-width: 104rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .rules-forbidden__box {
    padding: 2.9rem 2rem;
  }
}
.rules-forbidden__title {
  margin-bottom: 3rem;
  font-size: 3.2rem;
}
@media (max-width: 768px) {
  .rules-forbidden__title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.rules-forbidden__text {
  text-align: center;
  font-size: 1.6rem;
}

.routes-details {
  margin-bottom: 18rem;
}
@media (max-width: 768px) {
  .routes-details {
    margin-bottom: 6rem;
  }
}
.routes-details .section {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .routes-details .section {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.routes-details .section:nth-of-type(1) {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .routes-details .section:nth-of-type(1) {
    margin-top: 4.2rem;
  }
}
.routes-details .section:nth-last-of-type(1) {
  margin-bottom: 0;
}
.routes-details__download {
  margin: 0 auto;
  margin-top: 5rem;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30.8rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.routes-details__download_disabled {
  color: var(--text);
  pointer-events: none;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5333333333);
  z-index: 99;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 768px) {
  .modal {
    height: 100svh;
  }
}
.modal_open {
  visibility: visible;
  opacity: 1;
}
.modal_open .modal__inner {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.modal__inner {
  background: #fff;
  width: 69rem;
  height: 56rem;
  border-radius: 5rem;
  margin-top: auto;
  margin-bottom: auto;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  opacity: 0;
  -webkit-transform: translateY(20rem);
  -ms-transform: translateY(20rem);
  transform: translateY(20rem);
  padding: 4rem 3.5rem;
  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) {
  .modal__inner {
    margin-bottom: unset;
    padding: 4rem 1.4rem;
    padding-bottom: 2.9rem;
    height: auto;
    border-radius: 3.5rem 3.5rem 0 0;
  }
}
.modal__inner_success {
  height: 25rem;
  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;
}
.modal__inner_success .modal__title {
  margin-bottom: 1rem;
  max-width: 27rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .modal__inner_fiscal {
    padding-bottom: 1.7rem;
  }
}
.modal__inner_fiscal .modal__title {
  margin-bottom: 3.9rem;
}
@media (max-width: 768px) {
  .modal__inner_fiscal .modal__title {
    margin-bottom: 2.9rem;
  }
}
.modal__inner_fiscal .modal__form-submit {
  margin-top: 4.6rem;
}
@media (max-width: 768px) {
  .modal__inner_fiscal .modal__form-submit {
    margin-top: 9.6rem;
  }
}
@media (max-width: 768px) {
  .modal__inner_calendar {
    padding: 4.1rem 2rem 3.1rem 2rem;
  }
}
.modal__close {
  position: absolute;
  top: 3.5rem;
  right: 3.4rem;
  width: 1.9rem;
  height: 1.9rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .modal__close {
    top: 2.2rem;
    right: 2.4rem;
  }
}
.modal__close img, .modal__close svg {
  width: 100%;
  height: 100%;
  display: block;
}
.modal__title {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4.6rem;
}
@media (max-width: 768px) {
  .modal__title {
    max-width: 21.4rem;
    margin-bottom: 2.6rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.modal__image {
  width: 15.9rem;
  height: 7.1rem;
  margin: 0 auto;
  margin-bottom: 4.9rem;
}
.modal__image img {
  width: 100%;
  height: 100%;
  display: block;
}
.modal__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.modal__form-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4rem;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
  position: relative;
}
@media (max-width: 768px) {
  .modal__form-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.modal__form-block + .modal__form-block {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .modal__form-block + .modal__form-block {
    margin-top: 2rem;
  }
}
.modal__form-title {
  width: 15.7rem;
  font-size: 1.8rem;
  font-weight: 500;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-height: 4rem;
  max-height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .modal__form-title {
    min-height: unset;
    margin-bottom: 1rem;
  }
}
.modal__form-input {
  width: 100%;
  height: 4rem;
  font-weight: 300;
  font-size: 1.6rem;
  padding: 1rem 1.4rem;
  line-height: 1;
  border-radius: 1rem;
  border: 0.1rem solid var(--border);
  outline: none;
}
.modal__form-input::-webkit-input-placeholder {
  color: #828282;
}
.modal__form-input::-moz-placeholder {
  color: #828282;
}
.modal__form-input:-ms-input-placeholder {
  color: #828282;
}
.modal__form-input::-ms-input-placeholder {
  color: #828282;
}
.modal__form-input::placeholder {
  color: #828282;
}
.modal__form-input_area {
  height: 20.2rem;
  resize: none;
}
.modal__form-count {
  font-size: 1.6rem;
  font-weight: 300;
  color: #828282;
  position: absolute;
  right: 1.4rem;
  bottom: 1.2rem;
}
.modal__form-confirm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  margin-top: 3.4rem;
  margin-bottom: 3.1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 300;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .modal__form-confirm {
    max-width: 23rem;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.9rem;
    margin-bottom: 3.4rem;
  }
}
.modal__form-confirm input {
  pointer-events: none;
  opacity: 0;
  position: absolute;
}
.modal__form-confirm::before {
  content: "";
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  border: 0.1rem solid var(--border);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .modal__form-confirm::before {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.modal__form-confirm:has(input:checked)::before {
  content: "";
  background: var(--blue) url(/img/icons/check.svg);
  background-size: cover;
  border-color: var(--blue);
}
.modal__form-submit {
  background: var(--blue);
  color: #fff;
  margin: 0 auto;
  margin-top: auto;
  display: block;
}
.modal__year {
  margin-top: auto;
  text-align: center;
  display: block;
  font-size: 1.4rem;
  font-weight: 300;
  color: #000;
}
@media (max-width: 768px) {
  .modal__year {
    margin-top: 4.1rem;
  }
}

.footer {
  position: relative;
}
.footer__colored-lines {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.footer__colored-lines span {
  height: 0.6rem;
  width: 100%;
  display: block;
}
.footer__colored-lines span:nth-of-type(1) {
  background: var(--red);
}
.footer__colored-lines span:nth-of-type(2) {
  background: var(--yellow);
}
.footer__colored-lines span:nth-of-type(3) {
  background: var(--blue);
}
.footer__inner {
  padding-top: 6.8rem;
}
@media (max-width: 768px) {
  .footer__inner {
    padding-top: 3.7rem;
  }
}
.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.2rem;
}
@media (max-width: 768px) {
  .footer__top {
    margin-bottom: 2.5rem;
  }
}
.footer__logo {
  width: 21.9rem;
  height: 7.1rem;
}
@media (max-width: 768px) {
  .footer__logo {
    width: 10rem;
    height: 3.2rem;
  }
}
.footer__logo img {
  width: 100%;
  height: 100%;
  display: block;
}
.footer__title {
  font-size: 2rem;
  text-align: right;
  max-width: 37.7rem;
}
@media (max-width: 768px) {
  .footer__title {
    font-size: 1.4rem;
    max-width: 20rem;
  }
}
.footer__map {
  height: 25rem;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer__map {
    height: 11.2rem;
    margin-bottom: 3.7rem;
  }
}
.footer__map img {
  width: 100%;
  height: 100%;
  display: block;
}
.footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer__box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
  }
}
.footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1.5rem;
}
@media (max-width: 768px) {
  .footer__col:nth-of-type(1) {
    width: 13.1rem;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .footer__col:nth-of-type(2) {
    width: 13.1rem;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-top: -5.2rem;
  }
  .footer__col:nth-of-type(3) {
    width: 18rem;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 1.8rem;
  }
  .footer__col:nth-of-type(4) {
    width: 18rem;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}
.footer__text {
  font-size: 1.4rem;
  line-height: 1;
}
.footer__text_bold {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.footer__text_gray {
  text-decoration: none;
  color: #343434;
}
.footer__text_link {
  color: var(--blue);
  text-decoration: underline;
}
.footer__text_address {
  max-width: 16rem;
  line-height: 1.5;
  color: #343434;
}
.footer__text_wide {
  max-width: 37.7rem;
  font-size: 1.2rem;
  color: #343434;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .footer__text_wide {
    font-size: 1rem;
  }
}
.footer__text_company {
  color: var(--text);
  margin-bottom: auto;
}
.footer__text_company a {
  text-decoration: underline;
  color: var(--text);
}
@media (max-width: 768px) {
  .footer__text_company {
    text-align: center;
    font-size: 1.2rem;
  }
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}
.footer__social-icon {
  width: 3rem;
  height: 3rem;
}
.footer__social-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.footer__btn {
  display: inline-block;
  margin-right: auto;
  margin-bottom: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--blue);
  color: #fff;
  font-size: 1.4rem;
  height: auto;
}
@media (max-width: 768px) {
  .footer__btn {
    margin-bottom: 0;
    min-width: 13.9rem;
  }
}
.footer__bot {
  padding-top: 1.4rem;
  border-top: 0.1rem solid var(--border);
  height: 8.3rem;
  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;
}
@media (max-width: 768px) {
  .footer__bot {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 2.5rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: auto;
    padding-bottom: 1.8rem;
  }
}
.footer__2dit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-column-gap: 0.4rem;
  -moz-column-gap: 0.4rem;
  column-gap: 0.4rem;
}
.footer__2dit span {
  color: #6E6659;
  font-size: 1.2rem;
}
@media (min-width: 769px) {
  .footer__2dit:hover {
    -webkit-column-gap: 0.7rem;
    -moz-column-gap: 0.7rem;
    column-gap: 0.7rem;
  }
}
/*# sourceMappingURL=main.css.map */