* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #3069b1;
  --secondary: #004f9f;
  --title: #161616;
  --text: #5b5b5b;
  --bg: #f6f8f9;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
  font-size: clamp(7.5px, 0.520834vw, 8.71429px) !important;
}
.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;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
input,
button,
textarea {
  border: none;
  outline: none;
  font-family: unset;
  color: var(--title);
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
textarea {
  resize: none;
}
button,
input[type="submit"] {
  cursor: pointer;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
table {
  width: 100%;
  word-break: normal;
  border-collapse: collapse;
}
.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;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
  font-family: "Montserrat", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to top, #EAF0F7, #fff);
}
#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);
  }
}
.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;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  pointer-events: none;
}
.icon.icon_ab {
  position: relative;
}
.icon.icon_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.icon img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.btn {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 6.6rem;
  padding: 0 4.3rem;
}
.btn:hover {
  color: var(--primary);
  background-color: transparent;
}
.btn_line {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  border: 1px solid rgba(22, 22, 22, 0.5);
  background-color: transparent;
  color: var(--title);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 6.7rem;
  padding: 0 3rem;
  min-width: 23.4rem;
}
.btn_line:hover {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn_w {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  border: 1px solid #fff;
  background-color: #fff;
  color: var(--title);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 6rem;
  padding: 0 4.3rem;
}
.btn_w:hover {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  background-color: transparent;
  color: var(--title);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  gap: 2.5rem;
}
.btn_i::after {
  width: 4.6rem;
  height: 4.6rem;
  display: inline-block;
  flex-shrink: 0;
  content: '';
  transition: all 0.3s;
  border-radius: 50%;
  background: url("../img/arrow-r-w.svg") no-repeat center / 34.783% var(--title);
}
.btn_i:hover {
  color: var(--primary);
}
.btn_i:hover::after {
  background-color: var(--primary);
  transform: translateX(20%);
}
.btn_circle {
  width: 4.6rem;
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--title);
}
.btn_circle::after {
  display: block;
  padding-bottom: 100%;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center / 34.783%;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
.btn_circle:hover {
  background-color: var(--primary);
}
.swiper_btns {
  gap: 6.8rem;
  display: flex;
}
.swiper_btns div {
  width: 3.8rem;
  cursor: pointer;
  transition: all 0.3s;
  background: url("../img/arrow.svg") no-repeat center / contain;
  filter: contrast(0) brightness(0);
}
.swiper_btns div::after {
  content: '';
  display: block;
  padding-bottom: 63.2%;
  pointer-events: none;
}
.swiper_btns div:hover {
  filter: unset;
}
.swiper_btns .btn_next {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  filter: contrast(0) brightness(0);
}
.swiper_btns .swiper-button-lock {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 165.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.con2 div {
  background-image: url("../img/arrow2.svg");
  width: 1.1rem;
}
.swiper_btns.con2 div::after {
  padding-bottom: 200%;
}
.swiper_btns.con2 .swiper-button-disabled {
  opacity: 0.4;
}
.swiper_btns.white div {
  filter: contrast(0) brightness(2);
}
.swiper_btns.white div:hover {
  filter: unset;
}
.swiper_btns.white .swiper-button-disabled {
  filter: contrast(0) brightness(2);
}
.swiper_btns.lar div {
  width: 4.4rem;
  background-image: url("../img/arrow-line.svg");
}
.head.ban .subtitle {
  letter-spacing: 1.8px;
  margin-bottom: 1.4rem;
}
.head.white {
  color: #fff;
}
.head.white .subtitle {
  color: #fff;
}
.head.white p {
  color: rgba(255, 255, 255, 0.85);
}
.head .subtitle {
  font-size: 1.8rem;
  color: #707070;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.head h1 {
  font-size: 7rem;
  line-height: 8.9rem;
  font-weight: 700;
}
.head h2 {
  font-size: 6.2rem;
  line-height: 11rem;
  font-weight: 600;
}
.head p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.3s;
  background-color: transparent;
}
header::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-image: linear-gradient(to bottom, #000 -100%, transparent);
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0.48;
}
header::after {
  width: 100%;
  height: 105.46875%;
  position: absolute;
  left: 0;
  top: -28.125%;
  content: '';
  background-image: linear-gradient(to bottom, #010b1e, transparent);
  opacity: 0.61;
  z-index: -1;
  pointer-events: none;
}
header.bg,
header.sticky,
header.style {
  background-color: #fff;
}
header.bg::before,
header.sticky::before,
header.style::before,
header.bg::after,
header.sticky::after,
header.style::after {
  opacity: 0;
}
header.bg .left,
header.sticky .left,
header.style .left {
  filter: unset;
}
header.bg nav .menu > li > a,
header.sticky nav .menu > li > a,
header.style nav .menu > li > a {
  color: var(--title);
}
header.bg .btns .btn_search,
header.sticky .btns .btn_search,
header.style .btns .btn_search,
header.bg .btns .btn_menu,
header.sticky .btns .btn_menu,
header.style .btns .btn_menu,
header.bg .btns .btn_lang,
header.sticky .btns .btn_lang,
header.style .btns .btn_lang {
  filter: contrast(0) brightness(0);
}
header.bg .top .social::after,
header.sticky .top .social::after,
header.style .top .social::after {
  background-color: #dadada;
}
header.bg .top .social a,
header.sticky .top .social a,
header.style .top .social a {
  filter: unset;
}
header.bg .top .btn_lang,
header.sticky .top .btn_lang,
header.style .top .btn_lang {
  color: rgba(92, 92, 92, 0.7);
}
header.bg .top .btn_lang::before,
header.sticky .top .btn_lang::before,
header.style .top .btn_lang::before,
header.bg .top .btn_lang::after,
header.sticky .top .btn_lang::after,
header.style .top .btn_lang::after {
  filter: unset;
}
header.bg {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
header.sticky {
  position: sticky;
}
header.sticky nav .menu > li > a {
  font-weight: 500;
  letter-spacing: unset;
}
header.opt {
  top: -12.8rem;
}
header .inner {
  width: calc(100% - 6rem);
  max-width: 176rem;
  margin: 0 auto;
}
header .top {
  padding: 1.1rem 0 1.4rem;
}
header .top .social {
  gap: 2rem 3.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: -0.3rem;
}
header .top .social::after {
  width: 1px;
  height: 2rem;
  background-color: #fff;
  opacity: 0.16;
  content: '';
  display: inline-block;
  margin: 0 2.3rem 0 -1.4rem;
}
header .top .social a {
  display: block;
  width: 2.1rem;
  height: 2.1rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  opacity: 0.7;
}
header .top .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
header .top .social a:hover {
  opacity: 1;
}
header .top .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
header .top .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
header .top .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
header .top .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
header .top .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
header .top .btn_lang {
  display: inline-grid;
  grid-template-columns: 2rem auto 1rem;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  gap: 0 0.9rem;
}
header .top .btn_lang span {
  margin-right: 0.4rem;
  margin-top: 3px;
}
header .top .btn_lang::before,
header .top .btn_lang::after {
  padding-bottom: 100%;
  display: block;
  content: '';
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: no-repeat center / contain;
}
header .top .btn_lang::before {
  background-image: url("../img/icon-lang.svg");
  opacity: 0.8;
}
header .top .btn_lang::after {
  background-image: url("../img/icon-select.svg");
  opacity: 0.7;
  margin-top: 1px;
}
header .left {
  display: flex;
  align-items: center;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  margin-right: auto;
  margin-top: -3.3%;
}
header .left .logo {
  display: block;
  position: relative;
}
header .left .logo img {
  display: block;
  width: auto;
  height: 5.6rem;
}
header .left .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .menu {
  display: flex;
  gap: 6.45rem;
}
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: 2.4rem;
  transition: all 0.3s;
  line-height: 4.7rem;
  padding-bottom: 3.4rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.2px;
}
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;
}
header nav .sub-menu > li > a:hover {
  color: var(--primary);
}
header .btns {
  gap: 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 8.1rem;
  margin-left: 1.5%;
  padding-bottom: 2%;
}
header .btns .btn_search {
  width: 2.2rem;
  height: 2.2rem;
  cursor: pointer;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .btns .btn_menu,
header .btns .btn_lang {
  display: none;
}
header .btns .btn_search,
header .btns .btn_menu,
header .btns .btn_lang {
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
footer {
  background-color: var(--title);
  color: #fff;
}
footer .footer_main {
  padding: 9.7rem 0;
}
footer .footer_main strong {
  display: block;
  text-transform: uppercase;
  font-size: 1.8rem;
  opacity: 0.45;
  margin-bottom: 2rem;
  font-weight: 400;
}
footer .footer_main .flex {
  gap: 5rem 2rem;
}
footer .footer_main .slide_obj strong {
  margin-bottom: 3.3rem;
}
footer .footer_main .slide_obj li a {
  font-size: 1.8rem;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .footer_main .slide_obj li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .footer_main .slide_obj li + li {
  margin-top: 2.6rem;
}
footer .footer_main .rt {
  width: 34.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 6.6rem 2rem;
}
footer .footer_main .slide_connect li {
  position: relative;
  padding-left: 4.1rem;
}
footer .footer_main .slide_connect li::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  background: no-repeat center left / contain;
  position: absolute;
  left: 0;
  top: 0;
}
footer .footer_main .slide_connect li a {
  font-weight: 500;
}
footer .footer_main .slide_connect li + li {
  margin-top: 1.7rem;
}
footer .footer_main .slide_connect .phone::before {
  background-image: url(../img/icon-phone.svg);
  background-size: 75%;
}
footer .footer_main .slide_connect .email::before {
  background-image: url(../img/icon-email.svg);
}
footer .footer_main .slide_follow strong {
  margin-bottom: 3.5rem;
}
footer .footer_main .slide_follow .social {
  gap: 2rem 1.1rem;
  display: flex;
  flex-wrap: wrap;
}
footer .footer_main .slide_follow .social a {
  opacity: 1;
  display: block;
  width: 4.7rem;
  height: 4.7rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
footer .footer_main .slide_follow .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  filter: contrast(0) brightness(2);
  background: no-repeat center / 50%;
}
footer .footer_main .slide_follow .social a:hover {
  transform: scale(1.1);
  background-color: var(--primary);
  border-color: var(--primary);
}
footer .footer_main .slide_follow .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .footer_main .slide_follow .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
footer .footer_main .slide_follow .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .footer_main .slide_follow .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
footer .footer_main .slide_follow .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .footer_bottom {
  padding: 4.4rem 0;
}
footer .footer_bottom .flex {
  padding-right: 8rem;
  gap: 3rem 1.8rem;
}
footer .footer_bottom .logo {
  display: block;
  position: relative;
  width: 20.7rem;
  opacity: 1;
}
footer .footer_bottom .logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(0) brightness(2);
}
footer .footer_bottom .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .footer_bottom p,
footer .footer_bottom a {
  font-size: 1.4rem;
}
footer .footer_bottom p {
  margin-left: auto;
  margin-bottom: 0.3rem;
}
footer .footer_bottom a {
  opacity: 0.68;
  display: block;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .footer_bottom a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .footer_bottom ul {
  gap: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0.3rem;
}
footer .footer_bottom ul li {
  display: flex;
  align-items: center;
}
footer .footer_bottom ul li::before {
  width: 1px;
  height: 1.3rem;
  background-color: #fff;
  opacity: 0.15;
  content: '';
  display: inline-block;
  margin: 0 1.2rem;
}
footer .footer_bottom ul li:first-child::before {
  margin-left: 0;
}
footer .footer_float {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99;
  pointer-events: none;
  bottom: 2.9rem;
}
footer .footer_float #backtop {
  width: 5.4rem;
  display: block;
  margin-left: auto;
  transition: all 0.3s;
  opacity: 0;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
  background: url("../img/icon-top.svg") no-repeat center / contain #fff;
}
footer .footer_float #backtop.active {
  opacity: 1;
  pointer-events: all;
}
footer .footer_float #backtop::after {
  padding-bottom: 100%;
  display: block;
  content: '';
  pointer-events: none;
}
footer .footer_float #backtop:hover {
  transform: scale(1.1);
}
.page_contact .flex {
  min-height: 45.6rem;
  padding: 6rem 0;
}
.page_contact .head {
  flex: 1;
  display: flex;
  padding-bottom: 0.4%;
}
.page_contact .head h2 {
  line-height: 7.3rem;
}
.page_contact h2 {
  max-width: 71.5rem;
}
.page_contact p {
  max-width: 61.6rem;
  margin-top: 1.5rem;
}
.page_contact .btn_w {
  margin-top: 6.6rem;
}
.page_about {
  padding: 10.3rem 0 12.1rem;
}
.page_about .head .flex {
  align-items: flex-start;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page_about .head .flex.flex {
  margin-top: 1.9rem;
}
.page_about .head h2 {
  font-size: 4.8rem;
  line-height: 5.8rem;
}
.page_about .head p {
  line-height: 3.2rem;
}
.page_about .subtitle {
  margin-top: 1.8rem;
}
.page_about h2 {
  max-width: 89.1rem;
}
.page_about h2 span {
  color: #7c7c7c;
}
.page_about p,
.page_about .desc {
  max-width: 99.3rem;
  hyphens: auto;
}
.page_about p + p {
  margin-top: 3.2rem;
}
.page_about .btn_line {
  min-width: unset;
  padding: 0 4.35rem;
  margin-top: 0.8rem;
}
.page_about .main {
  margin-top: 6.3rem;
}
.page_about .img {
  width: 76.86%;
  height: auto;
  margin-left: -4.79%;
}
.page_about .nums {
  flex: 1;
  max-width: 29.1rem;
  padding-bottom: 1.5%;
}
.page_about .nums ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(29.1rem, 100%), 1fr));
  gap: 1rem;
}
.page_about .nums li {
  border-radius: 1.2rem;
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 2.6rem 11.34%;
  gap: 0.8rem;
  min-height: 19.7rem;
}
.page_about .nums li::before {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  display: block;
  content: '';
  background-color: var(--title);
  margin-left: auto;
}
.page_about .nums .wrap {
  font-size: 4.2rem;
  font-weight: 600;
  white-space: nowrap;
  margin-top: auto;
}
.page_about .nums .wrap .num {
  font-size: 4.8rem;
  margin-right: -0.3rem;
}
.page_about .nums .label {
  font-size: 1.8rem;
  color: #585a5e;
}
.page_solutions {
  background-color: var(--bg);
  padding: 12.3rem 0 9rem;
  overflow: hidden;
}
.page_solutions .head {
  position: relative;
  padding-right: 8rem;
}
.page_solutions .head .icon {
  width: 7rem;
  height: 7rem;
  position: absolute;
  right: 0;
  top: 1.8rem;
}
.page_solutions .head h2 {
  line-height: 1.45;
}
.page_solutions .subtitle {
  margin-bottom: 0.8rem;
}
.page_solutions h2 {
  max-width: 116.1rem;
}
.page_solutions h2 span {
  display: block;
  text-align: right;
}
.page_solutions .page_solutions_swiper {
  margin-top: 3.8rem;
}
.page_solutions .page_solutions_swiper .swiper-slide {
  max-width: 37.2rem;
}
.page_solutions .page_solutions_swiper .active .item {
  background-color: var(--primary);
  color: #fff;
}
.page_solutions .page_solutions_swiper .active .order {
  color: #fff;
  opacity: 0.8;
}
.page_solutions .page_solutions_swiper .active .icon {
  filter: contrast(0) brightness(2);
}
.page_solutions .page_solutions_swiper .active i {
  background-color: #fff;
  border-color: #fff;
}
.page_solutions .page_solutions_swiper .active i::after {
  filter: unset;
}
.page_solutions .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
  border-radius: 1.4rem;
  background-color: #fff;
  padding: 7.45% 5.914% 5.5% 5.65%;
  gap: 3.8rem;
}
.page_solutions .item:hover .img img {
  transform: scale(1.02);
}
.page_solutions .item .wrap {
  display: grid;
  grid-template-columns: 6.5rem auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 3.2%;
}
.page_solutions .item .icon {
  padding-bottom: 100%;
  transition: all 0.3s;
}
.page_solutions .item .order {
  font-size: 1.8rem;
  font-weight: 500;
  color: #707070;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.page_solutions .item .title {
  font-size: 2.8rem;
  line-height: 3.8rem;
  font-weight: 600;
  height: 7.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page_solutions .item .img {
  margin-top: auto;
  padding-bottom: 68.997%;
  border-radius: 1.2rem;
}
.page_solutions .item i {
  position: absolute;
  width: 14.3%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
  border-radius: 50%;
  right: 6.687%;
  bottom: 10.1%;
  z-index: 2;
}
.page_solutions .item i::after {
  padding-bottom: 100%;
  display: block;
  content: '';
  background: url("../img/add.svg") no-repeat center / 35.55556%;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
.page_solutions .item i:hover {
  transform: scale(1.1);
}
.page_solutions .swiper_con {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin-top: 5.1rem;
}
.page_solutions .swiper_con .swiper_btns {
  justify-content: flex-end;
  margin-bottom: 1.8rem;
}
.page_solutions .swiper_con .pagination {
  margin-bottom: 1.1rem;
  font-size: 1.852rem;
}
.page_solutions .swiper_con .pagination .current {
  font-size: 2.547rem;
  margin-right: 0.4rem;
}
.page_certifications {
  background-color: var(--bg);
  padding: 15.8rem 0 14.9rem;
}
.page_certifications .content {
  overflow: hidden;
}
.page_certifications .inner {
  width: 70.7143%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
  min-height: 64rem;
  padding-top: 1.6rem;
}
.page_certifications .head {
  padding-left: 20.51%;
  flex: 1;
}
.page_certifications .subtitle {
  margin-bottom: -0.5rem;
}
.page_certifications p {
  margin-top: 2.7rem;
  hyphens: auto;
}
.page_certifications .swiper_con {
  padding-left: 20.51%;
}
.page_certifications .page_certifications_swiper .swiper-slide {
  position: relative;
  transition: opacity 0.3s, transform 0.4s;
  transform: scale3d(0.3, 0.3, 0.3) translateX(100%);
  opacity: 0;
}
.page_certifications .page_certifications_swiper .swiper-slide::after {
  padding-bottom: 100%;
  display: block;
  content: '';
  pointer-events: none;
}
.page_certifications .page_certifications_swiper .swiper-slide-active {
  transform: translateX(0);
  opacity: 1;
}
.page_certifications .page_certifications_swiper .swiper-slide-active ~ .swiper-slide {
  transform: translateX(0);
  opacity: 1;
}
.page_certifications .page_certifications_swiper .swiper-slide-active .item {
  background-color: var(--secondary);
  width: 279.4444%;
  height: 355.55556%;
  right: 47.2%;
}
.page_certifications .page_certifications_swiper .swiper-slide-active .img {
  width: 41.2%;
  right: 8.75%;
  top: 7.03125%;
}
.page_certifications .page_certifications_swiper .swiper-slide-active .info {
  opacity: 1;
  pointer-events: all;
  transition: all 0.3s 0.4s;
}
.page_certifications .page_certifications_swiper .item {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  content: '';
  border-radius: 2.1rem;
  background-color: #fff;
  transition: all 0.5s;
}
.page_certifications .page_certifications_swiper .img {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  --h: 100%;
  border-radius: 2.1rem;
  background-color: #fff;
  transition: all 0.5s;
}
.page_certifications .page_certifications_swiper .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9.3%;
  color: #fff;
  max-height: 40%;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  padding: 0 8.75%;
  transition: all 0.3s;
}
.page_certifications .page_certifications_swiper .info h3 {
  font-size: 3.2rem;
  font-weight: 600;
}
.page_certifications .page_certifications_swiper .info p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  opacity: 0.85;
  hyphens: auto;
  margin-top: 2.4rem;
}
.page_clients {
  padding: 12.3rem 0 11.6rem;
  overflow: hidden;
}
.page_clients .subtitle {
  margin-bottom: -0.6rem;
}
.page_clients .inner {
  overflow: hidden;
  position: relative;
  max-width: 192rem;
  margin: 6.8rem auto 0;
}
.page_clients .inner > div + div {
  margin-top: 2.8rem;
}
.page_clients .inner::before,
.page_clients .inner::after {
  height: 100%;
  width: 15.6%;
  position: absolute;
  content: '';
  z-index: 2;
  top: 0;
}
.page_clients .inner::before {
  left: 0;
  background-image: linear-gradient(to right, #fff 57%, transparent);
}
.page_clients .inner::after {
  right: 0;
  background-image: linear-gradient(to left, #fff 57%, transparent);
}
.page_clients .page_clients_swiper .swiper-wrapper {
  transition: linear;
}
.page_clients .page_clients_swiper .swiper-slide {
  max-width: 19.8rem;
}
.page_clients .page_clients_swiper .swiper-slide.active .img {
  border-color: var(--secondary);
  box-shadow: 0 9px 9px rgba(152, 187, 216, 0.25);
}
.page_clients .page_clients_swiper .img {
  padding-bottom: calc(100% - 2px);
  border-radius: 50%;
  border: 1px solid rgba(112, 112, 112, 0.3);
  transition: all 0.3s;
  background-color: #fff;
}
.page_clients p.center:has(.btn_i) {
  margin-top: 7.1rem;
}
.page_clients p.center:has(.btn_i) .btn_i {
  gap: 1.7rem;
}
.page_global {
  position: relative;
  z-index: 2;
  padding: 13.6rem 0 24.2rem;
}
.page_global .subtitle {
  margin-bottom: -0.5rem;
}
.page_global .map {
  position: relative;
  margin-top: 3.3rem;
}
.page_global .map .svg {
  position: relative;
}
.page_global .map .map_item {
  fill: #f0f1f2;
  stroke: #afafaf;
  stroke-width: 0.75px;
  stroke-miterlimit: 10;
  transition: all 0.3s;
}
.page_global .map [country] {
  cursor: pointer;
}
.page_global .map [country].active,
.page_global .map [country]:hover {
  fill: #6296d8;
  stroke: #3c71aa;
  stroke-width: 1.03px;
}
.page_global .map [gid] {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 3;
  width: 4.143%;
  height: 10.86%;
  cursor: pointer;
  pointer-events: none;
}
section.page_global .map [gid] {
  pointer-events: all;
}
.page_global .map [gid].active {
  z-index: 5;
}
.page_global .map [gid].active .icon {
  transform: scale(1);
}
.page_global .map [gid].active .icon .icon1 {
  opacity: 0;
}
.page_global .map [gid].active .icon .icon2 {
  opacity: 1;
}
.page_global .map [gid].active .info {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.page_global .map [gid].right .info {
  right: unset;
  left: 123%;
}
.page_global .map [gid] .icon {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  transform-origin: bottom center;
  transform: scale(0.45);
}
.page_global .map [gid] .icon img {
  opacity: 0;
}
.page_global .map [gid] .icon .icon1 {
  opacity: 1;
}
.page_global .map [gid] .info {
  position: absolute;
  width: 706.9%;
  top: 15.7%;
  right: 123%;
  border-radius: 1.5rem;
  border: 2px solid var(--primary);
  background-color: #fff;
  color: #212121;
  transition: all 0.4s, opacity 0.3s;
  padding: 51.2% 58.56% 59.6%;
  transform: translateX(2rem);
  opacity: 0;
  pointer-events: none;
}
.page_global .map [gid] .info .title {
  display: grid;
  grid-template-columns: 1fr 14.54%;
  align-items: center;
  font-size: 2.6rem;
  line-height: 1.23;
  font-weight: 600;
  gap: 1rem;
}
.page_global .map [gid] .info .title .logo {
  height: auto;
  margin-bottom: 2px;
}
.page_global .map [gid] .info .title .logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page_global .map [gid] .info ul {
  border-top: 1px solid #d9dee2;
  padding-top: 2.5rem;
  margin-top: 1.7rem;
}
.page_global .map [gid] .info ul li {
  position: relative;
  padding-left: 4.6rem;
}
.page_global .map [gid] .info ul li::before {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  left: 0;
  top: -2px;
  content: '';
  background: no-repeat center / contain;
}
.page_global .map [gid] .info ul li + li {
  margin-top: 1.9rem;
}
.page_global .map [gid] .info ul a {
  font-size: 2rem;
  vertical-align: top;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.page_global .map [gid] .info ul a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.page_global .map [gid] .info ul p {
  font-size: 1.7rem;
  line-height: 1.588;
  padding-top: 2px;
}
.page_global .map [gid] .info ul .phone::before {
  background-image: url(../img/icon-phone2.svg);
  background-size: 68%;
}
.page_global .map [gid] .info ul .email::before {
  background-image: url(../img/icon-email2.svg);
  background-size: 88%;
}
.page_global .map [gid] .info ul .locate::before {
  background-image: url(../img/icon-locate.svg);
  top: 0.4rem;
}
.page_global .map [gid='can'] {
  top: 20.5%;
  left: 14%;
}
.page_global .map [gid='us'] {
  top: 31%;
  left: 14.9%;
}
.page_global .map [gid='mx'] {
  top: 40.5%;
  left: 16.4%;
}
.page_global .map [gid='uk'] {
  top: 20.8%;
  left: 43.1%;
}
.page_global .map [gid='fr'] {
  top: 26.4%;
  left: 44.1%;
}
.page_global .map [gid='kr'] {
  top: 31.9%;
  left: 77.4%;
}
.page_global .map [gid='cn'] {
  top: 37.9%;
  left: 72.6%;
}
.page_global .map [gid='sg'] {
  top: 50.8%;
  left: 70.3%;
}
.page_global .map [gid='idn'] {
  top: 53.7%;
  left: 73.2%;
}
.page_global .map [gid='au'] {
  top: 69.7%;
  left: 80.3%;
}
.page_blog {
  padding: 5.6rem 0 14.1rem;
}
.page_blog .subtitle {
  margin-bottom: -0.7rem;
}
.page_blog .btn_line {
  min-width: 21.6rem;
  margin-bottom: 2.2rem;
}
.page_blog .page_blog_swiper {
  overflow: hidden;
  border-radius: 1.6rem;
  margin-top: 2.8rem;
}
.page_blog .page_blog_swiper .swiper-slide {
  max-width: 44.4rem;
}
.page_blog .swiper_btns {
  top: 40.8%;
}
.intro_swiper {
  overflow: hidden;
  border-radius: 1.4rem;
}
.intro_swiper .swiper-slide {
  max-width: 44.6rem;
}
.intro_swiper .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
  border-radius: 1.4rem;
  background-color: var(--bg);
  padding: 4.5rem 7.75%;
}
.intro_swiper .active .item {
  background-color: var(--secondary);
}
.intro_swiper .active .info h3,
.intro_swiper .active .info p {
  color: #fff;
}
.intro_swiper .icon {
  width: 8.4rem;
  height: 8.4rem;
  border-radius: 50%;
  background-color: var(--primary);
}
.intro_swiper .info {
  flex: 1;
  margin-top: 2.7rem;
}
.intro_swiper .info h3 {
  font-size: 2.6rem;
  line-height: 3.8rem;
  font-weight: 600;
  color: #091b35;
  transition: all 0.3s;
  max-width: 30.7rem;
}
.intro_swiper .info p {
  font-size: 1.7rem;
  line-height: 2.7rem;
  color: #474747;
  hyphens: auto;
  margin-top: 1.6rem;
  max-width: 36rem;
  transition: all 0.3s;
}
.page_products {
  padding: 5rem 0 16.5rem;
}
.page_products .subtitle {
  margin-bottom: -0.6rem;
}
.page_products .btn_line {
  margin-bottom: 1.6rem;
  min-width: 22.8rem;
}
.page_products .page_products_swiper {
  margin-top: 2.5rem;
}
.page_products .page_products_swiper .swiper-slide {
  max-width: 44.6rem;
}
.page_products .swiper_btns {
  top: 52.2%;
}
div.pagination {
  width: auto;
  font-size: 1.8rem;
  color: rgba(22, 22, 22, 0.5);
}
div.pagination.swiper-pagination-lock {
  display: block;
  opacity: 0;
}
div.pagination .current {
  font-size: 2.8rem;
  color: var(--title);
  font-weight: 500;
}
.breadcrumbs {
  line-height: 3rem;
  min-height: 6.5rem;
  padding-bottom: 1rem;
}
.breadcrumbs span {
  font-size: 1.7rem;
  font-weight: 500;
}
.breadcrumbs span span::before {
  display: inline-block;
  content: '';
  background: url("../img/bread-nav.svg") no-repeat center / contain;
  filter: contrast(0) brightness(2);
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 1.1rem 2px 0.7rem;
}
.breadcrumbs span span:first-child::before {
  display: none;
}
.breadcrumbs span span:first-child a {
  overflow: hidden;
  display: inline-block;
  width: 1.7rem;
  height: 1.7rem;
  background: url("../img/home.svg") no-repeat center / contain;
  text-indent: -999px;
  color: transparent;
  filter: contrast(0) brightness(2);
  transform: translateY(1px);
  opacity: 0.75;
  margin-right: 0.3rem;
}
.breadcrumbs span span:first-child a:hover {
  opacity: 1;
  filter: unset;
}
.breadcrumbs span a {
  transition: all 0.3s;
  text-decoration: underline transparent;
  margin-right: 1px;
}
.breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.blog_list .active .info .btn_i {
  transform: translateX(0);
}
.blog_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.blog_list a:hover img {
  transform: scale(1.02);
}
.blog_list .img {
  border-radius: 1.6rem;
  padding-bottom: 67.34%;
}
.blog_list .cat {
  position: absolute;
  left: 5.63%;
  top: 8.7%;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 100px;
  background-color: #fff;
  line-height: 4.2rem;
  padding: 0 2.1rem;
}
.blog_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2.5rem;
  gap: 1.3rem;
}
.blog_list .info .date {
  font-size: 1.8rem;
  color: rgba(63, 63, 63, 0.85);
  display: block;
}
.blog_list .info .title {
  font-size: 2.2rem;
  line-height: 3.3rem;
  font-weight: 600;
  hyphens: auto;
  margin-bottom: auto;
  max-width: 42.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.blog_list .info .btn_i {
  flex-direction: row-reverse;
  gap: 1.5rem;
  transform: translateX(-6.1rem);
  margin-top: 0.9rem;
}
.product_list .active a {
  background-color: #fff;
  box-shadow: 0 1rem 1rem rgba(201, 207, 214, 0.45);
}
.product_list .active a::after {
  opacity: 1;
}
.product_list .active .btn_circle {
  background-color: var(--primary);
}
.product_list a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
  border-radius: 1.2rem;
  border: 1px solid #bfc5d1;
}
.product_list a::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  left: -1px;
  top: -1px;
  border-radius: 1.2rem;
  border: 2px solid var(--primary);
  content: '';
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
}
.product_list a:hover img {
  transform: scale(1.02);
}
.product_list .info {
  flex: 1;
  padding: 8% 6.951% 3.4%;
}
.product_list .info .cat {
  font-size: 1.8rem;
  color: #656575;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.product_list .info .title {
  font-size: 2.8rem;
  line-height: 3.8rem;
  font-weight: 600;
  color: #0a162d;
  margin-top: 1.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.product_list .img {
  padding-bottom: 94.5%;
}
.product_list .btn_circle {
  position: absolute;
  right: 6.951%;
  bottom: 3.1rem;
}

/*** global css ***/
.loading {
  position: relative;
}
.loading:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  background-color: rgba(255, 255, 255, 0.3);
}
.loading:after {
  content: '';
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1rem solid #EFEFEF;
  border-top-color: var(--primary);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  transition: all 0.3s;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: loading 1s linear infinite;
}
@keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  80% {
    transform: translate(-50%, -50%) rotate(320deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

div.jst-language-switcher {
  display: none;
}

.wpcf7 form.wpcf7-form .wpcf7-spinner {
  width: 24px;
  position: absolute;
  right: 0;
  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: 999;
  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;
}

.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;
  border-radius: 6px;
}
.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: 77.75%;
  overflow: hidden;
}
.mega_menu .list li .title {
  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;
}
.btn_mega_menu_solutions .sub-menu {
  display: none;
}
.mega_menu_solutions {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 5rem 0;
  display: none;
  background-color: #fff;
}
.mega_menu_solutions .list ul {
  gap: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mega_menu_solutions .list .img {
  padding-bottom: 69.13%;
  border-radius: 1.2rem;
}
.mega_menu_solutions .list a:hover img {
  transform: scale(1.03);
}
.mega_menu_solutions .list li .title {
  font-weight: 500;
  font-size: 1.8rem;
  margin-top: 1rem;
  text-align: center;
}
/*** global css ***/

.quote_modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all .3s;
  pointer-events: none;
  display: grid;
  align-items: center;
  overflow: auto;
}
.quote_modal.active {
  opacity: 1;
  pointer-events: all;
}
.quote_modal .modal_content {
  width: calc(100% - 4rem);
  max-width: 100rem;
  padding: 3rem;
  margin: 5rem auto;
  border-radius: .6rem;
  background-color: #fff;
}
.quote_modal .contact_main form {
  margin: 0;
}
.quote_modal .title {
  width: 100%;
  font-size: 2.5rem;
  font-weight: 600;
}
.quote_modal .label {
  font-weight: 500;
  margin-bottom: 8px;
}
.quote_modal .grid {
  display: grid;
  gap: 2rem 2.285714%;
  grid-template-columns: repeat(2, 1fr);
}
.quote_modal .grid > span:nth-child(3):last-child {
  grid-column: span 2;
}
.quote_modal .wpcf7-radio, .quote_modal .wpcf7-checkbox {
  gap: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.quote_modal .wpcf7-radio span, .quote_modal .wpcf7-checkbox span {
  width: auto;
  white-space: nowrap;
}
.quote_modal .wpcf7-radio label {
  gap: 1rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.quote_modal .wpcf7-radio label input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.quote_modal .hr {
  height: 1rem;
}
.quote_modal span:has(.btn) {
  margin-left: auto;
}

section.product_parameters table tbody::before {
  width: var(--w);
  display: none !important;
}
section.product_parameters table tbody tr td:nth-of-type(1){
  background-color: #F6F8F9;
}
section.product_parameters table tbody tr:nth-of-type(1) td{
  border-radius: 1rem 1rem 0 0;
}
section.product_parameters table tbody tr:last-of-type td{
  border-radius: 0 0 1rem 1rem;
}
section.product_parameters table tbody
.page_solutions{
  display: none !important;
}
.product_parameters table th, .product_parameters table td{

  white-space: nowrap;
}

@media screen and (min-width: 769px) and (max-width: 1600px) {
  section.about_milestones .watermark {
    right: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
    max-width: 1220px;
  }
  .swiper_content {
    padding: 1.5rem 3rem;
    max-width: 1220px;
  }
  .page_about .img {
    margin-left: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .page_about .img {
    width: 65%;
  }
  .head h2 {
    line-height: 1.3;
  }
  .page_certifications .page_certifications_swiper .swiper-slide-active .img {
    width: 30%;
  }
}
@media screen and (max-width: 1024px) {
  header .left {
    margin: 0;
    padding: 0;
  }
  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;
    font-weight: 500;
    letter-spacing: unset;
  }
  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 {
    width: 22px;
    height: 22px;
    margin: 0;
  }
  header .btns .btn_menu {
    display: block;
    width: 23px;
    height: 23px;
    cursor: pointer;
    transition: all 0.3s;
    background: url(../img/mobile-menu/nav-btn.svg) no-repeat center / contain;
  }
  .mega_overlay {
    display: none !important;
  }
  .mega_menu {
    display: none !important;
  }
  .mega_menu_solutions {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px !important;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0 30px;
  }
  .swiper_content {
    padding: 10px 30px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn,
  .btn_line,
  .btn_w {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    min-width: 120px;
  }
  .btn_i {
    font-size: 14px;
    gap: 12px;
  }
  .btn_i::after {
    width: 40px;
    height: 40px;
  }
  .btn_circle {
    width: 40px;
  }
  .swiper_btns {
    gap: 25px;
  }
  .swiper_btns div {
    width: 25px;
  }
  .swiper_btns.con2 div {
    width: 10px;
  }
  .swiper_btns.lar div {
    width: 25px;
  }
  div.head.ban .subtitle {
    margin-bottom: 8px;
    letter-spacing: 1px;
  }
  div.head .subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    word-spacing: unset;
    letter-spacing: 1px;
  }
  div.head h1 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
    margin-top: 12px;
  }
  div.head .btn,
  div.head .btn_line,
  div.head .btn_w,
  div.head .btn_i {
    margin-top: 20px;
  }
  div.head .btn,
  div.head .btn_line,
  div.head .btn_w {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    min-width: 120px;
  }
  header {
    width: 100%;
    left: 0;
    top: 0;
    transform: translate(0);
    position: sticky;
    background-color: #fff;
  }
  header::before,
  header::after {
    opacity: 0;
  }
  header .inner {
    width: 100%;
    padding: 0 30px;
  }
  header .left {
    filter: unset;
  }
  header .left .logo img {
    height: 30px;
  }
  header .btns {
    gap: 26px;
    min-height: 64px;
  }
  header .btns .btn_search,
  header .btns .btn_menu,
  header .btns .btn_lang {
    filter: contrast(0) brightness(0);
  }
  header .btns .btn_lang {
    display: block;
    width: 22px;
    height: 22px;
    content: '';
    background: url("../img/icon-lang.svg") no-repeat center / contain;
    cursor: pointer;
  }
  header .top {
    display: none;
  }
  header.opt {
    top: 0;
  }
  footer .footer_main {
    padding: 50px 0;
  }
  footer .footer_main .flex {
    display: block;
  }
  footer .footer_main strong {
    font-size: 18px;
    margin-bottom: 20px;
  }
  footer .footer_main .slide_obj:not(.slide_connect) {
    width: 100%;
  }
  footer .footer_main .slide_obj:not(.slide_connect) strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 16px;
  }
  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 20px 20px;
  }
  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;
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .footer_main .rt {
    width: 100%;
    display: block;
  }
  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: 30px;
  }
  footer .footer_main .slide_connect li::before {
    width: 16px;
    height: 16px;
  }
  footer .footer_main .slide_connect li a {
    font-size: 16px;
  }
  footer .footer_main .slide_follow {
    margin-top: 30px;
  }
  footer .footer_main .slide_follow strong {
    margin-bottom: 20px;
  }
  footer .footer_main .slide_follow .social {
    gap: 16px;
    justify-content: space-around;
  }
  footer .footer_main .slide_follow .social a {
    width: 40px;
    height: 40px;
  }
  footer .footer_bottom {
    padding: 20px 0;
  }
  footer .footer_bottom .flex {
    gap: 30px;
    flex-direction: column;
    align-items: center;
    padding: 0;
    text-align: center;
  }
  footer .footer_bottom .logo {
    width: 200px;
  }
  footer .footer_bottom ul {
    gap: 16px 0;
  }
  footer .footer_bottom ul li::before {
    margin: 0 10px;
  }
  footer .footer_bottom ul li:first-child::before {
    display: none;
  }
  footer .footer_bottom p {
    font-size: 13px;
    margin: 0;
    order: 5;
  }
  footer .footer_bottom a {
    font-size: 14px;
    margin: 0;
  }
  footer .footer_float {
    bottom: 20px;
  }
  footer .footer_float #backtop {
    width: 40px;
  }
  .page_contact::before {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    pointer-events: none;
    background-color: var(--title);
    opacity: 0.3;
  }
  .page_contact .flex {
    min-height: unset;
    padding: 50px 0;
  }
  .page_contact .head {
    padding: 0;
  }
  .page_contact .head h2 {
    line-height: 1.3;
  }
  .page_about {
    padding: 50px 0;
  }
  .page_about .head .subtitle {
    order: -1;
  }
  .page_about .head .flex {
    flex-direction: column;
    gap: 0;
  }
  .page_about .head .flex + .flex {
    margin-top: 0;
  }
  .page_about .head h2 {
    font-size: 22px;
    line-height: 1.3;
  }
  .page_about .head p {
    line-height: 1.5;
  }
  .page_about .subtitle {
    margin-top: 0;
  }
  .page_about p + p {
    margin-top: 10px;
  }
  .page_about .main {
    margin-top: 30px;
  }
  .page_about .img {
    width: 100%;
    margin: 0;
  }
  .page_about .nums {
    width: 100%;
    padding: 0;
    max-width: unset;
  }
  .page_about .nums ul {
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .page_about .nums li {
    border-radius: 10px;
    padding: 20px;
    min-height: 120px;
    gap: 10px;
  }
  .page_about .nums li::before {
    width: 5px;
    height: 5px;
  }
  .page_about .nums .wrap {
    font-size: 18px;
  }
  .page_about .nums .wrap .num {
    font-size: 20px;
    margin-right: 0;
  }
  .page_about .nums .label {
    font-size: 14px;
  }
  .page_solutions {
    padding: 50px 0;
  }
  .page_solutions .head {
    padding-right: 50px;
  }
  .page_solutions .head .icon {
    width: 40px;
    height: 40px;
    top: 10px;
  }
  .page_solutions .head h2 {
    line-height: 1.3;
    max-width: 400px;
  }
  .page_solutions .page_solutions_swiper {
    margin-top: 30px;
  }
  .page_solutions .page_solutions_swiper .swiper-slide {
    max-width: 313px;
  }
  .page_solutions .item {
    border-radius: 10px;
    gap: 16px;
  }
  .page_solutions .item .wrap {
    grid-template-columns: 50px auto;
    gap: 16px;
    padding: 0;
  }
  .page_solutions .item .order {
    font-size: 14px;
    margin-bottom: 0;
    letter-spacing: unset;
  }
  .page_solutions .item .title {
    font-size: 18px;
    line-height: 1.5;
    height: auto;
  }
  .page_solutions .item .img {
    border-radius: 10px;
  }
  .page_solutions .swiper_con {
    margin-top: 30px;
  }
  .page_solutions .swiper_con .swiper_btns {
    margin-bottom: 0;
  }
  .page_solutions .swiper_con .pagination {
    font-size: 14px;
    margin-bottom: 0;
  }
  .page_solutions .swiper_con .pagination .current {
    font-size: 16px;
    margin-right: 0;
  }
  .page_certifications {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_certifications .content {
    overflow: unset;
  }
  .page_certifications .inner {
    gap: 30px;
    min-height: 300px;
  }
  .page_certifications .page_certifications_swiper .swiper-slide-active .img {
    width: 35%;
  }
  .page_certifications .page_certifications_swiper .item {
    border-radius: 10px;
  }
  .page_certifications .page_certifications_swiper .img {
    border-radius: 10px;
  }
  .page_certifications .page_certifications_swiper .info h3 {
    font-size: 18px;
  }
  .page_certifications .page_certifications_swiper .info p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .page_clients {
    padding: 50px 0;
  }
  .page_clients .inner {
    margin-top: 30px;
  }
  .page_clients .inner > div + div {
    margin-top: 20px;
  }
  .page_clients .page_clients_swiper .swiper-slide {
    max-width: 100px;
  }
  .page_clients p.center:has(.btn_i) {
    margin-top: 40px;
  }
  .page_clients p.center:has(.btn_i) .btn_i {
    gap: 12px;
  }
  .page_global {
    padding: 50px 0;
  }
  .page_global .map {
    width: calc(100% + 60px);
    margin: 30px -30px 0;
    padding: 0 30px;
    overflow-x: auto;
  }
  .page_global .map::-webkit-scrollbar {
    display: none;
  }
  .page_global .map .svg {
    min-width: 600px;
  }
  .page_global .map [gid] .info {
    min-width: 240px;
    border-radius: 10px;
    max-height: 200px;
    overflow-y: auto;
    padding: 20px;
  }
  .page_global .map [gid] .info .title {
    font-size: 15px;
    line-height: 1.5;
  }
  .page_global .map [gid] .info .title .logo {
    margin-bottom: 0;
  }
  .page_global .map [gid] .info ul {
    padding-top: 10px;
    margin-top: 10px;
  }
  .page_global .map [gid] .info ul li {
    padding-left: 30px;
  }
  .page_global .map [gid] .info ul li::before {
    width: 14px;
    height: 14px;
    top: 4px;
  }
  .page_global .map [gid] .info ul li + li {
    margin-top: 10px;
  }
  .page_global .map [gid] .info ul a,
  .page_global .map [gid] .info ul p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
  }
  .page_blog {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_blog .btn_line {
    min-width: 120px;
    margin-bottom: 0;
  }
  .page_blog .page_blog_swiper {
    overflow: unset;
    margin-top: 30px;
  }
  .page_blog .page_blog_swiper .swiper-slide {
    max-width: 313px;
  }
  .page_blog .swiper_btns.middle {
    position: static;
    width: 100%;
    padding: 0 30px;
    justify-content: flex-end;
    margin-top: 30px;
    transform: translateX(0);
  }
  .intro_swiper {
    overflow: unset;
  }
  .intro_swiper .swiper-slide {
    max-width: 313px;
  }
  .intro_swiper .item {
    border-radius: 10px;
    padding: 20px;
  }
  .intro_swiper .icon {
    width: 50px;
    height: 50px;
  }
  .intro_swiper .info {
    margin-top: 20px;
  }
  .intro_swiper .info h3 {
    font-size: 18px;
    line-height: 1.5;
    max-width: unset;
  }
  .intro_swiper .info p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
    max-width: unset;
  }
  .page_products {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_products .btn_line {
    min-width: 120px;
    margin-bottom: 0;
  }
  .page_products .swiper_content {
    padding-top: 0;
    padding-bottom: 0;
    overflow: unset;
  }
  .page_products .page_products_swiper {
    margin-top: 30px;
  }
  .page_products .page_products_swiper .swiper-slide {
    max-width: 313px;
  }
  .page_products .swiper_btns.middle {
    position: static;
    width: 100%;
    padding: 0 30px;
    justify-content: flex-end;
    margin-top: 30px;
    transform: translateX(0);
  }
  div.pagination {
    font-size: 14px;
  }
  div.pagination .current {
    font-size: 16px;
    margin-right: 0;
  }
  .breadcrumbs {
    line-height: 20px;
    min-height: 30px;
    padding-bottom: 10px;
  }
  .breadcrumbs span {
    font-size: 14px;
  }
  .breadcrumbs span span::before {
    width: 7px;
    height: 7px;
    margin: 0 10px;
  }
  .breadcrumbs span span:first-child a {
    width: 14px;
    height: 14px;
    margin-right: 0;
  }
  .blog_list .img {
    border-radius: 10px;
  }
  .blog_list .cat {
    font-size: 14px;
    line-height: 2;
    padding: 0 12px;
  }
  .blog_list .info {
    margin-top: 16px;
    gap: 10px;
  }
  .blog_list .info .date {
    font-size: 14px;
  }
  .blog_list .info .title {
    font-size: 18px;
    line-height: 1.4;
    max-width: unset;
  }
  .blog_list .info .btn_i {
    margin-top: 10px;
    gap: 12px;
    transform: translateX(0);
  }
  .product_list a {
    border-radius: 10px;
  }
  .product_list .info {
    padding: 20px;
  }
  .product_list .info .cat {
    font-size: 14px;
  }
  .product_list .info .title {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .product_list .btn_circle {
    bottom: 20px;
    right: 20px;
  }

  /*** 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;
  }
  /*** global css ***/

  section.about_milestones .watermark {
    right: 0;
  }
  
  .quote_modal .modal_content {
    padding: 3rem 2rem;
  }
}
@media screen and (max-width: 576px) {
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  header .inner {
    padding: 0 20px;
  }
  .page_certifications .inner {
    width: 100%;
  }
  .page_certifications .swiper_con,
  .page_certifications .head {
    padding-left: 0;
  }
  .page_certifications .page_certifications_swiper .swiper-slide::after {
    display: none;
  }
  .page_certifications .page_certifications_swiper .swiper-slide {
    transform: translateX(0);
    opacity: 1;
  }
  .page_certifications .page_certifications_swiper .swiper-slide-active .item {
    width: 100%;
    height: 100%;
  }
  .page_certifications .page_certifications_swiper .swiper-slide-active .img {
    right: unset;
    top: unset;
  }
  .page_certifications .page_certifications_swiper .item {
    position: static;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    background-color: var(--secondary);
    gap: 20px;
  }
  .page_certifications .page_certifications_swiper .item .img {
    position: relative;
    margin-left: auto;
    width: 60px;
  }
  .page_certifications .page_certifications_swiper .item .info {
    position: static;
    flex: 1;
    opacity: 1;
    max-height: unset;
    padding: 0 0 10px;
  }
  .page_solutions .page_solutions_swiper .swiper-slide {
    max-width: 277px;
  }
  .page_global .map {
    width: calc(100% + 40px);
    padding: 0 20px;
    margin: 30px -20px 0;
  }
  .page_blog .swiper_btns.middle {
    padding: 0 20px;
  }
  .page_products .swiper_btns.middle {
    padding: 0 20px;
  }
  .page_contact .head {
    display: block;
    text-align: center;
  }
}
