@charset "UTF-8";

@font-face {
  font-family: "Orelega One";
  font-display: swap;
  src: url("../fonts/OrelegaOne-Regular.woff") format("woff"), url("../fonts/OrelegaOne-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Raleway";
  font-display: swap;
  src: url("../fonts/Raleway-Medium.woff") format("woff"), url("../fonts/Raleway-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Raleway";
  font-display: swap;
  src: url("../fonts/Raleway-Regular.woff") format("woff"), url("../fonts/Raleway-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "Raleway";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Raleway";
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  color: #232323;
  font-size: 16px;
  background: #F0F6F2;
  font-variant-numeric: lining-nums proportional-nums;
}

body::after {
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

body._lock {
  overflow: hidden;
}

body._lock::after {
  opacity: 1;
  pointer-events: all;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0px 20px;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0px 0px;
}

.btn._fw {
  width: 100%;
}

.select {
  position: relative;
}

.select__item {
  position: relative;
}

.select__title {
  color: #000;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.select__value span {
  height: 1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.select__value:before {
  content: "";
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 11px;
  height: 7px;
  background: url("../img/icons/select.svg") center/100% no-repeat;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  display: none;
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}

.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}

.select._active {
  z-index: 5;
}

.select._active .select__value:before {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select._active .select__options {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
}

textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.checkbox__input:checked + .checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
}

.checkbox__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: calc(20 / 16);
  cursor: pointer;
}

.checkbox__text:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 14px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}

.checkbox a {
  color: #fff;
  text-decoration: underline;
}

.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.options__item {
  position: relative;
  cursor: pointer;
}

.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}

.options__input:checked + .options__text:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.options__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: calc(20 / 16);
}

.options__text:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 14px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}

.options__text:after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating-block {
  display: table;
  font-size: 0;
}

.rating {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.rating.edit .star {
  cursor: pointer;
}

.rating .star {
  width: 17px;
  height: 14px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

.rating__line {
  position: absolute;
  width: 85px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating.svg") 0 0 no-repeat;
  z-index: 1;
  background-size: 85px 100%;
}

.rating__activeline {
  position: absolute;
  width: 0px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating_active.svg") 0 0 no-repeat;
  z-index: 2;
  background-size: 85px 100%;
}

.rating__value {
  display: inline-block;
  color: #1b3139;
  font-size: 14px;
  line-height: 13px;
  vertical-align: middle;
}

.quantity {
  width: 88px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}

.quantity__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}

.quantity__button::before,
.quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}

.quantity__button_plus::before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.quantity__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

img,
svg {
  vertical-align: middle;
}

.row:after {
  display: block;
  content: "";
  clear: both;
}

.rub:after {
  content: "₽";
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}

ol.counter li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

ol.counter li:before {
  counter-increment: item;
  content: counter(item) ".";
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}

.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}

._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}

.video video,
.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

.moretext {
  overflow: hidden;
}

.moretext__more {
  cursor: pointer;
}

.moretext__more span {
  font-style: normal;
}

.moretext__more span:first-child {
  display: block;
}

.moretext__more span:last-child {
  display: none;
}

.moretext__more.active span {
  font-style: normal;
}

.moretext__more.active span:first-child {
  display: none;
}

.moretext__more.active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
}

._swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

._swiper.swiper-container-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._swiper.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

