:root {
  --theme_color: #1f4396;
  --subtheme_color: #4bb13f;
  --hover_color: #000;
  --title_color: #212121;
  --content_color: #515151;
  --bg_color: #f7f7f7;
}
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: 147rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
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: "Inter", 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;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 100px;
  background-color: var(--theme_color);
  padding: 2.1rem 3.25rem 2.2rem;
  gap: 1.7rem;
  position: relative;
}
.btn i {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  width: 0.9rem;
}
.btn i::before {
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: var(--subtheme_color);
  display: block;
  content: '';
  transition: all 0.4s, opacity 0.3s;
  transform-origin: right center;
}
.btn i::after {
  width: 150%;
  padding-bottom: 150%;
  position: absolute;
  right: 0;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  transition: all 0.4s, opacity 0.3s;
  opacity: 0;
  z-index: 2;
  filter: contrast(0) brightness(2);
  transform: scaleX(0);
  transform-origin: left center;
}
.btn:hover {
  background-color: var(--subtheme_color);
}
.btn:hover i::before {
  transform: scaleX(1.56) scaleY(0.11);
  opacity: 0;
}
.btn:hover i::after {
  opacity: 1;
  transform: scaleX(1);
}
.btn_w {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--title_color);
  line-height: normal;
  text-transform: uppercase;
  border-radius: 100px;
  background-color: #fff;
  padding: 2.1rem 3.25rem 2.2rem;
  gap: 1.8rem;
}
.btn_w i {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  width: 0.9rem;
}
.btn_w i::before {
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: var(--subtheme_color);
  display: block;
  content: '';
  transition: all 0.4s, opacity 0.3s;
  transform-origin: right center;
}
.btn_w i::after {
  width: 150%;
  padding-bottom: 150%;
  position: absolute;
  right: 0;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  transition: all 0.4s, opacity 0.3s;
  opacity: 0;
  z-index: 2;
  filter: contrast(0) brightness(2);
  transform: scaleX(0);
  transform-origin: left center;
}
.btn_w:hover {
  background-color: var(--subtheme_color);
  color: #fff;
}
.btn_w:hover i::before {
  transform: scaleX(1.56) scaleY(0.11);
  opacity: 0;
}
.btn_w:hover i::after {
  opacity: 1;
  transform: scaleX(1);
}
.btn_line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--title_color);
  line-height: normal;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid rgba(33, 33, 33, 0.45);
  background-color: transparent;
  padding: 2.1rem 3.1rem;
  gap: 1.1rem;
  min-width: 18.2rem;
}
.btn_line i {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  width: 0.9rem;
}
.btn_line i::before {
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: var(--subtheme_color);
  display: block;
  content: '';
  transition: all 0.4s, opacity 0.3s;
  transform-origin: right center;
}
.btn_line i::after {
  width: 150%;
  padding-bottom: 150%;
  position: absolute;
  right: 0;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  transition: all 0.4s, opacity 0.3s;
  opacity: 0;
  z-index: 2;
  filter: contrast(0) brightness(2);
  transform: scaleX(0);
  transform-origin: left center;
}
.btn_line:hover {
  background-color: var(--subtheme_color);
  border-color: var(--subtheme_color);
  color: #fff;
}
.btn_line:hover i::before {
  transform: scaleX(1.56) scaleY(0.11);
  opacity: 0;
}
.btn_line:hover i::after {
  opacity: 1;
  transform: scaleX(1);
}
.btn_more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 2rem;
  font-weight: 600;
  color: var(--title_color);
  line-height: normal;
  border-radius: 6px;
  border: 1px solid #bababa;
  background-color: transparent;
  padding: 2.35rem 5.1rem;
}
.btn_more:hover {
  background-color: var(--subtheme_color);
  border-color: var(--subtheme_color);
  color: #fff;
}
.btn_i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 100px;
  background-color: var(--subtheme_color);
  padding: 2.1rem 3.95rem 2.2rem;
  gap: 1.6rem;
}
.btn_i::after {
  width: 1.4rem;
  height: 1.4rem;
  display: inline-block;
  flex-shrink: 0;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  filter: contrast(0) brightness(2);
  transition: all 0.3s;
}
.btn_i:hover {
  background-color: var(--theme_color);
}
.btn_i:hover::after {
  transform: translateX(20%);
}
.btn_circle {
  display: inline-block;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: url("../img/arrow-r-w.svg") no-repeat center / 23.82% var(--theme_color);
  transition: all 0.3s;
  content: '';
  cursor: pointer;
}
.btn_circle:hover {
  background-color: var(--subtheme_color);
}
.swiper_btns {
  gap: 3.3rem;
  display: flex;
}
.swiper_btns div {
  width: 6.2rem;
  height: 6.2rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #efefef;
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / contain;
}
.swiper_btns div:hover {
  border-color: var(--subtheme_color);
  background-color: var(--subtheme_color);
}
.swiper_btns div:hover::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: rgba(239, 239, 239, 0.64);
}
.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: 165.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.6rem;
  line-height: 5.6rem;
  letter-spacing: 0.9px;
}
.head.sm h2::after {
  width: 3.4rem;
  height: 0.4rem;
  display: block;
  content: '';
  background: url("../img/icon-subtitle.svg") no-repeat center / contain;
  margin-top: 3rem;
}
.head h1 {
  font-size: 6.8rem;
  line-height: 7.6rem;
  font-weight: 700;
  letter-spacing: 1.7px;
}
.head p strong{
  font-weight: 500;
  color: inherit;
  margin: 0;
  display: inline-block;
  letter-spacing: 0;
  text-transform: unset;
  font-size: initial;
}
.head p strong:before{
  display: none;
}
.head strong {
  display: inline-flex;
  align-items: center;
  font-size: 1.6rem;
  line-height: normal;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--title_color);
  letter-spacing: 4px;
  margin-bottom: 1.1rem;
  gap: 1.1rem;
  /*&::before {
      width: 1.7rem;
      height: .4rem;
      background-color: var(--theme_color);
      clip-path: polygon(24% 0%, 100% 0%, 76% 100%, 0% 100%);
      display: inline-block;
      content: '';
      flex-shrink: 0;
      order: -1;
    }

    &::after {
      order: -1;
      width: 1.7rem;
      height: .4rem;
      background-color: var(--subtheme_color);
      display: inline-block;
      content: '';
      flex-shrink: 0;
      clip-path: polygon(24% 0%, 100% 0, 100% 100%, 0 100%);
      margin-right: 1rem;
    }*/
}
.head strong::before {
  width: 3.4rem;
  height: 0.4rem;
  display: inline-block;
  content: '';
  background: url("../img/icon-subtitle.svg") no-repeat center / contain;
  flex-shrink: 0;
}
.head h2 {
  font-size: 4.8rem;
  line-height: 6rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.head h2 .num {
  white-space: nowrap;
}
.head h2 span {
  color: var(--theme_color);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.3s;
  background-color: transparent;
  border-bottom: 1px solid rgba(51, 51, 51, 0.22);
}
header.style {
  background-color: #fff;
}
header.style ~ .products_nav {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header.sticky {
  position: sticky;
  background-color: #fff;
}
header.header_w {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}
header.header_w .logo {
  filter: contrast(0) brightness(2);
}
header.header_w nav .menu > li > a {
  color: #fff;
}
header.header_w .btn_search,
header.header_w .btn_lang,
header.header_w .btn_menu {
  border-left-color: rgba(255, 255, 255, 0.22);
}
header.header_w .btn_search::after,
header.header_w .btn_lang::after,
header.header_w .btn_menu::after {
  filter: contrast(0) brightness(2);
}
header.header_w.style {
  border-bottom-color: rgba(51, 51, 51, 0.22);
}
header.header_w.style .logo {
  filter: unset;
}
header.header_w.style nav .menu > li > a {
  color: var(--title_color);
}
header.header_w.style .btn_search,
header.header_w.style .btn_lang,
header.header_w.style .btn_menu {
  border-left-color: rgba(51, 51, 51, 0.22);
}
header.header_w.style .btn_search::after,
header.header_w.style .btn_lang::after,
header.header_w.style .btn_menu::after {
  filter: unset;
}
header.header_w.style .btn_search:hover::after,
header.header_w.style .btn_lang:hover::after,
header.header_w.style .btn_menu:hover::after {
  filter: contrast(0) brightness(2);
}
header .inner {
  max-width: 192rem;
  margin: 0 auto;
}
header .left {
  display: flex;
  align-items: center;
  padding-left: 2.865%;
  padding-top: 0.5rem;
  margin-right: 10.2%;
}
header .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  transition: all 0.3s;
}
header .logo img {
  display: block;
  width: auto;
  height: 3.47432rem;
}
header .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
header nav .menu {
  display: flex;
  gap: 3.75rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li::after {
  width: 0;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: -2px;
  content: '';
  background-color: var(--subtheme_color);
  transform: translateX(-50%);
  transition: all 0.3s;
}
header nav .menu > li > a {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  transition: all 0.3s;
  line-height: 8.8rem;
  padding-top: 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:hover > ul > li:hover ul {
  opacity: 1;
  pointer-events: all;
  padding: 1.6rem 2.4rem;
}
header nav .menu > li:hover > ul > li:hover ul li {
  transform: translate(0);
}
header nav .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}
header nav .sub-menu {
  left: -2.4rem;
  position: absolute;
  min-width: 20rem;
  background-color: #fff;
  padding: 1.6rem 2.4rem 0;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}
header nav .sub-menu > li {
  margin-bottom: 0.5rem;
  transition: all 0.4s;
  transform: translateY(-1.6rem);
}
header nav .sub-menu > li > a {
  display: block;
  padding: 0.8rem 0;
  transition: all 0.3s;
  font-size: 1.8rem;
  position: relative;
  white-space: nowrap;
}
header nav .sub-menu > li > a::after {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  background-color: var(--subtheme_color);
  transition: all 0.3s;
}
header nav .sub-menu > li > a:hover::after {
  width: 100%;
}
header .btns {
  display: flex;
  justify-content: flex-end;
  min-height: 9rem;
}
header .btn_search,
header .btn_lang {
  width: 9.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(51, 51, 51, 0.22);
  padding-top: 0.4rem;
  transition: all 0.3s;
}
header .btn_search::after,
header .btn_lang::after {
  width: 2rem;
  height: 2rem;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
  display: block;
  content: '';
  transition: all 0.3s;
}
header .btn_search:hover,
header .btn_lang:hover {
  background-color: var(--theme_color);
}
header .btn_search:hover::after,
header .btn_lang:hover::after {
  filter: contrast(0) brightness(2);
}
header .btn_search::after {
  background-image: url("../img/icon-search.svg");
  background-size: 95%;
}
header .btn_menu {
  display: none;
}
header .btn_contact {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s;
  background-color: var(--subtheme_color);
  color: #fff;
  padding: 1.6rem 4.1rem 1.4rem;
  gap: 0.4rem;
  min-width: 24.9rem;
  font-weight: 500;
}
header .btn_contact span {
  font-size: 1.2rem;
  opacity: 0.7;
  font-weight: 400;
  display: block;
  font-weight: 300;
}
header .btn_contact:hover {
  background-color: var(--theme_color);
}
footer {
  background-color: var(--bg_color);
}
footer .footer_main {
  padding: 10rem 0 2.4rem;
}
footer .footer_main .flex {
  gap: 8rem 2rem;
}
footer strong {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.07px;
}
footer .slide_logo {
  width: 29.7rem;
  margin-top: -1.5rem;
}
footer .slide_logo .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  max-width: 29.7rem;
}
footer .slide_logo .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .slide_logo .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
footer .main {
  width: 100%;
  max-width: 100rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 4.4rem 2rem;
}
footer .main .slide_obj:first-child {
  grid-row: span 2;
}
footer .slide_obj strong {
  margin-bottom: 2rem;
}
footer .slide_obj li a {
  font-size: 1.7rem;
  opacity: 0.7;
  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_obj li + li {
  margin-top: 1rem;
}
footer .slide_connect {
  width: 31.1rem;
}
footer .slide_connect strong {
  margin-bottom: 2.3rem;
}
footer .slide_connect li {
  position: relative;
  padding-left: 3.3rem;
}
footer .slide_connect li::before {
  content: '';
  display: block;
  width: 1.9rem;
  height: 1.9rem;
  background: no-repeat center left / contain;
  position: absolute;
  left: 0;
  top: 0;
}
footer .slide_connect li + li {
  margin-top: 0.8rem;
}
footer .slide_connect .phone::before {
  background-image: url(../img/icon-phone.svg);
  background-size: 79%;
}
footer .slide_connect .email::before {
  background-image: url(../img/icon-email.svg);
  top: 1px;
}
footer .slide_follow strong {
  margin-bottom: 3.6rem;
}
footer .slide_follow .social {
  gap: 2rem 3rem;
  display: flex;
  flex-wrap: wrap;
}
footer .slide_follow .social a {
  opacity: 1;
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
footer .slide_follow .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
footer .slide_follow .social a:hover {
  transform: scale(1.1);
}
footer .slide_follow .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .slide_follow .social .rss a::after {
  background-image: url(../img/rss.svg);
}
footer .slide_follow .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .slide_follow .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
footer .slide_follow .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .slide_follow .social .tiktok a::after {
  background-image: url(../img/tiktok.png);
}
footer .slide_subscribe {
  width: 54.3rem;
}
footer .slide_subscribe strong {
  margin-bottom: 2.2rem;
}
footer .slide_subscribe form {
  width: 100%;
  max-width: 53.9rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.1rem;
}
footer .slide_subscribe form input {
  display: block;
  width: 100%;
  border-radius: 100px;
  background-color: #fff;
  font-size: 1.6rem;
  color: var(--title_color);
  padding: 1.7rem 2.8rem;
}
footer .slide_subscribe form input::placeholder {
  color: #727272;
}
footer .slide_subscribe form input[type=submit] {
  background-color: var(--theme_color);
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  padding: 1.7rem 3.35rem;
}
footer .slide_subscribe form input[type=submit]:hover {
  background-color: var(--subtheme_color);
}
footer .copyright {
  padding: 2.1rem 0;
  border-top: 1px solid #e0e0e0;
}
footer .copyright p,
footer .copyright a {
  font-size: 1.4rem;
}
footer .copyright a {
  font-size: 1.328rem;
  opacity: 0.68;
  display: block;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .copyright a:hover {
  opacity: 1;
  color: var(--theme_color);
  text-decoration-color: var(--theme_color);
}
footer .copyright ul {
  gap: 2rem 5.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer_contact {
  background: url("../img/footer-bg.jpg") no-repeat center / cover;
}
.footer_contact .flex {
  min-height: 28.6rem;
  padding: 4rem 0;
}
.footer_contact .head {
  flex: 1;
  color: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2px;
}
.footer_contact h2 {
  max-width: 83.9rem;
}
.footer_contact .btn_w {
  margin-top: 1.8rem;
}
.page_products2 {
  padding: 6.5rem 0 4rem;
}
.page_products2 .page_products2_swiper {
  overflow: hidden;
  margin-top: 4.1rem;
}
.page_products {
  padding: 3rem 0 4.55rem;
}
.page_products .head {
  padding-bottom: 0.4rem;
}
.page_products .page_products_swiper {
  margin-top: 2rem;
}
.page_products .swiper_btns {
  top: 54%;
}
.page_factory {
  padding: 4.55rem 0 2.7rem;
}
.page_factory strong {
  margin-top: 1rem;
}
.page_factory .title {
  flex: 1;
  max-width: 95.1rem;
}
.page_factory .title h3 {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem 4.2%;
  font-size: 3.6rem;
  font-weight: 300;
  margin-top: 1.6rem;
  letter-spacing: 1.25px;
}
.page_factory .title h3::before {
  width: 100%;
  height: 1px;
  background-color: var(--title_color);
  display: block;
  content: '';
}
.page_factory .capacity {
  margin-bottom: 1px;
}
.page_factory .capacity .wrap {
  font-size: 3.4rem;
  font-weight: 500;
  color: var(--theme_color);
  line-height: 1;
  white-space: nowrap;
}
.page_factory .capacity .wrap .num {
  font-size: 4.6rem;
  font-weight: 600;
}
.page_factory .capacity .label {
  font-size: 2rem;
  margin-top: 1.5rem;
}
.page_factory .page_factory_swiper {
  overflow: hidden;
  margin-top: 6rem;
}
.page_factory .page_factory_swiper .swiper-slide:hover img {
  transform: scale(1.02);
}
.page_factory .page_factory_swiper .img {
  width: 100%;
  padding-bottom: 72%;
}
.page_factory .page_factory_swiper .info {
  margin-top: 2.4rem;
}
.page_factory .page_factory_swiper .info h3 {
  font-size: 2.2rem;
  font-weight: 600;
}
.page_factory .page_factory_swiper .info p {
  font-size: 1.7rem;
  line-height: 2.8rem;
  color: var(--content_color);
  margin-top: 1.5rem;
}
.page_factory .swiper_control {
  margin-top: 2.6rem;
}
.page_video {
  padding: 2.7rem 0;
}
.page_video .video {
  position: relative;
  width: 100%;
  padding-bottom: 45.416667%;
  overflow: hidden;
  cursor: pointer;
}
.page_video .video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.page_video .video .btn_play {
  position: absolute;
  left: 50%;
  top: 54%;
  z-index: 2;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-weight: 300;
}
.page_video .video .btn_play i {
  position: relative;
  display: block;
  width: 9.5rem;
  height: 9.5rem;
  background: url("../img/play.svg") no-repeat center / 72.632%;
  margin-bottom: 2.3rem;
  transition: all 0.3s;
}
.page_video .video .btn_play i::after {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background: url("../img/play-mask.svg") no-repeat center / contain;
  transition: all 0.3s;
}
.page_video .video .btn_play:hover i {
  transform: scale(1.1);
}
.page_video .video .btn_play:hover i::after {
  transform: rotate(360deg);
}
.page_video .video.active .btn_play {
  opacity: 0;
}
.page_faqs {
  background-color: #fff;
  padding: 12.4rem 0 19.5rem;
}
.page_faqs.bg {
  background-color: #f7f8f9;
}
.page_faqs .flex {
  margin-top: 5.5rem;
}
.page_faqs .faqs_sidebar {
  width: 14.91111%;
  min-width: 20rem;
}
.page_faqs .faqs_sidebar .nav_item {
  border: 1px solid #e5e5e5;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 500;
  color: #161616;
  padding: 1.9rem 2rem;
  margin-bottom: 1.1rem;
}
.page_faqs .faqs_sidebar .nav_item:last-child {
  margin-bottom: 0;
}
.page_faqs .faqs_sidebar .nav_item.active,
.page_faqs .faqs_sidebar .nav_item:hover {
  background-color: var(--theme_color);
  color: #fff;
}
.page_faqs .faqs {
  flex: 1;
  max-width: 114.5rem;
}
.page_faqs p.center:has(.btn_line) {
  margin-top: 4.4rem;
  min-height: 6.5rem;
}
.page_applications {
  padding: 8.3rem 0 11.6rem;
}
.page_applications .head {
  padding-bottom: 0.5rem;
}
.page_applications .page_applications_swiper {
  overflow: hidden;
  margin-top: 5.5rem;
}
.page_applications .item.active h3 {
  color: var(--subtheme_color);
  text-decoration-color: var(--subtheme_color);
}
.page_applications .item.active i::before {
  opacity: 0;
  background-position: center right;
}
.page_applications .item.active i::after {
  opacity: 1;
}
.page_applications .item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.page_applications .item .img {
  width: 100%;
  padding-bottom: 100.3%;
}
.page_applications .item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 1.9rem;
}
.page_applications .item h3 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #161616;
  transition: all 0.3s;
  flex: 1;
  text-decoration: underline transparent;
}
.page_applications .item i {
  width: 1.7rem;
  height: 1.4rem;
  display: block;
  margin-top: 2.5rem;
  position: relative;
}
.page_applications .item i::before,
.page_applications .item i::after {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: no-repeat center left / contain;
  transition: all 0.4s, opacity 0.3s 0.1s;
}
.page_applications .item i::before {
  background-image: url("../img/link1.svg");
}
.page_applications .item i::after {
  background-image: url("../img/link2.svg");
  opacity: 0;
}
.page_applications .swiper_control {
  margin-top: 5.1rem;
}
.page_app_feature {
  padding: 5.4rem 0 5.9rem;
}
.page_app_feature .page_app_feature_swiper {
  overflow: hidden;
  margin-top: 5rem;
}
.page_app_feature .item {
  display: block;
  height: 100%;
}
.page_app_feature .item:hover img {
  transform: scale(1.02);
}
.page_app_feature .item .img {
  width: 100%;
  padding-bottom: 72.37%;
}
.page_app_feature .item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 3.1rem;
}
.page_app_feature .item h3 {
  font-size: 2.4rem;
  font-weight: 600;
}
.page_app_feature .item p {
  font-size: 1.7rem;
  line-height: 2.8rem;
  color: var(--content_color);
  margin-top: 0.9rem;
}
.page_app_feature .swiper_btns {
  top: 41%;
}
.page_blog {
  padding: 3.6rem 0 7.2rem;
}
.page_blog .head {
  padding-bottom: 0.7rem;
}
.page_blog .page_blog_swiper {
  overflow: hidden;
  margin-top: 3.6rem;
}
.page_blog .swiper_btns {
  max-width: 174.2rem;
  top: 58.5%;
}
.page_blog_b2 {
  padding: 6.3rem 0 12.7rem;
}
.page_blog_b2 .head {
  padding-bottom: 0.7rem;
}
.page_blog_b2 .page_blog_b2_swiper {
  overflow: hidden;
  margin-top: 4.2rem;
}
.page_blog_b2 .swiper_btns {
  max-width: 174.2rem;
  top: 58.5%;
}
.page_blog_b2 .blog_list .img {
  padding-bottom: 49.78%;
}
.page_blog_b2 .blog_list .info {
  margin-top: 3rem;
}
.page_blog2 {
  padding: 10.85rem 0 12.7rem;
}
.page_blog2 .head {
  padding-bottom: 1rem;
}
.page_blog2 .list {
  margin-top: 0.8rem;
}
.page_blog2 .item.active .title {
  text-decoration-color: var(--title_color);
}
.page_blog2 .item.active .btn_circle {
  background-color: var(--subtheme_color);
}
.page_blog2 .item:last-child a {
  border-bottom: none;
}
.page_blog2 .item a {
  display: grid;
  grid-template-columns: 31.0416667% 1fr auto;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  gap: 2rem 7.5%;
  padding: 3.6rem 0;
}
.page_blog2 .item a:hover img {
  transform: scale(1.02);
}
.page_blog2 .item .img {
  width: 100%;
  padding-bottom: 53.196421%;
}
.page_blog2 .item .info {
  padding-bottom: 5.5%;
}
.page_blog2 .item .metas {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 1.7rem;
}
.page_blog2 .item .metas .date {
  color: rgba(63, 63, 63, 0.85);
}
.page_blog2 .item .metas .cat {
  display: grid;
  grid-template-columns: 0.7rem 1fr;
  gap: 1.2rem;
  align-items: center;
  font-weight: 500;
  text-transform: uppercase;
}
.page_blog2 .item .metas .cat::before {
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: var(--theme_color);
  display: block;
  content: '';
}
.page_blog2 .item .title {
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-decoration: underline transparent;
  transition: all 0.3s;
  margin-top: 2.4rem;
  letter-spacing: 0.25px;
}
.page_blog2 .item .btn_circle {
  width: 5.3rem;
  height: 5.3rem;
  margin-bottom: 0.9rem;
}
.page_banner {
  position: relative;
  padding: 12rem 0;
}
.page_banner::before {
  width: 60.625%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-image: linear-gradient(to right, #010b1e -16.198%, transparent);
  opacity: 0.61;
  pointer-events: none;
}
.page_banner .flex {
  min-height: 68.1rem;
  padding: 6rem 0;
}
.page_banner .head {
  flex: 1;
  color: #fff;
  max-width: 79.1rem;
  padding-bottom: 2.5%;
}
.page_banner h1 {
  letter-spacing: 1.35px;
}
.page_banner p {
  font-size: 2.2rem;
  line-height: 3.4rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.21px;
  max-width: 58.5rem;
  margin-top: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.41px;
}
.page_banner .btn_i {
  margin-top: 4.2rem;
}
.resource_banner {
  position: relative;
  padding: 9rem 0 13.3rem;
}
.resource_banner:has(.nav_list) {
  padding-bottom: 5.4rem;
}
.resource_banner::before {
  width: 60.625%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-image: linear-gradient(to right, #010b1e -16.198%, transparent);
  opacity: 0.61;
  pointer-events: none;
}
.resource_banner .flex {
  min-height: 69.9rem;
  padding: 4rem 0;
}
.resource_banner .head {
  flex: 1;
  color: #fff;
  max-width: 55.7rem;
  padding-top: 1.4%;
}
section.resource_banner p {
  font-size: 2.2rem;
  line-height: 3.4rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2.4rem;
  letter-spacing: 0.2px;
}
.resource_banner form {
  width: 100%;
  max-width: 48.4rem;
  margin-top: 4.3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.22);
  overflow: hidden;
  padding: 0.5rem;
}
.resource_banner form input[type=text] {
  display: block;
  width: 100%;
  font-size: 1.7rem;
  color: #fff;
  background-color: transparent;
  padding: 0.5rem 2.5rem;
}
.resource_banner form input[type=text]::placeholder {
  color: rgba(255, 255, 255, 0.88);
}
.resource_banner form input[type=submit] {
  display: block;
  width: 5.4rem;
  height: 5.4rem;
  text-indent: -999px;
  border-radius: 50%;
  background: url("../img/icon-search-w.svg") no-repeat center / 27.77778% var(--subtheme_color);
  transition: all 0.3s;
}
.resource_banner form input[type=submit]:hover {
  background-color: var(--theme_color);
}
.resource_banner .nav_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 2.43055556%;
}
.resource_banner .nav_list .nav_item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 3.8rem;
  align-items: center;
  height: 100%;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(197, 204, 211, 0.45);
  gap: 2rem;
  padding: 1.9rem 0;
  font-weight: 400;
}
.resource_banner .nav_list .nav_item::after {
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  display: block;
  content: '';
  background: url("../img/arrow-d-w.svg") no-repeat center / 24% transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s;
}
.resource_banner .nav_list .nav_item::before {
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
  content: '';
  background-color: var(--subtheme_color);
  transition: all 0.3s;
}
.resource_banner .nav_list .nav_item.active::after,
.resource_banner .nav_list .nav_item:hover::after {
  background-color: var(--subtheme_color);
  border-color: var(--subtheme_color);
}
.resource_banner .nav_list .nav_item.active::before,
.resource_banner .nav_list .nav_item:hover::before {
  width: 100%;
}
.products_banner {
  background: url("../img/products-banner.jpg") no-repeat center / cover;
}
.products_banner .flex {
  min-height: 70.3rem;
  padding: 6rem 0;
}
.products_banner .head {
  flex: 1;
  max-width: 77.4rem;
  color: var(--theme_color);
  padding-bottom: 5.9%;
}
.products_banner p {
  font-size: 2.2rem;
  line-height: 3.4rem;
  color: rgba(0, 16, 48, 0.85);
  max-width: 64.7rem;
  margin-top: 2.4rem;
  letter-spacing: 0.21px;
}
.products_banner .btn_i {
  margin-top: 3.6rem;
}
.products_banner .img {
  width: 67.708333%;
  margin: 0 -10.902777% 0 -15%;
  padding-bottom: 39.82%;
}
.products_banner .img:hover img {
  transform: scale(1.02);
}
.page_nav {
  border-bottom: 1px solid #e5e7ea;
}
.page_nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.8rem;
}
.page_nav .nav_item {
  display: block;
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  color: #828282;
  transition: all 0.3s;
  padding: 2.9rem 2px;
  --deg: 0.4rem;
  margin-bottom: -2px;
}
.page_nav .nav_item.active,
.page_nav .nav_item:hover {
  color: var(--title_color);
}
.page_nav .nav_item.active::before,
.page_nav .nav_item:hover::before,
.page_nav .nav_item.active::after,
.page_nav .nav_item:hover::after {
  opacity: 1;
}
.page_nav .nav_item.active {
  font-weight: 600;
}
.page_nav .nav_item::before,
.page_nav .nav_item::after {
  bottom: 0;
  position: absolute;
  width: 52.2%;
  height: var(--deg);
  content: '';
  z-index: 2;
  opacity: 0;
  transition: all 0.3s;
}
.page_nav .nav_item::before {
  left: 0;
  background-color: var(--theme_color);
  clip-path: polygon(var(--deg) 0%, 100% 0%, calc(100% - var(--deg)) 100%, 0% 100%);
}
.page_nav .nav_item::after {
  right: 0;
  background-color: var(--subtheme_color);
  clip-path: polygon(var(--deg) 0%, 100% 0, 100% 100%, 0 100%);
}
div:has(.products_nav) {
  /* position: sticky; */
  /* top: 9.1rem; */
  z-index: 99;
  transition: all 0.3s;
}
.products_nav {
  /* position: sticky; */
  /* top: 9.1rem; */
  z-index: 99;
  background-color: #f7f7f7;
  transition: all 0.3s;
}
.products_nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0.7rem 0 0.8rem;
}
.products_nav .nav_item {
  display: block;
  height: 100%;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.3s;
  padding: 0.7rem 2.55rem 0.9rem;
}
.products_nav .nav_item.active,
.products_nav .nav_item:hover {
  background-color: #fff;
  border-color: var(--subtheme_color);
}
.products_nav .nav_item.active .title,
.products_nav .nav_item:hover .title {
  color: var(--subtheme_color);
}
.products_nav .nav_item.active .title {
  font-weight: 600;
}
.products_nav .nav_item .icon {
  height: 6.7rem;
  content: '';
  width: max-content;
  margin: 0 auto;
}
.products_nav .nav_item .icon img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}
.products_nav .nav_item .title {
  font-size: 1.5rem;
  color: #000000;
  text-align: center;
  transition: all 0.3s;
  margin-top: 0.8rem;
  font-weight: 500;
}
.product2_list .active a::before {
  opacity: 1;
}
.product2_list .active .info .btn_circle {
  background-color: var(--subtheme_color);
}
.product2_list a {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-image: linear-gradient(to bottom, #e2e5ee, #ffffff, #eef1f6 40%);
}
.product2_list a::before {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #e0e0e0;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  box-shadow: 0 10px 8px rgba(206, 206, 206, 0.25);
  z-index: -1;
  pointer-events: none;
  content: '';
  transition: all 0.3s;
  opacity: 0;
  display: none;
}
.product2_list a:hover img {
  transform: scale(1.02);
}
.product2_list .img {
  width: 100%;
  padding-bottom: 77.75%;
}
.product2_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.8rem 7.6% 2.4rem;
}
.product2_list .info > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product2_list .info h3 {
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  letter-spacing: 0.2px;
}
.product2_list .info p {
  font-size: 1.7rem;
  line-height: 2.6rem;
  color: var(--content_color);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 1.3rem;
}
body .product2_list .info p {
  -webkit-line-clamp: unset;
}
.product2_list .info .btn_circle {
  margin-top: 1.2rem;
}
.product_list .active a {
  box-shadow: 1rem 1rem 0.8rem rgba(0, 0, 0, 0.1);
}
.product_list .active .info h3::after {
  width: 100%;
}
.product_list .active .info .btn {
  background-color: var(--subtheme_color);
}
.product_list .active .info .btn i::before {
  transform: scaleX(1.56) scaleY(0.11);
  opacity: 0;
}
.product_list .active .info .btn i::after {
  opacity: 1;
  transform: scaleX(1);
}
.product_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  transition: all 0.3s;
}
.product_list a:hover img {
  transform: scale(1.02);
}
.product_list .img {
  width: 100%;
  padding-bottom: 62.43%;
  background-image: linear-gradient(to bottom, #e2e5ee, #fff 53.6313%, #e2e5ee);
}
.product_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  line-height: 2.3rem;
  padding: 1.4rem 7.5% 2.1rem;
}
.product_list .info > div:first-child {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product_list .info strong {
  display: block;
  font-weight: 400;
  color: var(--content_color);
}
.product_list .info h3 {
  position: relative;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 600;
  color: var(--title_color);
  border-bottom: 1px solid #e0e0e0;
  margin-top: 0.5rem;
  padding-bottom: 1rem;
}
.product_list .info h3::after {
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: all 0.3s;
  background-color: var(--subtheme_color);
  content: '';
}
.product_list .info ul {
  margin-top: 0.58rem;
}
.product_list .info ul li {
  position: relative;
  color: #707070;
  padding-left: 1.1rem;
}
.product_list .info ul li::before {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 1.2rem;
  content: '';
  background-color: #707070;
}
.product_list .info .btn {
  width: 100%;
  margin-top: 1.6rem;
  font-size: 1.4rem;
  padding: 1.4rem 2rem;
  gap: 1.1rem;
  font-weight: 400;
}
.product_list .info .btn i {
  width: 0.7rem;
}
.blog_list .active .title {
  text-decoration-color: var(--title_color);
}
.blog_list .active .link {
  transform: translateX(0);
}
.blog_list .active .link .btn_circle {
  background-color: var(--subtheme_color);
}
.blog_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.blog_list a:hover img {
  transform: scale(1.02);
}
.blog_list .img {
  width: 100%;
  padding-bottom: 72.931%;
  padding-bottom: 56.25%;
}
.blog_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.8rem;
}
.blog_list .metas {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 1.7rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1.4rem;
}
.blog_list .metas .date {
  color: rgba(63, 63, 63, 0.85);
}
.blog_list .metas .cat {
  display: grid;
  grid-template-columns: 0.7rem 1fr;
  gap: 1.2rem;
  align-items: center;
  font-weight: 500;
  text-transform: uppercase;
}
.blog_list .metas .cat::before {
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: var(--theme_color);
  display: block;
  content: '';
}
.blog_list .title {
  font-size: 2rem;
  line-height: 2.9rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-decoration: underline transparent;
  transition: all 0.3s;
  margin-top: 1.1rem;
  letter-spacing: 0.15px;
  padding-right: 1rem;
  margin-bottom: auto;
}
.blog_list .link {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.4s;
  transform: translateX(calc(-100% + 4.6rem));
  margin-top: 2.5rem;
}
.blog_list .link .btn_circle {
  width: 4.6rem;
  height: 4.6rem;
  flex-shrink: 0;
}
.certificate_item.active .wrap::after {
  opacity: 1;
}
.certificate_item.active .wrap a {
  opacity: 1;
}
.certificate_item .wrap {
  position: relative;
  background-color: #f4f4f4;
  padding: 4.1rem 0 4.3rem;
}
.certificate_item .wrap::after {
  width: calc(100% - 0.6rem);
  height: calc(100% - 0.6rem);
  border: 0.3rem solid var(--subtheme_color);
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
}
.certificate_item .wrap .img_wrap {
  width: 65.5%;
  margin: 0 auto;
  position: relative;
}
.certificate_item .wrap .img_wrap::after {
  width: 111.7117%;
  height: 101.57233%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  content: '';
  background: url("../img/certificate-mask.svg") no-repeat center / contain;
  pointer-events: none;
}
.certificate_item .wrap .img {
  width: 100%;
  padding-bottom: 143.24%;
  box-shadow: 7px 0 10px rgba(155, 161, 165, 0.55);
}
.certificate_item .wrap a {
  width: 7.6rem;
  height: 7.6rem;
  position: absolute;
  left: 50%;
  top: 50%;
  content: '';
  background: url("../img/icon-magnify.svg") no-repeat center / contain var(--subtheme_color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s, opacity 0.3s;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
  overflow: hidden;
  text-indent: -999px;
}
.certificate_item .wrap i:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.certificate_item .title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 2.8rem;
}
.faq_item {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  margin-bottom: 0.9rem;
}
.faq_item:last-child {
  margin-bottom: 0;
}
.faq_item:first-child .answer {
  display: block;
}
.faq_item.active .question {
  color: var(--theme_color);
  font-weight: 600;
}
.faq_item.active .question i::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq_item .question {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  font-size: 2.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  padding: 2.8rem 0.5rem 2.5rem 0;
  letter-spacing: 0.16px;
  padding-left: 2.97%;
  padding-right: 2.096%;
}
.faq_item .question i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}
.faq_item .question i::before,
.faq_item .question i::after {
  width: 100%;
  height: 2px;
  position: absolute;
  content: '';
  background-color: #171717;
  transition: all 0.4s, opacity 0.3s;
}
.faq_item .question i::after {
  width: 2px;
  height: 100%;
}
.faq_item .answer {
  display: none;
  padding: 0 1.6594% 0 2.97%;
}
.faq_item .answer p {
  font-size: 1.7rem;
  line-height: 2.8rem;
  margin: 0;
  color: var(--content_color);
  padding: 2.1rem 0 3rem;
  border-top: 1px solid #e5e5e5;
}
.cut {
  display: inline-flex;
}
.cut::before {
  width: 1.7rem;
  height: 0.4rem;
  background-color: var(--theme_color);
  clip-path: polygon(24% 0%, 100% 0%, 76% 100%, 0% 100%);
  display: inline-block;
  content: '';
  flex-shrink: 0;
  order: -1;
}
.cut::after {
  order: -1;
  width: 1.7rem;
  height: 0.4rem;
  background-color: var(--subtheme_color);
  display: inline-block;
  content: '';
  flex-shrink: 0;
  clip-path: polygon(24% 0%, 100% 0, 100% 100%, 0 100%);
}
.advantage_swiper {
  overflow: hidden;
}
.advantage_swiper .swiper-slide {
  position: relative;
  z-index: 2;
  background-color: #f3faff;
  display: flex;
  flex-direction: column;
  padding: 3.8rem 2.4% 3.6rem;
}
.advantage_swiper .swiper-slide::before {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s;
  background: url("../img/home-mask2.svg") no-repeat center / contain var(--theme_color);
  opacity: 0;
}
.advantage_swiper .swiper-slide.active::before {
  opacity: 1;
}
.advantage_swiper .swiper-slide.active i {
  filter: contrast(0) brightness(2);
}
.advantage_swiper .swiper-slide.active .info h3 {
  color: #fff;
}
.advantage_swiper .swiper-slide.active .info p {
  color: rgba(255, 255, 255, 0.85);
}
.advantage_swiper i {
  width: 5.8rem;
  height: 5.8rem;
  display: block;
  content: '';
  transition: all 0.3s;
}
.advantage_swiper .info {
  flex: 1;
  margin-top: 4.8rem;
}
.advantage_swiper .info h3 {
  font-size: 3rem;
  font-weight: 600;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.advantage_swiper .info p {
  font-size: 2rem;
  line-height: 2.8rem;
  color: var(--content_color);
  transition: all 0.3s;
  max-width: unset;
  margin-top: 3.3rem;
}
.swiper_control {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.swiper_control div.swiper-scrollbar {
  position: static;
  width: 86%;
  height: 2px;
  background: #e0e0e0;
  max-width: 122.9rem;
}
.swiper_control div.swiper-scrollbar .swiper-scrollbar-drag {
  height: 3px;
  background: var(--theme_color);
  top: -1px;
  border-radius: 100px;
}
nav.navigation .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
nav.navigation p {
  font-size: 1.5rem;
  color: #242424;
  text-align: center;
  margin-top: 1rem;
  font-weight: 500;
}
nav.navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}
nav.navigation .page-numbers {
  transition: all 0.3s;
  border-radius: 6px;
  font-size: 1.7rem;
  background-color: var(--bg_color);
  font-weight: 500;
  color: #242424;
  text-align: center;
  cursor: pointer;
  min-width: 4.2rem;
  padding: 1.1rem 1.5rem;
}
nav.navigation .page-numbers.current,
nav.navigation .page-numbers:hover {
  background-color: var(--theme_color);
  color: #fff;
}
nav.navigation .page-numbers.current::after,
nav.navigation .page-numbers:hover::after {
  filter: contrast(0) brightness(2);
}
nav.navigation .prev,
nav.navigation .next {
  position: relative;
  overflow: hidden;
  padding: 0;
  text-indent: -999px;
}
nav.navigation .prev::after,
nav.navigation .next::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/arrow.svg") no-repeat center / 17.381%;
  display: block;
  content: '';
  transition: all 0.3s;
}
nav.navigation .next::after {
  transform: rotate(180deg);
}
.app_more {
  padding: 5.9rem 0 14.6rem;
}
.app_more .head {
  padding-bottom: 0.8rem;
}
.app_more .app_more_swiper {
  overflow: hidden;
  margin-top: 4.3rem;
}
.app_more .item a {
  display: block;
  height: 100%;
  position: relative;
}
.app_more .item a:hover img {
  transform: scale(1.02);
}
.app_more .item .img {
  width: 100%;
  padding-bottom: 139.244%;
}
.app_more .item .img::after {
  width: 100%;
  height: 69.94%;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  background-image: linear-gradient(to top, #000, transparent);
  opacity: 0.7;
  pointer-events: none;
}
.app_more .item .info {
  position: absolute;
  left: 0;
  bottom: 2.6rem;
  right: 0;
  z-index: 2;
  color: #fff;
  text-align: center;
  max-height: calc(100% - 5.2rem);
  padding: 0 1rem;
}
.app_more .item .info::-webkit-scrollbar {
  width: 5px;
}
.app_more .item .info::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.app_more .item h3 {
  font-size: 2.4rem;
  font-weight: 600;
}
.app_more .item .btn_circle {
  width: 3.8rem;
  height: 3.8rem;
  background-image: url("../img/arrow-r-b.svg");
  background-size: 24%;
  margin: 1.5rem auto 0;
  background-color: #fff;
}
.app_more .swiper_btns {
  max-width: 170.1rem;
}
div:has(.page_nav) {
  position: sticky;
  top: 9rem;
  z-index: 99;
  background-color: #fff;
}
.page_nav {
  position: sticky;
  top: 9rem;
  z-index: 99;
  background-color: #fff;
}
/*# sourceMappingURL=global.css.map */


.search .page_products .product_list {
  gap: 1.8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.search .page_products p.center {
  margin-top: 5rem;
  min-height: 6.5rem;
}






/*** global css ***/
.empty_img {
  max-width: 388px;
  margin: 0 auto;
  display: block;
}
.loading {
  position: relative;
}
.loading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/load.gif') no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 9;
}
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;
}
.wpcf7 form.wpcf7-form .wpcf7-spinner {
  width: 24px;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: .5rem;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
}
.wpcf7 form.wpcf7-form .wpcf7-list-item {
  margin: 0;
}
.quote_modal {
  opacity: 0;
  pointer-events: none;
}
.quote_modal .title {
  display: none;
}
div form#sytech-newsletter-subscription {
  display: grid;
}
div form#sytech-newsletter-subscription p.success,
div form#sytech-newsletter-subscription p.failed {
  top: unset;
  bottom: 100%;
  width: 100%;
  max-width: 250px;
  font-size: 12px;
  background-color: var(--theme_color);
  padding: 12px 12px 12px 32px;
}
div form#sytech-newsletter-subscription p.success.active,
div form#sytech-newsletter-subscription p.failed.active {
  top: unset;
  bottom: 110%;
}
div form#sytech-newsletter-subscription p.success::before,
div form#sytech-newsletter-subscription p.failed::before {
  top: 12px;
  width: 16px;
  height: 16px;
  filter: contrast(0) brightness(2);
}
div form#sytech-newsletter-subscription p.success::after,
div form#sytech-newsletter-subscription p.failed::after {
  bottom: unset;
  top: 100%;
  border-top-color: var(--theme_color);
}
/*** global css ***/


