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

.ml_20 {
  margin-left: 20px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.w100 {
  width: 100%;
}

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

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

.has_dot {
  padding-left: 11px;
}
.has_dot:before {
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background-color: #1DD65C;
  top: 5px;
  animation: 3s blinkDot linear infinite;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 45px;
  height: 60px;
  font-size: 16px;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s all ease;
  background: linear-gradient(90deg, #0d705e 0%, #014a49 100%);
}
.btn.white_btn {
  background: #fff;
  border: 1px solid #014A49;
  color: #014A49;
  font-weight: 500;
}
.btn:hover {
  background: linear-gradient(90deg, #014a49 0%, #014a49 100%);
  box-shadow: 0 5px 10px rgba(1, 74, 73, 0.6);
  color: #fff;
}

.slider-arr {
  position: absolute;
  z-index: 2;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
}
.slider-arr:hover svg path {
  fill-opacity: 1;
}
.slider-arr.prev {
  right: 65px;
}
.slider-arr.next {
  right: 0;
}

.breadcrumbs {
  justify-content: flex-start;
}
.breadcrumbs li {
  margin-right: 15px;
  padding-right: 15px;
}
.breadcrumbs li:before {
  width: 4px;
  height: 4px;
  left: calc(100% - 2px);
  background-color: #014A49;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.breadcrumbs a, .breadcrumbs span {
  font-size: 14px;
}

.green {
  color: #014A49;
}

.green_underline {
  border-bottom: 1px dashed #014A49;
  cursor: pointer;
}
.green_underline:hover {
  border-style: solid;
}

.section_heading {
  margin: 70px 0 40px;
}
.section_heading.page_heading {
  margin: 50px 0 40px;
}
.section_heading .title {
  font-size: 36px;
}

@media only screen and (max-width: 900px) {
  .section_heading .title {
    font-size: 26px;
  }
  .section_heading .title br {
    display: none;
  }

  .btn {
    padding: 0 15px;
    width: 100%;
    height: 50px;
    text-align: center;
  }

  .breadcrumbs li {
    margin-right: 9px;
  }
  .breadcrumbs ol {
    display: inline-block;
  }
  .breadcrumbs ol li {
    display: inline;
    padding-right: 5px;
  }
  .breadcrumbs ol li:before {
    top: 60%;
  }
  .breadcrumbs a, .breadcrumbs span {
    font-size: 12px;
  }
}
@keyframes moveLine {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
@keyframes blinkDot {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0.6;
  }
}
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;
  color: #333;
}

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

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  width: 100vw;
  overflow-x: hidden;
  position: relative;
}
body.not_index {
  padding-top: 150px !important;
}
body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -9999;
  background: linear-gradient(67deg, #bfb9bd 0%, white 48%, white 50%, #bfb9bd 100%);
}

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

p {
  font-weight: 400;
  font-size: 14px;
  color: #333;
}

a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s all ease;
  color: #333;
}

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

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

form button {
  cursor: pointer;
}

b {
  font-weight: 600;
}

ol, ul {
  list-style: none;
}

svg {
  transition: 0.3s all ease;
}

svg path {
  transition: 0.3s all ease;
}

blockquote, q {
  quotes: none;
}

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

strong {
  font-weight: bold;
}

input {
  outline: none;
}

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

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

.inner-padding {
  padding: 0 80px;
}

