* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #024796;
  --secondary: #5bc6ff;
  --title: #0f0f0f;
  --text: #565656;
  --bg: #004595, #6ec5f2;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 14px);
}
ul {
  list-style: none;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i {
  font-style: normal;
}
.content, .full_text_editor_content {
  max-width: 140rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 143rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
  color: var(--title);
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
  font-family: "Geist", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
li.swiper-slide {
  height: auto;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
div[data-wpr-lazyrender] {
  content-visibility: unset;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img {
  position: absolute;
  left: 0;
  top: 0;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.btn {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 2;
  border-radius: 100px;
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 600;
  background-image: linear-gradient(to right, var(--bg));
  padding: 2.4rem 3.95rem 2.1rem;
}
.btn::before {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 1px;
  left: 1px;
  position: absolute;
  border-radius: 100px;
  background-color: #fff;
  content: '';
  pointer-events: none;
  z-index: -1;
  transition: all 0.3s;
  opacity: 0;
}
.btn:hover {
  color: var(--primary);
}
.btn:hover::before {
  opacity: 1;
}
.btn_more {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #f8f9fc;
  position: relative;
  z-index: 2;
  border-radius: 100px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #020e28;
  line-height: normal;
  padding: 2.15rem 3.7rem;
  gap: 0.9rem;
}
.btn_more::before {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, var(--bg));
  left: 0;
  top: 0;
  position: absolute;
  border-radius: 100px;
  content: '';
  pointer-events: none;
  z-index: -1;
  transition: all 0.3s;
  opacity: 0;
}
.btn_more::after {
  width: 0.9rem;
  height: 0.9rem;
  display: inline-block;
  content: '';
  background: url("../img/add.svg") no-repeat center / contain;
  transition: all 0.3s;
}
.btn_more:hover {
  color: #fff;
  background-color: transparent;
}
.btn_more:hover::before {
  opacity: 1;
}
.btn_more:hover::after {
  filter: contrast(0) brightness(2);
  transform: rotate(360deg);
}
.btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  background-color: transparent;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: normal;
  color: var(--title);
  gap: 2.6rem;
}
.btn_i i {
  position: relative;
  z-index: 2;
  width: 6.1rem;
  display: inline-block;
  flex-shrink: 0;
  border-radius: 50%;
  transition: all 0.3s, transform 0.4s;
  background-color: #fff;
}
.btn_i i::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-image: linear-gradient(to right, var(--bg));
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s;
}
.btn_i i::after {
  width: 100%;
  padding-bottom: 100%;
  display: block;
  content: '';
  background: url("../img/arrow-line.svg") no-repeat center / 32.78688%;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
.btn_i:hover {
  color: var(--primary);
}
.btn_i:hover i {
  transform: translateX(20%);
}
.btn_circle {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 6.1rem;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s;
}
.btn_circle::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(to right, var(--bg));
  transition: all 0.3s;
  opacity: 0;
}
.btn_circle::after {
  width: 100%;
  padding-bottom: 100%;
  display: block;
  content: '';
  background: url("../img/arrow-tr2.svg") no-repeat center / 24.59%;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
}
.btn_circle:hover {
  background-color: transparent;
}
.btn_circle:hover::before {
  opacity: 1;
}
.btn_circle:hover::after {
  transform: rotate(45deg);
  filter: contrast(0) brightness(2);
}
.swiper_btns {
  gap: 3.2rem;
  display: flex;
}
.swiper_btns div {
  position: relative;
  z-index: 2;
  width: 6.1rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid var(--title);
  background-color: var(--title);
}
.swiper_btns div::before {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  left: -1px;
  top: -1px;
  border-radius: 50%;
  background-image: linear-gradient(to right, var(--bg));
  z-index: -1;
  content: '';
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow-l.svg) no-repeat center / 33.898%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  background-color: transparent;
  border-color: transparent;
}
.swiper_btns div:hover::before {
  opacity: 1;
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(36, 36, 36, 0.45);
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns .swiper-button-disabled::before {
  opacity: 0;
}
.swiper_btns .swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 171.7rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.swiper_btns.lar div {
  width: 6.4rem;
}
.swiper_btns.sm div {
  width: 5.7rem;
}
.swiper_btns.line div {
  border-color: rgba(36, 36, 36, 0.45);
  background-color: transparent;
}
.swiper_btns.line div::after {
  filter: unset;
}
.swiper_btns.line div:hover {
  border-color: transparent;
}
.swiper_btns.line div:hover::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns.line .swiper-button-disabled {
  opacity: 0.5;
}
.swiper_btns.line.w div {
  border-color: rgba(255, 255, 255, 0.45);
}
.swiper_btns.line.w div:hover {
  border-color: transparent;
}
.swiper_btns.line.w div::after {
  filter: contrast(0) brightness(2);
  background-image: url("../img/arrow.svg");
  background-size: 16.3636%;
}
.head strong {
  display: inline-grid;
  grid-template-columns: 0.8rem 1fr;
  align-items: center;
  font-size: 2rem;
  line-height: normal;
  font-weight: 400;
  text-transform: uppercase;
  gap: 1.3rem;
  margin-bottom: 1.9rem;
}
.head strong::before {
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: var(--secondary);
  content: '';
  display: block;
}
.head h2 {
  font-size: 5rem;
  line-height: 6.4rem;
  font-weight: 600;
}
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.3s;
  background-color: #fff;
}
header.opt {
  top: -9rem;
}
header.sticky {
  box-shadow: 0 5px 5px rgba(186, 186, 186, 0.35);
}
header.style {
  box-shadow: 0 5px 5px rgba(186, 186, 186, 0.35);
}
header .left {
  display: flex;
  align-items: center;
  padding-left: 6rem;
  padding-top: 1px;
  margin-right: 5.3%;
}
header .left .logo {
  display: block;
  position: relative;
}
header .left .logo img {
  display: block;
  width: auto;
  height: 5.75rem;
}
header .left .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .menu {
  display: flex;
  gap: 5.2rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li::after {
  width: 0;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: 0;
  content: '';
  background-color: var(--primary);
  transform: translateX(-50%);
  transition: all 0.3s;
}
header nav .menu > li > a {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  color: #282828;
  transition: all 0.3s;
  text-transform: uppercase;
  line-height: 8.8rem;
  padding-top: 2px;
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a,
header nav .menu > li:hover > a {
  color: var(--primary);
}
header nav .menu > li.current-menu-item::after,
header nav .menu > li.current-menu-parent::after,
header nav .menu > li:hover::after {
  width: 100%;
}
header nav .menu > li:hover ul {
  opacity: 1;
  pointer-events: all;
  padding: 1.6rem 2.4rem;
}
header nav .menu > li:hover ul li {
  transform: translate(0);
}
header nav .menu > li.btn_mega_menu .sub-menu {
  display: none;
}
header nav .sub-menu {
  left: -2.4rem;
  position: absolute;
  min-width: 20rem;
  background-color: #fff;
  padding: 1.6rem 2.4rem 0;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}
header nav .sub-menu > li {
  margin-bottom: 0.5rem;
  transition: all 0.4s;
  transform: translateY(-1.6rem);
}
header nav .sub-menu > li > a {
  display: block;
  padding: 0.8rem 0;
  transition: all 0.3s;
  font-size: 1.5rem;
  position: relative;
}
header nav .sub-menu > li > a::after {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  background-color: var(--primary);
  transition: all 0.3s;
}
header nav .sub-menu > li > a:hover::after {
  width: 100%;
}
header .btns {
  display: flex;
  justify-content: flex-end;
  min-height: 9rem;
}
header .btns .btn_search,
header .btns .btn_menu,
header .btns .btn_i,
header .btns .btn_lang {
  border-left: 1px solid rgba(40, 40, 40, 0.22);
}
header .btns .btn_search,
header .btns .btn_lang,
header .btns .btn_menu {
  width: 9.1rem;
  cursor: pointer;
  transition: all 0.3s;
  background: no-repeat center/2rem;
  position: relative;
}
header .btns .btn_lang .lang-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: 2rem;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all .3s;
  background: url("../img/icon-lang.svg") no-repeat center/contain;
}
header .btns .btn_search {
  background-size: 1.9rem;
  background-image: url("../img/icon-search.svg");
}
header .btns .btn_menu {
  display: none;
}
header .btns .btn_i {
  padding: 1rem 3.5rem;
  gap: 1.8rem;
}
header .btns .btn_i:hover i::after {
  transform: rotate(0);
}
header .btns .btn_i i {
  width: 4.5rem;
}
header .btns .btn_i i::after {
  transform: rotate(-45deg);
}
footer {
  background-color: #1156a8;
  color: #fff;
}
footer .footer_main {
  padding: 21.1rem 0 20.4rem;
}
footer .footer_main .flex {
  gap: 5rem 2rem;
}
footer .footer_main strong {
  display: block;
  font-size: 1.8rem;
  opacity: 0.56;
  font-weight: 400;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.1px;
}
footer .footer_main .slide_intro {
  width: 28.2rem;
  margin-top: -13rem;
}
footer .footer_main .slide_intro .logo {
  display: block;
  position: relative;
  max-width: 24.5rem;
  margin-bottom: 5.3rem;
}
footer .footer_main .slide_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .footer_main .slide_intro .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .footer_main .slide_intro p {
  opacity: 0.85;
  line-height: 3rem;
  margin: 2.6rem 0 2rem;
}
footer .footer_main .slide_intro .social {
  gap: 2rem 4.3rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.7rem;
}
footer .footer_main .slide_intro .social .active a::after {
  filter: unset;
}
footer .footer_main .slide_intro .social a {
  opacity: 1;
  display: block;
  width: 2.3rem;
  height: 2.3rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
footer .footer_main .slide_intro .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
  filter: contrast(0) brightness(2);
  transition: all 0.3s;
}
footer .footer_main .slide_intro .social a:hover {
  transform: scale(1.1);
}
footer .footer_main .slide_intro .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .footer_main .slide_intro .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .footer_main .slide_intro .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
footer .footer_main .slide_intro .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .footer_main .slide_obj strong {
  margin-bottom: 2.4rem;
}
footer .footer_main .slide_obj li a {
  font-weight: 500;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
  font-weight: 400;
  letter-spacing: 0.2px;
}
footer .footer_main .slide_obj li a:hover {
  opacity: 1;
  color: #eca72a;
  text-decoration-color: #eca72a;
}
footer .footer_main .slide_obj li + li {
  margin-top: 1.9rem;
}
footer .footer_main .slide_connect {
  width: 29.3rem;
}
footer .footer_main .slide_connect strong {
  margin-bottom: 2.6rem;
}
footer .footer_main .slide_connect li {
  position: relative;
  padding-left: 6.6rem;
}
footer .footer_main .slide_connect li::before {
  content: '';
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  border: 1px solid #dbdbdb;
  background: no-repeat center left / contain #fff;
  position: absolute;
  left: 0;
  top: 0;
}
footer .footer_main .slide_connect li a {
  font-weight: 600;
  font-weight: 500;
}
footer .footer_main .slide_connect li .label {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
footer .footer_main .slide_connect li + li {
  margin-top: 4.6rem;
}
footer .footer_main .slide_connect .phone::before {
  background-image: url(../img/icon-phone1.svg);
}
footer .footer_main .slide_connect .email::before {
  top: -0.6rem;
  background-image: url(../img/icon-email1.svg);
}
footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.7rem 0 1.4rem;
}
footer .copyright p,
footer .copyright a {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.1px;
}
footer .copyright a {
  opacity: 0.68;
  display: block;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .copyright a:hover {
  opacity: 1;
  color: #eca72a;
  text-decoration-color: #eca72a;
}
footer .copyright ul {
  gap: 2rem 4.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.page_cases {
  padding: 8.8rem 0 9.8rem;
  overflow: hidden;
}
.page_cases .left {
  position: relative;
  z-index: 2;
}
.page_cases strong {
  margin-bottom: 2.5rem;
}
.page_cases .head {
  padding-bottom: 0.4rem;
}
.page_cases .main {
  margin-top: 7rem;
}
.page_cases .main .left {
  width: 33.43%;
  padding: 1.2rem 0 0.4rem;
}
.page_cases .main .right {
  position: relative;
  width: 61.57%;
  display: flex;
}
.page_cases .page_cases_intro_swiper {
  overflow: hidden;
  font-size: 1.8rem;
  line-height: 1.4444;
  color: var(--text);
  height: 100%;
}
.page_cases .page_cases_intro_swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page_cases .page_cases_intro_swiper strong {
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 400;
  font-size: 2rem;
}
.page_cases .page_cases_intro_swiper h3 {
  font-size: 4rem;
  line-height: 5.6rem;
  font-weight: 600;
  margin-top: 4.1rem;
  color: var(--title);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page_cases .page_cases_intro_swiper p {
  margin-top: 1.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page_cases .page_cases_intro_swiper .btn {
  margin-top: 3.9rem;
}
.page_cases .page_cases_intro_swiper .nums {
  margin-top: 2rem;
}
.page_cases .page_cases_intro_swiper .nums ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.1rem;
}
.page_cases .page_cases_intro_swiper .nums .num {
  font-size: 3.8rem;
  font-weight: 600;
  color: var(--title);
  white-space: nowrap;
}
.page_cases .page_cases_intro_swiper .nums .label {
  margin-top: 0.5rem;
}
.page_cases .page_cases_img_swiper {
  width: 100%;
  margin-top: auto;
}
.page_cases .page_cases_img_swiper .swiper-slide {
  opacity: 0;
  transform: translateX(100%) scale3d(0.3, 0.3, 0.3);
  transition: transform 0.3s, opacity 0.3s;
}
.page_cases .page_cases_img_swiper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}
.page_cases .page_cases_img_swiper .swiper-slide-active ~ .swiper-slide {
  opacity: 1;
  transform: scale(1);
}
.page_cases .page_cases_img_swiper .img {
  display: block;
  padding-bottom: 67.05336%;
  border-radius: 8px;
}
.page_cases .page_cases_img_swiper .img:hover img {
  transform: scale(1.02);
}
.page_cases .page_cases_img_swiper .btn_circle {
  position: absolute;
  top: 4.4983%;
  right: 3.0162413%;
}
.page_cases .page_cases_img_swiper .mask {
  position: absolute;
  right: -1px;
  bottom: -1px;
  z-index: 2;
  width: 21.6rem;
  background: url("../img/case-mask.png") no-repeat right bottom / contain;
}
.page_cases .page_cases_img_swiper .mask::after {
  width: 100%;
  padding-bottom: 50.463%;
  display: block;
  content: '';
}
.page_cases .swiper_btns {
  position: absolute;
  right: 0;
  bottom: 0.6rem;
}
.page_banner {
  background: no-repeat center / cover;
  overflow: hidden;
}
.page_banner .flex {
  min-height: 68rem;
  padding: 6rem 0;
}
.page_banner .head {
  flex: 1;
  color: #fff;
  max-width: 660px;
}
.page_banner h1 {
  font-size: 6rem;
  line-height: 7.4rem;
  font-weight: 700;
}
.page_banner p {
  font-size: 1.8rem;
  line-height: 3rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 60.1rem;
  margin-top: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.12px;
}
.page_banner .img {
  width: 52.143%;
  margin-right: -5%;
}
.page_banner .img:hover img {
  transform: scale(1.02);
}
.page_banner .btn {
  margin-top: 4.1rem;
  min-width: 21.8rem;
}
.page_advantages {
  padding: 8.7rem 0 10.4rem;
}
.page_advantages strong {
  margin-bottom: 2.5rem;
}
.page_advantages .page_advantages_swiper {
  margin-top: 3rem;
}
.page_advantages .page_advantages_swiper .active .item {
  background-color: #1156a8;
  border-color: #1156a8;
  box-shadow: 15px 10px 15px rgba(155, 155, 155, 0.35);
  color: #fff;
}
.page_advantages .page_advantages_swiper .active .icon {
  filter: contrast(0) brightness(2);
}
.page_advantages .page_advantages_swiper .active .more {
  color: #fff;
}
.page_advantages .page_advantages_swiper .active .more::after {
  filter: contrast(0) brightness(2);
}
.page_advantages .page_advantages_swiper .item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.2rem;
  border: 1px solid #e2e2e2;
  transition: all 0.3s;
  color: #212836;
  background-color: #fff;
  padding: 5.9rem 9.255% 6rem;
}
.page_advantages .page_advantages_swiper .item::after {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background-color: var(--secondary);
  position: absolute;
  z-index: 2;
  top: 6.4%;
  right: 10%;
  content: '';
}
.page_advantages .page_advantages_swiper .icon {
  width: 9rem;
  height: 9rem;
  transition: all 0.3s;
  content: '';
  background: no-repeat center / contain;
}
.page_advantages .page_advantages_swiper .info {
  flex: 1;
  margin-top: 3.9rem;
  min-height: 22.6rem;
}
.page_advantages .page_advantages_swiper .info h3 {
  font-size: 2.4rem;
  line-height: 3.4rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page_advantages .page_advantages_swiper .info p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  opacity: 0.85;
  margin-top: 1.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page_advantages .page_advantages_swiper .more {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--primary);
  transition: all 0.3s;
  text-transform: uppercase;
  margin-top: 5rem;
}
.page_advantages .page_advantages_swiper .more::after {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-block;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  transition: all 0.3s;
}
nav.navigation .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
nav.navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}
nav.navigation .page-numbers {
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 500;
  border-radius: 4px;
  color: #171717;
  text-align: center;
  cursor: pointer;
  min-width: 5.4rem;
  padding: 1.6rem 1rem 1.5rem;
}
nav.navigation .page-numbers.current,
nav.navigation .page-numbers:hover {
  background-color: #1156a8;
  color: #fff;
}
nav.navigation .page-numbers.prev,
nav.navigation .page-numbers.next {
  padding: 0;
  min-width: unset;
  width: 0.8rem;
  overflow: hidden;
  text-indent: -999px;
  inset: 0;
  background: url("../img/icon-pagination.svg") no-repeat center / contain transparent;
  filter: contrast(0) brightness(0);
  opacity: 0.5;
  margin: 0 0.8rem;
}
nav.navigation .page-numbers.prev:hover,
nav.navigation .page-numbers.next:hover {
  opacity: 1;
  filter: unset;
}
nav.navigation .page-numbers.next {
  transform: rotate(180deg);
}
nav.navigation span.page-numbers {
  pointer-events: none;
}
.sec_icon {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: 23.3rem;
  background: url("../img/icon-mask.png") no-repeat center top / contain;
  display: flex;
  justify-content: center;
}
.sec_icon::after {
  width: 100%;
  padding-bottom: 26.61%;
  display: block;
  content: '';
}
.sec_icon i {
  position: absolute;
  width: 43.35%;
  padding-bottom: 43.35%;
  border-radius: 50%;
  background: url("../img/sec-icon.svg") no-repeat center / contain var(--primary);
  content: '';
  bottom: 2.9rem;
}
.blog_list .active .btn_circle {
  background-color: transparent;
}
.blog_list .active .btn_circle::before {
  opacity: 1;
}
.blog_list .active .btn_circle::after {
  filter: contrast(0) brightness(2);
}
.blog_list .active p {
  transform: translateY(0);
  opacity: 1;
}
.blog_list a {
  display: block;
  height: 100%;
  overflow: hidden;
}
.blog_list .img {
  width: 100%;
  border-radius: 10px;
  padding-bottom: 61.39955%;
}
.blog_list .btn_circle {
  position: absolute;
  right: 3.84%;
  bottom: 5.8824%;
  z-index: 2;
}
.blog_list .info {
  margin-top: 2.5rem;
  max-width: 42.6rem;
}
.blog_list .metas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}
.blog_list .metas .date {
  color: #666666;
  opacity: 0.85;
}
.blog_list .metas .cat {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
}
.blog_list h3 {
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: 600;
  margin-top: 1.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-width: 41.6rem;
}
.blog_list p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: var(--text);
  margin-top: 1.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  transform: translateY(2rem);
  opacity: 0;
  transition: all 0.3s, transform 0.4s;
}
.product_list .active a {
  background-color: #1156a8;
  border-color: #1156a8;
  box-shadow: 15px 10px 15px rgba(155, 155, 155, 0.35);
  color: #fff;
}
.product_list .active .info strong::before {
  background-color: #fff;
}
.product_list .active .info .btn_circle {
  background-color: #fff;
  border-color: #fff;
}
.product_list .active .info .btn_circle::after {
  filter: unset;
  transform: rotate(45deg);
}
.product_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  transition: all 0.3s;
  border: 1px solid #fff;
  border-radius: 2rem;
  color: #161616;
}
.product_list a:hover img {
  transform: scale(1.02);
}
.product_list .img {
  width: 100%;
  padding-bottom: 100%;
}
.product_list .info {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 0.3rem 6.726% 3.7rem;
}
.product_list .info strong {
  position: relative;
  font-size: 2.6rem;
  line-height: 3.2rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  padding-bottom: 0.3rem;
  margin-bottom: 0;
}
.product_list .info strong::before {
  bottom: 0;
  width: 70.5%;
  position: absolute;
  left: 0;
  height: 1px;
  background-color: transparent;
  content: '';
}
.product_list .info p {
  font-size: 1.4rem;
  line-height: 2rem;
  opacity: 0.85;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 0.5rem;
  max-width: 27.5rem;
}
.product_list .info .btn_circle {
  border: 1px solid #000000;
  background-color: transparent;
  align-self: end;
  width: 5.5rem;
  margin-bottom: 0.5rem;
}
.product_list .info .btn_circle::before {
  display: none;
}
.product_list .info .btn_circle::after {
  background-size: 18.86%;
  background-image: url("../img/arrow-tr3.svg");
}