.slick-slider {
  position: relative;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slick-slider .slick-track {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-slider .slick-slide {
  position: relative;
}

.tab__item {
  display: none;
}

.tab__item.active {
  display: block;
}

._tabs-block {
  display: none;
}

._tabs-block._active {
  display: block;
}

.mirror {
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

.baloon {
  opacity: 1;
  right: -7px !important;
  bottom: 80px !important;
}

.baloon button {
  display: none !important;
}

.baloon:after {
  display: none !important;
}

.baloon-style {
  display: none;
}

.baloon-content.gm-style-iw {
  opacity: 1;
  border-radius: 0px !important;
  max-width: 300px !important;
  padding: 0 !important;
  left: 0 !important;
  width: 100% !important;
  overflow: visible !important;
}

.baloon-content.gm-style-iw > .gm-style-iw-d {
  overflow: hidden !important;
  max-width: none !important;
}

.baloon-content.gm-style-iw:after {
  display: none !important;
}

.gm-style .gm-style-iw-c {
  padding: 0px !important;
  border-radius: 20px;
  -webkit-box-shadow: 0px 36px 12px -21px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 36px 12px -21px rgba(0, 0, 0, 0.12);
  width: 330px;
  max-width: calc(100% - 20px) !important;
  max-height: unset !important;
}

.gm-ui-hover-effect {
  top: 0px !important;
  right: 0px !important;
}

.gm-style-iw-d {
  padding: 0px !important;
  overflow: visible !important;
  max-height: unset !important;
}

.gmnoprint,
.gm-fullscreen-control,
.gm-svpc {
  display: none;
}

.gm-style {
  font-family: "Raleway";
}

.gm-style * {
  font-family: "Orelega One" !important;
  font-weight: 400 !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}

._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}

.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
}

.popup.show {
  visibility: visible;
  overflow: auto;
}

.popup.show::before {
  opacity: 1;
}

.popup.show .popup__body {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup._active {
  overflow: auto;
  visibility: visible;
}

.popup._active::before {
  opacity: 1;
}

.popup._active .popup__body {
  -webkit-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.2s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__body {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}

.popup__close {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") 0 0 no-repeat;
}

.header {
  padding: 12px 0px;
  background: #fff;
  -webkit-box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  width: 200px;
}

.header__logo img,
.header__logo svg {
  width: 100%;
  max-width: 100%;
}

.header__menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.header__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.header__hotline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-radius: 8px;
  background: rgba(70, 188, 129, 0.15);
  padding: 14px 35px;
  color: #46BC81;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__hotline img,
.header__hotline svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.header__resize {
  border-radius: 8px;
  border: 1px solid #F0F0F0;
  background: #FFF;
  -webkit-box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 52px;
          flex: 0 0 52px;
  height: 52px;
  width: 52px;
  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;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__resize img,
.header__resize svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.menu__top {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.menu__link._spoller._active::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.menu__link._spoller::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  height: 16px;
  background: url(../img/icons/spoller.svg) center/cover no-repeat;
  margin-left: auto;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu__sublist {
  position: absolute;
  top: calc(100% + 10px);
  left: -20px;
  min-width: 220px;
}

.menu__other {
  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: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

.menu__hotline {
  border-radius: 8px;
  background: #E3F5EC;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
  color: #46BC81;
  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;
  width: 100%;
  max-width: 100%;
}

.menu__hotline img,
.menu__hotline svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.menu__logo {
  width: 80px;
}

.menu__logo img,
.menu__logo svg {
  width: 100%;
  max-width: 100%;
}

.menu__apps {
  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;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.menu__app {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 123px;
          flex: 0 0 123px;
}

.menu__app img,
.menu__app svg {
  width: 100%;
  max-width: 100%;
}

.menu__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.menu__socials img,
.menu__socials svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.menu__images {
  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;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.top-menu {
  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;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  padding: 23px 20px;
  background: #fff;
  -webkit-box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
}

.top-menu__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  width: 200px;
}

.top-menu__logo img,
.top-menu__logo svg {
  width: 100%;
  max-width: 100%;
}

.top-menu__close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28px;
          flex: 0 0 28px;
  height: 28px;
  width: 28px;
}

.top-menu__close img,
.top-menu__close svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.sublist-menu {
  display: none;
}

.sublist-menu__back {
  flex: 0 0 24px;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
}

.sublist-menu__back img,
.sublist-menu__back svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.sublist-menu__title {
  color: #232323;
  font-family: "Orelega One";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}

.sublist-menu__link {
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding: 6px 20px;
}

.sublist-menu__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  height: 32px;
  width: 32px;
}

.sublist-menu__icon img,
.sublist-menu__icon svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.language-header {
  position: relative;
}

.language-header__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  cursor: pointer;
}

.language-header__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22px;
          flex: 0 0 22px;
  width: 22px;
}

.language-header__icon img,
.language-header__icon svg {
  width: 100%;
  max-width: 100%;
}

.language-header__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  width: 16px;
}

.language-header__list {
  position: absolute;
  top: calc(100% + 3px);
  left: -12px;
  background: #fff;
  -webkit-box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
  padding: 12px;
  border-radius: 6px;
  display: none;
  z-index: 10;
}

.language-header__item {
  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;
}

.language-header__item:not(:last-child) {
  margin-bottom: 10px;
}

.language-header__item img,
.language-header__item svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22px;
          flex: 0 0 22px;
  width: 22px;
}

.head_logo_partner {
  display: flex;
  gap: 5px;
}
.main-head__intersos, .main-head__eu{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.main-head__intersos img, .main-head__eu img{
  width: 80%;
  display: flex;
}

.icon-menu {
  display: none;
}

.footer {
  background: #FFF;
  padding: 40px 0px;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__name {
  color: #232323;
  font-family: "Orelega One";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__list {
  margin-top: 20px;
  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: 20px;
}

.footer__link {
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__hotline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-radius: 8px;
  background: rgba(70, 188, 129, 0.15);
  padding: 14px 35px;
  color: #46BC81;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__hotline img,
.footer__hotline svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.footer__socials {
  margin-top: 30px;
}

.main-footer {
  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: 30px;
}

.main-footer__logo {
  width: 80px;
}

.main-footer__logo img,
.main-footer__logo svg {
  width: 100%;
  max-width: 100%;
}

.main-footer__apps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.main-footer__app {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 123px;
          flex: 0 0 123px;
}

.main-footer__app img,
.main-footer__app svg {
  width: 100%;
  max-width: 100%;
}

.main-footer__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.main-footer__intersos {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 71px;
          flex: 0 0 71px;
}

.main-footer__intersos img,
.main-footer__intersos svg {
  width: 100%;
  max-width: 100%;
}

.main-footer__eu {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 71px;
          flex: 0 0 71px;
}

.main-footer__eu img,
.main-footer__eu svg {
  width: 100%;
  max-width: 100%;
}

.socials-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.socials-footer__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.socials-footer__item img,
.socials-footer__item svg {
  width: 100%;
  max-width: 100%;
  max-width: 100%;
}

.callback-sticky {
  width: 62px;
  height: 62px;
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom));
  right: 20px;
  background: #63459F;
  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;
  border-radius: 50%;
  -webkit-box-shadow: 0px 6px 12px rgba(101, 68, 138, 0.25);
          box-shadow: 0px 6px 12px rgba(101, 68, 138, 0.25);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.banner {
  padding: 30px 0px;
}

.banner__wrapper {
  position: relative;
}

.banner__slider {
  border-radius: 16px;
}

.banner__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 16px;
  height: 500px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  padding: 35px 0;
}

.banner__item:not(:last-child) {
  margin-right: 10px;
}

.banner__info {
  width: 100%;
  max-width: 550px;
  margin-left: 120px;
  position: relative;
  z-index: 1;
}

.banner__services {
  padding: 7px 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: #46BC81;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  border-radius: 4px;
  background: #FFF;
  -webkit-box-shadow: 0px 8px 8px -4px rgba(24, 39, 75, 0.08), 0px 4px 6px -4px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 8px -4px rgba(24, 39, 75, 0.08), 0px 4px 6px -4px rgba(24, 39, 75, 0.12);
}

.banner__services img,
.banner__services svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.banner__title {
  color: #fff;
  font-family: "Orelega One";
  font-size: 51px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.banner__text {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin-top: 15px;
}

.banner__more {
  padding: 14px 32px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-radius: 8px;
  background: #63459F;
  margin-top: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor:pointer;
}

.banner__more img,
.banner__more svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.banner__image {
  position: absolute;
  top: 0;
  right: -5px;
  width: 835px;
  max-height: 100%;
}

.banner__image img {
  max-width: 100%;
  max-height: 100%;
}

.banner__arrow {
  background: #fff;
  -webkit-box-shadow: 0px 6px 20px rgba(29, 36, 71, 0.08);
          box-shadow: 0px 6px 20px rgba(29, 36, 71, 0.08);
  height: 50px;
  width: 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  border-radius: 50%;
  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;
  position: absolute;
  z-index: 1;
  top: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.banner__arrow.banner-arrow-prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.banner__arrow.banner-arrow-next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.banner__arrow img,
.banner__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.banner__paggination {
  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;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
}

.banner__paggination .swiper-pagination-bullet {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  border: 3px solid transparent;
  -webkit-transition: all 0.1s ease 0s;
  -o-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
  cursor: pointer;
}

.banner__paggination .swiper-pagination-bullet-active {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  width: 16px;
  background: rgba(255, 255, 255, 0);
  border-color: #fff;
}

.head-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 20px;
}

.head-section__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.head-section__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  height: 32px;
  width: 32px;
}

.head-section__icon img,
.head-section__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.head-section__back {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  width: 26px;
  height: 26px;
  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;
  background: #C0E7D1;
  border-radius: 4px;
}

.head-section__back img,
.head-section__back svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.head-section__navigation {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.head-section__icon-toppic {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  height: 32px;
  width: 32px;
}

.head-section__icon-toppic img,
.head-section__icon-toppic svg {
  max-width: 100%;
  max-height: 100%;
}

.head-section__more {
  color: #46BC81;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.56px;
}

._title {
  color: #232323;
  font-family: "Orelega One";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.navigation-head__top {
  display: none;
}

.navigation-head__name {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.navigation-head__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  width: 16px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.navigation-head__arrow img,
.navigation-head__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  max-height: 100%;
}

.navigation-head__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
}

.navigation-head__check {
  cursor: pointer;
}

.navigation-head__radio {
  display: none;
}

.navigation-head__radio:checked + .navigation-head__value {
  color: #fff;
  background: #63459F;
}

.navigation-head__value {
  color: #63459F;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
  padding: 10px 20px;
  border-radius: 8px;
  background: #F0EDF4;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.topics-section {
  padding: 35px 0px;
}

.topics-section__content {
  margin-top: 30px;
  position: relative;
}

.topics-section__slider {
  margin: -15px;
  padding: 15px;
}

.topics-section__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
          flex: 0 0 calc((100% - 30px * 2) / 3);
}

.topics-section__item:not(:last-child) {
  margin-right: 30px;
}

.topics-section__arrow {
  background: #fff;
  -webkit-box-shadow: 0px 6px 20px rgba(29, 36, 71, 0.08);
          box-shadow: 0px 6px 20px rgba(29, 36, 71, 0.08);
  height: 50px;
  width: 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  border-radius: 50%;
  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;
  position: absolute;
  z-index: 1;
  top: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.topics-section__arrow.topics-section-arrow-prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.topics-section__arrow.topics-section-arrow-next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.topics-section__arrow img,
.topics-section__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.topics-section__paggination {
  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;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  margin-top: 15px;
}

.topics-section__paggination .swiper-pagination-bullet {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  height: 10px;
  width: 10px;
  background: #C0E7D1;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
}

.topics-section__paggination .swiper-pagination-bullet-active {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  width: 16px;
  background: transparent;
  border-color: #46BC81;
}

.topic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 16px;
  background: #FFF;
  -webkit-box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
  overflow: hidden;
}

.topic__head {
  width: 100%;
  max-width: 100%;
  position: relative;
  display: block;
  padding-bottom: 67%;
}

.topic__head img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.topic__body {
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 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: 15px;
}

.topic__name {
  color: #232323;
  font-family: "Orelega One";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.topic__name img,
.topic__name svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 32px;
  height: 32px;
}

.topic__description {
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  max-width: 100%;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-line-clamp: 3;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  margin-top: auto;
}

.topic__services {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  padding: 6px 12px;
  border-radius: 4px;
  background: #E3F5EC;
  color: #46BC81;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}

.topic__services::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
  background: url(../img/icons/local.svg) center/cover no-repeat;
}

.topic__button {
  min-height: 40px;
  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;
  border-radius: 8px;
  background: #63459F;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mapping {
  padding: 35px 0px;
}

.mapping._page .mapping__map {
  height: 600px;
}

.mapping__content {
  margin-top: 30px;
  padding: 10px;
  border-radius: 20px;
  background: #FFF;
  -webkit-box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
}

.mapping__map {
  height: 500px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.marker {
  padding: 20px 30px 20px 20px;
}

.marker * {
  font-family: "Raleway" !important;
}

.marker__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.marker__name {
  color: #232323;
  font-family: "Orelega One" !important;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.marker__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 56px;
          flex: 0 0 56px;
  width: 56px;
}

.marker__logo img,
.marker__logo svg {
  width: 100%;
  max-width: 100%;
}

.marker__body {
  margin-top: 20px;
}

.marker__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: 20px;
}

.marker__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.marker__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.marker__icon img,
.marker__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  max-height: 100%;
}

.marker__value {
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.marker__more {
  border-radius: 8px;
  background: #65448A;
  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;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
  letter-spacing: 0.56px;
  text-align: center;
  min-height: 40px;
  margin-top: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.other {
  padding: 35px 0px;
}

.other__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.other__help {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
          flex: 0 0 calc((100% - 30px * 1) / 2);
}

.other__callback {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
          flex: 0 0 calc((100% - 30px * 1) / 2);
}

.help__content {
  margin-top: 30px;
}

.help__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: 15px;
}

.help__item {
  border-radius: 16px;
  background: #FFF;
  -webkit-box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
  padding: 50px;
}

.help__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  cursor: pointer;
}

.help__main._active .help__icon span {
  background: #46BC81;
}

.help__main._active .help__icon span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
      -ms-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.help__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #232323;
  font-family: "Orelega One";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.help__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
  position: relative;
}

.help__icon span {
  width: 14px;
  height: 2px;
  background: #63459F;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.help__icon span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.help__body {
  display: none;
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 10px;
}

.callback-other {
  padding: 30px 40px;
  border-radius: 16px;
  background: #FFF;
  -webkit-box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.callback-other__wrapper {
  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;
  row-gap: 15px;
  width: 100%;
  max-width: 100%;
}

.callback-other__image {
  width: 103px;
}

.callback-other__image img,
.callback-other__image svg {
  width: 100%;
  max-width: 100%;
}

.callback-other__title {
  color: #232323;
  font-family: "Orelega One";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.callback-other__text {
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.callback-other__phone {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.callback-other__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  height: 42px;
  width: 42px;
}

.callback-other__icon img,
.callback-other__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  max-height: 100%;
}

.callback-other__value {
  color: #63459F;
  font-family: "Orelega One";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contacts__wrapper {
  padding: 40px;
  border-radius: 16px;
  background: #FFF;
  -webkit-box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.contacts__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 1) / 2);
          flex: 0 0 calc((100% - 40px * 1) / 2);
}

.contacts__form {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 1) / 2);
          flex: 0 0 calc((100% - 40px * 1) / 2);
}

