* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #c19a5b;
  --secondary: #2b2b2b;
  --title: #161616;
  --text: #3d3d3d;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.522vw, 10px);
}
ul {
  list-style: none;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i {
  font-style: normal;
}
.content {
  max-width: 128rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.content_big {
  max-width: 143.5rem;
  margin: 0 auto;
  position: relative;
}
.content_big .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 131rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
  --mask: #fff;
}
.swiper_content::before,
.swiper_content::after {
  width: 2rem;
  height: 100%;
  position: absolute;
  top: 0;
  content: '';
  z-index: 2;
}
.swiper_content::before {
  background-image: linear-gradient(to right, var(--mask), transparent);
  left: 0;
}
.swiper_content::after {
  background-image: linear-gradient(to left, var(--mask), transparent);
  right: 0;
}
.btn_video {
  cursor: pointer;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
  color: var(--title);
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
  font-family: "DM Sans", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.Vollkorn {
  font-family: "Vollkorn", serif;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
li.swiper-slide {
  height: auto;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-image: linear-gradient(to top, #f5f5ed, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.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-block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  border-radius: 1.2rem;
  background-color: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  font-size: 2rem;
  line-height: normal;
  font-weight: 600;
  padding: 1.8rem 3rem;
  min-width: 21.1rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  position: relative;
}
.btn.sm {
  font-size: 1.8rem;
  min-width: 20.4rem;
  padding: 1.7rem 3.85rem;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn_b {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  border-radius: 1.2rem;
  background-color: var(--secondary);
  color: #fff;
  line-height: normal;
  font-weight: 600;
  font-size: 1.8rem;
  min-width: 20.4rem;
  padding: 1.8rem 3rem;
}
.btn_b:hover {
  background-color: var(--primary);
}
.btn_line {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  border-radius: 1.2rem;
  background-color: transparent;
  color: var(--title);
  border: 1px solid rgba(22, 22, 22, 0.4);
  line-height: normal;
  font-weight: 600;
  font-size: 1.8rem;
  min-width: 19.3rem;
  padding: 1.75rem 3rem;
}
.btn_line:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 2rem;
  font-weight: 600;
  color: var(--title);
  gap: 2.2rem;
}
.btn_i i {
  width: 5.2rem;
  display: block;
  background-color: var(--primary);
  border-radius: 1.2rem;
}
.btn_i i::after {
  width: 100%;
  padding-bottom: 100%;
  background: url("../img/arrow-tr.svg") no-repeat center / 21.15385%;
  display: block;
  content: '';
  transition: all 0.3s;
}
.btn_i:hover {
  color: var(--primary);
}
.btn_i:hover i::after {
  transform: rotate(45deg);
}
.btn_i.white {
  color: #fff;
}
.btn_i.white:hover {
  color: var(--primary);
}
.swiper_btns {
  gap: 2rem;
  display: flex;
}
.swiper_btns div {
  width: 7rem;
  height: 7rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 1.9rem;
  height: 1.9rem;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / contain;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  background-color: transparent;
}
.swiper_btns div:hover::after {
  filter: unset;
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(5, 10, 76, 0.45);
}
.swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(0);
}
.swiper_btns .swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 162.4rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.swiper_btns.white div {
  border-color: rgba(255, 255, 255, 0.45);
  background-color: transparent;
}
.swiper_btns.white div::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns.white div:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.swiper_btns.white .swiper-button-disabled {
  opacity: 0.64;
}
.swiper_btns.white .swiper-button-lock {
  opacity: 0;
}
.swiper_btns.sm div {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 1rem;
}
.swiper_btns.sm div::after {
  width: 1.4rem;
  height: 1.4rem;
}
.head.banner h1 {
  font-family: "Vollkorn", serif;
}
.head.white {
  color: #fff;
}
.head.white strong {
  color: #fff;
}
.head h1 {
  font-size: 8.4rem;
  line-height: 1.18;
  font-weight: 700;
}
.head strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #303030;
  letter-spacing: 2.65px;
  margin-bottom: 1.8rem;
}
.head h2 {
  font-size: 4.8rem;
  line-height: 6.2rem;
  font-weight: 700;
  letter-spacing: 2px;
}
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.3s;
  background-color: #fff;
}
header.sticky {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .content {
  width: calc(100% - 4rem);
  max-width: 173.3rem;
  padding: 0;
}
header .left {
  display: flex;
  align-items: center;
  margin-right: auto;
  padding-top: 0.6%;
}
header .left .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
}
header .left .logo img {
  display: block;
  width: auto;
  height: 3.44rem;
  height: 7.44rem;
}
header .left .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
header nav .menu {
  display: flex;
  gap: 5.35rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li::after {
  width: 0;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: 0;
  content: '';
  background-color: var(--primary);
  transform: translateX(-50%);
  transition: all 0.3s;
}
header nav .menu > li > a {
  display: block;
  font-size: 1.9rem;
  font-weight: 500;
  color: #1a1a1a;
  transition: all 0.3s;
  line-height: 9.9rem;
  padding-top: 0.3rem;
}
header nav .menu > li.current-menu-item::after,
header nav .menu > li.current-menu-parent::after,
header nav .menu > li:hover::after {
  width: 100%;
}
header nav .menu > li:hover ul {
  opacity: 1;
  pointer-events: all;
  padding: 1.6rem 2.4rem;
}
header nav .menu > li:hover ul li {
  transform: translate(0);
}
header nav .menu > li.btn_mega_menu .sub-menu {
  display: none;
}
header nav .sub-menu {
  left: -2.4rem;
  position: absolute;
  min-width: 20rem;
  background-color: #fff;
  padding: 1.6rem 2.4rem 0;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}
header nav .sub-menu > li {
  margin-bottom: 0.5rem;
  transition: all 0.4s;
  transform: translateY(-1.6rem);
}
header nav .sub-menu > li > a {
  display: block;
  padding: 0.8rem 0;
  transition: all 0.3s;
  font-size: 1.5rem;
  position: relative;
}
header nav .sub-menu > li > a::after {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  background-color: var(--primary);
  transition: all 0.3s;
}
header nav .sub-menu > li > a:hover::after {
  width: 100%;
}
header .btns {
  gap: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 10.2rem;
  margin-left: 0.95%;
  padding-top: 2px;
}
header .btns .btn_search {
  width: 2.2rem;
  height: 2.2rem;
  cursor: pointer;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .btns .btn_menu {
  display: none;
}
footer {
  background-color: var(--secondary);
  color: #fff;
  border-bottom: 3px solid var(--primary);
}
footer .footer_main {
  padding: 11.8rem 0 12.5rem;
  padding-right: 8.3%;
}
footer .footer_main .flex {
  gap: 5rem 2rem;
}
footer .slide_intro {
  width: 28.8rem;
  margin-top: -2.6rem;
}
footer .slide_intro .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  max-width: 25.5rem;
  margin-bottom: 3.9rem;
  max-width: 9.5rem;
}
footer .slide_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(0) brightness(2);
}
footer .slide_intro .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
footer .slide_intro p {
  opacity: 0.85;
  font-size: 1.8rem;
  line-height: 3rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.1px;
}
footer .slide_intro .menu {
  gap: 1rem;
  display: grid;
}
footer .slide_intro .menu a {
  font-weight: 500;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 0.3s;
  font-size: 1.8rem;
  padding: 0.9rem 2.6rem;
  min-height: 6rem;
  max-width: 28.2rem;
  font-weight: 400;
}
footer .slide_intro .menu a::after {
  content: '';
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  transition: all 0.3s;
  background: url(../img/arrow-tr.svg) no-repeat center / contain;
}
footer .slide_intro .menu a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
footer .slide_intro .menu a:hover::after {
  transform: rotate(45deg);
}
footer .slide_intro .social {
  gap: 2rem 3.95rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 3.6rem;
}
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-weight: 600;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
footer .slide_obj li {
  margin-bottom: 1.4rem;
}
footer .slide_obj li:last-child {
  margin-bottom: 0;
}
footer .slide_obj li a {
  font-size: 1.7rem;
  opacity: 0.85;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
  font-weight: 300;
  letter-spacing: 0.2px;
}
footer .slide_obj li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .copyright {
  padding: 1.4rem 0;
}
footer .copyright p,
footer .copyright a {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.1px;
}
footer .copyright a {
  opacity: 0.68;
  display: block;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .copyright a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .copyright ul {
  gap: 2rem 4.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer_contact {
  padding-top: 4.8rem;
  overflow: hidden;
}
.footer_contact .head {
  max-width: 65.8rem;
  margin: 0 auto;
}
.footer_contact h2 {
  font-weight: 800;
  letter-spacing: 2.2px;
}
.footer_contact .btn {
  margin-top: 4.2rem;
  padding: 1.9rem 5rem;
}
.footer_contact .footer_contact_swiper {
  width: calc(100% - 4rem);
  max-width: 187.8rem;
  margin: 4.8rem auto 0;
}
.footer_contact .footer_contact_swiper .swiper-wrapper {
  transition: linear;
}
.footer_contact .footer_contact_swiper .swiper-slide {
  max-width: 360px;
  transition: all 0.3s;
}
.footer_contact .footer_contact_swiper .swiper-slide:hover {
  transform: translateY(-1rem);
}
.footer_contact .footer_contact_swiper .img {
  width: 100%;
  padding-bottom: 102.240896%;
  border-radius: 12px;
}
.footer_contact .footer_contact_swiper .img:hover img {
  transform: scale(1.02);
}
.toplevel_page_sytech_fronteditor .footer_links {
  margin: 0;
}
.footer_links {
  background-color: var(--secondary);
  padding-top: 18.1rem;
  margin-top: -18.1rem;
}
.footer_links .links {
  display: grid;
  grid-template-columns: repeat(2, 41.7%);
  border-bottom: 1px solid var(--primary);
  justify-content: space-between;
  padding: 9.9rem 0 4.6rem;
  gap: 2rem 3%;
}
.footer_links .item.active i {
  border-color: var(--primary);
  background-color: var(--primary);
}
.footer_links .item.active i::after {
  transform: rotate(45deg);
}
.footer_links .item a {
  display: grid;
  grid-template-columns: 7.3rem 1fr 6.7rem;
  align-items: start;
  color: #fff;
  gap: 4.4%;
}
.footer_links .item .icon {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}
.footer_links .item .icon img {
  position: absolute;
  left: 0;
  top: 0;
}
.footer_links .item .title {
  max-width: 23.6rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 3.2rem;
  font-weight: 600;
  margin-top: 0.3rem;
}
.footer_links .item i {
  width: 100%;
  padding-bottom: calc(100% - 2px);
  position: relative;
  display: block;
  border-radius: 1.6rem;
  border: 1px solid #ffffff;
  transition: all 0.3s;
}
.footer_links .item i::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: '';
  transition: all 0.4s;
  background: url("../img/arrow-tr-line.svg") no-repeat center / 21.53846%;
}
.page_advantages {
  padding: 11.6rem 0 12.7rem;
}
.page_advantages.bg {
  background-color: #f5f5ed;
  padding: 14.1rem 0 14.7rem;
}
.page_advantages .head {
  gap: 1px 2rem;
}
.page_advantages strong {
  width: 100%;
}
.page_advantages h2 {
  max-width: 60rem;
}
.page_advantages p {
  font-size: 1.8rem;
  line-height: 3rem;
  max-width: 42.2rem;
  margin-top: 3.1rem;
  color: var(--text);
}
.page_advantages .page_advantages_swiper {
  overflow: hidden;
  margin-top: 5.5rem;
  border-radius: 2.9rem;
}
.page_advantages .page_advantages_swiper .swiper-slide {
  max-width: 410px;
}
.page_advantages .item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 5.5rem 3.8% 4.5rem;
}
.page_advantages .item:hover img {
  transform: scale(1.02);
}
.page_advantages .item.active .img {
  height: 100%;
}
.page_advantages .item.active .img::after {
  opacity: 0;
}
.page_advantages .item.active .icon {
  background-color: var(--primary);
  transform: translateY(0);
}
.page_advantages .item.active .info p {
  opacity: 1;
}
.page_advantages .item.active .info h3,
.page_advantages .item.active .info p,
.page_advantages .item.active .info i {
  transform: translateY(0);
}
.page_advantages .item .img {
  border-radius: 2.9rem;
  width: 100%;
  height: calc(100% - 9.2rem);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s, height 0.5s;
  pointer-events: none;
}
.page_advantages .item .img::before,
.page_advantages .item .img::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  transition: all 0.4s;
  z-index: 2;
}
.page_advantages .item .img::after {
  background-color: var(--primary);
}
.page_advantages .item .img::before {
  background-image: linear-gradient(to top, #332717, rgba(51, 39, 23, 0.9), rgba(51, 39, 23, 0.5), #332717);
}
.page_advantages .item .icon {
  position: relative;
  z-index: 2;
  width: 7.1rem;
  height: 7.1rem;
  border-radius: 50%;
  background-color: #eac38c;
  transform: translateY(3.9rem);
  transition: all 0.5s, background-color 0.3s;
}
.page_advantages .item .info {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  color: #fff;
  margin-top: 2.6rem;
  overflow: hidden;
}
.page_advantages .item .info h3 {
  font-size: 3rem;
  line-height: 3.9rem;
  font-weight: 800;
  font-weight: 700;
  transform: translateY(3.9rem);
  transition: all 0.5s;
}
.page_advantages .item .info p {
  font-size: 1.7rem;
  line-height: 2.7rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: unset;
  flex: 1;
  margin-top: 1.2rem;
  font-weight: 300;
  transform: translateY(3.9rem);
  opacity: 0;
  transition: all 0.5s, opacity 0.3s;
  min-height: 10.8rem;
}
.page_advantages .item .info i {
  width: 1.7rem;
  height: 1.7rem;
  display: block;
  content: '';
  background: url("../img/arrow-tr-line.svg") no-repeat center / contain;
  margin-top: 4.5rem;
  transform: translateY(-5.7rem);
  transition: all 0.5s;
}
.page_blog {
  padding: 9rem 0 8.6rem;
}
.page_blog .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
  margin-bottom: 2px;
}
.page_blog .nav_list .nav_item {
  font-size: 2rem;
  font-weight: 500;
  color: #515151;
  transition: all 0.3s;
  display: block;
  border-bottom: 3px solid transparent;
  padding: 1.3rem 0;
}
.page_blog .nav_list .nav_item.active,
.page_blog .nav_list .nav_item:hover {
  border-bottom-color: var(--primary);
  color: #242424;
}
.page_blog .nav_list .nav_item.active {
  font-weight: 600;
}
.page_blog .page_blog_swiper {
  margin-top: 2.4rem;
  padding: 1rem 0;
}
.page_blog .page_blog_swiper .swiper-slide {
  max-width: 450px;
}
.page_blog .swiper_btns {
  top: 52%;
}
.page_blog p.center:has(.btn_line) {
  margin-top: 4.7rem;
}
.page_banner {
  position: relative;
  background: no-repeat center / cover;
}
.page_banner::before {
  width: 75.4166667%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  pointer-events: none;
  background-image: linear-gradient(to right, #0f1922 27.1784%, transparent);
  opacity: 0.9;
}
.page_banner .flex {
  min-height: 84.6rem;
  padding: 6rem 0;
}
.page_banner .head {
  flex: 1;
  max-width: 70rem;
  padding-bottom: 0.1%;
}
.page_banner p {
  font-size: 2rem;
  line-height: 3rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.4rem;
  font-weight: 300;
  letter-spacing: 0.18px;
  max-width: 62rem;
}
.page_banner .btn {
  margin-top: 2.5rem;
}
.page_banner .social {
  gap: 2rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 3.9rem;
  padding-bottom: 1px;
}
.page_banner .social .active a {
  background-color: var(--primary);
}
.page_banner .social a {
  opacity: 1;
  display: block;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
.page_banner .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / 43.3333%;
}
.page_banner .social a:hover {
  transform: scale(1.1);
}
.page_banner .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
.page_banner .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
.page_banner .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
.page_banner .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
.page_banner .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
.icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bg_line {
  --color: #2b2b2b;
  margin-top: 0.4rem;
  background-color: #f5f5ed;
}
.bg_line ul {
  display: grid;
  gap: 0.4rem;
}
.bg_line li {
  width: 100%;
  height: var(--num);
  background-color: var(--color);
  margin-bottom: calc(5px - var(--num));
}
.bg_line li:last-child {
  margin-bottom: 0;
}
.blog_list .active a {
  box-shadow: 0 8px 20px rgba(96, 96, 96, 0.25);
}
.blog_list .active .link {
  border-bottom-color: var(--primary);
}
.blog_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  transition: all 0.3s;
}
.blog_list a:hover img {
  transform: scale(1.02);
}
.blog_list .img {
  width: 100%;
  padding-bottom: 67.20812156%;
}
.blog_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3rem 6.4% 4.2rem;
}
.blog_list .metas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.7rem;
  color: #3f3f3f;
  gap: 1rem;
}
.blog_list .metas .cat {
  font-weight: 500;
  color: var(--primary);
}
.blog_list h3 {
  font-size: 2.2rem;
  line-height: 2.671rem;
  font-weight: 600;
  margin-top: 1.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.blog_list .link {
  display: flex;
  align-items: center;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  padding-bottom: 0.5rem;
  gap: 1.4rem;
  margin-top: 4.4rem;
}
.blog_list .link::after {
  width: 0.5rem;
  height: 0.9rem;
  display: inline-block;
  flex-shrink: 0;
  content: '';
  transition: all 0.3s;
  background: url("../img/arrow3.svg") no-repeat center / contain;
}
.product_list .active a {
  box-shadow: 0 18px 20px rgba(0, 0, 0, 0.06);
}
.product_list .active h3 {
  transform: translateY(-100%);
}
.product_list .active .info {
  transform: translateY(0);
  opacity: 1;
}
.product_list a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.6rem;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  transition: all 0.3s;
  overflow: hidden;
}
.product_list a:hover img {
  transform: scale(1.02);
}
.product_list .img {
  width: 100%;
  padding-bottom: 100%;
}
.product_list h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #171717;
  padding: 0 2rem 2.8rem;
  margin-top: 5.5rem;
  text-align: center;
  transition: all 0.4s;
}
.product_list .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  padding: 2.6rem 6.849% 1.9rem;
  background-color: #fff;
  max-height: calc(100% - 12rem);
  transition: all 0.3s, transform 0.5s;
  transform: translateY(100%);
  opacity: 0;
}
.product_list .info ul {
  font-size: 1.5rem;
  color: rgba(23, 23, 23, 0.85);
  max-height: calc(100% - 5.5rem - 1.7rem);
  overflow-y: auto;
}
.product_list .info ul::-webkit-scrollbar {
  width: 4px;
}
.product_list .info ul::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}
.product_list .info ul strong {
  font-weight: 700;
  color: var(--primary);
}
.product_list .info ul li + li {
  margin-top: 1.3rem;
}
.product_list .info span {
  font-weight: 600;
  display: block;
  width: 100%;
  color: #fff;
  background-color: var(--primary);
  transition: all 0.3s;
  border-radius: 8px;
  border: 1px solid var(--primary);
  text-align: center;
  padding: 1.6rem 2rem;
  margin-top: auto;
}
.product_list .info span:hover {
  background-color: transparent;
  color: var(--primary);
}

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

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

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

