* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #19438e;
  --secondary: #ecb522;
  --title: #0f0f0f;
  --text: #3f3f3f;
}
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: 160rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 163rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
  color: var(--title);
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
  font-family: "Geist", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.Roboto {
  font-family: "Roboto", sans-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-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.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_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 2rem;
  line-height: normal;
  font-weight: 500;
  color: #081528;
  gap: 1.7rem;
}
.btn_i::after {
  width: 4.5rem;
  height: 4.5rem;
  display: inline-block;
  flex-shrink: 0;
  content: '';
  border-radius: 50%;
  background: url("../img/arrow-tr.svg") no-repeat center / 22.22222% var(--primary);
  transition: all 0.3s;
}
.btn_i:hover {
  color: var(--secondary);
}
.btn_i:hover::after {
  background-color: var(--secondary);
  transform: rotate(45deg);
}
.btn {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  font-size: 2rem;
  line-height: normal;
  color: #fff;
  background-color: var(--primary);
  padding: 2.1rem 3.55rem;
}
.btn:hover {
  background-color: var(--secondary);
}
.btn_line {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  background-color: transparent;
  border: 1px solid rgba(15, 15, 15, 0.5);
  font-size: 2rem;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: normal;
  padding: 2.15rem 4.4rem;
}
.btn_line:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: #fff;
}
.swiper_btns {
  gap: 5.5rem;
  display: flex;
}
.swiper_btns div {
  width: 1.3rem;
  height: 2.4rem;
  cursor: pointer;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / contain;
  filter: contrast(0) brightness(0);
}
.swiper_btns div:hover {
  filter: unset;
}
.swiper_btns .btn_next {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
  filter: contrast(0) brightness(0);
}
.swiper_btns .swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 164.7rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.swiper_btns_circle {
  gap: 3.3rem;
  display: flex;
}
.swiper_btns_circle div {
  width: 5.7rem;
  height: 5.7rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 36, 36, 0.45);
  background-color: transparent;
}
.swiper_btns_circle div::after {
  content: '';
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / contain;
  filter: contrast(0) brightness(0);
}
.swiper_btns_circle div:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
.swiper_btns_circle div:hover::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns_circle .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns_circle .swiper-button-disabled {
  opacity: 0.58;
  pointer-events: none;
  background-color: transparent;
  border: 1px solid rgba(36, 36, 36, 0.45);
}
.swiper_btns_circle .swiper-button-disabled::after {
  filter: contrast(0) brightness(0);
}
.swiper_btns_circle .swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}
.swiper_btns_circle.middle {
  width: 98%;
  max-width: 182.3rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns_circle.middle div {
  pointer-events: all;
}
.swiper_btns_circle.middle .swiper-button-disabled,
.swiper_btns_circle.middle .swiper-button-lock {
  pointer-events: none;
}
.head.lar h2 {
  font-size: 6rem;
}
.head.sm h2 {
  font-size: 5.2rem;
  line-height: 6.4rem;
}
.head h1 {
  font-size: 8.2rem;
  font-size: 7rem;
  line-height: 9.1rem;
  line-height: 1.3;
  font-weight: 600;
}
.head h2 {
  font-size: 5.8rem;
  line-height: 7.4rem;
  font-weight: 700;
}
.head h2 span {
  color: var(--secondary);
}
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 990;
  width: 100%;
  transition: all 0.3s;
  background-color: #fff;
  --border_color: rgba(40, 40, 40, 0.22);
  border-bottom: 1px solid var(--border_color);
  box-shadow: 0 5px 5px rgba(186, 186, 186, 0.35);
}
header.sticky {
  box-shadow: 0 5px 5px rgba(186, 186, 186, 0.35);
}
header .left {
  display: flex;
  align-items: center;
  padding-left: 7.4rem;
  padding-top: 2px;
  margin-right: 4.65%;
}
header .left .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
}
header .left .logo img {
  display: block;
  width: auto;
  height: 5.97535rem;
  transition: all 0.3s;
}
header .left .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
header nav .menu {
  display: flex;
  gap: 3.5rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li::after {
  width: 0;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 65%;
  content: '';
  background-color: var(--primary);
  transform: translateX(-50%);
  transition: all 0.3s;
}
header nav .menu > li > a {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  color: #282828;
  transition: all 0.3s;
  line-height: 8.6rem;
  padding-top: 0.4rem;
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a {
  font-weight: 700;
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a,
header nav .menu > li:hover > a {
  color: var(--primary);
}
header nav .menu > li.current-menu-item::after,
header nav .menu > li.current-menu-parent::after,
header nav .menu > li:hover::after {
  width: 100%;
}
header nav .menu > li:hover ul {
  opacity: 1;
  pointer-events: all;
  padding: 1.6rem 2.4rem;
}
header nav .menu > li:hover ul li {
  transform: translate(0);
}
header nav .sub-menu {
  left: -2.4rem;
  position: absolute;
  min-width: 20rem;
  background-color: #fff;
  padding: 1.6rem 2.4rem 0;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}
header nav .sub-menu > li {
  margin-bottom: 0.5rem;
  transition: all 0.4s;
  transform: translateY(-1.6rem);
}
header nav .sub-menu > li > a {
  display: block;
  padding: 0.8rem 0;
  transition: all 0.3s;
  font-size: 1.5rem;
  position: relative;
}
header nav .sub-menu > li > a::after {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  background-color: var(--primary);
  transition: all 0.3s;
}
header nav .sub-menu > li > a:hover::after {
  width: 100%;
}
header .btns {
  display: flex;
  min-height: 9rem;
}
header .btns > * {
  border-left: 1px solid var(--border_color);
}
header .btns .btn_search,
header .btns .btn_lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 9rem;
  cursor: pointer;
  transition: all 0.3s;
  padding-top: 0.4rem;
}
header .btns .btn_search::after,
header .btns .btn_lang::after {
  display: block;
  width: 2rem;
  height: 2rem;
  content: '';
  background: no-repeat center / contain;
  transition: all 0.3s;
}
header .btns .btn_lang::after {
  display: none !important;
}
header .btns .btn_search:hover,
header .btns .btn_lang:hover {
  background-color: var(--primary);
}
header .btns .btn_search:hover::after,
header .btns .btn_lang:hover::after {
  filter: contrast(0) brightness(2);
}
header .btns .btn_search {
  padding-top: 0.5rem;
}
header .btns .btn_search::after {
  background-image: url("../img/icon-search.svg");
}
header .btns .btn_lang::after {
  background-image: url("../img/icon-lang.svg");
}
.jst-language-switcher {
  transition: all .3s;
}
header .btns .btn_lang:hover .jst-language-switcher {
  filter: contrast(0) brightness(2);
}
header .btns .btn_menu {
  display: none;
}
header .btns .btn_i {
  font-size: 1.8rem;
  padding: 1rem 3.5rem;
}
header .btns .btn_i:hover {
  background-color: var(--primary);
  color: #fff;
}
footer {
  position: relative;
  color: #fff;
  font-family: "Roboto", sans-serif;
  background-color: var(--primary);
}
footer .footer_top {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  overflow: hidden;
  transform: translateY(-50%);
  z-index: 2;
}
footer .footer_top .block {
  right: -10%;
  top: 0;
  width: 46.5625%;
  height: 14.6rem;
  z-index: 2;
  overflow: hidden;
  margin-left: auto;
  margin-right: -10%;
  opacity: 1 !important;
  background-color: var(--secondary);
}
footer .footer_main {
  padding: 20.6rem 0 14.5rem;
}
footer .footer_main .flex {
  gap: 5rem 2rem;
}
footer .slide_obj strong {
  display: block;
  font-weight: 300;
  font-size: 1.8rem;
  text-transform: uppercase;
  opacity: 0.56;
  margin-bottom: 2.5rem;
}
footer .slide_obj li {
  margin-bottom: 2.1rem;
}
footer .slide_obj li:last-child {
  margin-bottom: 0;
}
footer .slide_obj li a {
  font-weight: 500;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
  font-weight: 300;
}
footer .slide_obj li a:hover {
  opacity: 1;
  color: var(--secondary);
  text-decoration-color: var(--secondary);
}
footer .slide_intro {
  width: 36.8rem;
  margin-top: -9.6rem;
  margin-right: 0.4%;
}
footer .slide_intro .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  max-width: 24.3rem;
  margin-bottom: 3.7rem;
}
footer .slide_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .slide_intro .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
footer .slide_intro strong {
  margin-bottom: 2.7rem;
}
footer .slide_intro form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  background-color: #0c2e60;
  width: 100%;
  padding: 1.4rem 1.5rem 1.2rem 1.85rem;
}
footer .slide_intro form input[type=email] {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  background-color: transparent;
}
footer .slide_intro form input[type=email]::placeholder {
  color: #fff;
}
footer .slide_intro form input[type=submit] {
  text-indent: -999px;
  width: 4.3rem;
  height: 4.3rem;
  display: block;
  border-radius: 50%;
  background: url("../img/arrow-r.svg") no-repeat center / 30.233% var(--secondary);
  transition: all 0.3s;
}
footer .slide_intro form input[type=submit]:hover {
  background-color: var(--primary);
}
footer .slide_intro .social {
  gap: 2rem 4.2rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.3rem;
}
footer .slide_intro .social li {
  margin-bottom: 0;
}
footer .slide_intro .social a {
  opacity: 1;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  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 .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_connect {
  width: 27rem;
}
footer .slide_connect strong {
  margin-bottom: 2.4rem;
}
footer .slide_connect li {
  position: relative;
  padding-left: 6.4rem;
  margin-bottom: 4.8rem;
}
footer .slide_connect li::before {
  content: '';
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  background: no-repeat center / 36.54% #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
footer .slide_connect li a {
  font-weight: 400;
}
footer .slide_connect li .label {
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  font-weight: 300;
}
footer .slide_connect .whatsapp::before {
  background-image: url(../img/whatsapp.svg);
}
footer .slide_connect .email::before {
  background-image: url(../img/icon-email1.svg);
  top: -0.5rem;
}
footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2.6rem 0 3.6rem;
}
footer .copyright p {
  font-size: 1.4rem;
  font-weight: 300;
}
footer .copyright a {
  font-size: 1.328rem;
  font-weight: 200;
  opacity: 0.68;
  display: block;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .copyright a:hover {
  opacity: 1;
  color: var(--secondary);
  text-decoration-color: var(--secondary);
}
footer .copyright ul {
  gap: 2rem 5.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.certificate_box {
  overflow: hidden;
  transform: translateY(4rem);
}
.certificate_box .certificate_list {
  display: flex;
  justify-content: flex-end;
}
.certificate_box .certificate_list ul {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 9.1rem;
  padding: 4.5rem 3.8%;
  min-width: 41.7%;
}
.certificate_box .certificate_list ul::before {
  width: 100vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--secondary);
  content: '';
  pointer-events: none;
  z-index: -1;
}
.certificate_box .certificate_list .img {
  height: 5.6rem;
  width: auto;
  max-width: 15.2rem;
}
.num_list li {
  background-color: var(--primary);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 7.6rem;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
  padding: 2.7rem 12% 3.4rem 11.1%;
}
.num_list li.active {
  background-color: var(--secondary);
}
.num_list .num {
  font-size: 4.6rem;
  font-weight: 700;
  white-space: nowrap;
}
.num_list .label {
  font-size: 1.9rem;
  opacity: 0.75;
  margin-top: 0.5rem;
  font-weight: 300;
}
.num_list .icon {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  margin-top: 0.7rem;
}
.num_list .icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  object-fit: contain;
}
.blog_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  padding-top: 3.5rem;
}
.blog_item a::before {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-color: #e5e5e5;
}
.blog_item a::after {
  width: 0;
  height: 2px;
  background-color: #0f0f0f;
  position: absolute;
  left: 0;
  top: -1px;
  content: '';
  transition: all 0.3s;
}
.blog_item a:hover img {
  transform: scale(1.02);
}
.blog_item .info {
  flex: 1;
}
.blog_item .metas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: rgba(102, 102, 102, 0.85);
  gap: 0.9rem;
  font-family: "Roboto", sans-serif;
}
.blog_item .metas .cat {
  font-size: 1.7rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--title);
}
.blog_item .title {
  font-size: 2.2rem;
  line-height: 3.4rem;
  font-weight: 500;
  margin-top: 1.7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.blog_item .img {
  width: 100%;
  padding-bottom: 76.97368%;
  margin-top: 4.7rem;
  transition: all 0.3s;
}
.product_list .active a::before {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
.product_list .active .btn {
  background-color: var(--secondary);
}
.product_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.product_list a::before {
  width: calc(100% - 2px);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  border: 1px solid #d3d3d3;
  pointer-events: none;
  z-index: -1;
  transition: all 0.3s;
}
.product_list a:hover img {
  transform: scale(1.02);
}
.product_list .img {
  width: 100%;
  padding-bottom: 62.82723%;
}
.product_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.8rem;
  padding: 2.3rem 8.1% 2.9rem;
}
.product_list .info h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #161616;
}
.product_list .info p {
  font-size: 2rem;
  color: #757575;
  margin-top: 0.6rem;
}
.product_list .info .btn {
  text-transform: uppercase;
  padding: 1.4rem 2rem;
  font-weight: 500;
  margin-top: auto;
}