section.app_desc .right {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}



.lang_popup{
  padding: 70px 53px;
  border-radius: 3px;
  background-color: white;
  /* position: absolute;
  left: calc(100% + 20px);
  bottom: -15px; */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  z-index: 1005;
  display: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.footer_sidebar .lang{
  position: relative;
}
.lang_popup ul + strong{
  margin-top: 2rem;
}
.lang_popup strong{
  display: block;
  font-size: 28px;
  margin-bottom: 30px;
  text-align: left;
}
.lang_popup div.img{
  width: 41px;
  height: 41px;
  /* border-radius: 50%; */
  overflow: hidden;
  margin-right: 19px;
  border: 1px solid transparent;
}
.lang_popup div.img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lang_popup li{
  padding: 15px 24px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  display: flex;
  transition: all 0.3s;
  align-items: center;
  cursor: pointer;
  
}
.lang_popup li:hover{
  border-color: var(--theme_color);
}

.lang_popup:before{
  content: "";
  display: inline-block;
  border-width: 10px;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  right: 100%;
  bottom: 38px;
  border-style: solid;
  display: none;
}

.lang_popup li p{
  font-size: 17px;
  font-weight: 600;
  display: block;
  margin-bottom: 0rem;
}
.lang_popup li span{
  font-size: 14px;
  color: #686868;
}
.lang_popup li:after{
  content: "";
  width: 10px;
  height: 16px;
  display: inline-block;
  margin-left: auto;
  background: url('../img/arrow-lang.svg') no-repeat center/contain;
  transition: all 0.3s;
}
.lang_popup li.active{
  border-color: var(--theme_color);
}
.lang_popup li.active .img{
  border-color: white;
}

.lang_popup li.active:after{
  filter: brightness(100);
}

.lang_popup .close{
  width: 11px;
  display: inline-block;
  height: 11px;
  position: absolute;
  right: 32px;
  top: 30px;
  cursor: pointer;
  transition: all 0.5s;
  background: url('../img/lang-close.svg') no-repeat center/contain;
}
.lang_popup .close:hover{
  transform: rotate(360deg);
}
.lang_popup ul.lang-list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}