.quote_modal {
  opacity: 0;
  pointer-events: none;
}

.video_pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 9999;
  padding: 1.2rem;
}
.video_pop.active {
  opacity: 1;
  pointer-events: all;
}
.video_pop.active .pop_content {
  transform: translate(-50%, -50%);
}
.video_pop .mask {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.video_pop .mask .close {
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 2rem;
  top: 1rem;
  cursor: pointer;
}
.video_pop .pop_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  transition: all 0.3s;
  width: max-content;
  max-width: 90vw;
  height: 90vh;
  aspect-ratio: 1920/1080;
  display: flex;
  align-items: center;
}
.video_pop .pop_content iframe, .video_pop .pop_content video {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
.video_pop .pop_content iframe {
  aspect-ratio: 560/315;
}

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

.social_sidebar {
  position: fixed;
  right: max(20px, 5vw);
  top: 60%;
  z-index: 9;
  transform: translateY(-50%);
}
.social_sidebar ul {
  display: grid;
  gap: 12px;
}
.social_sidebar a {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-indent: -999px;
  transition: all .3s;
  position: relative;
}
.social_sidebar a:hover {
  transform: scale(1.1);
  background-color: var(--primary);
}
.social_sidebar a:hover::after {
  filter: contrast(0) brightness(2);
}
.social_sidebar a::after {
  content: '';
  display: block;
  width: 50%;
  height: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all .3s;
  transform: translate(-50%, -50%);
  background: no-repeat center/contain;
}
.social_sidebar .phone a::after {
  background-image: url(../img/sidebar-phone.svg);
}
.social_sidebar .email a::after {
  background-image: url(../img/sidebar-email.svg);
}
.social_sidebar .whatsapp a::after {
  background-size: contain;
  background-image: url(../img/sidebar-whatsapp.svg);
}
.social_sidebar .top a::after {
  background-image: url(../img/sidebar-top.svg);
}
/*** global css ***/

@media screen and (min-width: 768px) and (max-width: 1220px) {
  .content,
  .content_big {
    padding: 0 2rem;
  }
  .swiper_content {
    padding: 1.5rem 2rem;
  }
  header .btns {
    gap: 3rem;
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .content,
  .content_big,
  .swiper_content {
    max-width: 768px;
  }
}
@media screen and (max-width: 1024px) {
  .mega_menu {
    display: none !important;
  }
  header .left {
    margin: 0;
    padding: 0;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    transition: all 0.3s;
  }
  header nav.active {
    pointer-events: all;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    opacity: 1;
    transform: translate(0);
  }
  header nav .close {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    opacity: 0;
  }
  header nav .con {
    position: absolute;
    left: 0;
    top: 0;
    width: min(300px, 80vw);
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: rgba(0 0 0/10%) 0 0 24px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-100%);
  }
  header nav .con .close_box {
    padding: 32px 20px 20px;
    border-bottom: 1px solid #eee;
    text-align: right;
  }
  header nav .con .close_box .close {
    display: inline-block;
    width: 15px;
    height: 15px;
    filter: brightness(0);
    background: url('../img/mobile-menu/close.svg') no-repeat center / contain;
    cursor: pointer;
    transition: all 0.3s;
  }
  header nav .con .close_box .close:hover {
    transform: rotate(180deg);
  }
  header nav .con .close_box + div {
    flex: 1;
    overflow: auto;
  }
  header nav .con .close_box + div::-webkit-scrollbar {
    width: 5px;
  }
  header nav .con .close_box + div::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 10px;
  }
  header nav .con .menu {
    display: block;
  }
  header nav .con .menu > li {
    cursor: pointer;
  }
  header nav .con .menu > li::after {
    display: none;
  }
  header nav .con .menu > li > a {
    color: var(--title);
    line-height: 64px;
    padding: 0 0 0 32px;
    font-size: 18px;
  }
  header nav .con .menu > li > a:hover {
    color: var(--primary);
  }
  header nav .con .menu > li.menu-item-has-children > a {
    margin-right: 52px;
  }
  header nav .con .menu > li.menu-item-has-children::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/mobile-menu/select.svg) no-repeat center / contain;
    position: absolute;
    left: calc(100% - 32px);
    top: 26px;
    transition: all 0.3s;
  }
  header nav .con .menu > li.active::after {
    transform: rotate(180deg);
  }
  header nav .con .menu > li:hover ul {
    padding: 16px 24px;
  }
  header nav .con .menu .current-menu-item > a,
  header nav .con .menu .current-menu-parent > a {
    color: var(--primary);
  }
  header nav .con .sub-menu {
    position: static;
    padding: 16px 24px;
    background-color: #f8f8f8;
    margin: 0 32px;
    box-shadow: none;
    border-radius: 8px;
    display: none;
    opacity: 1;
    pointer-events: all;
    transition: none;
    transform: translate(0);
    min-width: unset;
  }
  header nav .con .sub-menu li {
    transform: translate(0);
  }
  header nav .con .sub-menu li.menu-item-has-children{
    position: relative;
  }
  header nav .con .sub-menu li.menu-item-has-children:after{
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/mobile-menu/select.svg) no-repeat center / contain;
    position: absolute;
    left: calc(100% - 0px);
    top: 10px;
    transition: all 0.3s;
  }

  header nav .con .sub-menu li a {
    padding: 8px 0;
    word-break: break-word;
    font-size: 14px;
    color: var(--title);
  }
  header nav .con .sub-menu li a::after {
    display: none;
  }
  header nav .con .sub-menu li a:hover {
    color: var(--primary);
  }

  header nav .con .sub-menu .sub-menu{
    margin: 0;
    padding: 0;
    padding-left: 1.2rem;
    display: none;
  }
  header .btns {
    padding: 0;
    margin: 0;
  }
  header .btns .btn_search {
    width: 22px;
    height: 22px;
    margin: 0;
  }
  header .btns .btn_menu {
    display: block;
    width: 23px;
    height: 23px;
    cursor: pointer;
    transition: all 0.3s;
    background: url(../img/mobile-menu/nav-btn.svg) no-repeat center / contain;
  }
}
@media screen and (min-width: 768px) and (max-width: 896px) {
  .content,
  .content_big,
  .swiper_content {
    max-width: 768px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
  body {
    font-size: 1rem;
  }
  .content,
  .content_big {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 1rem;
  }
  .btn,
  .btn_line,
  .btn_b {
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 20px;
    min-width: 120px;
    border-radius: 6px;
  }
  .btn.sm,
  .btn_line.sm,
  .btn_b.sm {
    font-size: 14px;
    min-width: 120px;
    padding: 10px 20px;
  }
  .btn_b {
    padding: 11px 20px;
  }
  .btn_i {
    font-size: 14px;
    gap: 10px;
  }
  .btn_i i {
    width: 40px;
    border-radius: 8px;
  }
  .swiper_btns {
    gap: 1rem;
  }
  .swiper_btns div {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .swiper_btns div::after {
    width: 14px;
    height: 14px;
  }
  .swiper_btns.sm div {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .swiper_btns.sm div::after {
    width: 14px;
    height: 14px;
  }
  div.head .subtitle,
  div.head strong {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    letter-spacing: unset;
  }
  div.head h1 {
    font-size: 25px;
    line-height: 1.5;
    letter-spacing: unset;
    word-spacing: unset;
    max-width: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: unset;
    word-spacing: unset;
    max-width: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 10px;
    letter-spacing: unset;
    word-spacing: unset;
    max-width: unset;
  }
  div.head .btn,
  div.head .btn_line,
  div.head .btn_i,
  div.head .btn_b {
    margin-top: 20px;
  }
  div.head .btn,
  div.head .btn_line {
    padding: 10px 20px;
  }
  div.head .btn_b {
    padding: 11px 20px;
  }
  header {
    width: 100%;
    left: 0;
    top: 0;
    transform: translate(0);
    position: sticky;
  }
  header .content {
    width: 100%;
    padding: 0 20px;
  }
  header .left .logo img {
    height: 22px;
  }
  header .btns {
    gap: 26px;
    min-height: 4rem;
  }
  header .btns .btn {
    display: none;
  }
  footer .footer_main {
    padding: 3rem 0;
  }
  footer .footer_main .flex {
    display: block;
  }
  footer .slide_intro {
    margin: 0;
    width: 100%;
    display: grid;
  }
  footer .slide_intro .logo {
    max-width: 180px;
    margin: 0 auto;
  }
  footer .slide_intro p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    text-align: center;
    margin: 20px 0 0;
  }
  footer .slide_intro .social {
    margin-top: 2rem;
    gap: 1rem;
    justify-content: space-around;
  }
  footer .slide_intro .social a {
    width: 22px;
    height: 22px;
  }
  footer .slide_intro div {
    order: 2;
    margin: 3rem 0 1rem;
  }
  footer .slide_intro .menu a {
    min-height: unset;
    font-size: 1rem;
    padding: 3px 22px;
    min-height: 3rem;
    border-radius: 0;
    max-width: unset;
  }
  footer .slide_intro .menu a::after {
    width: 12px;
    height: 12px;
  }
  footer .slide_obj {
    width: 100%;
  }
  footer .slide_obj strong {
    font-size: 1rem;
    line-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 1rem;
  }
  footer .slide_obj strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/mobile-menu/select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    filter: contrast(0) brightness(2);
  }
  footer .slide_obj.active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .slide_obj > div {
    display: none;
    padding: 0 1.2rem 1.2rem;
  }
  footer .slide_obj > div li {
    margin-bottom: 14px;
  }
  footer .slide_obj > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  footer .slide_obj > div p {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  footer .slide_connect {
    width: 100%;
    padding-top: 20px;
  }
  footer .slide_connect strong {
    font-size: 18px;
    margin-bottom: 20px;
  }
  footer .slide_connect li {
    padding-left: 2rem;
    margin-bottom: 20px;
  }
  footer .slide_connect li::before {
    width: 1rem;
    height: 1rem;
    top: 5px;
  }
  footer .slide_connect li a {
    font-size: 1rem;
  }
  footer .slide_connect li .label {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 6px;
  }
  footer .slide_connect .email::before {
    top: 5px;
  }
  footer .copyright {
    padding: 20px 0;
  }
  footer .copyright .flex {
    gap: 2rem;
    flex-direction: column-reverse;
  }
  footer .copyright ul {
    gap: 1rem;
  }
  footer .copyright p {
    font-size: 13px;
  }
  footer .copyright a {
    font-size: 14px;
  }
  .page_advantages {
    padding: 4rem 0;
    overflow: hidden;
  }
  .page_advantages.bg {
    padding: 4rem 0;
  }
  .page_advantages .head {
    display: block;
  }
  .page_advantages .page_advantages_swiper {
    overflow: unset;
    margin-top: 2rem;
  }
  .page_advantages .page_advantages_swiper .swiper-slide {
    max-width: 350px;
  }
  .page_advantages .item {
    padding: 2rem 20px;
  }
  .page_advantages .item .img {
    border-radius: 12px;
    height: 100%;
  }
  .page_advantages .item .img::after {
    opacity: 0;
  }
  .page_advantages .item .icon {
    width: 3rem;
    height: 3rem;
    transform: translateY(0);
  }
  .page_advantages .item .info {
    margin-top: 1rem;
  }
  .page_advantages .item .info h3 {
    font-size: 18px;
    line-height: 1.5;
    transform: translateY(0);
  }
  .page_advantages .item .info p {
    font-size: 0.9rem;
    line-height: 1.5;
    transform: translateY(0);
    opacity: 1;
    min-height: unset;
    margin-top: 10px;
  }
  .page_advantages .item .info i {
    width: 14px;
    height: 14px;
    transform: translateY(0);
    margin-top: 20px;
  }
  .page_advantages .swiper_btns {
    display: none;
  }
  .bg_line {
    margin-top: 3px;
  }
  .bg_line ul {
    gap: 3px;
  }
  .page_blog {
    padding: 4rem 0 3rem;
    overflow: hidden;
  }
  .page_blog .flex {
    display: block;
  }
  .page_blog .nav_list {
    width: calc(100% + 38px);
    margin: 20px -19px 0;
    gap: 2rem;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    padding: 0 19px;
  }
  .page_blog .nav_list::-webkit-scrollbar {
    display: none;
  }
  .page_blog .nav_list .nav_item {
    font-size: 1rem;
    padding: 10px 0;
    border-bottom-width: 2px;
  }
  .page_blog .swiper_content {
    padding: 0 20px;
    overflow: unset;
  }
  .page_blog .page_blog_swiper {
    padding: 0;
    margin-top: 2rem;
  }
  .page_blog .page_blog_swiper .swiper-slide {
    max-width: 340px;
  }
  .page_blog .swiper_btns.middle {
    position: static;
    width: 100%;
    justify-content: flex-end;
    transform: translate(0);
    padding: 0 20px;
    margin-top: 2rem;
  }
  .page_blog p.center:has(.btn_line) {
    margin-top: 2rem;
  }
  .blog_list a {
    border-radius: 12px;
  }
  .blog_list .info {
    padding: 1rem 20px 1.5rem;
  }
  .blog_list .metas {
    font-size: 14px;
    gap: 8px;
  }
  .blog_list h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .blog_list .link {
    font-size: 14px;
    padding-bottom: 4px;
    gap: 10px;
    margin-top: 20px;
  }
  .blog_list .link::after {
    width: 4px;
    height: 8px;
  }
  .footer_contact {
    padding-top: 3rem;
  }
  .footer_contact .head {
    max-width: unset;
  }
  .footer_contact .footer_contact_swiper {
    width: 100%;
    padding: 0 20px;
    margin-top: 2rem;
  }
  .footer_links {
    padding-top: 6rem;
    margin-top: -6rem;
  }
  .footer_links .links {
    padding: 4rem 0 3rem;
    gap: 2rem 1rem;
    grid-template-columns: 1fr;
  }
  .footer_links .item a {
    grid-template-columns: 40px 1fr 40px;
    gap: 1rem;
  }
  .footer_links .item .title {
    max-width: unset;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
  }
  .footer_links .item i {
    border-radius: 6px;
  }
  .page_banner::before {
    width: 100%;
    opacity: 0.6;
    background-image: unset;
    background-color: #0f1922;
  }
  .page_banner .flex {
    min-height: unset;
    padding: 4rem 0;
  }
  .page_banner .head {
    max-width: unset;
    padding: 0;
  }
  .page_banner .social {
    gap: 1rem;
    margin-top: 20px;
    padding: 0;
  }
  .page_banner .social a {
    width: 40px;
    height: 40px;
  }
  .product_list .active h3 {
    transform: translateY(0);
  }
  .product_list a {
    border-radius: 12px;
  }
  .product_list h3 {
    font-size: 18px;
    padding: 0 20px;
    margin-top: 1rem;
  }
  .product_list .info {
    position: static;
    width: 100%;
    max-height: unset;
    padding: 1rem 20px 1.2rem;
    gap: 20px;
    opacity: 1;
    transform: translateY(0);
  }
  .product_list .info ul {
    font-size: 0.8rem;
    max-height: unset;
    display: none;
  }
  .product_list .info ul li + li {
    margin-top: 5px;
  }
  .product_list h3{
    font-size: 15px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .product_list .info span {
    font-size: 14px;
    padding: 10px 20px;
  }

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

  .wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 5px;
  }
  .wpcf7 form.wpcf7-form .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.5;
  }

  .video_pop .pop_content {
    width: 96vw;
    height: auto;
    max-width: 96vw;
  }
  /*** global css ***/
}
@media screen and (min-width: 640px) and (max-width: 768px) {
  div.head .subtitle,
  div.head strong {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
  }
  div.head h1 {
    font-size: 34px;
  }
  div.head h2 {
    font-size: 28px;
  }
  div.head .desc,
  div.head p {
    font-size: 16px;
    margin-top: 12px;
  }
  .footer_links .links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .video_pop .pop_content {
    height: auto;
    width: 90vw;
  }
}
/*# sourceMappingURL=global.css.map */