/*** global css ***/
.empty_img {
  max-width: 388px;
  margin: 0 auto;
  display: block;
}
.loading {
  position: relative;
}
.loading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/load.gif') no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 9;
}

.wpcf7 form.wpcf7-form .wpcf7-spinner {
  width: 24px;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: .5rem;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 0;
  border: none;
  width: 100%;
}
.wpcf7 form.wpcf7-form .wpcf7-list-item {
  margin: 0;
}

div.search-block {
  position: fixed;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 55, 96, 0.12);
  width: 100%;
  bottom: -100vh;
  height: 100vh;
  transition: 0.3s ease;
}
div.search-block.active {
  bottom: 0;
  opacity: 1;
  transform: translateY(150px);
}
div.search-block div.content {
  position: relative;
  display: block;
}
.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  background: url(../../global/img/cloes.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.wd-action-btn:hover {
  transform: rotate(180deg);
}
div.search-block .searchform {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  /* opacity: 0; */
  transition: opacity 0.35s ease 0.2s;
  --wd-form-color: #333;
  --wd-form-placeholder-color: #333;
  text-align: center;
  transition: 0.75s all ease;
}
div.search-block.active .searchform {
  opacity: 1;
}
div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
}
header div.main-menu div.main div.right {
  display: none;
}
div.search-block .searchform ::-webkit-input-placeholder {
  color: #333333;
}
/*** global css ***/


