@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/Montserrat-Light.woff2") format("woff2"), url("/fonts/Montserrat-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/Montserrat-Regular.woff2") format("woff2"), url("/fonts/Montserrat-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/Montserrat-Medium.woff2") format("woff2"), url("/fonts/Montserrat-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/Montserrat-SemiBold.woff2") format("woff2"), url("/fonts/Montserrat-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/Montserrat-Bold.woff2") format("woff2"), url("/fonts/Montserrat-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("/fonts/Montserrat-ExtraBold.woff2") format("woff2");
}
.center {
  text-align: center;
}

.fw700 {
  font-weight: 700;
}

.fw600 {
  font-weight: 600;
}

.fw500 {
  font-weight: 500;
}

.w100 {
  width: 100% !important;
}

.white {
  color: #fff;
}
.white b {
  color: #fff;
}

.uppercase {
  text-transform: uppercase;
}

.relative {
  position: relative;
}

.underline:hover {
  text-decoration: underline;
}

.transition {
  transition: 0.3s all ease;
}

.initialized {
  display: none;
}
.initialized.slick-initialized {
  display: block;
}

.hide {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: 0.3s all ease;
}

.d_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: wrap;
}
.d_flex.nowrap {
  flex-flow: nowrap;
}

.justify_start {
  justify-content: flex-start;
}

.justify_center {
  justify-content: center;
}

.bg_img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.fancybox__caption {
  color: #fff;
}

.before {
  position: relative;
}
.before:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s all ease;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg_blue {
  background: #0058AC;
}

.blue {
  color: #0058AC;
}

.br15 {
  border-radius: 15px;
}