/*** 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: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: .5rem;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  color: #fff;
}
.wpcf7 form.wpcf7-form .wpcf7-list-item {
  margin: 0;
}

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

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

.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;
}

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(--secondary);
  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(--secondary);
}

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


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


section.home_banner .head {
  max-width: 100rem;
}
section.products_banner p, section.about_banner p, section.blog_banner p {
  font-size: 2.2rem;
  line-height: 1.6;
}
div.head h1 {
  font-size: 7rem;
  line-height: 1.3;
}
section.product_desc .product_desc_nav_swiper {
    max-width: 140rem;
    width: 90%;
}

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

  
  .mega_menu {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px !important;
  }
  body {
    font-size: 1rem !important;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 1rem;
  }
  .btn_i {
    font-size: 14px;
    gap: 10px;
  }
  .btn_i::after {
    width: 40px;
    height: 40px;
  }
  .btn {
    font-size: 14px;
    line-height: 1.5;
    padding: 11px 20px;
  }
  .btn_line {
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 20px;
  }
  .swiper_btns {
    gap: 2rem;
  }
  .swiper_btns div {
    width: 10px;
    height: 20px;
    background-size: contain;
  }
  .swiper_btns_circle {
    gap: 1rem;
  }
  .swiper_btns_circle div {
    width: 40px;
    height: 40px;
  }
  .swiper_btns_circle div::after {
    width: 14px;
    height: 14px;
  }
  div.head.sm h2,
  div.head.lar h2 {
    font-size: 22px;
    line-height: 1.5;
  }
  div.head h1 {
    font-size: 25px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin-top: 10px;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head .btn,
  div.head .btn_i,
  div.head .btn_line {
    margin-top: 20px;
  }
  .video_pop .pop_content {
    width: 96vw;
    height: auto;
    max-width: 96vw;
  }
  header {
    width: 100%;
    left: 0;
    top: 0;
    transform: translate(0);
    position: sticky;
    background-color: #fff;
    --border_color: rgba(0, 0, 0, 0.22);
    padding: 0 20px;
  }
  header .left {
    padding: 0;
  }
  header .left .logo img {
    height: 35px;
  }
  header .left .logo .img_w {
    opacity: 0;
    pointer-events: none;
  }
  header .left .logo .img_b {
    opacity: 1;
    pointer-events: all;
  }
  header .btns {
    gap: 26px;
    min-height: 4rem;
    align-items: center;
  }
  header .btns > * {
    border: none;
  }
  header .btns .btn_lang,
  header .btns .btn_search,
  header .btns .btn_menu {
    width: auto;
    padding: 0;
  }
  header .btns .btn_lang::after,
  header .btns .btn_search::after,
  header .btns .btn_menu::after {
    filter: unset;
  }
  header .btns .btn_lang:hover,
  header .btns .btn_search:hover,
  header .btns .btn_menu:hover {
    background-color: transparent;
  }
  header .btns .btn_lang:hover::after,
  header .btns .btn_search:hover::after,
  header .btns .btn_menu:hover::after {
    filter: unset;
  }
  header .btns .btn_i {
    display: none;
  }
  footer .footer_top .block {
    margin-right: -20px;
    height: 3rem;
  }
  footer .footer_main {
    padding: 5rem 0 4rem;
  }
  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 20px;
  }
  footer .slide_intro strong {
    font-size: 18px;
    margin-bottom: 2rem;
    text-align: center;
  }
  footer .slide_intro .social {
    gap: 1rem;
    justify-content: space-around;
    margin-top: 0;
  }
  footer .slide_intro .social a {
    width: 22px;
    height: 22px;
  }
  footer .slide_intro div {
    order: 2;
    margin: 3rem 0 1rem;
  }
  footer .slide_intro form {
    margin: 0;
    gap: 10px;
    padding: 10px 20px;
  }
  footer .slide_intro form input[type=email] {
    font-size: 14px;
  }
  footer .slide_intro form input[type=submit] {
    width: 40px;
    height: 40px;
  }
  footer .slide_obj:not(.slide_connect,.slide_intro) {
    width: 100%;
  }
  footer .slide_obj:not(.slide_connect,.slide_intro) 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:not(.slide_connect,.slide_intro) 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:not(.slide_connect,.slide_intro).active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .slide_obj:not(.slide_connect,.slide_intro) > div {
    display: none;
    padding: 0 1.2rem 1.2rem;
  }
  footer .slide_obj:not(.slide_connect,.slide_intro) > div li {
    margin-bottom: 14px;
  }
  footer .slide_obj:not(.slide_connect,.slide_intro) > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  footer .slide_obj:not(.slide_connect,.slide_intro) > 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: 4rem;
    margin-bottom: 20px;
  }
  footer .slide_connect li::before {
    width: 40px;
    height: 40px;
    top: 0;
  }
  footer .slide_connect li a {
    font-size: 1rem;
  }
  footer .slide_connect li .label {
    font-size: 14px;
    margin-bottom: 6px;
  }
  footer .slide_connect .email::before {
    top: 0;
  }
  footer .copyright {
    padding: 20px 0;
  }
  footer .copyright .flex {
    gap: 2rem;
    flex-direction: column-reverse;
  }
  footer .copyright ul {
    gap: 1rem;
  }
  footer .copyright p {
    font-size: 13px;
  }
  footer .copyright a {
    font-size: 14px;
  }
  .certificate_box {
    transform: translateY(1rem);
  }
  .certificate_box .certificate_list ul {
    gap: 2rem;
    padding: 1rem 20px;
    min-width: unset;
  }
  .certificate_box .certificate_list .img {
    height: 40px;
    max-width: 108px;
  }
  .num_list li {
    padding: 1rem 20px;
    grid-template-columns: 1fr 40px;
    gap: 10px;
  }
  .num_list .num {
    font-size: 1.5rem;
  }
  .num_list .label {
    font-size: 0.9rem;
    margin-top: 4px;
  }
  .blog_item a {
    padding-top: 20px;
  }
  .blog_item .img {
    margin-top: 20px;
  }
  .blog_item .info {
    min-height: unset;
  }
  .blog_item .metas {
    gap: 4px;
    font-size: 14px;
  }
  .blog_item .metas .cat {
    font-size: 15px;
  }
  .blog_item .title {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .product_list .info {
    padding: 1rem 20px 1.2rem;
    gap: 20px;
  }
  .product_list .info h3 {
    font-size: 18px;
  }
  .product_list .info p {
    font-size: 0.9rem;
    margin-top: 10px;
  }
  .product_list .info .btn {
    padding: 11px 20px;
  }

  section.products_banner p, section.about_banner p, section.blog_banner p {
    font-size: 0.9;
  }
  div.head h1 {
    font-size: 25px;
  }
  div.jst-language-switcher {
    width: 22px;
    height: 22px;
  }


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

  .lang_popup{
    width: 100%;
    height: 80vh;
    padding: 1.5rem;
  }
  .lang_popup .gtranslate_wrapper{
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
  }
  .lang_popup .gtranslate_wrapper a{
    padding: 1rem;
  }
  .lang_popup .gtranslate_wrapper a img{
    width: 30px;
  }
  .lang_popup .gtranslate_wrapper a span{
    font-size: 14px !important;
  }
  .lang_popup strong{
    font-size: 20px;
  }
  /*** global css ***/

  .mega_menu {
    display: none !important;
  }
}
@media screen and (min-width: 640px) and (max-width: 768px) {
  div.head.sm h2,
  div.head.lar h2 {
    font-size: 28px;
  }
  div.head h1 {
    font-size: 34px;
    line-height: 1.5;
  }
  div.head h2 {
    font-size: 28px;
    line-height: 1.5;
  }
  div.head .desc,
  div.head p {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 12px;
  }
  .video_pop .pop_content {
    height: auto;
    width: 90vw;
  }
}
/*# sourceMappingURL=global.css.map */