:root {
  --theme_color: #d9251b;
  --subtheme_color: #0753ad;
  --hover_color: #000;
  --title_color: #161616;
  --content_color: #3d3d3d;
  --bg_color: #f5f6f7;
}
html {
  font-size: clamp(7.5px, 0.522vw, 10px);
}
ul {
  list-style: none;
}
a {
  color: inherit;
  font-size: inherit;
  text-decoration: none;
}
i {
  font-style: normal;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 137rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
.header_content {
  max-width: 176.8rem;
  margin: 0 auto;
  position: relative;
}
.content_big {
  max-width: 144rem;
  margin: 0 auto;
  position: relative;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
  color: var(--title_color);
}
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_color);
}
.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_color);
  font-family: 'Poppins', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.only_mobile {
  display: none;
}
.content .content {
  padding: 0;
}
.gap {
  gap: 2rem;
}
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(--theme_color);
  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 {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
p.right {
  text-align: right;
}
.btn {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 6px;
  color: #fff;
  background-color: var(--theme_color);
  border: 1px solid var(--theme_color);
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.45rem 3.5rem;
}
.btn:hover {
  background-color: #fff;
  color: var(--theme_color);
}
.btn_line {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 9px;
  color: #000;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1.6rem 3rem;
}
.btn_line:hover {
  background-color: var(--theme_color);
  color: #fff;
}
.btn_single {
  display: inline-block;
  width: 4.8rem;
  height: 4.8rem;
  background-color: var(--theme_color);
  border-radius: 6px;
  border: 1px solid var(--theme_color);
  transition: all 0.3s;
  cursor: pointer;
}
.btn_single::after {
  width: 100%;
  height: 100%;
  background: url("../img/arrow-r.svg") no-repeat center / 31.25%;
  content: '';
  transition: all 0.3s;
  display: block;
  filter: contrast(0) brightness(2);
}
.btn_single:hover {
  background-color: #fff;
}
.btn_single:hover::after {
  filter: unset;
  transform: rotate(-45deg);
}
.btn_circle {
  display: inline-block;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background-color: var(--subtheme_color);
  cursor: pointer;
  transition: all 0.3s;
}
.btn_circle::after {
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center / 31.25%;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
.btn_circle:hover {
  background-color: var(--theme_color);
}
.btn_circle:hover::after {
  transform: rotate(-45deg);
}
.btn_line_i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
  background-color: transparent;
  color: #171717;
  font-size: 1.6rem;
  font-weight: 600;
  border: 1px solid #171717;
  padding: 1.7rem 3rem;
  gap: 0.7rem;
}
.btn_line_i::after {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  flex-shrink: 0;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
}
.btn_line_i:hover {
  background-color: var(--theme_color);
  color: #fff;
  border-color: var(--theme_color);
}
.btn_line_i:hover::after {
  filter: contrast(0) brightness(2);
  transform: translateX(20%);
}
.swiper_btns {
  gap: 3.2rem;
  display: flex;
}
.swiper_btns div {
  width: 5.7rem;
  height: 5.7rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #171717;
  background-color: transparent;
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / contain;
}
.swiper_btns div:hover {
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.swiper_btns div:hover::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  opacity: 0.68;
  pointer-events: none;
  background-color: transparent;
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns .swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 160.8rem;
  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;
}
.head.sm h2 {
  font-size: 4.312rem;
  line-height: 5.21rem;
}
.head strong {
  font-size: 1.8rem;
  font-weight: 400;
  display: block;
  color: var(--theme_color);
  text-transform: uppercase;
  letter-spacing: 2.8px;
  margin-bottom: 1.6rem;
}
.head h1 {
  font-size: 5rem;
  line-height: 6rem;
  font-weight: 600;
}
.head h2 {
  font-size: 4.2rem;
  line-height: 5.8rem;
  font-weight: 600;
}
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.3s;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(192, 192, 192, 0.35);
}
header.sticky {
  top: -5.25rem;
}
header .header_top {
  background-color: #f4f4f4;
  padding: 1.75rem 0 1.4rem;
}
header .social {
  margin-bottom: -0.7rem;
  margin-left: 1.2rem;
}
header .social ul {
  gap: 2rem 2.2rem;
  display: flex;
  flex-wrap: wrap;
}
header .social a {
  opacity: 1;
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
header .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
header .social a:hover {
  transform: scale(1.1);
}
header .social .facebook a::after {
  background-image: url(../img/facebook1.svg);
}
header .social .twitter a::after {
  background-image: url(../img/twitter1.svg);
}
header .social .youtube a::after {
  background-image: url(../img/youtube1.svg);
}
header .social .instagram a::after {
  background-image: url(../img/instagram1.svg);
}
header .social .linkedin a::after {
  background-image: url(../img/linkedin1.svg);
}
header .connect ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 4.75rem;
}
header .connect li {
  display: grid;
  grid-template-columns: 1.7rem auto;
  gap: 0.6rem;
  align-items: center;
}
header .connect li::before {
  width: 100%;
  padding-bottom: 100%;
  display: inline-block;
  content: '';
  background: no-repeat center / contain;
}
header .connect li a {
  font-size: 1.4rem;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
header .connect li a:hover {
  color: var(--theme_color);
  text-decoration-color: var(--theme_color);
}
header .connect .email::before {
  background-image: url("../img/icon-email.svg");
}
header .connect .phone::before {
  background-image: url("../img/icon-phone.svg");
  background-size: 88.24%;
}
header .left {
  display: flex;
  align-items: center;
  padding-bottom: 2px;
  margin-right: 11.8%;
}
header .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
}
header .logo img {
  display: block;
  width: auto;
  height: 5.8rem;
}
header .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
header nav .menu {
  display: flex;
  gap: 4.4rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 1.872rem;
  font-weight: 500;
  color: #2e2e2e;
  transition: all 0.3s;
  line-height: 8.8rem;
  padding-bottom: 0.5rem;
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a,
header nav .menu > li:hover > a {
  color: var(--theme_color);
}
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;
  min-width: 31rem;
}
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:hover {
  color: var(--theme_color);
}
header .btns {
  gap: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 9.3rem;
  padding-bottom: 0.6rem;
}
header .btn_search {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .btn_lang {
  width: 2.2rem;
  height: 2.2rem;
  cursor: pointer;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
}
header .btn_menu {
  display: none;
}
header .btn {
  font-size: 1.872rem;
  padding: 1.25rem 3.9rem;
  font-weight: 400;
  margin-left: 0.9rem;
}
footer .footer_main {
  padding: 10rem 0 16.8rem;
}
footer .footer_main .flex {
  gap: 5rem 2rem;
}
footer .slide_intro {
  width: 30.1rem;
  margin-top: -3.7rem;
}
footer .slide_intro .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  max-width: 25.4rem;
}
footer .slide_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .slide_intro .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
footer .slide_intro p {
  opacity: 0.85;
  line-height: 3rem;
  margin-top: 1.9rem;
}
footer .slide_intro .menu {
  gap: 1rem;
  display: grid;
  margin-top: 1.9rem;
}
footer .slide_intro .menu a {
  font-weight: 500;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1rem;
  gap: 1rem;
  border: 1px solid rgba(22, 22, 22, 0.35);
  transition: all 0.3s;
  border-radius: 6px;
  position: relative;
  z-index: 2;
  max-width: 28.1rem;
  padding: 0.9rem 2.5rem;
  min-height: 5.9rem;
}
footer .slide_intro .menu a::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow-tr.svg) no-repeat center / contain;
}
footer .slide_intro .menu a:hover {
  color: #fff;
  background-color: var(--theme_color);
  border-color: var(--theme_color);
}
footer .slide_intro .menu a:hover::after {
  transform: rotate(45deg);
  filter: contrast(0) brightness(2);
}
footer .slide_intro .social {
  gap: 2rem 4rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.9rem;
}
footer .slide_intro .social a {
  opacity: 1;
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
footer .slide_intro .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
footer .slide_intro .social a:hover {
  transform: scale(1.1);
}
footer .slide_intro .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .slide_intro .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
footer .slide_intro .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .slide_intro .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
footer .slide_intro .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .slide_obj strong {
  display: block;
  font-size: 1.872rem;
  font-weight: 600;
  margin-bottom: 2.6rem;
}
footer .slide_obj li {
  margin-bottom: 1.1rem;
}
footer .slide_obj li:last-child {
  margin-bottom: 0;
}
footer .slide_obj li a {
  opacity: 0.85;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .slide_obj li a:hover {
  opacity: 1;
  color: var(--theme_color);
  text-decoration-color: var(--theme_color);
}
footer .slide_connect {
  width: 28.05rem;
  margin-left: 6.6%;
}
footer .slide_connect li {
  position: relative;
  padding-left: 3.1rem;
}
footer .slide_connect li::before {
  content: '';
  display: block;
  width: 1.9rem;
  height: 1.9rem;
  background: no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 3px;
}
footer .slide_connect .phone::before {
  background-image: url(../img/icon-phone.svg);
  background-size: 78.95%;
}
footer .slide_connect .email::before {
  background-image: url(../img/icon-email.svg);
  background-size: 84.2%;
}
footer .slide_connect .wechat::before {
  background-image: url(../img/wechat.svg);
}
footer .slide_connect .whatsapp::before {
  background-image: url(../img/whatsapp.svg);
  background-size: 84.2%;
}
footer .copyright {
  padding: 2.5rem 0;
}
footer .copyright p,
footer .copyright a {
  color: #3f3f3f;
  font-size: 1.328rem;
}
footer .copyright a {
  opacity: 0.68;
  display: block;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .copyright a:hover {
  opacity: 1;
  text-decoration-color: var(--theme_color);
  color: var(--theme_color);
}
footer .copyright ul {
  gap: 2rem 4.7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer_contact .inner {
  max-width: 180.8rem;
  width: calc(100% - 4rem);
  margin: 0 auto;
  border-radius: 3.1rem;
  background: url("../img/footer-bg.jpg") no-repeat center / cover;
}
.footer_contact .flex {
  min-height: 34.4rem;
  padding: 4rem 0;
}
.footer_contact .head {
  color: #fff;
  max-width: 58.9rem;
  margin: 0 auto;
}
.footer_contact .btn {
  margin-top: 2.2rem;
  padding: 1.45rem 5.5rem;
}
.page_about {
  padding-bottom: 13rem;
}
.page_about .flex {
  min-height: 62.3rem;
  padding: 6rem 0;
}
.page_about .head {
  flex: 1;
  max-width: 53rem;
  color: #fff;
  padding-top: 1.6%;
}
.page_about p {
  line-height: 2.8rem;
  opacity: 0.85;
  max-width: 48.6rem;
  margin-top: 2.2rem;
}
.page_about .btn {
  margin-top: 3.7rem;
}
.page_solution .inner {
  max-width: 164.6rem;
  width: calc(100% - 4rem);
  margin: -10.5rem auto 0;
  background-color: #fff;
  border-radius: 2.2rem;
  padding: 5.4rem 0;
}
.page_solution .nums {
  margin-top: 9.6rem;
}
.page_solution .nums ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
}
.page_solution .nums li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page_solution .nums .info {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.page_solution .nums i {
  width: 6.2rem;
  min-width: 6.2rem;
  height: 6.2rem;
  display: inline-block;
  content: '';
  background: no-repeat center / contain;
  margin-right: 1.2rem;
}
.page_solution .nums span {
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1;
}
.page_solution .nums .label {
  color: #171717;
  margin-top: 2.7rem;
  text-align: center;
}
.page_advantage {
  padding: 6.1rem 0;
}
.page_advantage .flex {
  gap: 0 2rem;
}
.page_advantage strong {
  width: 100%;
}
.page_advantage h2 {
  max-width: 47.5rem;
}
.page_advantage p {
  line-height: 2.8rem;
  color: var(--content_color);
  max-width: 42.2rem;
  margin-top: 3.5rem;
}
.page_advantage .page_advantage_swiper {
  overflow: hidden;
  margin-top: 6.9rem;
}
.page_advantage .page_advantage_swiper .swiper-slide {
  position: relative;
}
.page_advantage .page_advantage_swiper .swiper-slide:hover img {
  transform: scale(1.02);
}
.page_advantage .page_advantage_swiper .swiper-slide.active .img {
  height: 100%;
}
.page_advantage .page_advantage_swiper .swiper-slide.active .img::before {
  opacity: 1;
}
.page_advantage .page_advantage_swiper .swiper-slide.active .img::after {
  opacity: 0;
}
.page_advantage .page_advantage_swiper .swiper-slide.active .img img {
  opacity: 1;
}
.page_advantage .page_advantage_swiper .swiper-slide.active .icon {
  background-color: #fff;
}
.page_advantage .page_advantage_swiper .swiper-slide.active .icon i {
  filter: unset;
}
.page_advantage .page_advantage_swiper .swiper-slide.active h3 {
  color: #fff;
}
.page_advantage .page_advantage_swiper .swiper-slide.active p {
  opacity: 1;
}
.page_advantage .page_advantage_swiper .swiper-slide.active .link {
  filter: contrast(0) brightness(2);
}
.page_advantage .page_advantage_swiper .swiper-slide.active .intro,
.page_advantage .page_advantage_swiper .swiper-slide.active .link,
.page_advantage .page_advantage_swiper .swiper-slide.active .icon {
  transform: translateY(0);
}
.page_advantage .page_advantage_swiper .img {
  width: 100%;
  height: calc(100% - 9.6rem);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 1.4rem;
  transition: all 0.4s;
}
.page_advantage .page_advantage_swiper .img img {
  opacity: 0;
}
.page_advantage .page_advantage_swiper .img::before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  background-image: linear-gradient(to right, var(--subtheme_color) 0.5589%, rgba(7, 83, 173, 0.6));
  content: '';
  opacity: 0;
  transition: all 0.3s;
  z-index: 2;
}
.page_advantage .page_advantage_swiper .img::after {
  width: 100%;
  height: 100%;
  background-color: var(--bg_color);
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  transition: all 0.3s;
}
.page_advantage .page_advantage_swiper .info {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 5.7rem 12.063% 4.7rem;
}
.page_advantage .page_advantage_swiper .icon {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background-color: var(--subtheme_color);
  transition: all 0.4s, background-color 0.3s;
  transform: translateY(4.8rem);
}
.page_advantage .page_advantage_swiper .icon i {
  width: 100%;
  height: 100%;
  display: block;
  content: '';
  background: no-repeat center / contain;
  filter: contrast(0) brightness(2);
  transition: all 0.3s;
}
.page_advantage .page_advantage_swiper .intro {
  flex: 1;
  margin-top: 3.2rem;
  transform: translateY(4.8rem);
  transition: all 0.4s;
}
.page_advantage .page_advantage_swiper h3 {
  font-size: 2.8rem;
  line-height: 4rem;
  font-weight: 600;
  color: #171717;
  transition: all 0.3s;
}
.page_advantage .page_advantage_swiper p {
  line-height: 2.6rem;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transition: all 0.3s;
  margin-top: 1.5rem;
}
.page_advantage .page_advantage_swiper .link {
  width: 1.9rem;
  height: 1.9rem;
  display: block;
  content: '';
  background: url("../img/arrow-line-tr.svg") no-repeat center / contain;
  transition: all 0.4s;
  margin-top: 5.1rem;
  transform: translateY(-5.3rem);
}
.page_banner .flex {
  min-height: 58.8rem;
  padding: 6rem 0;
}
.page_banner .head {
  flex: 1;
  max-width: 65rem;
  color: #fff;
  padding-bottom: 1.1%;
}
.page_banner p {
  line-height: 2.8rem;
  opacity: 0.85;
  margin-top: 2.2rem;
  max-width: 52.1rem;
}
.page_banner .btn {
  margin-top: 3.1rem;
}
.page_banner form {
  width: 100%;
  max-width: 57.3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  background-color: #fff;
  border: 1px solid #fcfcfc;
  border-radius: 11px;
  overflow: hidden;
  margin-top: 1.5rem;
}
.page_banner form input[type=text] {
  width: 100%;
  display: block;
  font-size: 1.8rem;
  color: var(--content_color);
  padding: 1rem 2.5rem;
}
.page_banner form input[type=text]::placeholder {
  color: var(--content_color);
}
.page_banner form input[type=submit] {
  width: 6rem;
  height: 5.9rem;
  border-radius: 11px;
  background: url("../img/icon-search-w.svg") no-repeat center / 40% var(--theme_color);
  text-indent: -999px;
  transition: all 0.3s;
}
.page_banner form input[type=submit]:hover {
  background-color: var(--subtheme_color);
}
.solution_list > div {
  display: flex;
  gap: 2.6rem;
}
.solution_list .item {
  position: relative;
  flex: 1;
  background-color: var(--subtheme_color);
  border-radius: 1.4rem;
  overflow: hidden;
  color: #fff;
  display: block;
  transition: all 0.4s;
  cursor: pointer;
  min-height: 46rem;
}
.solution_list .item:hover img {
  transform: scale(1.02);
}
.solution_list .item .img {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.4s;
}
.solution_list .item .img::after {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #0e161e 0.5587%, rgba(14, 22, 30, 0.2));
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.68;
  content: '';
  transition: all 0.3s;
}
.solution_list .item .info {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s;
  padding: 6rem 2.6rem 3.7rem;
}
.solution_list .item .info > div {
  flex: 1;
}
.solution_list .item strong {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 500;
  display: block;
}
.solution_list .item p {
  line-height: 2.6rem;
  opacity: 0;
  transition: all 0.3s 0.4s;
  margin-top: 3rem;
  font-weight: 300;
}
.solution_list .item .btn_single {
  margin-top: 3.9rem;
  border-color: rgba(255, 255, 255, 0.3);
  background-color: transparent;
}
.solution_list .item.active {
  flex: 2.63;
}
.solution_list .item.active .btn_single {
  background-color: var(--theme_color);
  border-color: var(--theme_color);
}
.solution_list .item.active .btn_single:hover {
  background-color: #fff;
}
.solution_list .item.active .info {
  width: 38.63%;
}
.solution_list .item.active p {
  opacity: 1;
}
.solution_list .item.active .img {
  width: 61.37%;
}
.solution_list .item.active .img::after {
  opacity: 0;
}
.product_item.active a {
  background-color: #fff;
}
.product_item.active a::before {
  opacity: 1;
}
.product_item.active i {
  background-color: var(--theme_color);
}
.product_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.4rem;
  background-color: var(--bg_color);
  position: relative;
  transition: all 0.3s;
}
.product_item a::before {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 1.4rem;
  border: 1px solid var(--theme_color);
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  z-index: 2;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.product_item a:hover img {
  transform: scale(1.02);
}
.product_item .img {
  z-index: 2;
  width: 100%;
  padding-bottom: 69.46%;
}
.product_item .img::before {
  width: 25.64%;
  padding-bottom: 25.64%;
  position: absolute;
  z-index: -1;
  content: '';
  background: url("../img/mask-b.svg") no-repeat center / contain;
  left: 8%;
  bottom: 8%;
}
.product_item .info {
  font-size: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.6rem 7.25% 6.3rem;
}
.product_item .info ul li{
  list-style: disc;
  margin-left: 2rem;
}
.product_item h3 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 500;
  color: #171717;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.product_item strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: normal;
  font-weight: 300;
  color: var(--theme_color);
  display: block;
  border-bottom: 1px solid rgba(23, 23, 23, 0.2);
  margin-top: 1.2rem;
  padding-bottom: 1.8rem;
}
.product_item p {
  line-height: 2.6rem;
  color: #4c4c4c;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 2rem;
}
.product_item i {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5.2rem;
  height: 5.2rem;
  background-color: var(--subtheme_color);
  display: block;
  z-index: 2;
  transition: all 0.3s;
  border-radius: 1.4rem 0 1.4rem 0;
}
.product_item i::after {
  width: 100%;
  height: 100%;
  content: '';
  background: url("../img/arrow-line.svg") no-repeat center / 39.38%;
  display: block;
}
.blog_item.active .link {
  transform: translateX(0);
}
.blog_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog_item a:hover img {
  transform: scale(1.02);
}
.blog_item .img {
  width: 100%;
  padding-bottom: 66.9%;
  border-radius: 1.6rem;
}
.blog_item .cat {
  position: absolute;
  left: 2rem;
  top: 2rem;
  z-index: 2;
  font-size: 1.315rem;
  color: #fff;
  font-weight: 500;
  background-color: var(--subtheme_color);
  border-radius: 100px;
  line-height: 3.3rem;
  padding: 0 1.05rem;
}
.blog_item .info {
  margin-top: 2.9rem;
  color: #000;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}
.blog_item .date {
  font-size: 1.597rem;
  opacity: 0.7;
}
.blog_item h3 {
  font-size: 2.067rem;
  line-height: 2.631rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  flex: 1;
  margin-top: 1.1rem;
}
.blog_item .link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: center;
  font-size: 1.691rem;
  color: var(--subtheme_color);
  font-weight: 500;
  transition: all 0.4s;
  margin-top: 2.9rem;
  transform: translateX(-5.2rem);
}
.blog_item .link .btn_circle {
  width: 4rem;
  height: 4rem;
}
.blog_item .link .btn_circle::after {
  background-size: 30%;
}
.blog_item .link:hover {
  color: var(--theme_color);
}
.blog_item .link:hover .btn_circle {
  background-color: var(--theme_color);
}
.blog_item .link:hover .btn_circle::after {
  transform: rotate(-45deg);
}
.breadcrumbs {
  line-height: 3.2rem;
  min-height: 3.2rem;
}
.breadcrumbs span {
  font-size: 1.8rem;
  font-weight: 600;
}
.breadcrumbs span span::before {
  content: '';
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  background: url("../img/bread-icon.svg") no-repeat center / contain;
  margin-left: 1rem;
  margin-right: 1.6rem;
}
.breadcrumbs span span:first-child::before {
  display: none;
}
.breadcrumbs span span:not(:has(a)) {
  text-decoration: underline;
}
.breadcrumbs span a {
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.breadcrumbs span a:hover {
  color: var(--theme_color);
  text-decoration-color: var(--theme_color);
}



.loading {
  position: relative;
}
.loading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../global/img/loading.gif') no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 9;
}

.products_swiper_category.products_swiper ul.swiper-wrapper{
  transform: none !important;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.products_swiper_category.products_swiper ul.swiper-wrapper li{
  margin-right: 0 !important;
}


.default_head{
  padding: 9rem 0;
  background-color: #eee;
}
.default_head h1{
  font-size: 4.5rem;
}
.default_body{
  padding: 5rem 0;
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: #171717;
}

.default_body h2 {
  font-size: 2.6rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 3.5rem 0 3.3rem;
}
.default_body h3 {
  font-size: 2rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 1.6rem 0 1rem;
}
.default_body p {
  margin: 1rem 0;
}
.default_body img {
  border-radius: 8px;
  width: 100%;
  display: block;
  object-fit: cover;
  margin: 4.7rem 0;
}
.default_body ul {
  margin: 1rem 0;
}
.default_body ul li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 1rem;
}
.default_body ul li:last-child {
  margin-bottom: 0;
}
.default_body ul li::before {
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  left: 0;
  top: 0.8rem;
  border-radius: 50%;
  background-color: var(--theme_color);
  content: '';
}

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;
}
.search_btn, .btn_search{
  cursor: pointer;
}
img.empty_img {
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
}

header nav .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0 !important;
  opacity: 0 !important;
  pointer-events: none ;
}