.info-contacts__title {
  color: #232323;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Orelega One";
}

.info-contacts__list {
  margin-top: 30px;
  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: 20px;
}

.info-contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.info-contacts__icon {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.info-contacts__icon img,
.info-contacts__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.info-contacts__value {
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.info-contacts__value a {
  color: inherit;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.info-contacts__map {
  color: #46BC81 !important;
}

.form-contacts__title {
  color: #232323;
  font-size: 26px;
  font-family: "Orelega One";
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

.form-contacts__content {
  margin-top: 30px;
  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: 20px;
}

.form-contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
}

.form-contacts__item {
  flex: 1;
}

.form-contacts__input {
  border-radius: 8px;
  background: #F1F1F1;
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding: 12px 20px;
  line-height: 1.3;
  border: 1px solid #F1F1F1;
  width: 100%;
  max-width: 100%;
  min-width: 0px;
}

.form-contacts__input::-webkit-input-placeholder {
  color: #a9a9a9;
}

.form-contacts__input::-moz-placeholder {
  color: #a9a9a9;
}

.form-contacts__input:-ms-input-placeholder {
  color: #a9a9a9;
}

.form-contacts__input::-ms-input-placeholder {
  color: #a9a9a9;
}

.form-contacts__input::placeholder {
  color: #a9a9a9;
}

.form-contacts__input:focus {
  border-color: #63459F;
}

.form-contacts__textarea {
  border-radius: 8px;
  background: #F1F1F1;
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding: 12px 20px;
  line-height: 1.3;
  border: 1px solid #F1F1F1;
  width: 100%;
  max-width: 100%;
  min-width: 0px;
  height: 150px;
  resize: none;
}

.form-contacts__textarea::-webkit-input-placeholder {
  color: #a9a9a9;
}

.form-contacts__textarea::-moz-placeholder {
  color: #a9a9a9;
}

.form-contacts__textarea:-ms-input-placeholder {
  color: #a9a9a9;
}

.form-contacts__textarea::-ms-input-placeholder {
  color: #a9a9a9;
}

.form-contacts__textarea::placeholder {
  color: #a9a9a9;
}

.form-contacts__textarea:focus {
  border-color: #63459F;
}

.form-contacts__button {
  width: 100%;
  border-radius: 8px;
  background: #63459F;
  min-height: 45px;
  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;
  text-align: center;
  font-family: "Orelega One";
  font-size: 16px;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.politics__wrapper {
  padding: 40px;
  border-radius: 16px;
  background: #FFF;
  -webkit-box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
}

.politics__title {
  color: #232323;
  font-family: "Orelega One";
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
}

.politics__content {
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-top: 30px;
}

.politics__content > *:not(:last-child) {
  margin-bottom: 10px;
}

.politics__content ul {
  padding-left: 25px;
}

.politics__content ul li {
  list-style: disc;
}

.politics__content ul li:not(:last-child) {
  margin-bottom: 10px;
}

.numbers__wrapper {
  padding: 40px;
  border-radius: 16px;
  background: #FFF;
  -webkit-box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
}

.numbers__title {
  color: #232323;
  font-family: "Orelega One";
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
}

.numbers__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  margin-top: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
}

.numbers__list {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 390px;
          flex: 0 0 390px;
  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: 20px;
  max-width: 100%;
}

.numbers__item {
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.numbers__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.numbers__value {
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
  text-align: right;
}

.numbers__value a {
  color: inherit;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.breadcrums {
  padding: 30px 0px 35px;
}

.breadcrums + * {
  padding-top: 0 !important;
}

.breadcrums__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 5px;
}

.breadcrums__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 16px;
  color: #232323;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.breadcrums__item:last-child {
  color: #46BC81;
}

.breadcrums__item:not(:last-child)::after {
  content: "-";
}

.breadcrums__link {
  color: inherit;
}

.topics__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.topics__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
          flex: 0 0 calc((100% - 30px * 2) / 3);
}

.topic-page__content {
  margin-top: 30px;
}

.topic-page__body {
  background: #fff;
  -webkit-box-shadow: 0px 8px 16px rgba(24, 39, 75, 0.08), 0px 6px 8px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 16px rgba(24, 39, 75, 0.08), 0px 6px 8px rgba(24, 39, 75, 0.12);
  border-radius: 16px;
  padding: 50px;
}

.topic-page__image {
  border-radius: 6px;
  overflow: hidden;
  width: 514px;
  margin-bottom: 40px;
  margin-right: 40px;
  height: 338px;
  position: relative;
}

.topic-page__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.topic-page__image img {
  width: 100%;
  max-width: 100%;
}

.topic-page__text {
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.topic-page__text li::marker {
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Raleway";
}

.topic-page__services {
  margin-top: 50px;
}

.services-topic-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
}

.services-topic-page__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
          flex: 0 0 calc((100% - 30px * 2) / 3);
  border-radius: 16px;
  background: #FFF;
  -webkit-box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
  padding: 15px;
}

.services-topic-page__name {
  color: #232323;
  font-family: "Orelega One";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  min-height: 44px;
}

.services-topic-page__list {
  margin-top: 15px;
  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: 15px;
}

.services-topic-page__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.services-topic-page__icon {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.services-topic-page__value {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  font-family: "Raleway";
}

.services-topic-page__value a {
  color: inherit;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.services-topic-page__map {
  color: #46BC81 !important;
  line-height: 1.5;
}

.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 76px;
}

.page > *:last-child {
  padding-bottom: 65px !important;
}

.topic-page__body:after {
  content: " ";
  display: table;
  clear: both;
}

.label-error {
  font-size: 12px;
  color: #F44336;
}
.ck-editor p {
  margin-bottom: 25px;
}
.ck-editor ul li {
  margin-left: 20px;
  list-style: initial;
  margin-bottom: 25px;
}
}
.ck-editor ol li {
  margin-left: 20px;
  margin-bottom: 25px;
}

.ck-editor h2 {
  color: #232323;
  font-family: "Orelega One";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.footer__ilab {
  color: #232323;
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.footer__ilab::before {
  content: '';
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: url(/dist/img/icons/ilab.svg) center center no-repeat;
}

.navigation-head__tabs {
  display: flex;
  gap: 20px;
}
.navigation-head__tabs .select__title {
  color: #63459F;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
  padding: 2px 20px;
  border-radius: 8px;
  background: #F0EDF4;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: none;
}
.navigation-head__tabs .select__title:hover {
  background: #e6d4ff;
}
.select__options { 
  max-height: 350px;
  overflow: auto;
}


@media (min-width: 720.98px) {
  .header__logo_mob {
    display: none;
  }

  .topic-page__image {
    float: left;
  }
}

@media (min-width: 991.98px) {
  .quantity__button:hover::before,
  .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .menu__top {
    display: none;
  }

  .menu__list > li {
    position: relative;
  }

  .menu__other {
    display: none;
  }

  .sublist-menu {
    border-radius: 8px;
    border: 1px solid #F2F2F2;
    background: #FFF;
    -webkit-box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
            box-shadow: 0px 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
    width: 330px;
  }

  .sublist-menu__top {
    display: none;
  }
}

@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }

  .checkbox a:hover {
    text-decoration: none;
  }
}

@media (min-width: 1272px) {
  .navigation-head {
    margin-left: 20px;
  }

  .topics-section__paggination {
    display: none;
  }
}

@media (max-width: 1272px) {
  .header__other {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }

  .menu__list {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }

  .banner {
    padding: 20px 0px;
  }

  .banner__item {
    height: 410px;
  }

  .banner__info {
    margin-left: 110px;
  }

  .banner__services {
    margin-bottom: 10px;
    padding: 4px 10px;
  }

  .banner__title {
    font-size: 51px;
  }

  .banner__text {
    font-size: 20px;
  }

  .banner__image {
    width: 695px;
  }

  .banner__arrow {
    display: none;
  }

  ._title {
    font-size: 32px;
  }

  .topics-section {
    padding: 30px 0px;
  }

  .topics-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .topics-section__item:not(:last-child) {
    margin-right: 20px;
  }

  .topics-section__arrow {
    display: none;
  }

  .topic__name {
    font-size: 22px;
  }

  .topic__description {
    font-size: 14px;
    -webkit-line-clamp: 4;
    -moz-line-clamp: 4;
  }

  .mapping {
    padding: 30px 0px;
  }

  .mapping._page .mapping__map {
    height: 500px;
  }

  .other {
    padding: 30px 0px;
  }

  .other__container {
    display: block;
  }

  .other__callback {
    margin-top: 60px;
  }

  .politics__wrapper {
    padding: 30px;
  }

  .politics__content {
    margin-top: 20px;
  }

  .numbers__wrapper {
    padding: 30px;
  }

  .topics__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }

  .topics__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .topic-page__body {
    padding: 20px;
  }

  .topic-page__image {
    width: 460px;
    height: 335px;
    margin-bottom: 20px;
    margin-right: 20px;
  }

  .services-topic-page {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }

  .services-topic-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .page > *:last-child {
    padding-bottom: 60px !important;
  }
}