.lang_popup .gtranslate_wrapper{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.lang_popup .gtranslate_wrapper a{
  padding: 15px 24px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  display: flex;
  transition: all 0.3s;
  align-items: center;
  cursor: pointer;
}
.lang_popup .gtranslate_wrapper a.gt-current-lang{
  border-color: var(--theme_color);
}
.lang_popup .gtranslate_wrapper a img{
  width: 41px;
  height: auto;
  /* border-radius: 50%; */
  overflow: hidden;
  margin-right: 19px;
  border: 1px solid transparent;
  display: inline-block;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.lang_popup .gtranslate_wrapper a span{
  font-size: 17px !important;
  font-weight: 600;
  display: block;
  margin-bottom: 0rem;
}

.overlay_lang{
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.overlay_lang.active{
  opacity: 1;
  pointer-events: all;
}


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

section.page_nav .nav_item {
  font-size: 16px;
  padding: 2rem 2px;
}


form .file {
  display: block;
  width: 100%;
  text-align: center;
  padding-top: 22px;
  padding-bottom: 23px;
  cursor: pointer;
  border: 2px dashed rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}
form .file input {
  display: none;
}
form .file strong {
  font-size: 24px;
  font-weight: 700;
  color: #161616;
}
form .file strong::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  transform: translateY(3px);
  margin-right: 12px;
  background: url(../img/file.svg) no-repeat center / contain;
}
form .file span {
  font-size: 16px;
  font-weight: 500;
  color: var(--theme_color);
  display: block;
  margin-top: 3px;
}


.product_show .breadcrumbs {
  position: relative;
  z-index: 2;
  min-height: 6.7rem;
  border: 1px solid #f7f7f7;
  border-radius: 6px;
  padding: 2.3rem 2.3rem 2.1rem;
}
.product_show .breadcrumbs span {
  color: #000000;
}
.product_show .breadcrumbs span span::before {
  content: '';
  width: 0.6rem;
  height: 0.9rem;
  background: url("../img/icon-bread2.svg") no-repeat center / contain;
  display: inline-block;
  margin: 0 1.6rem 1px 1.2rem;
}
.product_show .breadcrumbs span span:first-child::before {
  display: none;
}
.product_show .breadcrumbs span a {
  transition: all 0.3s;
  text-decoration: underline transparent;
  color: #666;
}
.product_show .breadcrumbs span a:hover {
  color: var(--theme_color);
  text-decoration-color: var(--theme_color);
}

section.category2_profile {
  padding-top: 2rem;
}
section.category2_profile .head {
  flex: unset;
  width: 58%;
  margin-right: 0;
  max-width: unset;
}
section.category2_profile .img {
  width: 38%;
}


.head h1, .home_banner .title {
  font-size: 4.8rem !important;
  line-height: 1.3 !important;
}
.head h2 {
  font-size: 3.6rem !important;
  line-height: 1.3 !important;
}
.head p,
.home_applications .home_applications_swiper p,
.technologys_main .technology_item .info p,
.oem_tech .oem_tech_swiper .info p,
.about_profile .flex p {
  font-size: 2rem !important;
  line-height: 1.5 !important;
}

.social_sidebar {
  position: fixed;
  right: 20px;
  top: 50%;
  z-index: 99;
  transform: translateY(-50%);
}
.social_sidebar ul {
  gap: 15px;
  display: grid;
}
.social_sidebar li {
  position: relative;
}
.social_sidebar .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.social_sidebar .icon .img {
  width: 50%;
  height: 50%;
}
.social_sidebar .popup {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) scale(0);
  padding: 10px;
  white-space: nowrap;
  transition: all .3s;
  transform-origin: right center;
  background-color: #fff;
  border-radius: 8px;
  opacity: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-size: 15px;
}
.social_sidebar .popup .img {
  width: 120px;
  height: 120px;
}
.social_sidebar li:hover .popup {
  opacity: 1;
  transform: translate(-10px, -50%);
}
.social_sidebar .popup a {
  transition: all .3s;
}
.social_sidebar .popup a:hover {
  color: var(--theme_color);
}

section.home_links .item .img {
  opacity: 1;
}
section.home_links .item .info strong {
  color: #fff;
}
section.home_links .item .info span {
  color: rgba(255,255,255,0.7);
}