@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
:root {
  --bodyBg: #ffffff;
  --bodyColor: #041d34;
  --borderColor: rgba(4,29,52,0.1);
  --borderRadius: 2rem;
  --primary: #007aff;
  --primaryRgb: 0,122,255;
  --linkHover: #1ea5ff;
  --light: #f5f8fa;
  --fontFamily: "Inter", sans-serif;
  --fontSize: 1rem;
  --fontWeight: 400;
  --lineHeight: 1.5;
  --transition: .2s ease;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
::selection {
  background-color: var(--primary);
  color: #ffffff;
  text-shadow: none;
}

-webkit-::selection {
  background-color: var(--primary);
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background-color: #2d1a6a;
  color: #ffffff;
  text-shadow: none;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bodyBg);
  font-family: var(--fontFamily);
  font-size: var(--fontSize);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  color: var(--bodyColor);
  text-align: left;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

p {
  margin-top: 0;
  margin-bottom: 1.5em;
}
p:last-child {
  margin-bottom: 0;
}

abbr[data-bs-original-title], abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol, ul {
  padding-left: 1.5em;
}
ol li, ul li {
  margin-bottom: 1.5em;
}
ol li:last-child, ul li:last-child {
  margin-bottom: 0;
}

dl, ol, ul {
  margin-top: 0;
  margin-bottom: 1rem;
}
dl:last-child, ol:last-child, ul:last-child {
  margin-bottom: 0;
}

ol ol, ol ul, ul ol, ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub, sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--linkHover);
  text-decoration: none;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

code, kbd, pre, samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img, svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

tbody, td, tfoot, th, thead, tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + .3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-fields-wrapper, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-text, ::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

/* General */
html {
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

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

.text--nowrap {
  white-space: nowrap;
}

.text--primary {
  color: var(--primary) !important;
}

iframe {
  display: block;
  border-radius: 2rem;
}

.video {
  position: relative;
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.video:last-child {
  margin-bottom: 0;
}
.video--center {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}
.video::before {
  content: "";
  display: block;
  padding-top: 60%;
}
.video > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 1.5rem;
  padding: 0;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}
h1 strong,
.h1 strong,
h2 strong,
.h2 strong,
h3 strong,
.h3 strong,
h4 strong,
.h4 strong,
h5 strong,
.h5 strong,
h6 strong,
.h6 strong {
  font-weight: 600;
}

h1,
.h1 {
  font-weight: 600;
  font-size: 1.75rem;
}

h2,
.h2 {
  font-weight: 600;
  font-size: 1.35rem;
}

@media (min-width: 992px) {
  h1,
.h1 {
    font-size: 2.5rem;
  }

  h2,
.h2 {
    font-size: 1.6rem;
  }
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  position: relative;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.65rem 1.5rem;
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
}
.btn--block + .btn--block {
  margin-top: 0.5rem;
}
.btn:hover {
  background-color: var(--linkHover);
  border-color: var(--linkHover);
  color: #ffffff;
}
.btn__text {
  position: relative;
}
.btn__icon {
  margin-left: 0.5rem;
  position: relative;
  transition: var(--transition);
}
.btn__icon svg {
  display: block;
}
.btn__icon svg path {
  fill: #ffffff;
  transition: fill 0.15s ease-in-out;
}
.btn--block {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.btn[disabled] {
  border-color: #cecece;
  background-color: #cecece;
  cursor: default;
}

.container {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .container {
    /*max-width: 540px;*/
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }
}

/* Wrapper */
html,
body {
  height: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}
.wrapper #header {
  flex: 0 0 auto;
}
.wrapper .main {
  flex: 1 0 auto;
}
.wrapper #footer {
  flex: 0 0 auto;
}

/* Header */
.header {
  position: fixed;
  z-index: 990;
  left: 0;
  right: 0;
  top: 0;
  background-color: var(--primary);
  padding: 0.8rem 1rem;
  color: #ffffff;
}
@media (min-width: 992px) {
  .header {
    padding: 0.8rem 2rem;
  }
}