.btn_mega_menu .sub-menu {
  display: none;
}
.mega_menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 5rem 0;
  display: none;
  background-color: #fff;
}
.mega_menu .flex {
  gap: 4%;
}
.mega_menu .nav {
  width: 25%;
  padding-right: 5px;
  overflow: auto;
  max-height: calc(100vh - 26rem);
}
.mega_menu .nav::-webkit-scrollbar {
  width: 5px;
}
.mega_menu .nav::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.mega_menu .nav ul {
  gap: 1.5rem;
  display: grid;
}
.mega_menu .nav a {
  gap: 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  font-size: 1.8rem;
  font-weight: 500;
  transition: all 0.3s;
  padding: 1.2rem 2rem;
}
.mega_menu .nav a.active {
  background-color: #edeef2;
}
.mega_menu .nav .icon {
  width: 2.6rem;
  height: 2.6rem;
  background: no-repeat center/contain;
}
.mega_menu .nav .toggle {
  cursor: pointer;
  width: 2.6rem;
  height: 2.6rem;
  transition: all .3s;
  background: url(../img/icon-select.svg) no-repeat center/50%;
}
.mega_menu .nav .open .toggle {
  transform: rotate(180deg);
}
.mega_menu .nav .sub {
  display: none;
  padding-top: 1rem;
  padding-left: 2rem;
}
.mega_menu .nav .sub a {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.mega_menu .list {
  flex: 1;
  display: none;
  overflow: auto;
  max-height: calc(100vh - 26rem);
}
.mega_menu .list::-webkit-scrollbar {
  width: 5px;
}
.mega_menu .list::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.mega_menu .list.active {
  display: block;
}
.mega_menu .list ul {
  gap: 2rem 4%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mega_menu .list li a {
  text-align: center;
}
.mega_menu .list li a:hover img {
  transform: scale(1.03);
}
.mega_menu .list li .img {
  padding-bottom: 80%;
  overflow: hidden;
}
.mega_menu .list li .title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 1rem;
}
.mega_menu .list .btn {
  margin-top: 5rem;
}
.mega_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
}
.mega_overlay.active {
  opacity: 1;
  pointer-events: all;
}

