* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #fc8216;
  --secondary: #242833;
  --title: #161616;
  --text: #5b5b5b;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 147rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
input,
button,
textarea {
  border: none;
  outline: none;
  font-family: unset;
  color: var(--title);
  background-color: transparent;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
textarea {
  resize: none;
}
button,
input[type="submit"] {
  cursor: pointer;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
table {
  width: 100%;
  border-collapse: collapse;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.center p,
.center .desc,
.center h1,
.center h2 {
  margin-left: auto;
  margin-right: auto;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.row_reverse {
  flex-direction: row-reverse;
}
body {
  font-size: 1.6rem;
  color: var(--title);
  font-family: 'Roboto', sans-serif;
  animation: fadeIn 0.4s ease-in forwards;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}
.Oswald,
h1,
h2,
h3,
.head_h1,
.head_h2,
.tcon > em {
  font-family: 'Oswald', sans-serif;
}
.Roboto {
  font-family: 'Roboto', sans-serif;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img,
.img.img_cv video,
.img.img_cv iframe,
.img.img_cv picture {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img,
.img.img_ab video,
.img.img_ab iframe,
.img.img_ab picture {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img,
.img.img_aba video,
.img.img_aba iframe,
.img.img_aba picture {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.img img,
.img video,
.img iframe,
.img picture {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img,
.img_bg > video,
.img_bg > iframe,
.img_bg > picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.img_bg > picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon.icon_ab {
  position: relative;
  padding-bottom: 100%;
}
.icon.icon_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.icon img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.custom-popup {
  --radius: 0px;
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  z-index: 999;
  padding: 8px;
  font-size: var(--font-size, 14px);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.custom-popup.show {
  opacity: 1;
  transform: scaleY(1);
}
.custom-popup.up {
  transform-origin: bottom;
}
.custom-popup.up .popup-input {
  order: 3;
  margin-bottom: 0;
  margin-top: 8px;
}
.custom-popup.up .popup-options {
  order: 1;
}
.custom-popup.up .popup-empty {
  order: 2;
}
.custom-popup .popup-empty {
  padding: 12px;
  text-align: center;
  color: #999;
}
.custom-popup input.popup-input {
  display: block;
  width: 100%;
  padding: 11px 12px;
  font-size: inherit;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--title);
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 2px);
  flex-shrink: 0;
}
.custom-popup input.popup-input::placeholder {
  color: #666;
}
.custom-popup input.popup-input:focus {
  border-color: var(--primary);
}
.custom-popup .popup-options {
  flex: 0 1 auto;
  min-height: 0;
  overflow: auto;
  max-height: 50vh;
}
.custom-popup .popup-option {
  padding: 12px;
  margin: 0 0 4px;
  cursor: pointer;
  transition: all 0.15s;
  word-break: break-word;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup .popup-option:hover,
.custom-popup .popup-option.selected {
  background-color: #f0f0f0;
}
.custom-popup .popup-option:last-child {
  margin-bottom: 0;
}
.tcon > em {
  display: block;
  color: var(--primary);
  font-weight: 500;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.tcon h1,
.tcon .head_h1 {
  font-weight: 700;
  font-size: 6rem;
  line-height: 7rem;
  text-transform: uppercase;
}
.tcon h2,
.tcon .head_h2 {
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 6.2rem;
  text-transform: uppercase;
}
.tcon p {
  color: var(--text);
  font-size: 1.8rem;
  line-height: 2.8rem;
}
.tcon.white {
  color: #fff;
}
.tcon.white p {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}
.btn {
  font-family: 'Oswald', sans-serif;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  color: var(--title);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 5.8rem;
  padding: 0 4.1rem;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.btn:hover {
  color: var(--primary);
  background-color: transparent;
}
.btn.l {
  border-color: #a2a2a2;
  background-color: transparent;
}
.btn.l:hover {
  color: var(--title);
  border-color: var(--primary);
  background-color: var(--primary);
}
.btn_a {
  font-family: 'Oswald', sans-serif;
  gap: 1.6rem;
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  cursor: pointer;
  font-weight: 700;
  font-size: 2.2rem;
  transition: all 0.3s;
  text-transform: uppercase;
}
.btn_a::after {
  content: '';
  display: block;
  width: 1.2rem;
  height: 2rem;
  transition: all 0.3s;
  background: url(../img/arrow-r.svg) no-repeat center / contain;
}
.btn_a:hover {
  color: var(--primary);
}
.btn_a:hover::after {
  transform: translateX(5px);
}
.swiper_btns {
  display: flex;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 169.6rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  pointer-events: none;
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: auto;
}
.swiper_btns.middle .swiper-button-disabled {
  pointer-events: none;
}
.swiper_btns div {
  cursor: pointer;
  width: 6.2rem;
  height: 6.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  transition: all 0.3s;
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 30%;
  height: 30%;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
  background: url(../img/arrow-r.svg) no-repeat center / contain;
}
.swiper_btns div:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.swiper_btns div:hover::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns .btn_prev::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  border-color: #8b8b8b;
  background-color: transparent;
}
.swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(0);
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
  pointer-events: none;
}
.product_list .active a {
  box-shadow: 0.8rem 0.8rem 1rem rgba(165, 165, 165, 0.45);
}
.product_list .active .info .btn {
  background-color: var(--primary);
}
.product_list a {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s;
  border: 1px solid #dedfe2;
}
.product_list a:hover .img img {
  transform: scale(1.03);
}
.product_list .img {
  padding-bottom: 68.786127%;
}
.product_list .info {
  padding: 2rem 2.6rem 2.1rem;
}
.product_list .info .brand {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: #fff;
  max-width: 12.5rem;
  height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1.2rem;
}
.product_list .info .brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product_list .info .cat {
  color: var(--primary);
  font-weight: 500;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.product_list .info .title {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 2.8rem;
  max-width: 28rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product_list .info .attrs {
  flex: 1;
  margin-top: 2.2rem;
}
.product_list .info .attrs li {
  gap: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eaeaea;
  position: relative;
  padding: 1rem 0 0.8rem 2.6rem;
}
.product_list .info .attrs li::before {
  content: '';
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  left: 0;
  top: 1rem;
  background: no-repeat center / contain;
}
.product_list .info .attrs .capacity::before {
  background-image: url('../img/icon-capacity.svg');
}
.product_list .info .attrs .time::before {
  background-image: url('../img/icon-time.svg');
}
.product_list .info .attrs .label {
  font-size: 1.5rem;
}
.product_list .info .attrs .value {
  font-weight: 500;
  font-size: 1.6rem;
  text-align: right;
}
.product_list .info .btn {
  width: 100%;
  font-size: 1.53rem;
  line-height: 4.4rem;
  border-color: #e5e5e5;
  background-color: #e5e5e5;
  margin-top: 4.1rem;
}
.product_list .info .btn:hover {
  color: #fff;
  background-color: var(--secondary);
}
.blog_list .active .info .title {
  text-decoration-color: var(--title);
}
.blog_list a {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.blog_list a:hover img {
  transform: scale(1.03);
}
.blog_list .img {
  padding-bottom: 65.652174%;
}
.blog_list .info {
  flex: 1;
  padding-bottom: 4.8rem;
  border-bottom: 1px solid #dedfe2;
}
.blog_list .info .cat {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--primary);
  padding: 0.9rem 1.9rem;
}
.blog_list .info .date {
  color: #5c5c5c;
  font-size: 1.8rem;
  margin-top: 3.2rem;
}
.blog_list .info .title {
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.603846;
  transition: all 0.3s;
  text-decoration: underline transparent;
  max-width: 45rem;
  margin-top: 0.5rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog_list .btn_a {
  max-width: max-content;
  margin-top: 1.9rem;
}
header {
  position: sticky;
  top: 0;
  z-index: 996;
  transition: all 0.4s;
  color: #fff;
  background-color: var(--secondary);
}
header.hide {
  top: -151px;
}
header .lt {
  position: relative;
  z-index: 2;
  min-height: 123px;
  display: flex;
  align-items: center;
}
header .lt::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 199.074074%;
  height: 28px;
  background-color: var(--secondary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
header .logo {
  display: block;
  position: relative;
  transform: translateY(5px);
}
header .logo img {
  display: block;
  width: 10.8rem;
  height: auto;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header .top {
  padding-top: 16px;
}
header .top ul {
  gap: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .top li {
  position: relative;
  padding-left: 26px;
}
header .top li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 14px;
  background: no-repeat center / contain;
}
header .top .email::before {
  background-image: url('../img/icon-email1.svg');
}
header .top .phone::before {
  background-image: url('../img/icon-phone.svg');
}
header .top a {
  display: block;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
}
header .top a:hover {
  color: var(--primary);
}
header .bot {
  gap: 6rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 17px 0;
}
header nav .close_box {
  display: none;
}
header nav .menu {
  gap: 4.2rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 56px;
  transition: all 0.3s;
  text-transform: uppercase;
}
header nav .menu > li > a:hover {
  color: var(--primary);
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a,
header nav .menu > li:has(.current-menu-parent) > a {
  color: var(--primary);
}
header nav .menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  padding: 6px;
  transition: all 0.3s;
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: max-content;
  width: calc(100% + 48px);
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
}
header nav .sub-menu > li {
  position: relative;
}
header nav .sub-menu > li + li {
  margin-top: 4px;
}
header nav .sub-menu > li > a {
  display: block;
  color: var(--title);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  padding: 14px 18px;
  transition: all 0.2s;
}
header nav .sub-menu > li > a:hover {
  background-color: var(--primary);
}
header nav .sub-menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: auto;
  opacity: 1;
}
header nav .sub-menu .sub-menu {
  left: 100%;
  top: 10px;
}
header .btns {
  gap: 3rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .btn_search {
  width: 20px;
  height: 20px;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .btn_search:hover {
  filter: none;
}
header .btn_lang {
  width: 22px;
  height: 22px;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../img/icon-lang.svg) no-repeat center / contain;
}
header .btn_lang:hover {
  filter: none;
}
header .btn_menu {
  display: none;
}
header .btn {
  padding: 0 3.7rem;
  line-height: 54px;
  margin-left: 1.2rem;
}
footer {
  color: #fff;
  background-color: #1b1d29;
}
footer .top {
  padding: 7.8rem 0 12rem;
}
footer .logo {
  display: block;
  position: relative;
  max-width: 14.6rem;
}
footer .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .contact {
  margin-top: 5rem;
}
footer .contact li {
  position: relative;
  padding-left: 6.8rem;
}
footer .contact li + li {
  margin-top: 2.8rem;
}
footer .contact li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  background: no-repeat center / 35% #242833;
}
footer .contact .phone::before {
  background-image: url('../img/icon-phone.svg');
}
footer .contact .email::before {
  background-image: url('../img/icon-email2.svg');
}
footer .contact .label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
footer .contact a {
  vertical-align: top;
  font-weight: 600;
  font-size: 1.8rem;
  transition: all 0.3s;
}
footer .contact a:hover {
  color: var(--primary);
}
footer .social {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 4rem;
}
footer .social a {
  display: block;
  width: 4.4rem;
  height: 4.4rem;
  overflow: hidden;
  text-indent: -999px;
  border-radius: 50%;
  transition: all 0.3s;
  position: relative;
  background-color: #242833;
}
footer .social a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.3s;
  background: no-repeat center / contain;
}
footer .social a:hover {
  background-color: var(--primary);
}
footer .social a:hover::after {
  filter: contrast(0) brightness(0);
}
footer .social .facebook a::after {
  background-image: url(../img/social-facebook.svg);
}
footer .social .instagram a::after {
  background-image: url(../img/social-instagram.svg);
}
footer .social .youtube a::after {
  background-image: url(../img/social-youtube.svg);
}
footer .social .linkedin a::after {
  background-image: url(../img/social-linkedin.svg);
}
footer .social .twitter a::after {
  background-image: url(../img/social-twitter.svg);
}
footer .rt {
  width: 63.055556%;
}
footer .intro {
  padding: 3.9rem 0 2.2rem;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 3.4rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
footer .foot_navs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5rem 3rem;
  margin-top: 4rem;
}
footer .foot_nav {
  min-width: 25%;
}
footer .foot_nav strong {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
footer .foot_nav li + li {
  margin-top: 1.2rem;
}
footer .foot_nav a {
  color: rgba(255, 255, 255, 0.6);
  vertical-align: top;
  font-size: 1.8rem;
  transition: all 0.3s;
}
footer .foot_nav a:hover {
  color: var(--primary);
}
footer .bot {
  font-size: 1.4rem;
  padding: 1.8rem 0;
}
footer .bot ul {
  gap: 1.4rem;
  display: flex;
  align-items: center;
}
footer .bot ul li {
  gap: 1.4rem;
  display: flex;
  align-items: center;
}
footer .bot ul li::after {
  content: '';
  display: block;
  width: 1px;
  height: 1.3rem;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.15);
}
footer .bot ul li:last-child::after {
  display: none;
}
footer .bot ul a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}
footer .bot ul a:hover {
  color: var(--primary);
}
footer .copyright {
  color: rgba(255, 255, 255, 0.75);
}
footer #backtop {
  position: fixed;
  right: 4.2rem;
  bottom: 10vh;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  transition: all 0.3s;
  background-color: var(--primary);
  transform: translateX(calc(100% + 4.2rem));
  cursor: pointer;
}
footer #backtop.show {
  transform: translateX(0);
}
footer #backtop:hover {
  background-color: var(--secondary);
}
footer #backtop:hover::after {
  filter: contrast(0) brightness(2);
}
footer #backtop::after {
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  transition: all 0.3s;
  transform: rotate(-90deg);
  filter: contrast(0) brightness(0);
  background: url(../img/arrow-r.svg) no-repeat center / contain;
}
.contact_sidebar {
  position: fixed;
  right: -5px;
  top: 50%;
  z-index: 99;
  transform: translateY(-50%);
}
.contact_sidebar ul {
  display: grid;
  gap: 8px;
}
.contact_sidebar li {
  padding-right: 5px;
  transition: all 0.3s;
  background-color: var(--primary);
}
.contact_sidebar li:hover {
  transform: translateX(-5px);
  background-color: var(--secondary);
}
.contact_sidebar a,
.contact_sidebar .btn_quote {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 5.5rem;
  height: 5.5rem;
}
.contact_sidebar a::after,
.contact_sidebar .btn_quote::after {
  content: '';
  display: block;
  width: 40%;
  height: 40%;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
  background: no-repeat center / contain;
}
.contact_sidebar a:hover::after,
.contact_sidebar .btn_quote:hover::after {
  filter: contrast(0) brightness(2);
}
.contact_sidebar .btn_quote::after {
  width: 50%;
  height: 50%;
  background-image: url(../img/social-form.svg);
}
.contact_sidebar .phone a::after {
  background-image: url(../img/icon-phone.svg);
}
.contact_sidebar .email a::after {
  background-image: url(../img/icon-email2.svg);
}
.contact_sidebar .whatsapp a::after {
  width: 50%;
  height: 50%;
  background-image: url(../img/social-whatsapp.svg);
}
.footer_contact {
  position: relative;
  background-image: linear-gradient(2deg, #474e58, #242833);
}
.footer_contact .dec {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.footer_contact .dec .img {
  position: absolute;
  top: -2.6rem;
  left: -30.833333%;
  width: 86.805556%;
}
.footer_contact .dec + .content {
  z-index: 2;
}
.footer_contact .pic {
  width: 61.805556%;
  margin-left: 4.305556%;
  margin-top: -4.305556%;
}
.footer_contact .head {
  flex: 1;
  padding: 5rem 0;
  margin-top: 1.8rem;
}
.footer_contact .head .head_h2 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  line-height: 5.1rem;
  text-transform: uppercase;
}
.footer_contact .head .btn {
  margin-top: 3.3rem;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .product_list .info {
    padding: 15px;
  }
}
@media screen and (max-width: 1024px) {
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
    --radius: 0;
  }
  header nav.active {
    pointer-events: auto;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    transform: translate(0);
  }
  header nav > .close {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.75);
  }
  header nav .con {
    width: min(300px, 80%);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    transform: translateX(-100%);
    background-color: #fff;
  }
  header nav .close_box {
    padding: 12px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  header nav .close_box .close {
    display: block;
    width: 44px;
    height: 44px;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.3s;
    border-radius: var(--radius);
    background: url('../img/close.svg') no-repeat center / 12px;
  }
  header nav .close_box .close:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .close_box + div {
    flex: 1;
    overflow: auto;
    padding: 12px 12px 30px;
  }
  header nav .menu {
    display: block;
  }
  header nav .menu > li {
    cursor: pointer;
  }
  header nav .menu > li + li {
    margin-top: 8px;
  }
  header nav .menu > li > a {
    color: var(--title);
    display: block;
    font-size: 16px;
    line-height: 26px;
    padding: 10px 12px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu > li.current-menu-item > a,
  header nav .menu > li.current-menu-parent > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children {
    position: relative;
  }
  header nav .menu .menu-item-has-children > a {
    margin-right: 46px;
  }
  header nav .menu .menu-item-has-children::before,
  header nav .menu .menu-item-has-children::after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .menu .menu-item-has-children::after {
    background: url(../img/select.svg) no-repeat center / 12px;
  }
  header nav .menu .menu-item-has-children.active::before {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children.active::after {
    transform: rotate(180deg);
  }
  header nav .sub-menu {
    width: 100%;
    position: static;
    padding: 10px;
    margin: 12px 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transition: none;
    min-width: unset;
    border-radius: var(--radius);
    transform: translate(0);
    background-color: rgba(0, 0, 0, 0.02);
  }
  header nav .sub-menu > li {
    cursor: pointer;
    transform: translate(0);
  }
  header nav .sub-menu > li + li {
    margin-top: 6px;
  }
  header nav .sub-menu > li > a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
    padding: 10px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .sub-menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu > li.current-menu-item > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu .menu-item-has-children > a {
    margin-right: 42px;
  }
  header nav .sub-menu .menu-item-has-children::before,
  header nav .sub-menu .menu-item-has-children::after {
    top: 2px;
    width: 36px;
    height: 36px;
    background-size: 10px;
  }
  header nav .sub-menu .sub-menu {
    margin: 10px 0;
  }
  header nav .sub-menu .sub-menu > li + li {
    margin-top: 0;
  }
  header nav .sub-menu .sub-menu > li > a {
    font-size: 12px;
  }
  header .btns {
    gap: 8px;
  }
  header .btn_search {
    width: 44px;
    height: 44px;
    background-size: 20px;
  }
  header .btn_lang {
    width: 44px;
    height: 44px;
    background-size: 22px;
  }
  header .btn_menu {
    display: block;
    width: 44px;
    height: 44px;
    overflow: hidden;
    text-indent: -999px;
    filter: contrast(0) brightness(2);
    background: url(../img/nav-btn.svg) no-repeat center / 23px;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
  }
  .btn_a {
    gap: 10px;
    font-size: 14px;
  }
  .btn_a::after {
    width: 12px;
    height: 12px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 44px;
    height: 44px;
  }
  .tcon > em {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .tcon h1,
  .tcon .head_h1 {
    font-size: 38px;
    line-height: 1.3;
  }
  .tcon h2,
  .tcon .head_h2 {
    font-size: 30px;
    line-height: 1.3;
  }
  .tcon p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .product_list .info {
    padding: 15px;
  }
  .product_list .info .brand {
    height: 30px;
    padding: 8px;
    max-width: 80px;
  }
  .product_list .info .cat {
    font-size: 13px;
  }
  .product_list .info .title {
    font-size: 14px;
    line-height: 1.3;
  }
  .product_list .info .attrs {
    margin-top: 15px;
  }
  .product_list .info .attrs li {
    gap: 8px;
    padding: 8px 0 8px 20px;
  }
  .product_list .info .attrs li::before {
    width: 15px;
    height: 15px;
  }
  .product_list .info .attrs .label {
    font-size: 12px;
  }
  .product_list .info .attrs .value {
    font-size: 12px;
  }
  .product_list .info .btn {
    display: none;
    font-size: 14px;
    line-height: 42px;
    margin-top: 15px;
  }
  .blog_list .info {
    padding-bottom: 15px;
  }
  .blog_list .info .cat {
    font-size: 12px;
    padding: 6px 12px;
  }
  .blog_list .info .date {
    font-size: 14px;
    margin-top: 12px;
  }
  .blog_list .info .title {
    font-size: 16px;
    line-height: 1.3;
  }
  .blog_list .btn_a {
    margin-top: 12px;
  }
  header .lt {
    min-height: 64px;
  }
  header .lt::after {
    width: calc(100% + 40px);
    height: 15px;
  }
  header .logo img {
    width: 80px;
  }
  header .top {
    padding-top: 10px;
  }
  header .bot {
    padding: 10px 0;
  }
  header .btn {
    line-height: 42px;
    padding: 0 20px;
  }
  footer .top {
    padding: 50px 0;
  }
  footer .logo {
    max-width: 120px;
  }
  footer .contact {
    margin-top: 30px;
  }
  footer .contact li {
    padding-left: 55px;
  }
  footer .contact li::before {
    width: 40px;
    height: 40px;
  }
  footer .contact .label {
    font-size: 14px;
  }
  footer .contact a {
    font-size: 16px;
  }
  footer .social {
    margin-top: 30px;
  }
  footer .rt {
    width: auto;
    flex: 1;
  }
  footer .intro {
    padding: 0 0 15px;
    font-size: 16px;
    line-height: 1.3;
  }
  footer .foot_navs {
    gap: 30px 20px;
  }
  footer .foot_nav strong {
    font-size: 18px;
  }
  footer .foot_nav a {
    font-size: 14px;
  }
  footer #backtop {
    width: 44px;
    height: 44px;
    right: 20px;
  }
  .contact_sidebar a,
  .contact_sidebar .btn_quote {
    width: 44px;
    height: 44px;
  }
  .footer_contact .img {
    margin-left: 0;
  }
  .footer_contact .head {
    margin: 0;
    padding: 50px 0;
  }
  .footer_contact .head .head_h2 {
    font-size: 22px;
    line-height: 1.3;
  }
  .footer_contact .head .btn {
    margin-top: 20px;
  }
}
@media screen and (max-width: 576px) {
  header .logo img {
    width: 60px;
  }
  header .top {
    display: none;
  }
  header .btn {
    display: none;
  }
  footer .top {
    display: block;
  }
  footer .rt {
    margin-top: 50px;
  }
  footer .foot_navs {
    display: block;
  }
  footer .foot_nav.active strong {
    border-color: var(--primary);
  }
  footer .foot_nav.active strong::after {
    transform: rotate(270deg);
  }
  footer .foot_nav strong {
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    line-height: 42px;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
    transition: all 0.3s;
    gap: 20px;
  }
  footer .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    transition: all 0.3s;
    transform: rotate(90deg);
    background: url(../img/arrow-r.svg) no-repeat center / contain;
  }
  footer .foot_nav div {
    display: none;
    padding: 0 20px 30px;
  }
  footer .bot {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  footer #backtop {
    display: none;
  }
  .footer_contact .flex {
    display: block;
  }
  .footer_contact .img {
    width: 100%;
    transform: translateY(-20px);
  }
  .footer_contact .head {
    padding: 0 0 50px;
  }
}