.navbar {
  display: flex;
  align-items: center;
}
.navbar__brand {
  margin-right: auto;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand__logo {
  width: 1.8rem;
  height: 1.4rem;
  margin-right: 0.35rem;
}
.brand__text {
  line-height: 1.2;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.navbar__nav {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 990;
  background: rgba(var(--primaryRgb), 0.9);
  padding: 4rem 2rem 2rem;
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  transition: var(--transition);
}
.body-menu-opened .navbar__nav {
  transform: translateX(0%);
}
@media (min-width: 768px) {
  .navbar__nav {
    padding: 0;
    position: static;
    background-color: transparent;
    transform: none;
    opacity: 1;
    visibility: visible;
    flex-direction: row;
    align-items: center;
  }
}

.nav {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  flex-direction: column;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
}
.nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__item {
  margin-bottom: 0;
}
.nav__link {
  display: flex;
  padding: 11px 0;
  text-decoration: none;
  color: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  transition: var(--transition);
}
.nav__item.active .nav__link, .nav__link:hover {
  color: #9cbeff;
}
@media (min-width: 768px) {
  .nav {
    width: auto;
    height: auto;
    overflow: visible;
  }
  .nav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .nav__item {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
  }
  .nav__item::before {
    content: "";
    display: block;
    width: 8.94px;
    height: 0px;
    opacity: 0.3;
    border: 1px solid #ffffff;
    position: absolute;
    left: -4px;
    top: 50%;
    margin-top: -1px;
    transform: rotate(-63.43deg);
  }
  .nav__item:first-child::before {
    display: none;
  }
  .nav__item:last-child {
    padding-right: 0;
  }
  .nav__link {
    padding: 0;
    font-size: 0.8rem;
  }
}
@media (min-width: 992px) {
  .nav__link {
    padding: 0;
  }
}

.navbar__toggle {
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.navbar__toggle-icon {
  width: 32px;
  height: 2px;
  background-color: #ffffff;
  margin-top: 12px;
  margin-bottom: 12px;
  position: relative;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.navbar__toggle-icon:before, .navbar__toggle-icon:after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.navbar__toggle-icon:before {
  top: -10px;
}
.navbar__toggle-icon:after {
  bottom: -10px;
}
.body-menu-opened .navbar__toggle-icon {
  background-color: transparent;
}
.body-menu-opened .navbar__toggle-icon:before {
  transform: rotate(135deg);
  top: 0;
}
.body-menu-opened .navbar__toggle-icon:after {
  transform: rotate(-135deg);
  bottom: 0;
}
@media (min-width: 768px) {
  .navbar__toggle {
    display: none;
  }
}

.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.section--light {
  background-color: var(--light);
}
.section__title {
  margin-bottom: 1rem;
  position: relative;
  color: var(--primary);
  /*font-size: 1.6rem;*/
  font-weight: 700;
  line-height: 1.2;
}
.section__title::before {
  content: "";
  display: block;
  width: 59px;
  height: 59px;
  position: absolute;
  left: 0;
  top: 50%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath opacity='0.5' fill='%23007AFF' d='M1.31134e-07 1.49999C2.03558e-07 0.671565 0.67157 -7.89676e-06 1.5 -7.82434e-06C2.32843 -7.75191e-06 3 0.671565 3 1.49999C3 2.32842 2.32843 2.99999 1.5 2.99999C0.67157 2.99999 5.87108e-08 2.32842 1.31134e-07 1.49999Z'/%3e%3c/svg%3e");
  background-size: 8px 8px;
  background-repeat: repeat;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  .section {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
  .section__title::before {
    width: 91px;
    height: 91px;
  }
}

/* Promo */
.promo {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 74vH;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: linear-gradient(0deg, rgba(16, 16, 16, 0.2), rgba(16, 16, 16, 0.2)), url("../img/bg-promo.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #053158;
  color: #ffffff;
}
.promo__content {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin: auto;
  width: 70%;
  max-width: 840px;
  text-align: center;
  position: relative;
  z-index: 100;
}
.promo__title {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
}
.promo__descr {
  margin-top: 2rem;
  line-height: 1.2;
  font-weight: 600;
  font-size: 1.2rem;
}
.promo__more {
  position: absolute;
  left: 50%;
  bottom: 7.4vH;
  transform: translate(-50%, 0);
}
.promo__more svg {
  width: 0.8rem;
  height: 2.4rem;
  display: block;
  animation: moving 0.75s linear infinite;
  animation-direction: alternate;
}
.promo__more svg path {
  fill: #ffffff;
}
@media (min-width: 992px) {
  .promo__title {
    font-size: 3.2rem;
  }
  .promo__descr {
    font-size: 1.35rem;
  }
}
@media (min-width: 1200px) {
  .promo__title {
    font-size: 4.8rem;
  }
  .promo__descr {
    font-size: 1.6rem;
  }
}
@media (min-width: 1400px) {
  .promo {
    min-height: 800px;
  }
}

.circle {
  display: block;
  aspect-ratio: 1/1;
  border-radius: 500px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  position: absolute;
}
.circle--1 {
  width: 15.625%;
  left: 13.125%;
  bottom: 5%;
}
.circle--2 {
  width: 11.6875%;
  left: 1.25%;
  bottom: 36.25%;
}
.circle--3 {
  width: 15.625%;
  left: -14.375%;
  bottom: 5%;
}
.circle--4 {
  width: 11.6875%;
  left: 1.25%;
  bottom: -18.25%;
}
.circle--5 {
  width: 15.625%;
  right: 15.375%;
  top: -1.875%;
}
.circle--6 {
  width: 15.625%;
  right: -11.875%;
  top: -1.875%;
}
.circle--7 {
  width: 11.6875%;
  right: 3.75%;
  top: 29.375%;
}

@keyframes moving {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
/* About */
.about__title {
  margin-bottom: 2.35rem;
}
.about__column-left, .about__column-main {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .about__row {
    display: flex;
    flex-wrap: wrap;
  }
  .about__column-left {
    width: 100%;
    margin-bottom: 1rem;
  }
  .about__column-main {
    width: 55%;
    margin-right: auto;
  }
  .about__column-sidebar {
    width: 35%;
  }
}
@media (min-width: 1200px) {
  .about__column-left {
    width: 17.1875%;
    padding-right: 2rem;
  }
  .about__column-sidebar {
    width: 22.65625%;
  }
}

.box {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 0.6rem;
}
.section--light .box {
  background-color: #ffffff;
  box-shadow: 5px 5px 30px rgba(159, 173, 182, 0.1);
}

.item-statistic {
  margin-bottom: 2rem;
  color: var(--primary);
  line-height: 1.2;
}
.item-statistic:last-child {
  margin-bottom: 0;
}
.item-statistic__value {
  font-size: 2.4rem;
  font-weight: 700;
}
.item-statistic__param {
  font-size: 1rem;
  font-weight: 600;
}

.advantage {
  border-top: var(--borderColor) 1px solid;
  border-bottom: var(--borderColor) 1px solid;
  padding-top: 2.5rem;
  padding-bottom: 1.35rem;
}
.advantage__item {
  margin-bottom: 1.15rem;
  padding-left: 1.9rem;
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}
.advantage__item::before {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 15'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' fill='%2331DF2E' d='M17.5064 1.13771C18.1207 1.69351 18.1681 2.64207 17.6123 3.25638L8.1123 13.7564C7.83668 14.061 7.44816 14.2393 7.03747 14.2495C6.62677 14.2598 6.22984 14.1012 5.93934 13.8107L0.43934 8.31067C-0.146447 7.72488 -0.146447 6.77514 0.43934 6.18935C1.02513 5.60357 1.97487 5.60357 2.56066 6.18935L6.94564 10.5743L15.3877 1.24364C15.9435 0.629333 16.8921 0.581905 17.5064 1.13771Z'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 0.9rem;
  height: 0.75rem;
  position: absolute;
  left: 0;
  top: 0.25rem;
}
@media (min-width: 768px) {
  .advantage__row {
    columns: 2;
    column-gap: 2rem;
  }
  .advantage__item {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}
@media (min-width: 992px) {
  .advantage__row {
    columns: 3;
  }
}
@media (min-width: 1400px) {
  .advantage__row {
    columns: 4;
  }
}

.geography__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.geography__header .section__title {
  margin-bottom: 0;
}
.geography__title {
  padding-bottom: 1.5rem;
  border-bottom: var(--borderColor) 1px solid;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}
.geography__group {
  margin-bottom: 3rem;
  columns: 2;
  column-gap: 1rem;
}
.geography__country {
  margin-bottom: 1rem;
  break-inside: avoid;
  page-break-inside: avoid;
}
.geography__country-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
}
.geography__city {
  display: block;
  overflow: hidden;
  margin-top: 0.4rem;
  padding-left: 0.85rem;
  position: relative;
  font-size: 0.8rem;
  color: #6d6e6f;
}
.geography__city::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0.4rem;
  background-color: var(--primary);
  position: absolute;
  left: 0;
  top: 0.4rem;
}
.geography__city.primary-city {
  padding-left: 1rem;
  color: var(--primary);
}
.geography__city.primary-city::before {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.7rem;
  top: 0.25rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3e%3cpath fill='%23ffffff' d='M5 0L6.12257 3.45492H9.75528L6.81636 5.59017L7.93893 9.04508L5 6.90983L2.06107 9.04508L3.18364 5.59017L0.244718 3.45492H3.87743L5 0Z'/%3e%3c/svg%3e");
  background-size: 0.5rem 0.5rem;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media (min-width: 576px) {
  .geography__group {
    columns: 3;
  }
}
@media (min-width: 768px) {
  .geography__row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .geography__column {
    width: 50%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .geography__column--lg {
    width: 100%;
  }
  .geography__group {
    columns: 1;
  }
  .geography__column--lg .geography__group {
    columns: 2;
  }
}
@media (min-width: 992px) {
  .geography__column {
    width: 25%;
  }
  .geography__column--lg {
    width: 50%;
  }
  .geography__group {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .geography__column--lg .geography__group {
    columns: 3;
  }
}

.tariff__descr {
  font-size: 0.8rem;
}
.tariff__note {
  opacity: 0.5;
  margin-top: 0.75rem;
  font-size: 0.8rem;
}
.tariff__btn {
  margin-top: 1.1rem;
}
.tariff__sidebar {
  margin-bottom: 3rem;
}
.tariff .box {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}
.tariff__tbl {
  min-width: 500px;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
}
.tariff__tbl + .tariff__tbl {
  margin-top: 2.5rem;
}
.tariff__tbl-header {
  padding-bottom: 1rem;
  border-bottom: var(--borderColor) 1px solid;
  margin-bottom: 1rem;
}
.tariff__tbl-header .tariff__tbl-td:first-child {
  font-size: 1rem;
  font-weight: 700;
}
.tariff__tbl-body .tariff__tbl-td {
  color: rgba(4, 29, 52, 0.5);
}
.tariff__tbl-body .tariff__tbl-td:first-child {
  font-weight: 600;
  color: var(--bodyColor);
}
.tariff__tbl-row {
  display: flex;
  flex-wrap: nowrap;
  --bs-gutter-y: 0;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.tariff__tbl-row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  flex: 1 0 0%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.tariff__tbl-row + .tariff__tbl-row {
  margin-top: 1rem;
}
@media (min-width: 1200px) {
  .tariff__row {
    display: flex;
    justify-content: space-between;
  }
  .tariff__sidebar {
    width: 20%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  .tariff__sidebar > * {
    width: auto;
  }
  .tariff__descr {
    margin-top: auto;
    padding-right: 30%;
  }
  .tariff__main {
    width: 74.21875%;
  }
}

/* Footer */
.footer {
  background-color: var(--bodyColor);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  color: #ffffff;
  font-size: 0.8rem;
}
.footer__main {
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .footer__row {
    display: flex;
    justify-content: space-between;
  }
  .footer__sidebar {
    margin-right: 2rem;
  }
  .footer__main {
    width: 620px;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .footer {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.copyright {
  margin-top: 2rem;
  font-size: 0.7rem;
  color: rgba(238, 240, 244, 0.5);
}

.contact__title {
  margin-bottom: 0.5rem;
  font-weight: 700;
}
@media (min-width: 992px) {
  .contact__row {
    margin-left: -1rem;
    margin-right: -1rem;
    display: flex;
  }
  .contact__column {
    width: 33.33333333%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.item-contact {
  margin-top: 1rem;
  display: flex;
}
.item-contact__icon {
  flex: 0 0 auto;
}
.item-contact__icon img,
.item-contact__icon svg {
  width: 1rem;
  height: auto;
  margin-right: 0.5rem;
}
.item-contact__icon img path,
.item-contact__icon svg path {
  fill: var(--primary);
}
.item-contact a {
  color: inherit;
}
.item-contact a:hover {
  color: var(--primary);
}
@media (min-width: 992px) {
  .item-contact:first-child {
    margin-top: 0;
  }
}

.network-map {
  overflow: hidden;
  height: 1200px;
  margin-bottom: 25px;
}

@media (max-width: 1400px) {
  .network-map {
    height: 941px;
    display: flex;
  }
}
@media (max-width: 1200px) {
  .network-map {
    display: none;
  }
}
.network-map__hidden {
  position: absolute;
  width: 100%;
}

@media (max-width: 1700px) {
  .network-map__hidden {
    transform: scale(0.8);
  }
}
@media (max-width: 1400px) {
  .network-map__hidden {
    transform: scale(0.7);
  }
}
.network-map__box {
  width: 1956px;
  height: 1131px;
  background-position: center;
  transition: 1s;
  left: 50%;
  margin-left: -978px;
  top: 0;
  position: relative;
}

.network-point {
  position: absolute;
  display: block;
  border-radius: 100%;
  background: var(--primary);
  width: 12px;
  height: 12px;
  transition: 0.3s;
  cursor: pointer;
}

.network-point--true {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMCAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCjxwYXRoIGQ9Ik01IDFMNS44OTgwNiAzLjc2MzkzSDguODA0MjNMNi40NTMwOCA1LjQ3MjE0TDcuMzUxMTQgOC4yMzYwN0w1IDYuNTI3ODZMMi42NDg4NiA4LjIzNjA3TDMuNTQ2OTIgNS40NzIxNEwxLjE5NTc3IDMuNzYzOTNINC4xMDE5NEw1IDFaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
  background-position: center;
}

.network-point__info {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: -5;
  background: #fff;
  border: 1px solid var(--primary);
  box-sizing: border-box;
  box-shadow: 3px 3px 0px rgba(var(--primaryRgb), 0.2);
  border-radius: 2px;
  left: 50%;
  top: -85px;
  margin-left: -70px;
  min-width: 140px;
  padding: 10px 15px;
  box-sizing: content-box;
  transition: 0.3s;
}

.network-point__title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  color: #000;
  white-space: nowrap;
}

.network-point__text {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #7f8893;
  white-space: nowrap;
}

.network-point:hover {
  background-color: rgba(var(--primaryRgb), 0.5);
}

.network-point:hover .network-point__info {
  opacity: 1;
  visibility: visible;
  z-index: 30;
}

@media (min-width: 992px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 20px;
  }
}