.full_text_editor_content {
  font-size: 1.8rem;
  line-height: 1.7;
  color: #4c4c4c;
}
.full_text_editor_content > *:first-child {
  margin-top: 0;
}
.full_text_editor_content > *:last-child {
  margin-bottom: 0;
}
.full_text_editor_content h2 {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--title);
  margin: 4.3rem 0 2rem;
}
.full_text_editor_content h3 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--title);
  margin: 2rem 0 1rem;
}
.full_text_editor_content p {
  margin: 1rem 0;
}
.full_text_editor_content ul {
  margin: 2.9rem 0;
}
.full_text_editor_content ul li {
  position: relative;
  padding-left: 2.8rem;
}
.full_text_editor_content ul li::before {
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  left: 0;
  top: 1.1rem;
  content: '';
  border-radius: 50%;
  background-color: var(--primary);
}
.full_text_editor_content ul li + li {
  margin-top: 1px;
}
.full_text_editor_content a {
  color: #1e120d;
  font-weight: 600;
  transition: all 0.3s;
}
.full_text_editor_content a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.full_text_editor_content img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin: 3rem 0;
}

@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content, .full_text_editor_content {
    padding: 0 2rem;
  }
  .swiper_content {
    padding: 1.5rem 2rem;
  }
  header .left {
    padding: 0 0 0 2rem;
    margin: 0;
  }
  .page_banner .img {
    margin: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content, .full_text_editor_content {
    max-width: 896px;
  }
}
@media screen and (max-width: 1024px) {
  .mega_menu, .mega_overlay {
    display: none !important;
  }
  header .left {
    margin: 0;
    padding: 0;
    padding-left: 2rem;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    transition: all 0.3s;
  }
  header nav.active {
    pointer-events: all;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    opacity: 1;
    transform: translate(0);
  }
  header nav .close {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    opacity: 0;
  }
  header nav .con {
    position: absolute;
    left: 0;
    top: 0;
    width: min(300px, 80vw);
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: rgba(0 0 0/10%) 0 0 24px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-100%);
  }
  header nav .con .close_box {
    padding: 32px 20px 20px;
    border-bottom: 1px solid #eee;
    text-align: right;
  }
  header nav .con .close_box .close {
    display: inline-block;
    width: 15px;
    height: 15px;
    filter: brightness(0);
    background: url('../img/mobile-menu/close.svg') no-repeat center / contain;
    cursor: pointer;
    transition: all 0.3s;
  }
  header nav .con .close_box .close:hover {
    transform: rotate(180deg);
  }
  header nav .con .close_box + div {
    flex: 1;
    overflow: auto;
  }
  header nav .con .close_box + div::-webkit-scrollbar {
    width: 5px;
  }
  header nav .con .close_box + div::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 10px;
  }
  header nav .con .menu {
    display: block;
  }
  header nav .con .menu > li {
    cursor: pointer;
  }
  header nav .con .menu > li::after {
    display: none;
  }
  header nav .con .menu > li > a {
    color: var(--title);
    line-height: 64px;
    padding: 0 0 0 32px;
    font-size: 18px;
  }
  header nav .con .menu > li > a:hover {
    color: var(--primary);
  }
  header nav .con .menu > li.menu-item-has-children > a {
    margin-right: 52px;
  }
  header nav .con .menu > li.menu-item-has-children::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/mobile-menu/select.svg) no-repeat center / contain;
    position: absolute;
    left: calc(100% - 32px);
    top: 26px;
    transition: all 0.3s;
  }
  header nav .con .menu > li.active::after {
    transform: rotate(180deg);
  }
  header nav .con .menu > li:hover ul {
    padding: 16px 24px;
  }
  header nav .con .menu .current-menu-item > a,
  header nav .con .menu .current-menu-parent > a {
    color: var(--primary);
  }
  header nav .con .sub-menu {
    position: static;
    padding: 16px 24px;
    background-color: #f8f8f8;
    margin: 0 32px;
    box-shadow: none;
    border-radius: 8px;
    display: none;
    opacity: 1;
    pointer-events: all;
    transition: none;
    transform: translate(0);
    min-width: unset;
  }
  header nav .con .sub-menu li {
    transform: translate(0);
  }
  header nav .con .sub-menu li a {
    padding: 8px 0;
    word-break: break-word;
    font-size: 14px;
    color: var(--title);
  }
  header nav .con .sub-menu li a::after {
    display: none;
  }
  header nav .con .sub-menu li a:hover {
    color: var(--primary);
  }
  header .btns {
    padding: 0;
    margin: 0;
  }
  header .btns .btn_search,
  header .btns .btn_lang,
  header .btns .btn_menu {
    background-size: 22px;
  }
  header .btns .btn_lang .lang-icon {
    width: 22px;
  }
  header .btns .btn_menu {
    display: block;
    background-image: url(../img/mobile-menu/nav-btn.svg);
  }
  header .mega_menu {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content, .full_text_editor_content {
    max-width: 768px;
  }
}
@media screen and (min-width: 769px) {
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
  body {
    font-size: 1rem;
  }
  .content, .full_text_editor_content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 1rem;
  }
  .btn {
    font-size: 14px;
    line-height: 1.5;
    padding: 11px 20px;
  }
  .btn_more {
    font-size: 14px;
    line-height: 1.5;
    padding: 11px 20px;
    gap: 10px;
  }
  .btn_more::after {
    width: 8px;
    height: 8px;
  }
  .btn_i {
    font-size: 14px;
    gap: 12px;
  }
  .btn_i i {
    width: 40px;
  }
  .btn_circle {
    width: 40px;
  }
  .swiper_btns {
    gap: 1rem;
  }
  .swiper_btns div {
    width: 40px;
  }
  .swiper_btns.lar div {
    width: 40px;
  }
  .swiper_btns.sm div {
    width: 40px;
  }
  div.head .subtitle,
  div.head strong {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
    letter-spacing: unset;
    word-spacing: unset;
    max-width: unset;
    gap: 10px;
    grid-template-columns: 7px 1fr;
  }
  div.head h1 {
    font-size: 34px;
    line-height: 1.3;
    letter-spacing: unset;
    word-spacing: unset;
    max-width: unset;
  }
  div.head h2 {
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: unset;
    word-spacing: unset;
    max-width: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 12px;
    letter-spacing: unset;
    word-spacing: unset;
    max-width: unset;
  }
  div.head .btn,
  div.head .btn_i,
  div.head .btn_more {
    margin-top: 20px;
  }
  div.head .btn {
    min-width: 120px;
  }
  header {
    width: 100%;
    left: 0;
    top: 0;
    transform: translate(0);
    position: sticky;
    box-shadow: 0 5px 5px rgba(186, 186, 186, 0.35);
    padding: 0 20px;
  }
  header.opt {
    top: 0;
  }
  header .left {
    padding: 0;
  }
  header .left .logo img {
    height: 40px;
  }
  header .btns {
    gap: 26px;
    min-height: 4rem;
    align-items: center;
  }
  header .btns .btn_search,
  header .btns .btn_lang,
  header .btns .btn_menu {
    width: 22px;
    height: 22px;
    border: none;
    background-position: center;
    background-size: contain;
  }
  header .btns .btn_i {
    display: none;
  }
  footer .footer_main {
    padding: 4rem 0 3rem;
  }
  footer .footer_main .flex {
    display: block;
  }
  footer .footer_main strong {
    font-size: 18px;
    letter-spacing: unset;
  }
  footer .footer_main .slide_intro {
    margin: 0 0 2rem;
    width: 100%;
  }
  footer .footer_main .slide_intro .logo {
    max-width: 180px;
    margin: 0 auto;
  }
  footer .footer_main .slide_intro strong {
    margin-top: 2rem;
  }
  footer .footer_main .slide_intro .social {
    margin-top: 20px;
    gap: 1rem;
    justify-content: space-around;
  }
  footer .footer_main .slide_intro .social a {
    width: 22px;
    height: 22px;
  }
  footer .footer_main .slide_obj:not(.slide_connect) {
    width: 100%;
  }
  footer .footer_main .slide_obj:not(.slide_connect) strong {
    font-size: 1rem;
    line-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 1rem;
  }
  footer .footer_main .slide_obj:not(.slide_connect) strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/mobile-menu/select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    filter: contrast(0) brightness(2);
  }
  footer .footer_main .slide_obj:not(.slide_connect).active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div {
    display: none;
    padding: 0 1.2rem 1.2rem;
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div li + li {
    margin-top: 14px;
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
    letter-spacing: unset;
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div p {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  footer .footer_main .slide_connect {
    width: 100%;
    padding-top: 20px;
  }
  footer .footer_main .slide_connect strong {
    margin-bottom: 20px;
  }
  footer .footer_main .slide_connect li + li {
    margin-top: 20px;
  }
  footer .footer_main .slide_connect li {
    padding-left: 4rem;
  }
  footer .footer_main .slide_connect li::before {
    width: 40px;
    height: 40px;
  }
  footer .footer_main .slide_connect li a {
    font-size: 1rem;
  }
  footer .footer_main .slide_connect li .label {
    font-size: 14px;
    margin-bottom: 5px;
  }
  footer .footer_main .slide_connect .email::before {
    top: 0;
  }
  footer .copyright {
    padding: 20px 0;
  }
  footer .copyright .flex {
    gap: 2rem;
    flex-direction: column-reverse;
  }
  footer .copyright ul {
    gap: 1rem;
  }
  footer .copyright p {
    font-size: 13px;
  }
  footer .copyright a {
    font-size: 14px;
  }
  .page_cases {
    padding: 3rem 0;
  }
  .page_cases .flex:has(.head) {
    gap: 20px 1rem;
  }
  .page_cases .head {
    padding: 0;
  }
  .page_cases .main {
    margin-top: 2rem;
  }
  .page_cases .main .left {
    padding: 0;
  }
  .page_cases .page_cases_intro_swiper {
    font-size: 14px;
    line-height: 1.5;
  }
  .page_cases .page_cases_intro_swiper strong {
    font-size: 14px;
  }
  .page_cases .page_cases_intro_swiper h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .page_cases .page_cases_intro_swiper p {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .page_cases .page_cases_intro_swiper .btn {
    margin-top: 20px;
  }
  .page_cases .page_cases_intro_swiper .nums {
    margin-top: 20px;
  }
  .page_cases .page_cases_intro_swiper .nums ul {
    gap: 1rem;
  }
  .page_cases .page_cases_intro_swiper .nums .num {
    font-size: 1.5rem;
  }
  .page_cases .page_cases_intro_swiper .nums .label {
    font-size: 0.9rem;
    margin-top: 10px;
  }
  .page_cases .page_cases_img_swiper .mask {
    width: 130px;
  }
  .page_cases .swiper_btns {
    bottom: 0;
  }
  .page_banner .flex {
    min-height: unset;
    padding: 3rem 0 4rem;
  }
  .page_banner .flex .head {
    width: 100%;
    padding: 0;
  }
  .page_banner .img {
    margin: 0;
  }
  .sec_icon {
    width: 120px;
  }
  .sec_icon i {
    bottom: 1rem;
  }
  .blog_list .info {
    margin-top: 1rem;
  }
  .blog_list .metas {
    font-size: 14px;
    gap: 5px;
  }
  .blog_list .metas .cat {
    font-size: 15px;
  }
  .blog_list h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
    max-width: unset;
  }
  .blog_list p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 10px;
    transform: translateY(0);
    opacity: 1;
  }
  .product_list a {
    border-radius: 10px;
  }
  .product_list .info {
    gap: 1rem;
    padding: 10px 20px 20px;
  }
  .product_list .info strong {
    font-size: 18px;
    line-height: 1.5;
    padding-bottom: 3px;
  }
  .product_list .info p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 10px;
    max-width: unset;
  }
  .product_list .info .btn_circle {
    width: 40px;
    margin-bottom: 10px;
  }
  nav.navigation .nav-links {
    gap: 5px;
  }
  nav.navigation .page-numbers {
    font-size: 14px;
    padding: 6px;
    min-width: 30px;
  }
  nav.navigation .page-numbers.prev,
  nav.navigation .page-numbers.next {
    margin: 0 5px;
    width: 6px;
  }
  .page_advantages {
    padding: 3rem 0;
    overflow: hidden;
  }
  .page_advantages .swiper_content {
    overflow: unset;
    padding: 0 20px;
  }
  .page_advantages .page_advantages_swiper {
    margin-top: 2rem;
  }
  .page_advantages .page_advantages_swiper .item {
    border-radius: 10px;
    padding: 1.5rem 20px;
  }
  .page_advantages .page_advantages_swiper .item::after {
    width: 9px;
    height: 9px;
  }
  .page_advantages .page_advantages_swiper .icon {
    width: 3rem;
    height: 3rem;
  }
  .page_advantages .page_advantages_swiper .info {
    margin-top: 1.2rem;
    min-height: unset;
  }
  .page_advantages .page_advantages_swiper .info h3 {
    font-size: 18px;
    line-height: 1.5;
  }
  .page_advantages .page_advantages_swiper .info p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 10px;
  }
  .page_advantages .page_advantages_swiper .more {
    font-size: 14px;
    gap: 12px;
    margin-top: 20px;
  }
  .page_advantages .page_advantages_swiper .more::after {
    width: 14px;
    height: 14px;
  }
  .page_advantages .swiper_btns {
    display: none;
  }

  /*** global css ***/
  .wd-action-btn {
    right: 2rem;
    bottom: 2rem;
    top: unset;
  }
  div.search-block div.content {
    height: 100%;
  }
  div.search-block {
    height: calc(100vh - 150px);
  }
  div.search-block.active {
    transform: translate(0);
  }
  div.search-block .searchform {
    padding-top: 2rem;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  div.search-block .searchform input[type='text'] {
    height: 42px;
    min-width: unset;
    width: 100%;
    font-size: 22px;
  }
  div.search-block .searchform input[type='submit'] {
    display: block;
    width: 20px;
    filter: contrast(0) brightness(0);
    height: 20px;
    background: url(../img/icon-search.svg) no-repeat center/contain;
  }

  .wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 5px;
  }
  .wpcf7 form.wpcf7-form .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.5;
  }
  .wpcf7 form.wpcf7-form .wpcf7-spinner {
    left: 100%;
    right: unset;
  }
  /*** global css ***/

  
  .full_text_editor_content {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .full_text_editor_content h2 {
    font-size: 18px;
    margin: 2rem 0 1rem;
  }
  .full_text_editor_content h3 {
    font-size: 1rem;
    margin: 1rem 0;
  }
  .full_text_editor_content p {
    margin: 10px 0;
  }
  .full_text_editor_content ul {
    margin: 1rem 0;
  }
  .full_text_editor_content ul li + li {
    margin-top: 10px;
  }
  .full_text_editor_content ul li {
    padding-left: 1.5rem;
  }
  .full_text_editor_content ul li::before {
    width: 5px;
    height: 5px;
    top: 8px;
  }
  .full_text_editor_content img {
    margin: 3rem 0;
  }
}
@media screen and (max-width: 576px) {
  div.head .subtitle,
  div.head strong {
    font-size: 14px;
  }
  div.head h1 {
    font-size: 25px;
  }
  div.head h2 {
    font-size: 22px;
  }
  div.head .desc,
  div.head p {
    font-size: 0.9rem;
  }
  .page_cases .main .left,
  .page_cases .main .right {
    width: 100%;
  }
  .page_banner .img {
    width: 100%;
    order: -1;
  }
}