@media (max-width: 991.98px) {
  .select__title {
    font-size: 18px;
  }

  .select__options {
    font-size: 18px;
  }

  .header {
    padding: 8px 0px;
  }

  .menu {
    position: fixed;
    top: 68px;
    left: 0;
    background: #fff;
    width: 100%;
    max-width: 100%;
    max-height: calc(100% - 68px);
    height: 100%;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    pointer-events: none;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    padding: 40px 20px;
    overflow-y: auto;
    -webkit-box-shadow: inset 0px 8px 16px -6px rgba(24, 39, 75, 0.08), inset 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
            box-shadow: inset 0px 8px 16px -6px rgba(24, 39, 75, 0.08), inset 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
  }

  .menu._active {
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
    pointer-events: all;
  }

  .menu__body {
    padding: 0px;
  }

  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }

  .menu__link {
    font-size: 20px;
  }

  .menu__link._spoller::after {
    background: url(../img/icons/more-m.svg) center/cover no-repeat;
  }

  .menu__sublist {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #fff;
    z-index: 1;
  }

  .sublist-menu {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0px;
    padding: 30px 20px;
    background: #fff;
    -webkit-box-shadow: inset 0px 8px 16px -6px rgba(24, 39, 75, 0.08), inset 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
            box-shadow: inset 0px 8px 16px -6px rgba(24, 39, 75, 0.08), inset 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
  }

  .sublist-menu__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .sublist-menu__body {
    margin-top: 20px;
  }

  .sublist-menu__item {
    border-bottom: 1px solid #EDEDED;
  }

  .sublist-menu__item:first-child {
    border-top: 1px solid #EDEDED;
  }

  .sublist-menu__link {
    padding: 10px 20px;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 24px;
    height: 21px;
    cursor: pointer;
  }

  .icon-menu span {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    top: calc(50% - 1.5px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #232323;
    border-radius: 6px;
  }

  .icon-menu span:first-child {
    top: 0px;
  }

  .icon-menu span:last-child {
    top: auto;
    bottom: 0px;
  }

  .icon-menu._active span {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }

  .icon-menu._active span:first-child {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: calc(50% - 1.5px);
  }

  .icon-menu._active span:last-child {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: calc(50% - 1.5px);
  }

  .footer__socials {
    margin-top: 20px;
  }

  .main-footer {
    row-gap: 20px;
  }

  .banner__item {
    height: 340px;
  }

  .banner__info {
    margin-left: 50px;
  }

  .banner__title {
    font-size: 42px;
  }

  .banner__text {
    font-size: 16px;
  }

  .banner__image {
    width: 570px;
  }

  .head-section {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .head-section__main {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .head-section__navigation {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .head-section__more {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  ._title {
    font-size: 28px;
  }

  .topics-section {
    padding: 25px 0px;
  }

  .topics-section__content {
    margin-top: 20px;
  }

  .topic__body {
    row-gap: 12px;
    padding: 15px;
  }

  .topic__name img,
  .topic__name svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }

  .topic__name {
    font-size: 16px;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }

  .topic__button {
    font-family: "Orelega One";
    font-weight: 400;
  }

  .mapping {
    padding: 25px 0px;
  }

  .mapping__content {
    margin-top: 25px;
  }

  .other {
    padding: 25px 0px;
  }

  .other__callback {
    margin-top: 50px;
  }

  .help__content {
    margin-top: 20px;
  }

  .contacts__wrapper {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    padding: 20px;
  }

  .contacts__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .contacts__form {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .info-contacts__title {
    font-size: 24px;
  }

  .info-contacts__list {
    margin-top: 20px;
  }

  .form-contacts__title {
    font-size: 24px;
  }

  .form-contacts__content {
    margin-top: 20px;
  }

  .form-contacts__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .politics__wrapper {
    padding: 20px;
  }

  .politics__title {
    font-size: 24px;
  }

  .numbers__wrapper {
    padding: 20px;
  }

  .numbers__title {
    font-size: 24px;
  }

  .numbers__content {
    margin-top: 20px;
  }

  .breadcrums {
    padding: 20px 0px 25px;
  }

  .topics__content {
    margin-top: 20px;
  }

  .topic-page__content {
    margin-top: 20px;
  }

  .topic-page__image {
    width: 290px;
    height: 216px;
  }

  .topic-page__services {
    margin-top: 30px;
  }

  .services-topic-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .page > *:last-child {
    padding-bottom: 50px !important;
  }

  .page {
    padding-top: 68px;
  }
}

@media (max-width: 720.98px) {
  .header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
            flex: 0 0 50px;
    width: 50px;
  }

  .header__logo_pc {
    display: none;
  }

  .header__other {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .footer__content {
    -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;
  }

  .footer__column {
    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;
  }

  .footer__list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .footer__other {
    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-footer {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .banner__info {
    margin-left: 30px;
  }

  .banner__image {
    right: -135px;
  }

  .navigation-head__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    padding: 10px 20px;
    border-radius: 8px;
    background: #65448A;
  }

  .navigation-head__top._active .navigation-head__arrow {
    rotate: 180deg;
  }

  .navigation-head__tabs {
    display: none;
    margin-top: 10px;
  }

  .navigation-head__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .topics-section__slider {
    margin: -20px;
    padding: 20px;
  }

  .topics-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 230px;
            flex: 0 0 230px;
  }

  .contacts__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }

  .contacts__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .contacts__form {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .topics__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .topic-page__image {
    width: 100%;
    max-width: 100%;
    padding-bottom: 66%;
    height: auto;
    margin-right: 0;
  }

  .services-topic-page__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

@media (max-width: 479.98px) {
  .gm-style .gm-style-iw-c {
    width: 290px;
  }

  .gm-ui-hover-effect {
    top: -5px !important;
    right: -5px !important;
  }

  .header {
    padding: 6px 0px;
  }

  .header__hotline {
    display: none;
  }

  .header__resize {
    width: 40px;
    height: 40px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
  }

  .header__resize img,
  .header__resize svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    height: 20px;
    width: 20px;
  }

  .menu {
    top: 40px;
    max-height: calc(100% - 52px);
  }

  .top-menu {
    padding: 15px 20px;
  }

  .footer {
    padding: 30px 0px;
  }

  .banner__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .banner__info {
    margin-left: 20px;
  }

  .banner__title {
    font-size: 32px;
  }

  .banner__text {
    font-size: 14px;
  }

  .banner__more {
    padding: 10px 20px;
  }

  .head-section__icon-toppic {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
    height: 24px;
    width: 24px;
    margin-right: -12px;
  }

  ._title {
    font-size: 24px;
  }

  .topics-section {
    padding: 20px 0px;
  }

  .mapping {
    padding: 20px 0px;
  }

  .mapping._page .mapping__map {
    height: 430px;
  }

  .mapping__content {
    padding: 5px;
    margin-top: 20px;
  }

  .mapping__map {
    height: 430px;
  }

  .marker {
    padding: 15px;
  }

  .marker__body {
    margin-top: 12px;
  }

  .marker__list {
    row-gap: 12px;
  }

  .other {
    padding: 20px 0px;
  }

  .other__callback {
    margin-top: 40px;
  }

  .help__item {
    padding: 15px;
  }

  .callback-other {
    padding: 20px;
  }

  .callback-other__title {
    font-size: 24px;
  }

  .callback-other__phone {
    margin-top: 5px;
  }

  .callback-other__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32px;
            flex: 0 0 32px;
    height: 32px;
    width: 32px;
  }

  .callback-other__value {
    font-size: 24px;
  }

  .contacts__wrapper {
    row-gap: 20px;
  }

  .politics__wrapper {
    padding: 20px 15px;
  }

  .topics__content {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }

  .topics__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 15px * 1) / 2);
            flex: 0 0 calc((100% - 15px * 1) / 2);
  }

  .topics__item .topic__body {
    padding: 12px;
    row-gap: 8px;
  }

  .topics__item .topic__name {
    font-size: 16px;
  }

  .topics__item .topic__services {
    font-size: 12px;
    padding: 4px 10px;
  }

  .topics__item .topic__services::before {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
    height: 16px;
    width: 16px;
  }

  .topics__item .topic__button {
    font-family: "Raleway";
    font-weight: 500;
    font-size: 14px;
    min-height: 32px;
  }

  .topics__item .topic__icon {
    display: none;
  }

  .topic-page__body {
    padding: 20px 15px;
  }

  .topic-page__services {
    margin-top: 40px;
  }

  .services-topic-page__list {
    row-gap: 12px;
    margin-top: 12px;
  }

  .page > *:last-child {
    padding-bottom: 45px !important;
  }

  .page {
    padding-top: 52px;
  }
}