.btn {
  height: 50px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  background: linear-gradient(121deg, #0058ac 0%, #0088cc 100%);
  cursor: pointer;
}
.btn:hover {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(121deg, #0058ac 0%, #0058ac 100%);
}

.slider-arr {
  border: 1px solid #fff;
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  justify-content: center;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s all ease;
}
.slider-arr:hover {
  opacity: 1;
}
.slider-arr.prev {
  left: calc(50% - 820px);
}
.slider-arr.next {
  right: calc(50% - 820px);
}

.section_heading, .content_seo h1, .content_seo h2 {
  font-size: 38px;
  text-transform: uppercase;
  font-weight: 700;
  color: #0058AC;
  border-bottom: 3px solid #E4E4E4;
  margin-bottom: 30px;
  padding-bottom: 5px;
  position: relative;
}
.section_heading:before, .content_seo h1:before, .content_seo h2:before {
  content: "";
  position: absolute;
  display: block;
  bottom: -3px;
  height: 3px;
  width: 40%;
  background: #0058AC;
}

.breadcrumbs ol {
  display: inline-block;
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs a, .breadcrumbs span {
  font-size: 14px;
}
.breadcrumbs li {
  margin-right: 12px;
  padding-right: 7px;
}
.breadcrumbs li:before {
  left: 100%;
  width: 5px;
  background-image: url("/img/breadcumb_arr.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.show__at_mobile {
  display: none !important;
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  .slider-arr {
    width: 2.44vw;
    height: 2.44vw;
  }
  .slider-arr.prev {
    left: 1.22vw;
  }
  .slider-arr.next {
    right: 1.22vw;
  }

  .br15 {
    border-radius: 0.91vw;
  }

  .btn {
    height: 3.05vw;
    padding: 0 1.83vw;
    border-radius: 3.05vw;
  }

  .section_heading, .content_seo h1, .content_seo h2 {
    font-size: 2.32vw;
    margin-bottom: 1.83vw;
    padding-bottom: 0.3vw;
  }
  .section_heading:before, .content_seo h1:before, .content_seo h2:before {
    bottom: -0.18vw;
    height: 0.18vw;
  }

  .breadcrumbs a, .breadcrumbs span {
    font-size: 0.85vw;
  }
  .breadcrumbs li {
    margin-right: 0.73vw;
    padding-right: 0.43vw;
  }
  .breadcrumbs li:before {
    width: 0.3vw;
  }
}
@media only screen and (max-width: 900px) {
  .show__at_mobile {
    display: flex !important;
  }

  .section_heading, .content_seo h1, .content_seo h2 {
    font-size: 22px;
  }

  .breadcrumbs li {
    margin-right: 9px;
    padding-right: 4px;
  }
  .breadcrumbs li:before {
    top: 1px;
    width: 4px;
  }
  .breadcrumbs a, .breadcrumbs span {
    font-size: 12px;
  }
}
.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt80 {
  margin-top: 80px;
}

.mt100 {
  margin-top: 100px;
}

.gap5 {
  gap: 5px;
}

.gap10 {
  gap: 10px;
}

.gap20 {
  gap: 20px;
}

.gap30 {
  gap: 30px;
}

.gap40 {
  gap: 40px;
}

.blink_dot {
  position: relative;
  padding-left: 12px;
}
.blink_dot:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: #1DD65C;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: 3s blinkDot linear infinite;
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  .mt5 {
    margin-top: 0.3vw;
  }

  .mt10 {
    margin-top: 0.61vw;
  }

  .mt15 {
    margin-top: 0.91vw;
  }

  .mt20 {
    margin-top: 1.22vw;
  }

  .mt25 {
    margin-top: 1.52vw;
  }

  .mt35 {
    margin-top: 2.13vw;
  }

  .mt40 {
    margin-top: 2.44vw;
  }

  .mt50 {
    margin-top: 3.05vw;
  }

  .mt60 {
    margin-top: 3.66vw;
  }

  .mt80 {
    margin-top: 4.88vw;
  }

  .mt100 {
    margin-top: 6.1vw;
  }

  .gap5 {
    gap: 0.3vw;
  }

  .gap10 {
    gap: 0.61vw;
  }

  .gap20 {
    gap: 1.22vw;
  }

  .gap30 {
    gap: 1.83vw;
  }

  .gap40 {
    gap: 2.44vw;
  }

  .blink_dot {
    padding-left: 0.73vw;
  }
  .blink_dot:before {
    width: 0.37vw;
    height: 0.37vw;
  }
}
@keyframes btnBlick {
  0% {
    left: -50%;
  }
  30% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}
@keyframes blinkDot {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  outline: none;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100vw;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  width: 100%;
  background: #fff;
  padding-top: 115px;
}

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

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #222;
}

a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: 0.3s all ease;
  color: #222;
}
a:hover {
  text-decoration: underline;
  color: #0058AC;
}

.container {
  margin: 0 auto;
  padding-left: 90px;
  padding-right: 90px;
  max-width: 1640px;
}

textarea,
select {
  font-family: "Montserrat", sans-serif;
}

form button {
  cursor: pointer;
}

b, strong {
  font-weight: 600;
}

ol, ul {
  list-style: none;
}

svg, svg path {
  transition: 0.3s all ease;
}

blockquote, q {
  quotes: none;
}

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

input {
  outline: none;
}

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

img {
  border: 0;
  max-width: 100%;
}

/* Chrome, Opera, Safari */
details summary::-webkit-details-marker {
  display: none;
}

details :focus {
  outline: 0;
}

/* Firefox */
details, summary {
  display: block;
}

details summary:before {
  content: none;
}

details[open] summary:before {
  content: none;
}

::-webkit-scrollbar-track {
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #0058AC;
  background-position: center;
  background-repeat: no-repeat;
}

::-webkit-scrollbar {
  width: 12px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  body {
    padding-top: 7.01vw;
  }

  p, a {
    font-size: 0.98vw;
  }

  .container {
    padding-left: 5.49vw;
    padding-right: 5.49vw;
  }
}
@media only screen and (max-width: 900px) {
  body {
    overflow-x: hidden;
    max-width: 100vw;
    padding-top: 55px;
  }

  p, a {
    font-size: 14px;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}
.fz10 {
  font-size: 10px;
}

.fz12 {
  font-size: 12px;
}

.fz14 {
  font-size: 14px;
}

.fz17 {
  font-size: 17px;
}

.fz18 {
  font-size: 18px;
}

.fz20 {
  font-size: 20px;
}

.fz24 {
  font-size: 24px;
}

.fz50 {
  font-size: 50px;
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  .fz10 {
    font-size: 0.61vw;
  }

  .fz12 {
    font-size: 0.73vw;
  }

  .fz14 {
    font-size: 0.85vw;
  }

  .fz17 {
    font-size: 1.04vw;
  }

  .fz18 {
    font-size: 1.1vw;
  }

  .fz20 {
    font-size: 1.22vw;
  }

  .fz24 {
    font-size: 1.46vw;
  }

  .fz50 {
    font-size: 3.05vw;
  }
}
@media only screen and (max-width: 900px) {
  .fz50 {
    font-size: 26px;
  }

  .fz24 {
    font-size: 18px;
  }
}
form .form_input {
  height: 50px;
  box-sizing: border-box;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  padding: 0 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: 250px;
  transition: 0.3s all ease;
}
form .form_input:focus, form .form_input:active {
  border-color: #0058AC;
}
form button.btn {
  border: none;
}
form .policy_row input {
  cursor: pointer;
}
form .policy_row a {
  text-decoration: underline;
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  form .form_input {
    height: 3.05vw;
    border-radius: 3.05vw;
    font-size: 0.98vw;
    padding: 0 1.22vw;
    width: 15.24vw;
  }
}
@media only screen and (max-width: 900px) {
  form .form_input, form .btn {
    width: 100%;
  }
}
.content_seo h1, .content_seo h2, .content_seo h3, .content_seo h4, .content_seo h5, .content_seo h6 {
  font-weight: 700;
  color: #0058AC;
  border-bottom: 3px solid #E4E4E4;
  margin-bottom: 30px;
  padding-bottom: 5px;
  position: relative;
}
.content_seo h1:before, .content_seo h2:before, .content_seo h3:before, .content_seo h4:before, .content_seo h5:before, .content_seo h6:before {
  content: "";
  position: absolute;
  display: block;
  bottom: -3px;
  height: 3px;
  width: 40%;
  background: #0058AC;
}
.content_seo h2 {
  font-size: 34px;
}
.content_seo h3, .content_seo h4, .content_seo h5, .content_seo h6 {
  margin-top: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}
.content_seo h3 {
  font-size: 30px;
}
.content_seo h4 {
  font-size: 26px;
}
.content_seo h5 {
  font-size: 22px;
}
.content_seo h6 {
  font-size: 18px;
}
.content_seo ul {
  margin: 15px 0;
}
.content_seo ul li {
  margin: 5px 0;
  line-height: 140%;
}
.content_seo ul li:before {
  content: "";
  top: -3px;
  position: relative;
  margin-right: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
  background: #0058AC;
}
.content_seo p {
  margin: 10px 0;
  line-height: 140%;
}
.content_seo .btn {
  margin: 20px 0;
}
.content_seo table {
  width: 100%;
}
.content_seo table tr {
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: 0.3s all ease;
  cursor: pointer;
}
.content_seo table tr:hover {
  background-color: #0058AC !important;
  color: #fff;
}
.content_seo table tr:nth-child(2), .content_seo table tr:nth-child(4) {
  background-color: rgba(30, 141, 247, 0.15);
}
.content_seo table td {
  font-size: 14px;
  padding: 5px 15px;
}
.content_seo .btgrid .row {
  display: flex;
  gap: 30px;
}
.content_seo .btgrid .col-md-6 {
  width: 50%;
}
.content_seo .btgrid .col-md-4 {
  width: 33%;
}
.content_seo .btgrid .col-md-3 {
  width: 25%;
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  .content_seo h1, .content_seo h2, .content_seo h3, .content_seo h4, .content_seo h5, .content_seo h6 {
    margin-bottom: 1.83vw;
    padding-bottom: 0.3vw;
  }
  .content_seo h1:before, .content_seo h2:before, .content_seo h3:before, .content_seo h4:before, .content_seo h5:before, .content_seo h6:before {
    bottom: -0.18vw;
    height: 0.18vw;
  }
  .content_seo h2 {
    font-size: 2.07vw;
  }
  .content_seo h3, .content_seo h4, .content_seo h5, .content_seo h6 {
    margin-top: 1.83vw;
    margin-bottom: 1.22vw;
  }
  .content_seo h3 {
    font-size: 1.83vw;
  }
  .content_seo h4 {
    font-size: 1.59vw;
  }
  .content_seo h5 {
    font-size: 1.34vw;
  }
  .content_seo h6 {
    font-size: 1.1vw;
  }
  .content_seo ul {
    margin: 0.91vw 0;
  }
  .content_seo ul li {
    margin: 0.3vw 0;
  }
  .content_seo ul li:before {
    top: -0.18vw;
    margin-right: 0.61vw;
    width: 0.3vw;
    height: 0.3vw;
  }
  .content_seo p {
    margin: 0.61vw 0;
  }
  .content_seo .btn {
    margin: 1.22vw 0;
  }
  .content_seo table td {
    font-size: 0.85vw;
    padding: 0.3vw 0.91vw;
  }
  .content_seo .btgrid .row {
    gap: 1.83vw;
  }
}
@media only screen and (max-width: 900px) {
  .content_seo h1 {
    font-size: 19px;
  }
  .content_seo h2 {
    font-size: 18px;
  }
  .content_seo h3 {
    font-size: 17px;
  }
  .content_seo h4 {
    font-size: 16px;
  }
  .content_seo h5 {
    font-size: 15px;
  }
  .content_seo h6 {
    font-size: 14px;
  }
  .content_seo ul li {
    font-size: 14px;
  }
  .content_seo .btgrid .row {
    flex-flow: wrap;
    gap: 0;
  }
  .content_seo .btgrid .col-md-3, .content_seo .btgrid .col-md-6, .content_seo .btgrid .col-md-4 {
    width: 100%;
  }
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 93;
}
header.fixed {
  position: fixed;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
header.fixed .main_link {
  height: 70px;
}
header.not_index {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header_phone:hover .secondary_header_phones {
  z-index: 9999;
  visibility: visible;
  opacity: 1;
}
.header_phone:hover svg.arr {
  transform: rotate(180deg);
}
.header_phone:hover svg.arr path {
  stroke: #0058AC;
}

.secondary_header_phones {
  position: absolute;
  top: 100%;
  right: 0;
  padding: 10px 15px;
  width: -moz-max-content;
  width: max-content;
  background: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.secondary_header_phones li {
  text-align: left;
}

.lang_block .current_lang {
  cursor: pointer;
}
.lang_block:hover .header_lang_list {
  opacity: 1;
  z-index: 9999;
  visibility: visible;
}

.header_lang_list {
  position: absolute;
  top: 100%;
  right: 0;
  background: #0058AC;
  padding: 15px 15px 10px;
  border-radius: 10px;
}

.top_header {
  height: 35px;
}
.top_header ul a {
  color: #fff;
  font-size: 14px;
}
.top_header ul a:hover {
  color: #fff;
}
.top_header p {
  font-size: 14px;
}
.top_header .messengers li a {
  width: 35px;
  height: 25px;
}
.top_header .messengers li a img {
  width: 15px;
}

.header_search_btn {
  cursor: pointer;
}

.current_lang {
  cursor: pointer;
}

.main_phone {
  cursor: pointer;
  position: relative;
}
.main_phone .schedule {
  position: absolute;
  top: -20px;
  left: 0;
}
.main_phone:hover .phone_icon path {
  fill: #0058AC;
}

nav .main_link {
  font-weight: 500;
  font-size: 17px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 10px;
}
nav .has_child:hover .header_child_menu {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

.child_links_cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.child_links_cols .left {
  padding: 30px 0 50px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.header_child_menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background: #0058AC;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: 0s all ease;
}
.header_child_menu .ul_child_menu li {
  margin-bottom: 12px;
}
.header_child_menu .ul_child_menu a {
  display: block;
  position: relative;
  padding-right: 50px;
}
.header_child_menu .ul_child_menu a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background-image: url("/img/menu_child_arr.webp");
  background-size: 6px 10px;
  background-position: center center;
  background-repeat: no-repeat;
}
.header_child_menu .bottom_child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 0;
}
.header_child_menu p, .header_child_menu a {
  color: #fff;
}

.burger_btn {
  display: none;
  margin-left: 10px;
  width: 33px;
  height: 33px;
  background: #0058AC;
  border-radius: 5px;
}
.burger_btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s all ease;
}
.burger_btn span:first-child {
  top: calc(50% - 7px);
}
.burger_btn span:last-child {
  top: calc(50% + 7px);
}
.burger_btn.active span:nth-child(2) {
  left: 70%;
  opacity: 0;
}
.burger_btn.active span:first-child {
  transform: rotate(45deg) translate(-50%, -50%);
  top: calc(50% + 6px);
  left: calc(50% - 4px);
}
.burger_btn.active span:last-child {
  transform: rotate(-45deg) translate(-50%, -50%);
  top: calc(50% - 8px);
  left: calc(50% - 2px);
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  header.fixed .main_link {
    height: 4.27vw;
  }

  .secondary_header_phones {
    padding: 0.61vw 0.91vw;
    border-radius: 10px;
  }

  .header_lang_list {
    padding: 15px 15px 10px;
    border-radius: 0.61vw;
  }

  .top_header {
    height: 2.13vw;
  }
  .top_header ul a, .top_header p {
    font-size: 0.85vw;
  }
  .top_header .messengers li a {
    width: 2.13vw;
    height: 1.52vw;
  }
  .top_header .messengers li a img {
    width: 0.91vw;
  }

  .main_phone .schedule {
    top: -1.22vw;
  }

  nav .main_link {
    font-size: 1.04vw;
    height: 4.88vw;
    gap: 0.61vw;
  }

  .child_links_cols .left {
    padding: 1.83vw 0 3.05vw;
  }

  .header_child_menu .ul_child_menu li {
    margin-bottom: 0.73vw;
  }
  .header_child_menu .ul_child_menu a {
    padding-right: 3.05vw;
  }
  .header_child_menu .ul_child_menu a:before {
    right: 0.61vw;
    width: 1.22vw;
    height: 1.22vw;
    background-size: 0.37vw 0.61vw;
  }
  .header_child_menu .bottom_child {
    padding: 0.61vw 0;
  }
}
@media only screen and (max-width: 900px) {
  .burger_btn {
    display: block;
  }

  .top_header_block {
    display: none;
  }

  header {
    padding: 10px 0;
  }
  header nav {
    border-top: 1px solid #0058AC;
    display: none;
    position: absolute;
    width: 100%;
    padding: 25px 18px 100px;
    left: 0;
    top: 60px;
    max-height: calc(100vh - 60px);
    overflow-y: scroll;
  }
  header nav::-webkit-scrollbar {
    display: none;
  }
  header.open__menu {
    position: fixed;
    height: 100vh;
  }
  header.open__menu nav {
    display: block;
  }

  .header_child_menu {
    position: relative;
    top: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    width: 100%;
  }
  .header_child_menu p, .header_child_menu a {
    color: #222;
  }
  .header_child_menu .ul_child_menu a {
    padding-right: 0;
  }
  .header_child_menu .ul_child_menu a:before {
    display: none;
  }
  .header_child_menu .ul_child_menu li:last-child {
    border: none;
    margin-bottom: 0;
  }
  .header_child_menu .bottom_child {
    display: none;
  }

  .child_links_cols {
    grid-template-columns: 1fr;
  }
  .child_links_cols .left {
    padding: 0;
  }
  .child_links_cols .left .fz14 {
    display: none;
  }
  .child_links_cols .right_image {
    display: none;
  }

  nav ul {
    width: 100%;
    gap: 10px !important;
    flex-direction: column !important;
  }
  nav ul li {
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  nav .main_link {
    height: -moz-max-content !important;
    height: max-content !important;
    font-size: 18px;
    justify-content: space-between;
  }

  .main_phone {
    width: 33px;
    height: 33px;
    background: #0058AC;
    border-radius: 5px;
    justify-content: center;
  }
  .main_phone:hover .phone_icon path {
    fill: #fff;
  }
  .main_phone svg {
    width: 50%;
    height: 50%;
  }
  .main_phone svg path {
    fill: #fff;
  }
  .main_phone p, .main_phone svg.arr {
    display: none;
  }
  .main_phone .schedule {
    display: none;
  }

  .logo_link img {
    width: 110px;
  }
}
.hero_slider {
  height: 600px;
  overflow: hidden;
}

.hero_slide {
  padding: 40px 0;
  height: 600px;
  display: flex !important;
}
.hero_slide.dark_btn .content_seo .btn {
  background: #fff;
  color: #0058AC;
}
.hero_slide.dark_btn .content_seo .btn:hover {
  text-decoration: underline;
}
.hero_slide.dark_btn .bg_slide:before {
  width: 50%;
  background: #0058AC;
}
.hero_slide.dark_btn .bg_slide:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: calc(50% + 100px);
  background: #0058AC;
  opacity: 0.5;
}
.hero_slide.full_width .bg_slide:before {
  width: 100%;
}
.hero_slide.full_width .content_seo {
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero_slide.full_width .content_seo h3 {
  font-size: 50px;
}
.hero_slide.angle_bg .bg_slide:before {
  -webkit-clip-path: polygon(0 0, 100% 0, 85% 50%, 100% 100%, -5% 100%);
          clip-path: polygon(0 0, 100% 0, 85% 50%, 100% 100%, -5% 100%);
}
.hero_slide.angle_bg .bg_slide:after {
  top: 0;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 85% 50%, 100% 100%, -5% 100%);
          clip-path: polygon(0 0, 100% 0, 85% 50%, 100% 100%, -5% 100%);
}
.hero_slide.round_bg .bg_slide:before {
  border-top-right-radius: 600px;
  border-bottom-right-radius: 600px;
}
.hero_slide.round_bg .bg_slide:after {
  top: -50px;
  height: calc(100% + 100px);
  border-top-right-radius: 600px;
  border-bottom-right-radius: 600px;
}
.hero_slide .content_seo {
  max-width: 40%;
}
.hero_slide .content_seo h1, .hero_slide .content_seo h2, .hero_slide .content_seo h3, .hero_slide .content_seo h4, .hero_slide .content_seo h5, .hero_slide .content_seo h6 {
  border: none;
}
.hero_slide .content_seo h1:before, .hero_slide .content_seo h2:before, .hero_slide .content_seo h3:before, .hero_slide .content_seo h4:before, .hero_slide .content_seo h5:before, .hero_slide .content_seo h6:before {
  display: none;
}
.hero_slide .content_seo h1, .hero_slide .content_seo h2, .hero_slide .content_seo h3, .hero_slide .content_seo h4, .hero_slide .content_seo h5, .hero_slide .content_seo h6, .hero_slide .content_seo p, .hero_slide .content_seo li, .hero_slide .content_seo a {
  color: #fff;
}
.hero_slide .content_seo h3 {
  font-size: 36px;
  margin-bottom: 30px;
}
.hero_slide .content_seo li:before {
  background: #fff;
}
.hero_slide .content_seo .btn {
  margin-top: 40px;
}
.hero_slide .bg_slide {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero_slide .bg_slide:before {
  width: 70%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}

.about_section .content_seo .number {
  margin-top: 30px;
  position: relative;
}
.about_section .content_seo .number:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #0058AC;
  border-radius: 50%;
  left: 0;
  top: -15px;
}

.bottom_content_seo .content_seo {
  max-height: 400px;
  overflow: hidden;
  overflow-y: scroll;
}
.bottom_content_seo .content_seo::-webkit-scrollbar-thumb {
  background-color: #B8B8B8;
  border-radius: 3px;
}
.bottom_content_seo .content_seo::-webkit-scrollbar {
  width: 6px;
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  .hero_slider {
    height: 36.59vw;
  }

  .hero_slide {
    padding: 2.44vw 0;
    height: 36.59vw;
  }
  .hero_slide.dark_btn .bg_slide:after {
    width: calc(50% + 6.1vw);
  }
  .hero_slide.full_width .content_seo h3 {
    font-size: 3.05vw;
  }
  .hero_slide.round_bg .bg_slide:before {
    border-top-right-radius: 36.59vw;
    border-bottom-right-radius: 36.59vw;
  }
  .hero_slide.round_bg .bg_slide:after {
    top: -3.05vw;
    height: calc(100% + 6.1vw);
    border-top-right-radius: 36.59vw;
    border-bottom-right-radius: 36.59vw;
  }
  .hero_slide .content_seo h3 {
    font-size: 2.2vw;
    margin-bottom: 1.83vw;
  }
  .hero_slide .content_seo .btn {
    margin-top: 2.44vw;
  }

  .about_section .content_seo .number {
    margin-top: 1.83vw;
  }
  .about_section .content_seo .number:before {
    width: 0.61vw;
    height: 0.61vw;
    top: -0.91vw;
  }
}
@media only screen and (max-width: 900px) {
  .hero_slide .content_seo {
    max-width: 100%;
  }
  .hero_slide.dark_btn .bg_slide:before {
    width: 70%;
  }
  .hero_slide.dark_btn .bg_slide:after {
    width: 90%;
  }
}
.product_cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 50px;
}

.product_card_images a {
  display: block;
  position: relative;
}
.product_card_images a:hover:before, .product_card_images a:hover:after {
  opacity: 1;
}
.product_card_images a:before {
  background: rgba(0, 0, 0, 0.4);
  border-radius: inherit;
  opacity: 0;
}
.product_card_images a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #0058AC;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s all ease;
  background-image: url("/img/scale.webp");
  background-size: 19px 19px;
  background-position: center center;
  background-repeat: no-repeat;
}
.product_card_images .big {
  width: 100%;
  height: 350px;
}
.product_card_images .sm_img {
  width: 160px;
  display: grid;
}
.product_card_images .sm_img a {
  height: 110px;
}

.product_card .content_seo table td {
  width: 50%;
}
.product_card .more_btn {
  border-bottom: 1px dashed #0058AC;
  text-decoration: none;
  color: #0058AC;
}
.product_card .more_btn:hover {
  border-style: solid;
}

.product_page_images {
  width: 650px;
  min-width: 650px;
}
.product_page_images .sm_images_slider {
  height: 125px;
  overflow: hidden;
}
.product_page_images .sm_images_slider .slick-list {
  margin: 0 -6px;
}
.product_page_images .sm_images_slider .slick-slide {
  margin: 0 6px;
}
.product_page_images .slider-arr.prev {
  left: 20px;
}
.product_page_images .slider-arr.next {
  right: 20px;
}
.product_page_images .slider-arr:hover {
  background: #0058AC;
  border-color: #0058AC;
}
.product_page_images .big_images_slider {
  height: 450px;
  overflow: hidden;
}

.product_big_image {
  height: 450px;
}

.product_sm_image {
  height: 125px;
  cursor: pointer;
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  .product_cards {
    grid-column-gap: 1.83vw;
    grid-row-gap: 3.05vw;
  }

  .product_card_images a:after {
    width: 3.05vw;
    height: 3.05vw;
    background-size: 1.16vw 1.16vw;
  }
  .product_card_images .big {
    height: 21.34vw;
  }
  .product_card_images .sm_img {
    width: 9.76vw;
  }
  .product_card_images .sm_img a {
    height: 6.71vw;
  }

  .product_page_images {
    width: 39.63vw;
    min-width: 39.63vw;
  }
  .product_page_images .sm_images_slider {
    height: 7.32vw;
  }
  .product_page_images .sm_images_slider .slick-list {
    margin: 0 -0.37vw;
  }
  .product_page_images .sm_images_slider .slick-slide {
    margin: 0 0.37vw;
  }
  .product_page_images .slider-arr.prev {
    left: 1.22vw;
  }
  .product_page_images .slider-arr.next {
    right: 1.22vw;
  }
  .product_page_images .big_images_slider {
    height: 27.44vw;
  }

  .product_big_image {
    height: 27.44vw;
  }

  .product_sm_image {
    height: 7.62vw;
  }
}
@media only screen and (max-width: 900px) {
  .product_cards {
    grid-template-columns: 1fr;
  }

  .product_card_images {
    flex-flow: wrap !important;
  }
  .product_card_images .big {
    height: 250px;
  }
  .product_card_images .sm_img {
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
  }
  .product_card_images .sm_img a {
    height: 75px;
  }

  .product_card .more_btn {
    margin: 0 auto;
  }
  .product_card .show_modal_callback {
    width: 100%;
    margin-bottom: 20px;
  }

  .product_page_images {
    width: 100%;
    min-width: 100%;
  }
  .product_page_images .big_images_slider {
    height: 300px;
  }
  .product_page_images .sm_images_slider {
    height: 75px;
  }

  .product_page .images_row {
    flex-flow: wrap;
  }

  .product_big_image {
    height: 300px;
  }

  .product_sm_image {
    height: 75px;
  }
}
.service_cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.service_card {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.service_card .inner {
  padding: 0 25px 25px;
}
.service_card .image_block {
  height: 225px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}
.service_card .image {
  height: 100%;
}
.service_card:hover {
  text-decoration: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.service_card:hover .title {
  text-decoration: underline;
}
.service_card:hover .image {
  transform: scale(1.1);
}

.service_slider .service_card {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.service_slider .slick-list {
  margin: 0 -10px;
}
.service_slider .slick-slide {
  margin: 0 10px;
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  .service_card .inner {
    padding: 0 1.52vw 1.52vw;
  }
  .service_card .image_block {
    height: 13.72vw;
    border-radius: 0.91vw 0.91vw 0 0;
  }

  .service_slider .slick-list {
    margin: 0 -0.61vw;
  }
  .service_slider .slick-slide {
    margin: 0 0.61vw;
  }
}
@media only screen and (max-width: 900px) {
  .service_cards {
    grid-template-columns: 1fr;
  }

  .service_card .inner {
    padding: 0 20px 20px;
  }
}
.callback_section {
  padding: 90px 0;
}
.callback_section .title {
  max-width: 780px;
}
.callback_section:before, .callback_section:after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 75px;
}
.callback_section:before {
  top: 0;
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 100%);
}
.callback_section:after {
  bottom: 0;
  background: #FFF;
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  .callback_section {
    padding: 5.49vw 0;
  }
  .callback_section .title {
    max-width: 47.56vw;
  }
  .callback_section:before, .callback_section:after {
    height: 4.57vw;
  }
}
.post_cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.post_card {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 25px;
}
.post_card .date {
  color: #6D6D6D;
}
.post_card .image_block {
  height: 200px;
  overflow: hidden;
}
.post_card .image {
  height: 100%;
}
.post_card .more {
  color: #0058AC;
  text-decoration: underline;
}
.post_card:hover {
  text-decoration: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.post_card:hover .title {
  color: #0058AC;
  text-decoration: underline;
}
.post_card:hover .image {
  transform: scale(1.1);
}

.search_form .search_label {
  position: absolute;
  top: 35%;
  left: 0;
}
.search_form input {
  border-radius: 0;
  width: 250px;
  padding-left: 35px;
  border: none;
}

.pagination {
  justify-content: center;
  margin-top: 60px;
}
.pagination .nav-link a.back, .pagination .nav-link a.ahead {
  display: none !important;
}
.pagination nav div:first-child {
  display: none;
}
.pagination nav span.relative {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  justify-content: center;
}
.pagination nav span.relative > span {
  width: 30px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  margin-right: 10px;
  color: #000;
  font-size: 16px;
}
.pagination nav span.relative > span > span span {
  color: #fff;
  font-size: 16px;
  position: relative;
}
.pagination nav span.relative > span > span span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  background-color: #0058AC;
  border: none !important;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.pagination nav span.relative > span:first-child span span:before, .pagination nav span.relative > span:last-child span span:before {
  display: none;
}
.pagination nav span.relative > span:first-child:before, .pagination nav span.relative > span:last-child:before {
  display: none;
}
.pagination nav span.relative > span:last-child {
  margin-right: 0;
}
.pagination nav span.relative > span svg {
  width: 30px !important;
  height: 30px !important;
  fill: #000;
  opacity: 0.6;
}
.pagination nav span.relative > span:hover svg {
  opacity: 1;
}
.pagination nav span.relative > span button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #000;
  font-size: 16px;
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  .post_card {
    padding: 1.52vw;
  }
  .post_card .image_block {
    height: 12.2vw;
  }

  .search_form input {
    width: 15.24vw;
    padding-left: 2.13vw;
  }

  .pagination {
    margin-top: 3.66vw;
  }
  .pagination nav span.relative > span {
    width: 1.83vw;
    height: 2.44vw;
    margin-right: 0.61vw;
    font-size: 0.98vw;
  }
  .pagination nav span.relative > span > span span {
    font-size: 0.98vw;
  }
  .pagination nav span.relative > span > span span:before {
    width: 1.83vw;
    height: 1.83vw;
  }
  .pagination nav span.relative > span svg {
    width: 1.83vw !important;
    height: 1.83vw !important;
  }
  .pagination nav span.relative > span button {
    font-size: 0.98vw;
  }
}
@media only screen and (max-width: 900px) {
  .post_cards {
    grid-template-columns: 1fr;
  }

  .post_card {
    padding: 20px;
  }
}
.faq_cards {
  align-items: flex-start;
}

.faq_col {
  width: 50%;
}

.faq_card {
  background: #0058AC;
  padding: 25px;
  height: -moz-max-content;
  height: max-content;
}
.faq_card .open_btn {
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  min-width: 30px;
  width: 30px;
  height: 30px;
  color: #0058AC;
}
.faq_card.open {
  background: rgba(30, 141, 247, 0.12);
}
.faq_card.open .open_btn {
  background: #0058AC;
  transform: rotate(45deg);
  color: #fff;
}
.faq_card.open .content_seo {
  display: block;
}
.faq_card.open .title {
  color: #222;
}
.faq_card .content_seo {
  display: none;
}
.faq_card .content_seo p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  .faq_card {
    padding: 1.52vw;
  }
  .faq_card .open_btn {
    min-width: 1.83vw;
    width: 1.83vw;
    height: 1.83vw;
  }
}
@media only screen and (max-width: 900px) {
  .faq_cards {
    flex-flow: wrap !important;
  }

  .faq_card {
    padding: 20px;
  }

  .faq_col {
    width: 100%;
  }
}
.gallery_images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.gallery_image {
  height: 250px;
  display: block;
}
.gallery_image:hover {
  transform: scale(1.05);
}

.gallery_filter {
  background: transparent;
  border: 1px solid #0058AC;
  color: #0058AC;
}
.gallery_filter.current {
  background: linear-gradient(121deg, #0058ac 0%, #0088cc 100%);
  color: #fff;
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  .gallery_image {
    height: 15.24vw;
  }
}
@media only screen and (max-width: 900px) {
  .gallery_images {
    grid-template-columns: 1fr 1fr;
  }

  .gallery_categories {
    gap: 10px;
  }

  .gallery_image {
    height: 50vw;
  }

  .gallery_filter {
    font-size: 14px;
    padding: 0 15px;
    height: 30px;
  }
}
.partner_slide .inner {
  height: 125px;
  padding: 0 20px;
}
.partner_slide .inner img {
  max-height: 100%;
  max-width: 100%;
}

.partner_items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.dark_dots .slider-arr {
  border-color: #0058AC;
}
.dark_dots .slider-arr:hover {
  background: #0058AC;
}
.dark_dots .slider-arr:hover svg path {
  stroke: #fff;
}
.dark_dots ul.slick-dots {
  bottom: -30px;
}
.dark_dots ul.slick-dots li {
  background: rgba(0, 0, 0, 0.2);
}
.dark_dots ul.slick-dots li.slick-active button:before {
  background: #0058AC;
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  .partner_slide .inner {
    height: 7.62vw;
    padding: 0 1.22vw;
  }

  .dark_dots ul.slick-dots {
    bottom: -1.83vw;
  }
}
.contact_page .map_block {
  width: 70%;
}
.contact_page .map_block iframe {
  width: 100%;
  height: 550px;
  border-radius: 15px;
}
.contact_page .messengers a {
  background: rgba(0, 88, 172, 0.1);
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  .contact_page .map_block iframe {
    height: 33.54vw;
    border-radius: 0.91vw;
  }
}
@media only screen and (max-width: 900px) {
  .contact_page .inner {
    flex-flow: wrap;
  }
  .contact_page .left_contacts {
    width: 100%;
  }
  .contact_page .map_block {
    width: 100%;
    margin-top: 40px;
  }
  .contact_page .map_block iframe {
    height: 400px;
  }
}
.messengers img {
  transition: 0.3s all ease;
}
.messengers a {
  background: #fff;
  height: 30px;
  width: 45px;
  border-radius: 30px;
  justify-content: center;
}
.messengers a:hover img {
  transform: scale(1.1);
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  .messengers a {
    height: 1.83vw;
    width: 2.74vw;
    border-radius: 1.83vw;
  }
}
footer {
  background: #0058AC;
  padding-top: 50px;
}
footer .menu_col {
  max-width: 450px;
}
footer .menu_col li {
  margin-bottom: 10px;
}
footer .menu_col li:before {
  content: "";
  position: relative;
  top: -1px;
  width: 6px;
  display: inline-block;
  height: 10px;
  background-image: url("/img/white_r_arr.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
footer p, footer a {
  color: #fff;
}
footer .inner {
  align-items: flex-start;
}
footer a:hover {
  color: #fff;
}
footer .rights_row {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
footer .rights_row p, footer .rights_row a {
  font-size: 14px;
}
footer .rights_row a {
  text-decoration: underline;
}
footer .policy_link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  footer {
    padding-top: 3.05vw;
  }
  footer .menu_col {
    max-width: 27.44vw;
  }
  footer .menu_col li {
    margin-bottom: 0.61vw;
  }
  footer .menu_col li:before {
    width: 0.37vw;
    height: 0.61vw;
  }
  footer .rights_row {
    padding: 0.91vw 0;
  }
  footer .rights_row p, footer .rights_row a {
    font-size: 0.85vw;
  }
}
@media only screen and (max-width: 900px) {
  footer .policy_link {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
  footer .rights_row .container {
    gap: 5px;
    flex-direction: column;
    padding-bottom: 20px;
  }
  footer .rights_row p, footer .rights_row a {
    text-align: center;
    font-size: 12px;
  }
}
.modal_window {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.modal_window.open {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
.modal_window.open .inner {
  top: 0;
}
.modal_window .inner {
  top: 200px;
  background: #fff;
  padding: 40px;
  width: 500px;
}

.modal_close_btn {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.modal_close_btn:before {
  content: "×";
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 36px;
  color: #222;
  transform: translate(-50%, -50%);
  transition: 0.3s all ease;
}
.modal_close_btn:hover:before {
  transform: translate(-50%, -50%) rotate(90deg);
}

@media only screen and (max-width: 1640px) and (min-width: 900px) {
  .modal_window .inner {
    padding: 2.44vw;
    width: 30.49vw;
  }

  .modal_close_btn {
    top: 1.83vw;
    right: 2.44vw;
    width: 1.46vw;
    height: 1.46vw;
  }
  .modal_close_btn:before {
    font-size: 2.2vw;
  }
}