/* 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: #014A49;
  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: 1200px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 900px) {
  html {
    overflow-x: hidden;
  }

  body.not_index {
    padding-top: 100px !important;
  }
  body.not_index header .mobile_burger_btn p {
    background-color: #fff;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.fz11 {
  font-size: 11px;
}

.fz12 {
  font-size: 12px;
}

.fz13 {
  font-size: 13px;
}

.fz15 {
  font-size: 15px;
}

.fz16 {
  font-size: 16px;
}

.fz17 {
  font-size: 17px;
}

.fz18 {
  font-size: 18px;
}

.fz19 {
  font-size: 19px;
}

.fz20 {
  font-size: 20px;
}

.fz24 {
  font-size: 24px;
}

.fz26 {
  font-size: 26px;
}

.fz40 {
  font-size: 40px;
}

form .input_block {
  width: 47%;
}
form .input_block input {
  height: 50px;
  background-color: #fff;
  border-radius: 50px;
  font-size: 15px;
  border: none;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
}
form label {
  font-size: 12px;
  color: #fff;
  margin-bottom: 5px;
  display: inline-block;
}
form button.btn {
  margin-top: 15px;
  border: none;
  width: 100%;
  height: 50px;
}
form .agree_row {
  width: 100%;
  margin-top: 10px;
  justify-content: flex-start;
}
form .agree_row label {
  font-size: 10px;
  cursor: pointer;
  margin-bottom: 0;
}
form .agree_row label a {
  font-size: 10px;
  color: #fff;
  border-bottom: 1px dashed #fff;
}
form .agree_row label a:hover {
  border-style: solid;
}
form .agree_row input {
  margin-right: 10px;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

@media only screen and (max-width: 900px) {
  form .input_block {
    width: 100%;
    margin-top: 10px;
  }
}
.content_seo h1, .content_seo h2, .content_seo h3, .content_seo h4, .content_seo h5, .content_seo h6 {
  font-size: 36px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 10px;
}
.content_seo h1 a, .content_seo h2 a, .content_seo h3 a, .content_seo h4 a, .content_seo h5 a, .content_seo h6 a {
  font-size: 36px;
  font-weight: 600;
}
.content_seo h1 span, .content_seo h2 span, .content_seo h3 span, .content_seo h4 span, .content_seo h5 span, .content_seo h6 span {
  font-size: 36px;
  font-weight: 600;
}
.content_seo h2, .content_seo h2 a, .content_seo h2 span {
  font-size: 32px;
}
.content_seo h3, .content_seo h3 a, .content_seo h3 span {
  font-size: 28px;
}
.content_seo h4, .content_seo h4 a, .content_seo h4 span {
  font-size: 24px;
}
.content_seo h5, .content_seo h5 a, .content_seo h5 span {
  font-size: 20px;
}
.content_seo h6, .content_seo h6 a, .content_seo h6 span {
  font-size: 16px;
}
.content_seo p, .content_seo a, .content_seo span {
  line-height: 145%;
  font-size: 15px;
  color: #000;
  font-family: "Montserrat", sans-serif !important;
}
.content_seo p {
  margin: 15px 0;
}
.content_seo a {
  color: #014A49;
  border-bottom: 1px dashed #014A49;
  font-weight: 500;
}
.content_seo a.btn {
  border: none !important;
  color: #fff;
  width: -moz-max-content;
  width: max-content;
}
.content_seo a:hover {
  border-style: solid;
}
.content_seo ul li {
  font-size: 15px;
  margin: 7.5px 0;
  position: relative;
  padding-left: 14px;
}
.content_seo ul li:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #014A49;
  border-radius: 50%;
}
.content_seo ul li p {
  margin: 7.5px 0;
}
.content_seo .row {
  margin-top: 25px;
  display: flex;
  align-items: flex-start;
}
.content_seo .row h1, .content_seo .row h2, .content_seo .row h3, .content_seo .row h4, .content_seo .row h5, .content_seo .row h6 {
  margin-top: 10px;
}
.content_seo .row .col-md-6:nth-child(2) {
  position: sticky;
  top: 50px;
}
.content_seo .row .col-md-6 {
  width: -moz-fit-content;
  width: fit-content;
}
.content_seo .row .col-md-6:first-child {
  margin-right: 20px;
}
.content_seo table {
  width: 100%;
}
.content_seo table tr, .content_seo table td {
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.seo_footer_text.open .show_full_content {
  display: none;
}
.seo_footer_text.open .content_seo {
  height: -moz-max-content;
  height: max-content;
}
.seo_footer_text.open .content_seo:before {
  display: none;
}
.seo_footer_text .show_full_content {
  cursor: pointer;
}
.seo_footer_text .content_seo {
  height: 240px;
  overflow: hidden;
}

@media only screen and (max-width: 900px) {
  .content_seo h1, .content_seo h2, .content_seo h3, .content_seo h4, .content_seo h5, .content_seo h6 {
    font-size: 26px;
    margin-top: 20px;
    margin-bottom: 7px;
  }
  .content_seo h2, .content_seo h2 a, .content_seo h2 span {
    font-size: 24px;
  }
  .content_seo h3, .content_seo h3 a, .content_seo h3 span {
    font-size: 22px;
  }
  .content_seo h4, .content_seo h4 a, .content_seo h4 span {
    font-size: 20px;
  }
  .content_seo h5, .content_seo h5 a, .content_seo h5 span {
    font-size: 18px;
  }
  .content_seo h6, .content_seo h6 a, .content_seo h6 span {
    font-size: 16px;
  }
  .content_seo p {
    margin: 10px 0;
  }
  .content_seo .row {
    margin-top: 15px;
    flex-flow: wrap;
  }
  .content_seo .row .col-md-6 {
    width: 100%;
  }
  .content_seo .row .col-md-6:first-child {
    margin-right: 0;
  }
  .content_seo a.btn {
    width: 100%;
    text-align: center;
  }
  .content_seo table {
    display: block;
    width: 100% !important;
    overflow-x: auto;
  }
  .content_seo table td, .content_seo table li {
    font-size: 15px;
  }

  .seo_footer_text .content_seo {
    height: 390px;
  }
}
@media only screen and (max-width: 600px) {
  .content_seo .row .col img {
    width: 100% !important;
  }
}
.messengers ul li {
  margin-right: 10px;
}
.messengers ul li:last-child {
  margin-right: 0;
}
.messengers ul a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  justify-content: center;
}
.messengers ul a:hover {
  transform: scale(1.05);
}
.messengers ul a svg {
  width: 55%;
  height: 55%;
}
.messengers ul a svg path {
  fill: #fff;
}
.messengers ul a.tg {
  background-color: #08c;
}
.messengers ul a.vi {
  background-color: #665cac;
}
.messengers ul a.wa {
  background-color: #25D366;
}

header {
  position: absolute;
  top: 0;
  z-index: 99;
  left: 0;
  width: 100%;
  padding-top: 15px;
  transition: 0.3s all ease;
}
header.fixed {
  padding-top: 10px;
  position: fixed;
  background: linear-gradient(180deg, #014A49 0%, rgba(255, 255, 255, 0) 250%);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
header.fixed .mobile_burger_btn p {
  background-color: #fff;
}
header.fixed p, header.fixed b {
  color: #fff;
}
header.fixed .top_row .logo_block img {
  width: 50px;
}
header.fixed .top_row a {
  color: #fff;
}
header.fixed .top_row .green_underline {
  border-color: #fff;
}
header.fixed .menu_row {
  margin-top: 10px;
}
header.fixed .menu_row:before, header.fixed .menu_row:after {
  background-color: rgba(255, 255, 255, 0.2);
}
header.fixed nav > ul > li.active_page > a {
  color: #fff !important;
}
header.fixed nav > ul > li.active_page > a:after {
  background-color: #fff !important;
}
header.fixed nav > ul > li.has_child > a:before {
  background-image: url("/img/menu_arr_white.png") !important;
}
header.fixed nav > ul > li > a {
  color: #fff;
}
header.fixed nav > ul > li > a svg path {
  fill: #fff;
}
header.fixed .lang_block p span {
  color: #fff;
}
header .logo_block img {
  width: 73px;
  transition: 0.3s all ease;
}
header .address p {
  max-width: 160px;
}
header .address a:hover {
  text-decoration: underline;
}
header .phone_block {
  flex-direction: column;
}
header .phone_block .green_underline {
  margin-top: 2px;
}
header .phone_block a:hover {
  text-decoration: underline;
}
header .menu_row {
  position: relative;
  margin-top: 15px;
}
header .menu_row nav ul > li {
  margin-right: 100px;
  height: 40px;
}
header .menu_row nav ul > li.active_page > a {
  position: relative;
  color: #014A49;
}
header .menu_row nav ul > li.active_page > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #014A49;
  height: 3px;
}
header .menu_row nav ul li.has_child {
  position: relative;
}
header .menu_row nav ul li.has_child > a {
  position: relative;
}
header .menu_row nav ul li.has_child > a:before {
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 7px);
  width: 10px;
  height: 10px;
  background-image: url("/img/menu_arr.png");
}
header .menu_row nav ul li.has_child li {
  height: 30px;
  margin-right: 0;
}
header .menu_row nav ul li.has_child li a {
  padding-right: 5px;
  height: 30px;
}
header .menu_row nav ul li.has_child li a:before {
  left: 100%;
  transform: translateY(-50%) rotate(0deg);
}
header .menu_row nav ul li.has_child ul {
  padding: 10px 20px;
  top: 100%;
  left: -10px;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
header .menu_row nav ul li.has_child:hover > a:before {
  transform: translateY(-50%) rotate(180deg);
}
header .menu_row nav ul li.has_child:hover > ul {
  z-index: 9;
  opacity: 1;
  visibility: visible;
}
header .menu_row nav ul li:last-child {
  margin-right: 0;
}
header .menu_row nav ul a {
  padding: 10px 0;
  height: 40px;
  display: flex;
  align-items: center;
}
header .menu_row nav ul a:hover {
  text-decoration: underline;
}
header .menu_row nav ul .has_child li:hover a:before {
  transform: translateY(-50%) rotate(-90deg) !important;
}
header .menu_row nav ul .has_child ul.child_menu {
  top: -10px;
  left: calc(100% + 20px);
}
header .menu_row a, header .menu_row p {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}
header .menu_row:before, header .menu_row:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
header .menu_row:after {
  top: 100%;
}
header .lang_block {
  cursor: pointer;
}
header .lang_block img {
  margin-left: 7px;
  width: 23px;
}
header .lang_block .current_lang {
  height: 40px;
}
header .lang_block:hover .child_langs {
  z-index: 9;
  opacity: 1;
  visibility: visible;
}
header .child_langs {
  padding: 7px 10px;
  top: 100%;
  right: 0;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
header .child_langs a:hover span {
  text-decoration: underline;
}
header .child_langs li {
  margin-bottom: 7px;
}
header .child_langs li:last-child {
  margin-bottom: 0;
}
header.menu_open .mobile_burger_btn p:first-child {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
header.menu_open .mobile_burger_btn p:last-child {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
header.menu_open .mobile_burger_btn p:nth-child(2) {
  opacity: 0;
}
header .mobile_burger_btn {
  display: none;
  margin-left: 20px;
  height: 22px;
  position: relative;
  width: 25px;
}
header .mobile_burger_btn p {
  transition: 0.3s all ease;
  width: 25px;
  height: 3px;
  background-color: #014A49;
  position: absolute;
}
header .mobile_burger_btn p:first-child {
  top: 0;
}
header .mobile_burger_btn p:last-child {
  bottom: 0;
}
header.service_page .menu_row:after {
  display: none;
}

@media only screen and (max-width: 1600px) {
  header .menu_row nav ul > li {
    margin-right: 6.25vw;
  }
}
@media only screen and (max-width: 1250px) {
  header .top_row .address {
    display: none;
  }
}
@media only screen and (max-width: 900px) {
  body.not_index header {
    background: linear-gradient(180deg, #014A49 0%, rgba(255, 255, 255, 0) 250%);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    padding-bottom: 10px;
  }
  body.not_index header .green,
body.not_index header a {
    color: #fff;
  }
  body.not_index header .green_underline {
    border-color: #fff;
  }

  header {
    padding-top: 10px;
  }
  header.menu_open {
    padding-bottom: 0 !important;
    position: fixed;
    background: linear-gradient(180deg, #014A49 0%, rgba(255, 255, 255, 0) 250%);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    max-height: 100vh;
    overflow-y: scroll;
  }
  header.menu_open::-webkit-scrollbar {
    display: none;
  }
  header.menu_open .top_row {
    padding-bottom: 10px;
  }
  header.menu_open .phone_block a, header.menu_open .phone_block p {
    color: #fff;
  }
  header.menu_open .phone_block .green_underline {
    border-color: #fff;
  }
  header.menu_open .mobile_burger_btn p {
    background-color: #fff;
  }
  header.menu_open .menu_row {
    display: block;
    background-color: #fff;
    margin: 0 -20px;
    padding: 0 20px;
    z-index: 1;
  }
  header.menu_open .menu_row .lang_block {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
    margin-top: 20px;
  }
  header.menu_open .menu_row .lang_block .current_lang {
    display: none;
  }
  header.menu_open .menu_row .lang_block li:first-child {
    margin-right: 20px;
  }
  header.menu_open .menu_row .lang_block .child_langs {
    display: flex;
    justify-content: center;
    position: relative;
    top: 0;
    opacity: 1;
    visibility: visible;
    z-index: 2;
    box-shadow: none;
  }
  header.menu_open .menu_row nav ul {
    flex-direction: column;
  }
  header.menu_open .menu_row nav ul li {
    margin-right: 0;
  }
  header.menu_open .menu_row nav ul li svg path {
    fill: #014A49 !important;
  }
  header.menu_open .menu_row nav ul li a {
    color: #333 !important;
  }
  header.fixed {
    padding-bottom: 10px;
  }
  header .mobile_burger_btn {
    display: flex;
  }
  header .top_row .logo_block p,
header .top_row .messengers_block {
    display: none;
  }
  header .menu_row {
    display: none;
  }
  header .menu_row nav ul li {
    height: -moz-max-content;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  header .menu_row nav ul li.has_child li {
    min-height: 40px;
    height: -moz-max-content;
    height: max-content;
  }
  header .menu_row nav ul li.has_child li li a,
header .menu_row nav ul li.has_child li a {
    min-height: 40px;
    height: -moz-max-content;
    height: max-content;
    padding: 5px 0;
    text-align: center;
  }
  header .menu_row nav ul li ul {
    padding: 0 !important;
  }
  header .menu_row nav ul li.has_child:hover > ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: none;
  }
  header .logo_block img {
    width: 50px;
  }
  header .phone_block a.fz20 {
    font-size: 17px;
  }
  header .phone_block .green_underline {
    font-size: 13px;
    margin-top: 0;
  }
}
.hero_section {
  padding: 220px 0 50px;
  min-height: 760px;
}
.hero_section .container {
  z-index: 2;
}
.hero_section .hero_offer {
  max-width: 680px;
}
.hero_section .hero_offer h1 {
  font-weight: 400;
  font-size: 52px;
  margin-bottom: 30px;
}
.hero_section .hero_offer h1 b {
  font-weight: 700;
}
.hero_section .btns_row {
  justify-content: flex-start;
}
.hero_section .btns_row svg {
  margin-left: 15px;
}
.hero_section .btns_row .btn {
  margin-right: 40px;
}
.hero_section:before {
  background-color: rgba(255, 255, 255, 0.6);
}

.services_section.service_page .services_block .right {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.services_section .services_block {
  align-items: flex-start;
}
.services_section .services_block .left {
  position: sticky;
  top: 120px;
  width: 325px;
  min-width: 325px;
  margin-right: 50px;
}
.services_section .services_block .left .service_link {
  margin-top: 10px;
  display: none;
}
.services_section .services_block .left li {
  margin-top: 20px;
}
.services_section .services_block .left li:first-child {
  margin-top: 0;
}
.services_section .services_block .left li.current .service_link {
  display: inline-block;
}
.services_section .services_block .left li.current label {
  color: #014A49;
  opacity: 1;
  font-weight: 600;
}
.services_section .services_block .left li.current label:before {
  opacity: 1;
  filter: grayscale(0);
}
.services_section .services_block .left input {
  display: none !important;
}
.services_section .services_block .left label {
  display: block;
  padding-right: 20px;
  font-size: 18px;
  color: #3E3E3E;
  opacity: 0.85;
  cursor: pointer;
  transition: 0.3s all ease;
}
.services_section .services_block .left label:before {
  width: 5px;
  height: 10px;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("/img/service_child.png");
  opacity: 0.5;
  filter: grayscale(1);
}
.services_section .services_block .left label:hover {
  color: #014A49;
  opacity: 1;
  font-weight: 600;
}
.services_section .services_block .left label:hover:before {
  opacity: 1;
  filter: grayscale(0);
}
.services_section .services_block .right {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-row-gap: 35px;
  grid-column-gap: 40px;
}

.partners_section {
  margin-bottom: -20px;
}
.partners_section.partners_page .section_heading {
  margin: 50px 0 40px;
}
.partners_section.partners_page .partners_slider {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.partners_section .section_heading {
  margin-top: 80px;
  margin-bottom: 20px;
}

.partners_slider .slider-arr {
  top: -53px;
  transform: translateY(0);
}
.partners_slider .partners_slide {
  cursor: pointer;
}
.partners_slider .partners_slide p {
  height: 140px;
}

@media only screen and (max-width: 1600px) {
  .services_section .services_block .left {
    width: 305px;
    min-width: 305px;
  }
  .services_section .services_block .left label {
    font-size: 17px;
  }
  .services_section .services_block .right {
    grid-row-gap: 2.188vw;
    grid-column-gap: 2.5vw;
  }

  .partners_section.partners_page .partners_slider {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 1300px) {
  .services_section .services_block .right {
    grid-template-columns: 1fr 1fr;
  }

  .partners_section.partners_page .partners_slider {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 1100px) {
  .partners_section.partners_page .partners_slider {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 900px) {
  .partners_section.partners_page .partners_slider {
    grid-template-columns: 1fr 1fr;
  }

  .hero_section {
    min-height: -moz-max-content;
    min-height: max-content;
    padding: 150px 0 50px;
  }
  .hero_section .hero_offer h1 {
    font-size: 32px;
  }
  .hero_section .btns_row .btn {
    margin: 0 0 15px 0;
  }

  .services_section .services_block {
    flex-flow: wrap;
    width: 100%;
  }
  .services_section .services_block .left {
    width: 100%;
    position: relative;
    top: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .services_section .services_block .right {
    width: 100%;
    grid-row-gap: 10px;
    grid-column-gap: 10px;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
  }
  .services_section .services_block .right .service_item {
    width: 48.5%;
  }

  .partners_slider .slider-arr {
    top: -43px;
  }
}
.service_item {
  background-color: rgba(13, 112, 94, 0.2);
  padding: 25px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service_item:before {
  background: rgba(13, 112, 94, 0.4);
  z-index: 1;
}
.service_item .title {
  font-weight: 600;
  font-size: 19px;
  max-width: 80%;
  color: #fff;
  text-shadow: 0 1px 1px black;
}
.service_item .order, .service_item .title {
  position: relative;
  z-index: 2;
}
.service_item .number {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.service_item .arrow {
  transition: 0.3s all ease;
  background-color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.service_item.need_consult {
  background-color: #014A49;
}
.service_item.need_consult p {
  color: #fff;
}
.service_item.need_consult a.btn {
  height: 45px;
  background: #229ED9;
  font-size: 14px;
}
.service_item.need_consult a.btn:hover {
  transform: scale(1.05);
}
.service_item.need_consult a.btn img {
  margin-left: 14px;
}
.service_item.need_consult:hover p {
  text-decoration: none;
}
.service_item:hover .title {
  text-decoration: underline;
}
.service_item:hover .arrow {
  background-color: #014A49;
  transform: rotate(135deg);
}
.service_item:hover .arrow svg path {
  stroke: #fff;
}

.hero_service {
  padding: 20px 55px 60px;
}
.hero_service:before {
  background-color: rgba(1, 74, 73, 0.16);
  border-radius: 15px;
}
.hero_service .service_bg {
  position: absolute;
  border-radius: 15px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.2;
}
.hero_service .text_block {
  max-width: 800px;
}
.hero_service .section_heading {
  margin: 60px 0 25px;
}
.hero_service .section_heading .title {
  font-size: 40px;
}
.hero_service .btns_row svg, .hero_service .btns_row img {
  margin-left: 15px;
}
.hero_service .btns_row .btn {
  height: 55px;
}
.hero_service .btns_row .tg_btn {
  background: #08c;
  margin-left: 20px;
}
.hero_service .btns_row .tg_btn:hover {
  box-shadow: 0 5px 10px rgba(0, 136, 204, 0.5);
}

.service_page_content {
  align-items: flex-start;
  position: relative;
}
.service_page_content .right_sidebar {
  height: -moz-max-content;
  height: max-content;
  position: sticky;
  top: 130px;
  margin-left: 40px;
  width: 280px;
  min-width: 280px;
  background-color: #014A49;
  border-radius: 15px;
  padding: 20px 25px;
}
.service_page_content .right_sidebar p, .service_page_content .right_sidebar a {
  color: #fff;
  font-size: 15px;
}
.service_page_content .right_sidebar ul li {
  margin-bottom: 10px;
}
.service_page_content .right_sidebar ul li p:before {
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background-color: #fff;
  left: -12px;
  top: 7px;
}
.service_page_content .right_sidebar a:hover {
  text-decoration: underline;
}
.service_page_content .tg_btn.btn {
  background: #08c;
  font-size: 13px;
  padding: 0 15px;
  height: 50px;
}
.service_page_content .tg_btn.btn img {
  margin-left: 15px;
}

@media only screen and (max-width: 1300px) {
  .services_section.service_page .services_block .right {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 900px) {
  .service_item {
    padding: 15px 20px;
    min-height: 225px;
  }
  .service_item .title {
    font-size: 15px;
    max-width: 100%;
  }
  .service_item.need_consult a.btn {
    font-size: 13px;
  }
  .service_item.need_consult a.btn img {
    margin-left: 10px;
  }
  .service_item.need_consult p br {
    display: none;
  }

  .hero_service {
    padding: 20px 20px 50px;
    margin: -30px -20px 0;
  }
  .hero_service .btns_row .btn {
    height: 50px;
  }
  .hero_service .btns_row .tg_btn {
    margin: 15px 0 0;
  }
  .hero_service .section_heading .title {
    font-size: 32px;
  }
  .hero_service:before,
.hero_service .service_bg {
    border-radius: 0;
  }

  .service_page_content.nowrap {
    flex-flow: wrap;
  }
  .service_page_content .left {
    width: 100%;
  }
  .service_page_content .right_sidebar {
    display: none;
  }
}
.blog_posts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.blog_post .post_img {
  display: block;
  height: 350px;
}
.blog_post .post_img:hover {
  box-shadow: 0 5px 10px rgba(1, 74, 73, 0.6);
}
.blog_post .date {
  color: #8A8A8A;
  margin: 12px 0 10px;
}
.blog_post .date span {
  color: #8A8A8A;
}

.pagination {
  justify-content: center;
  margin-top: 50px;
}
.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;
}
.pagination nav span.relative > span {
  width: 30px;
  height: 30px;
  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: #014A49;
  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: 1600px) {
  .blog_posts {
    grid-column-gap: 2.5vw;
    grid-row-gap: 2.5vw;
  }

  .blog_post .post_img {
    height: 21.875vw;
  }
}
@media only screen and (max-width: 900px) {
  .blog_post {
    width: 250px;
  }
  .blog_post a.fz18 {
    font-size: 16px;
  }
  .blog_post .date {
    font-size: 12px;
  }
  .blog_post .post_img {
    height: 200px;
  }

  .blog_posts_inner {
    overflow-x: scroll;
    margin-left: -20px;
    margin-right: -20px;
  }
  .blog_posts_inner::-webkit-scrollbar {
    display: none;
  }
  .blog_posts_inner .blog_posts {
    width: -moz-max-content;
    width: max-content;
    padding: 0 20px;
  }

  .blog_page .blog_posts {
    grid-template-columns: 1fr;
    width: 100%;
    grid-row-gap: 25px;
  }
  .blog_page .blog_posts .blog_post {
    width: 100%;
  }
}
.contact_page .inner {
  align-items: flex-start;
}
.contact_page .left .messengers ul {
  margin-top: 0;
  margin-left: 15px;
}
.contact_page .map_block {
  margin-top: -80px;
  height: 400px;
  width: 935px;
}
.contact_page .map_block iframe {
  border-radius: 15px;
}

@media only screen and (max-width: 1600px) {
  .contact_page .map_block {
    width: 59.688vw;
  }
}
@media only screen and (max-width: 900px) {
  .contact_page .inner.nowrap {
    flex-flow: wrap;
  }
  .contact_page .left {
    width: 100%;
  }
  .contact_page div.mt20 {
    justify-content: flex-start;
  }
  .contact_page .map_block {
    width: 100%;
    margin-top: 50px;
  }
}
.error_page {
  margin-top: 100px;
}
.error_page .title {
  font-size: 200px;
}
.error_page .subtitle {
  margin: 20px 0 60px;
  font-size: 20px;
}

@media only screen and (max-width: 900px) {
  .error_page .title {
    font-size: 80px;
  }
  .error_page .subtitle {
    font-size: 16px;
  }
}
footer {
  margin-top: 100px;
  background-color: rgba(13, 112, 94, 0.67);
}
footer .container {
  padding-top: 50px;
  align-items: flex-start;
}
footer p, footer a, footer b {
  color: #fff !important;
}
footer .menu_col {
  max-width: 260px;
}
footer .menu_col li {
  margin-bottom: 7.5px;
  line-height: 18px;
}
footer .menu_col a:hover {
  text-decoration: underline;
}
footer .title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
footer .logo_col {
  margin-top: -13px;
}
footer .location a {
  border-bottom: 1px dashed #fff;
}
footer .location a:hover {
  border-style: solid;
}
footer .socials li {
  margin-right: 15px;
}
footer .phone a {
  display: block;
  margin-top: 2px;
}
footer p.btn {
  height: 50px;
}
footer .messengers ul {
  margin-top: 10px;
  margin-left: 0;
}
footer .rights_row {
  background-color: #014A49;
  width: 100%;
  padding: 20px 0;
}
footer .rights_row .container {
  padding-top: 0;
  align-items: center;
}
footer .rights_row .container a {
  border-bottom: 1px dashed #fff;
}
footer .rights_row .container a:hover {
  border-style: solid;
}
footer .rights_row p {
  color: #505050;
}

@media only screen and (max-width: 900px) {
  footer .contacts_col,
footer .menu_col,
footer .logo_col {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  footer .messengers {
    margin-top: 40px;
  }
  footer br {
    display: none;
  }
  footer .phone, footer .location, footer .messengers ul,
footer ul.socials {
    justify-content: center;
  }
  footer .title, footer p,
footer li {
    text-align: center;
  }
  footer .rights_row .container {
    flex-direction: column;
  }
  footer .rights_row .container a {
    display: inline-block;
    margin-top: 5px;
  }
}
.callback_section {
  margin-top: 70px;
}

.callback_inner {
  background-color: #0D705E;
  border-radius: 20px;
  padding: 70px;
}
.callback_inner:before {
  border-radius: 20px;
  background-color: rgba(1, 74, 73, 0.5);
}
.callback_inner p, .callback_inner b {
  color: #fff;
}
.callback_inner .title {
  font-size: 35px;
}
.callback_inner .subtitle {
  max-width: 80%;
}
.callback_inner .right,
.callback_inner .left {
  position: relative;
  z-index: 1;
}
.callback_inner .left {
  max-width: 500px;
}
.callback_inner .right {
  max-width: 455px;
}
.callback_inner .phone_row {
  justify-content: flex-start;
}
.callback_inner .phone_row a {
  margin-left: 20px;
}
.callback_inner .phone_row a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1600px) {
  .callback_inner {
    padding: 4.375vw;
  }
}
@media only screen and (max-width: 1300px) {
  .callback_inner.nowrap {
    flex-flow: wrap;
  }
  .callback_inner .subtitle {
    display: none;
  }
  .callback_inner .right,
.callback_inner .left {
    width: 100%;
    max-width: 100%;
  }
  .callback_inner .right {
    margin-top: 20px;
  }
  .callback_inner .right p.fz20 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) {
  .callback_inner {
    padding: 40px 20px;
    border-radius: 0;
    margin-left: -20px;
    margin-right: -20px;
  }
  .callback_inner .title {
    font-size: 30px;
  }
  .callback_inner .title br {
    display: none;
  }
  .callback_inner:before {
    border-radius: 0;
  }
}
.modal_window {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  justify-content: center;
}
.modal_window.show {
  opacity: 1;
  visibility: visible;
  z-index: 99999;
}
.modal_window.show .inner {
  top: 0;
}
.modal_window .inner {
  top: 100px;
  width: 775px;
  background: linear-gradient(90deg, #0d705e 0%, #014a49 100%);
  padding: 30px 40px;
  border-radius: 15px;
}
.modal_window .inner .close_modal {
  position: absolute;
  top: 30px;
  right: 40px;
  cursor: pointer;
}
.modal_window .inner .close_modal img {
  width: 20px;
  transition: 0.3s all ease;
}
.modal_window .inner .close_modal:hover img {
  transform: rotate(90deg);
}
.modal_window .inner .col {
  width: 48%;
}
.modal_window .inner .title {
  font-size: 32px;
}
.modal_window .inner button.btn {
  height: 50px;
  font-size: 18px;
  background: #FAD550 !important;
  color: #014A49;
}
.modal_window .inner button.btn:hover {
  transform: scale(1.01);
  box-shadow: 0 5px 10px rgba(250, 213, 80, 0.6);
}
.modal_window .inner p, .modal_window .inner a {
  color: #fff !important;
}
.modal_window .inner .agree_row a {
  border-bottom: 1px dashed #fff;
}
.modal_window .inner .agree_row a:hover {
  border-style: solid;
}

@media only screen and (max-width: 900px) {
  .modal_window {
    padding: 20px;
  }
  .modal_window .inner {
    padding: 30px 20px;
  }

  .thx_page h1, .thx_page p {
    text-align: center;
  }
  .thx_page .btn {
    width: 100% !important;
  }
}