@media (max-width: 991.98px) and (min-width: 720.98px) {
  .footer__column._other-column {
    display: none;
  }
}

@media (any-hover: hover) {
  .header__hotline:hover {
    background: rgba(70, 188, 129, 0.25);
  }

  .header__resize:hover {
    background: #F0F0F0;
  }

  .sublist-menu__link:hover {
    background: #E5F5EC;
  }

  .footer__hotline:hover {
    background: rgba(70, 188, 129, 0.25);
  }

  .callback-sticky:hover {
    background: #533a86;
  }

  .banner__more:hover {
    background: #533a86;
  }

  .banner__arrow:hover {
    -webkit-box-shadow: 0px 6px 20px rgba(29, 36, 71, 0.25);
            box-shadow: 0px 6px 20px rgba(29, 36, 71, 0.25);
  }

  .head-section__more:hover {
    text-decoration: underline;
  }

  .navigation-head__radio:not(:checked) + .navigation-head__value:hover {
    background: #e6d4ff;
  }

  .topics-section__arrow:hover {
    -webkit-box-shadow: 0px 6px 20px rgba(29, 36, 71, 0.25);
            box-shadow: 0px 6px 20px rgba(29, 36, 71, 0.25);
  }

  .topic__name:hover {
    color: #46BC81;
  }

  .topic__button:hover {
    background: #533a86;
  }

  .marker__more:hover {
    background: #533a86;
  }

  .info-contacts__value a:hover {
    color: #46BC81;
  }

  .info-contacts__map:hover {
    text-decoration: underline;
  }

  .form-contacts__button:hover {
    background: #533a86;
  }

  .numbers__value a:hover {
    color: #46BC81;
  }

  .breadcrums__item:not(:last-child):hover .breadcrums__link {
    text-decoration: underline;
  }

  .services-topic-page__value a:hover {
    color: #46BC81;
  }

  .services-topic-page__map:hover {
    text-decoration: underline;
  }
}