header nav .sub-menu li.menu-item-has-children:hover .sub-menu{
  opacity: 1 !important;
  pointer-events: all !important;
}

.home_banner .home_banner_swiper .swiper-slide {
    position: relative;
}
.home_banner .home_banner_swiper .swiper-slide .content {
    z-index: 3;
}
.home_banner .home_banner_swiper .swiper-slide::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.4);
}


.header_solution_menu{
  background-color: white;
  position: absolute;
  width: 100%;
  max-height: 50vh;
  left: 0;
  top: calc(100% - 1px);
  overflow: auto;
  display: none;
}
.header_solution_menu ul{
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 1rem 1.5rem;
}
.header_solution_menu ul li .img{
  aspect-ratio: 1/0.8;
  overflow: hidden;
}
.header_solution_menu ul li .img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s;
}
.header_solution_menu ul li:hover .img img{
  transform: scale(1.1);
}
.header_solution_menu ul li strong{
  font-size: 18px;
  display: block;
  font-weight: 500;
  margin: 1rem 0;
  text-align: center;
}
.overlay_menu{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.overlay_menu.active{
  pointer-events: all;
  opacity: 1;
}
.solution_hover_btn .sub-menu{
  display: none;
}

ul + .cat_title{
  margin-top: 2rem;
}
.cat_title{
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.cat_title a{
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 16px;
  font-weight: 500;
}
.cat_title a:after{
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background: url('../img/arrow-blue.svg') no-repeat center/contain;
}