* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #f15a22;
  --secondary: #012851;
  --title: #0e1726;
  --text: #626970;
  --border: #dadfe6;
  --border2: #e6e9ee;
  --bg: #f5f6f8;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 136rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 139rem;
  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: 'Plus Jakarta Sans', sans-serif;
  animation: fadeIn 0.4s ease-in forwards;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.PJS {
  font-family: 'Plus Jakarta Sans', sans-serif;
}
p,
.Inter {
  font-family: 'Inter', sans-serif;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}
.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 {
  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 {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  --h: 100%;
  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 {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.img img,
.img video,
.img iframe {
  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 {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.icon.icon_ab {
  position: relative;
}
.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;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  z-index: 999;
  padding: 8px;
  font-size: 14px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.2s ease;
}
.custom-popup.show {
  opacity: 1;
  transform: scaleY(1);
}
.custom-popup.up {
  transform-origin: bottom;
}
.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: 14px;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--title);
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup input.popup-input::placeholder {
  color: #666;
}
.custom-popup input.popup-input:focus {
  border-color: var(--primary);
}
.custom-popup .popup-options {
  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;
}
.btn {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  position: relative;
  border-radius: 2.8rem;
  transition: all 0.3s;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 5.6rem;
  background-color: var(--primary);
  padding: 0 6.4rem 0 2.4rem;
}
.btn::after {
  content: '';
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 4rem;
  height: 4rem;
  transition: all 0.4s;
  border-radius: 50%;
  background: url(../img/arrot-tr-w.svg) no-repeat center / 20% rgba(255, 255, 255, 0.22);
}
.btn:hover {
  padding: 0 4.4rem;
  box-shadow: 0 0.3rem 1rem var(--primary);
}
.btn:hover::after {
  transform: translate(100%, -50%) rotate(45deg) scale(0.5);
}
.btn.sec {
  background-color: var(--secondary);
}
.btn.sec:hover {
  box-shadow: 0 0.3rem 1rem var(--secondary);
}
.swiper_btns {
  gap: 3.2rem;
  display: flex;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 159.2rem;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.swiper_btns.middle div {
  pointer-events: auto;
}
.swiper_btns.middle .swiper-button-disabled {
  pointer-events: none;
}
.swiper_btns div {
  width: 6.2rem;
  height: 6.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  cursor: pointer;
  transition: all 0.3s;
}
.swiper_btns div:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 32%;
  height: 32%;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../img/arrow-line-l-b.svg) no-repeat center / contain;
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  border-color: #b0b0b0;
  background-color: transparent;
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.tcon.white {
  color: #fff;
}
.tcon.white > em {
  color: #a0afbc;
}
.tcon.white p,
.tcon.white .desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: 0.00889em;
}
.tcon.white .desc {
  letter-spacing: 0.00055em;
}
.tcon em {
  font-style: normal;
}
.tcon > em {
  display: inline-block;
  font-size: 1.4rem;
  color: #7d8a98;
  font-weight: 600;
  padding-bottom: 5px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 1.2rem;
  letter-spacing: 0.0643em;
}
.tcon h1 {
  font-size: 6.8rem;
  line-height: 1.13235294;
  font-weight: 800;
}
.tcon h2 {
  font-size: 4.6rem;
  line-height: 1.2173913;
  font-weight: 700;
}
.tcon p,
.tcon .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
}
header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
  transition: all 0.4s;
  padding: 1.4rem 1.4rem 0;
}
header.white,
header.sticky {
  background-color: #fff;
}
header.white .flex,
header.sticky .flex {
  background-color: var(--secondary);
}
header.white .lt,
header.sticky .lt {
  background-color: #fff;
}
header.white .lt > img,
header.sticky .lt > img {
  opacity: 1;
}
header.white .btn_lang,
header.sticky .btn_lang,
header.white nav,
header.sticky nav {
  background-color: transparent;
}
header.white nav .sub-menu,
header.sticky nav .sub-menu {
  background-color: rgba(1, 40, 81, 0.9);
}
header.white {
  top: -1.4rem;
}
header.hide {
  transform: translateY(-100%);
}
header.sticky {
  position: sticky;
}
header.style .lt > img:nth-of-type(2) {
  opacity: 0;
}
header > .flex {
  position: relative;
  z-index: 9;
}
header .flex {
  border-top-right-radius: 3rem;
  transition: all 0.2s;
  max-width: 253.2rem;
  margin: 0 auto;
}
header .lt {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  padding-left: 1.7rem;
  margin-right: 5.4%;
  background-color: #fff;
}
header .lt > img {
  position: absolute;
  height: 100%;
  width: auto;
  left: 100%;
  top: 0;
  display: block;
  object-fit: contain;
  pointer-events: none;
}
header .lt > img:nth-of-type(2) {
  left: 0;
  top: 100%;
  width: 3.4rem;
  height: 3.4rem;
}
header .logo {
  gap: 1.3rem;
  display: flex;
  align-items: center;
  pointer-events: auto;
}
header .logo img {
  width: auto;
  height: 8.2rem;
}
header .logo .text {
  transition: all 0.3s;
}
header .logo .text strong {
  display: block;
  font-weight: 700;
  font-size: 2.6rem;
  margin-top: 2px;
  letter-spacing: 0.038462em;
}
header .logo .text span {
  display: block;
  font-weight: 700;
  font-size: 1.011rem;
  letter-spacing: 0.28em;
  margin-top: 0.5rem;
}
header nav {
  border-radius: 28px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.3s;
  align-self: center;
  margin-top: 12px;
  padding: 5px 6px;
}
header nav .close_box {
  display: none;
}
header nav .menu {
  gap: 12px;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
  border-radius: 23px;
  padding: 10px 14px 14px;
}
header nav .menu > li > a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
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: #fff;
  margin: 0 -6px;
  padding: 10px 22px 14px;
  background-color: rgba(255, 255, 255, 0.1);
}
header nav .menu > li:first-child > a {
  padding-left: 22px;
  margin-left: 0;
}
header nav .menu > li:last-child > a {
  padding-right: 22px;
  margin-right: 0;
}
header nav .menu > li.active > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 10px);
}
header nav .sub-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  padding: 6px;
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
  min-width: 180px;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
header nav .sub-menu > li > a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
}
header nav .sub-menu > li > a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
header .rt {
  gap: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
  padding-right: 3.7rem;
  min-height: 112px;
  padding-top: 6px;
}
header .btn_lang {
  height: 56px;
  gap: 12px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  pointer-events: auto;
  border-radius: 28px;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
header .btn_lang:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
}
header .btn_lang::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  transition: all 0.3s;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
}
header .btn_lang::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  transition: all 0.3s;
  background: url(../img/icon-select-w.svg) no-repeat center / contain;
}
header .btn_menu {
  display: none;
  pointer-events: auto;
}
header .btn {
  border-radius: 28px;
  line-height: 56px;
  pointer-events: auto;
}
footer {
  color: #fff;
  border-radius: 2.7rem 2.7rem 0 0;
  background-color: var(--primary);
}
footer .main {
  padding: 12.6rem 0 10.1rem;
  border-radius: 2.7rem;
  background-color: #011830;
}
footer .logo {
  gap: 1.8rem;
  display: flex;
  align-items: center;
  max-width: max-content;
}
footer .logo img {
  width: auto;
  height: 10.2rem;
}
footer .logo .text {
  color: #dfe4ea;
}
footer .logo .text strong {
  display: block;
  font-weight: 700;
  font-size: 3.3rem;
  letter-spacing: 0.038462em;
}
footer .logo .text span {
  display: block;
  font-size: 1.278rem;
  letter-spacing: 0.28em;
  margin-top: 0.8rem;
}
footer .foot_navs {
  margin-top: 5.6rem;
}
footer .foot_navs strong {
  display: block;
  font-weight: 500;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1.7rem;
}
footer .foot_navs strong::after {
  content: '';
  display: block;
  width: 1.7rem;
  height: 2px;
  background-color: var(--primary);
  margin-top: 1.7rem;
}
footer .foot_navs p,
footer .foot_navs a {
  color: #8a97a0;
  font-size: 1.8rem;
  line-height: 2.8rem;
}
footer .foot_intro {
  width: 39.2rem;
  margin-right: 12%;
}
footer .foot_intro p {
  padding-top: 1px;
}
footer .foot_intro .social {
  gap: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 3rem;
}
footer .foot_intro .social a {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
  background: no-repeat center / contain rgba(255, 255, 255, 0.07);
}
footer .foot_intro .social a:hover {
  background-color: var(--primary);
}
footer .foot_intro .social .facebook a {
  background-image: url(../img/social-facebook.svg);
}
footer .foot_intro .social .instagram a {
  background-image: url(../img/social-instagram.svg);
}
footer .foot_intro .social .youtube a {
  background-image: url(../img/social-youtube.svg);
}
footer .foot_intro .social .linkedin a {
  background-image: url(../img/social-linkedin.svg);
}
footer .foot_intro .social .twitter a {
  background-image: url(../img/social-twitter.svg);
}
footer .foot_nav {
  min-width: 19.4rem;
}
footer .foot_nav a {
  vertical-align: top;
  transition: all 0.3s;
  text-decoration: underline;
  text-decoration-color: transparent;
}
footer .foot_nav a:hover {
  color: #fff;
  text-decoration-color: #fff;
}
footer .foot_nav li + li {
  margin-top: 1rem;
}
footer .bottom {
  font-size: 1.4rem;
  padding: 1.5rem 0 1.9rem;
}
footer .bottom ul {
  gap: 1rem 3rem;
  display: flex;
  flex-wrap: wrap;
}
footer .bottom ul a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.3s;
}
footer .bottom ul a:hover {
  color: #fff;
  text-decoration-color: #fff;
}
.side_conn {
  position: fixed;
  z-index: 99;
  right: 1.9rem;
  top: 50vh;
}
.side_conn li + li {
  margin-top: 1.5rem;
}
.side_conn a,
.side_conn i {
  position: relative;
  display: block;
  cursor: pointer;
  width: 7rem;
  height: 7rem;
  border: 1px solid #bec9d3;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -999px;
  transform: scale(0.85714286);
  transition: all 0.3s;
  box-shadow: 0 1rem 1rem rgba(181, 181, 181, 0.35);
}
.side_conn a::after,
.side_conn i::after {
  position: absolute;
  display: block;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center / 42%;
  transition: all 0.3s;
}
.side_conn i:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: scale(1);
  box-shadow: 0 1rem 1rem rgba(241, 90, 34, 0.35);
}
.side_conn a:hover {
  background-color: #25d366;
  border-color: #25d366;
  transform: scale(1);
  box-shadow: 0 1rem 1rem rgba(37, 211, 102, 0.35);
}
.side_conn a:hover::after,
.side_conn i:hover::after {
  filter: contrast(0) brightness(2);
}
.side_conn .whatsapp a::after {
  background-image: url("../img/conn-whatsapp.svg");
}
.side_conn .backtop i::after {
  background-image: url("../img/arrow-t.svg");
  background-size: 24%;
}
.footer_contact {
  padding: 7.3rem 0 15.3rem;
}
.footer_contact .lt {
  flex: 1;
  max-width: 50.4rem;
  padding-top: 2.4%;
}
.footer_contact .tcon p {
  color: var(--text);
  max-width: 40rem;
  margin-top: 3.5rem;
}
.footer_contact .contact {
  padding-top: 3.6rem;
}
.footer_contact .contact li {
  gap: 2.2rem;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  margin-top: 3.1rem;
}
.footer_contact .contact li:hover .icon {
  background-color: var(--primary);
}
.footer_contact .contact .icon {
  width: 6.5rem;
  height: 6.5rem;
  align-self: start;
  transition: all 0.3s;
  border-radius: 1.4rem;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_contact .contact .icon img {
  display: block;
  width: 38%;
  height: 40%;
  object-fit: contain;
}
.footer_contact .contact .tcon strong {
  display: block;
  color: #7d8a98;
  font-size: 1.4rem;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.footer_contact .contact .tcon a,
.footer_contact .contact .tcon span {
  font-size: 2rem;
  font-weight: 600;
}
.footer_contact .contact .tcon a {
  vertical-align: top;
  transition: all 0.3s;
}
.footer_contact .contact .tcon a:hover {
  color: var(--primary);
}
.footer_contact .contact .tcon span {
  display: block;
}
.footer_contact .rt {
  width: 55.294118%;
  align-self: center;
  border-radius: 3rem;
  border: 1px solid var(--border2);
  background-color: #fff;
  box-shadow: 0 1rem 1rem rgba(188, 188, 188, 0.35);
}
.form_warp {
  padding: 8.4% 7.2% 6.666667%;
}
.form_warp .head {
  margin-bottom: 3.5rem;
}
.form_warp .head .title {
  font-weight: 600;
  font-size: 3.2rem;
}
.form_warp .head .desc {
  color: var(--text);
  font-size: 1.7rem;
  margin-top: 1rem;
}
.form_warp .wrap {
  gap: 1.8rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form_warp .wrap span {
  width: 100%;
}
.form_warp .wrap .col2 {
  width: 48.909657%;
}
.form_warp .wrap .label {
  cursor: pointer;
  max-width: max-content;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.form_warp .wrap .label i {
  color: var(--primary);
}
.form_warp .wrap input,
.form_warp .wrap select,
.form_warp .wrap textarea {
  width: 100%;
  height: 4.9rem;
  display: block;
  transition: all 0.3s;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  background-color: var(--bg);
  font-size: 1.6rem;
  padding: 0 2rem;
}
.form_warp .wrap input:focus,
.form_warp .wrap select:focus,
.form_warp .wrap textarea:focus {
  border-color: var(--primary);
}
.form_warp .wrap input.wpcf7-not-valid,
.form_warp .wrap select.wpcf7-not-valid,
.form_warp .wrap textarea.wpcf7-not-valid {
  border-color: #dc3232;
}
.form_warp .wrap textarea {
  height: 9.7rem;
  padding: 1.5rem 2rem;
}
.form_warp .wrap span:has(textarea) {
  margin-top: 3px;
}
.form_warp .wrap span:has(.verification) {
  margin-top: 4px;
}
.form_warp .wrap span:has(.verification) .label {
  margin-bottom: 1.3rem;
}
.form_warp .wrap .phone {
  gap: 1.2rem;
  display: grid;
  align-items: end;
  grid-template-columns: auto 1fr;
}
.form_warp .wrap .phone .code {
  position: relative;
  width: 11.5rem;
}
.form_warp .wrap .phone .code::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../img/input-plus.svg) no-repeat center / contain;
  position: absolute;
  left: 2.5rem;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
.form_warp .wrap .phone .code input {
  padding-left: 4.5rem;
}
.form_warp .wrap .verification {
  gap: 1.2rem;
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr;
}
.form_warp .wrap .verification .con {
  width: 17.5rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  background-color: var(--bg);
  gap: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
}
.form_warp .wrap .verification .question {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form_warp .wrap .verification .refresh {
  width: 4.8rem;
  height: 4.8rem;
  margin: -1px -1px -1px 0;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form_warp .wrap .verification .refresh::after {
  content: '';
  display: block;
  width: 32%;
  height: 32%;
  transition: all 0.3s;
  background: url(../img/icon-refresh.svg) no-repeat center / contain;
}
.form_warp .wrap .verification .refresh:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
.form_warp .wrap .verification .refresh:hover::after {
  filter: contrast(0) brightness(2);
}
.form_warp .wrap span:has(.btn) {
  margin-top: 1.5rem;
}
.form_warp .wrap .btn {
  width: 100%;
  padding: 0 6.4rem;
  position: relative;
}
.form_warp .wrap .btn input {
  display: none;
}
.form_warp .tip {
  color: #7d8a98;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 2.4rem;
}
.page_banner {
  max-width: 256rem;
  margin: 0 auto;
  padding: 1.4rem 1.4rem 0;
}
.page_banner .con {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 3rem;
  background-color: var(--secondary);
  padding-top: 113px;
}
.page_banner .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.42;
}
.page_banner .bg::after,
.page_banner .bg::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  content: '';
  pointer-events: none;
  z-index: 2;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.85) 10.5%, rgba(0, 0, 0, 0.34) 29%, transparent 61.3%);
}
.page_banner .bg::before {
  background-image: linear-gradient(to bottom, #021e3c -19.5%, rgba(2, 30, 60, 0.83) 21%, transparent 68.7%);
}
.page_banner .flex {
  min-height: 67.2rem;
  padding: 4.6rem 0;
}
.page_banner .head {
  flex: 1;
  width: 100%;
  max-width: 88.2rem;
}
.page_banner .head .tcon .desc {
  color: rgba(255, 255, 255, 0.8);
}
.page_banner .head:has(.tags) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page_banner .head:has(.tags) .breadcrumbs {
  margin-top: auto;
}
.page_banner .head:has(.tags) .tcon {
  margin-bottom: auto;
}
.page_banner .tcon {
  margin-bottom: 8.3%;
}
.page_banner .breadcrumbs {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.9rem;
  padding: 0.7rem 1.8rem 0.9rem 1.6rem;
  margin-bottom: 1.6rem;
}
.page_banner .breadcrumbs span {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ff8753;
}
.page_banner .breadcrumbs span span::before {
  content: ' / ';
  font-weight: 600;
  color: #fff;
  margin: 0 0.33em;
}
.page_banner .breadcrumbs span span:first-child::before {
  display: none;
}
.page_banner .breadcrumbs span a {
  font-weight: 600;
  color: #fff;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.page_banner .breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.page_banner .desc {
  max-width: 59.9rem;
  margin-top: 2.1rem;
}
.page_banner .img.img_ct {
  width: 45.58823529%;
  height: auto;
  margin-right: -2.13235294%;
}
.page_banner .tags {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5rem;
  gap: 1rem;
  margin-top: 2.9%;
}
.page_banner .tags span {
  display: inline-block;
  text-align: center;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  border-radius: 1.3em;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.633em 1.2667em;
}
.page_banner .tags span:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.page_stories {
  padding: 11.3rem 0 9.5rem;
}
.page_stories.bg {
  background-color: var(--bg);
}
.page_stories .head {
  display: grid;
  grid-template-columns: 1fr 43.82352941%;
  align-items: start;
  gap: 0 3rem;
}
.page_stories .head > em {
  grid-column: -1/1;
  max-width: max-content;
}
.page_stories .head h2 {
  max-width: 46rem;
}
.page_stories .head p {
  margin-top: 3.8rem;
}
.page_stories .page_stories_swiper {
  overflow: hidden;
  margin-top: 6.8rem;
  --rd: 2.6rem;
  border-radius: var(--rd);
}
.page_stories .page_stories_swiper .swiper-slide {
  position: relative;
  padding-bottom: 38.23529412%;
  transition: max-width 0.4s;
  max-width: 32.94117647%;
}
.page_stories .page_stories_swiper .active {
  max-width: 64.85294118%;
}
.page_stories .page_stories_swiper .active .item .title {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.4s 0.4s;
}
.page_stories .page_stories_swiper .active .item .img::after {
  opacity: 1;
}
.page_stories .item {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: var(--rd);
  overflow: hidden;
}
.page_stories .item:hover img {
  transform: scale(1.03);
}
.page_stories .item .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.page_stories .item .img::after {
  position: absolute;
  width: 100%;
  height: 42.5%;
  left: 0;
  bottom: 0;
  content: '';
  pointer-events: none;
  background-image: linear-gradient(to top, #021e3c 9.05%, rgba(2, 30, 60, 0.8) 31%, transparent);
  transition: all 0.3s;
  opacity: 0;
}
.page_stories .item .title {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
  max-width: 51.8rem;
  transition: all 0.4s;
  margin: 3.7414966% 4.5351474%;
  transform: translateY(100%);
  opacity: 0;
}
.page_stories .swiper_con {
  margin-top: 4.1rem;
}
.page_stories .swiper_con div.swiper-scrollbar {
  position: static;
  flex: 1;
  width: 100%;
  max-width: 115.9rem;
  height: 3px;
  background: #e2e2e2;
}
.page_stories .swiper_con div.swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--title);
}
.page_testimonial {
  padding: 9.2rem 0 12.2rem;
}
.page_testimonial .head .lt {
  max-width: 47.6rem;
}
.page_testimonial .head .rt {
  max-width: 59.8rem;
  margin-top: 4.12%;
}
.page_testimonial .head .tcon p {
  color: var(--text);
}
.page_testimonial .main {
  margin-top: 6rem;
}
.page_testimonial .main .lt {
  width: 44.117647%;
}
.page_testimonial .main .rt {
  width: 48.529412%;
  border-radius: 3rem;
  border: 1px solid var(--border2);
  background-color: var(--bg);
  padding: 4.111176% 4.485294% 2.132353%;
}
.page_testimonial .page_testimonial_project_swiper {
  overflow: hidden;
}
.page_testimonial .page_testimonial_project_swiper a {
  display: block;
  position: relative;
}
.page_testimonial .page_testimonial_project_swiper a:hover img {
  transform: scale(1.03);
}
.page_testimonial .page_testimonial_project_swiper .img {
  border-radius: 3rem;
  padding-bottom: 53.333333%;
}
.page_testimonial .page_testimonial_project_swiper .info .cat {
  font-weight: 600;
  font-size: 1.4rem;
  border-radius: 10rem;
  position: absolute;
  left: 2.8rem;
  top: 3rem;
  z-index: 2;
  text-align: center;
  background-color: #fff;
  padding: 0.9rem 1.6rem;
}
.page_testimonial .page_testimonial_project_swiper .info .title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.5;
  max-width: 51.8rem;
  margin-top: 3.2rem;
}
.page_testimonial .swiper-pagination {
  max-width: 58rem;
  position: static;
  background-color: var(--border2);
  margin-top: 6.6rem;
}
.page_testimonial .swiper-pagination .swiper-pagination-progressbar-fill {
  height: 3px;
  background-color: var(--secondary);
}
.page_testimonial .page_testimonial_swiper {
  overflow: hidden;
}
.page_testimonial .page_testimonial_swiper::before {
  content: '';
  display: block;
  width: 4.8rem;
  height: 4rem;
  margin-bottom: 2.9rem;
  background: url(../img/icon-maohao.svg) no-repeat center / contain;
}
.page_testimonial .page_testimonial_swiper .con {
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 3.8rem;
  min-height: 19.1rem;
}
.page_testimonial .page_testimonial_swiper .info {
  margin-top: 4.2rem;
}
.page_testimonial .page_testimonial_swiper .info .name {
  font-weight: 600;
  font-size: 2.4rem;
}
.page_testimonial .page_testimonial_swiper .info .desc {
  color: var(--text);
  margin-top: 1.2rem;
}
.page_testimonial .controls {
  gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-bottom: 2px;
}
.page_testimonial .pagination {
  color: #959ea5;
  font-weight: 500;
  font-size: 1.8rem;
  margin-top: 0.8rem;
}
.page_testimonial .pagination .current {
  color: var(--title);
  font-weight: 600;
  padding-right: 6px;
}
.page_projects {
  padding: 6.1rem 0 12rem;
}
.page_projects .page_projects_swiper {
  margin-top: 3.6rem;
  padding-bottom: 1rem;
}
.page_projects .swiper_btns.middle {
  top: 52%;
}
.partners_wrap {
  border-radius: 3.2rem;
  background-color: var(--secondary);
  color: #fff;
}
.partners_wrap .flex {
  padding: 3.2rem 0 3rem;
}
.partners_wrap h3,
.partners_wrap h2 {
  color: #dfe4ea;
  font-size: 2.2rem;
  padding-left: 1px;
  margin-bottom: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.004545em;
}
.partners_wrap .partners ul {
  gap: 3rem 4.91rem;
  display: flex;
  flex-wrap: wrap;
}
.partners_wrap .partners li {
  min-width: 8.3rem;
}
.partners_wrap .partners .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 6.5rem;
  height: 5.5rem;
  margin: 0 auto;
}
.partners_wrap .partners .logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.partners_wrap .partners .name {
  font-size: 1.4rem;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.057143em;
}
.nav_wrap .nav_list {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
}
.nav_wrap .nav_item {
  display: block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  font-weight: 600;
  color: #41505f;
  line-height: 1.2;
  border-radius: 2.1rem;
  border: 1px solid var(--border);
  padding: 0.68125em 1.625em;
}
.nav_wrap .nav_item.active,
.nav_wrap .nav_item:hover {
  color: #fff;
  border-color: var(--primary);
  background-color: var(--primary);
}
.blog_list .active a {
  border-color: #fff;
  box-shadow: 0 1rem 1rem rgba(188, 188, 188, 0.35);
}
.blog_list .active a::after {
  opacity: 1;
}
.blog_list .active a .more {
  color: var(--primary);
}
.blog_list .active a .more:hover::after {
  transform: rotate(45deg) scale(1.1);
}
.blog_list .active a .more::after {
  transform: rotate(45deg);
  background-color: var(--primary);
}
.blog_list a {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  border-radius: 2.2rem;
  border: 1px solid var(--border2);
  position: relative;
}
.blog_list a::after {
  content: '';
  box-sizing: border-box;
  border: 2px solid var(--primary);
  pointer-events: none;
  position: absolute;
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s;
  border-radius: 2.2rem;
}
.blog_list a:hover img {
  transform: scale(1.03);
}
.blog_list .img {
  border-radius: 2.2rem 2.2rem 0 0;
  margin: -1px -1px 0 -1px;
  padding-bottom: 64.35185185%;
}
.blog_list .info {
  flex: 1;
  padding: 9.359259% 7.407407% 4.53963%;
}
.blog_list .info .metas {
  color: #505151;
  font-size: 1.5rem;
  font-weight: 500;
}
.blog_list .info .metas .cat {
  color: var(--title);
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
}
.blog_list .info .metas i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--secondary);
  transform: translateY(-50%);
  margin: 0 8px;
}
.blog_list .info .title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.333333;
  margin-top: 1.2rem;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog_list .more {
  font-weight: 600;
  font-size: 1.8rem;
  transition: all 0.3s;
  padding: 6.018519% 7.407407%;
  gap: 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
}
.blog_list .more::after {
  content: '';
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  transition: all 0.3s;
  background: url(../img/arrot-tr-w.svg) no-repeat center / 22% var(--secondary);
}
.product_list .active a::after {
  opacity: 1;
}
.product_list .active .btn_quote {
  color: var(--primary);
}
.product_list .active .btn_quote:hover::after {
  transform: rotate(45deg) scale(1.1);
}
.product_list .active .btn_quote::after {
  transform: rotate(45deg);
  background-color: var(--primary);
}
.product_list a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--rd);
  border: 1px solid #e6eaed;
  outline: 1px solid transparent;
  --rd: 2.2rem;
}
.product_list a::after {
  position: absolute;
  left: -1.5px;
  top: -1.5px;
  bottom: -1.5px;
  right: -1.5px;
  content: '';
  border-radius: var(--rd);
  border: 2px solid var(--primary);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 1rem 1rem rgba(188, 188, 188, 0.35);
}
.product_list a:hover img {
  transform: scale(1.03);
}
.product_list .img {
  display: flex;
  justify-content: center;
  padding-bottom: 82.29813665%;
  background-color: #e6eaed;
  border-radius: var(--rd) var(--rd) 0 0;
  margin: -0.5px;
}
.product_list .img img {
  left: unset;
  /* width: 82.04334365%; */
}
.product_list .info {
  flex: 1;
  padding: 8.695652% 7.763975% 1.9%;
}
.product_list .info .cat {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  font-weight: 600;
  font-size: 1.4rem;
  border-radius: 1.3em;
  text-align: center;
  background-color: #fff;
  margin: 6.811% 5.57275542%;
  padding: 0.64286em 1.1429em;
}
.product_list .info .title {
  font-weight: 600;
  font-size: 2.2rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product_list .info .metas {
  color: #41505f;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 0.9rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product_list .btn_quote {
  font-weight: 600;
  transition: all 0.3s;
  padding: 5.279503% 7.763975%;
  gap: 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
}
.product_list .btn_quote::after {
  content: '';
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  transition: all 0.3s;
  background: url(../img/arrot-tr-w.svg) no-repeat center / 22% var(--secondary);
}
.active .project_item::after {
  opacity: 1;
}
.active .project_item .features .btn_c {
  background-color: var(--primary);
  transform: rotate(45deg);
}
.project_item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--rd);
  background-color: #fff;
  border: 1px solid var(--border2);
  --rd: 2.2rem;
}
.project_item::after {
  position: absolute;
  left: -1.5px;
  top: -1.5px;
  bottom: -1.5px;
  right: -1.5px;
  content: '';
  border-radius: var(--rd);
  border: 2px solid var(--primary);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 1rem 1rem rgba(188, 188, 188, 0.35);
}
.project_item:hover img {
  transform: scale(1.03);
}
.project_item .img {
  border-radius: var(--rd) var(--rd) 0 0;
  margin: -0.5px;
  padding-bottom: 64.20323326%;
}
.project_item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 9.0069284% 7.6212471% 6.0046189% 8.3140878%;
}
.project_item .info .text {
  flex: 1;
  border-bottom: 1px solid var(--border2);
  padding-bottom: 12.6374%;
}
.project_item .cat {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 600;
  background-color: #fff;
  border-radius: 1.3em;
  padding: 0.6857143em 0.893em;
  margin: 5.312% 4.619%;
}
.project_item .title {
  font-size: 2.4rem;
  line-height: 1.3333;
  font-weight: 600;
  color: #1c1c1c;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  max-width: 33rem;
}
.project_item .desc {
  line-height: 2.6rem;
  font-weight: 500;
  color: #41505f;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  margin-top: 0.6rem;
}
.project_item .features {
  display: grid;
  grid-template-columns: 1fr 4.6rem;
  align-items: start;
  gap: 2rem;
  margin-top: 1.9rem;
}
.project_item .features ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 27.3rem;
  gap: 2rem;
}
.project_item .features li strong {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1c1c1c;
}
.project_item .features li span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: #41505f;
  margin-top: 1px;
}
.project_item .features .btn_c {
  display: block;
  padding-bottom: 100%;
  border-radius: 50%;
  background: url("../img/arrot-tr-w.svg") no-repeat center / 17.4% var(--secondary);
  content: '';
  transition: all 0.3s;
  margin-top: 2px;
}

/*** global css ***/
.loading {
  position: relative;
}
.loading:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  background-color: rgba(255, 255, 255, 0.3);
}
.loading:after {
  content: '';
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.8rem solid #EFEFEF;
  border-top-color: var(--secondary);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  transition: all 0.3s;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: loading 1s linear infinite;
}
@keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  80% {
    transform: translate(-50%, -50%) rotate(320deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.wpcf7 form.wpcf7-form .wpcf7-list-item {
  margin: 0;
}
.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 {
  display: none;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output {
  color: #dc3232;
  margin: 12px 0 0;
  padding: 0;
  border: none;
  width: 100%;
  text-align: center;
}

.quote_modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  overflow: auto;
}
.quote_modal::-webkit-scrollbar {
  display: none;
}
.quote_modal .modal_content {
  width: calc(100% - 4rem);
  max-width: 76.8rem;
  margin: 5rem auto;
  border-radius: 3rem;
  background-color: #fff;
}

.search_drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 2rem 2rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.search_drawer.active {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.search_drawer .drawer_backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  cursor: default;
  background: rgba(10, 12, 22, 0.42);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.search_drawer.active .drawer_backdrop {
  opacity: 1;
}
.search_drawer .drawer_content {
  position: relative;
  width: 100%;
  max-width: 68rem;
  transform: translateY(-1.6rem) scale(0.96);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}
.search_drawer.active .drawer_content {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.search_drawer .search_panel {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px) saturate(1.85);
  -webkit-backdrop-filter: blur(48px) saturate(1.85);
  border-radius: 1.8rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 2.8rem 7rem rgba(0, 0, 0, 0.2),
    0 1rem 2.4rem rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.search_drawer .search_field {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 2rem 2.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.search_drawer .search_icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/icon-search.svg) no-repeat center / contain;
  opacity: 0.42;
}
.search_drawer .search_field input {
  flex: 1;
  min-width: 0;
  font-size: 2.2rem;
  line-height: 1.35;
  font-weight: 400;
  color: var(--title);
  background-color: transparent;
}
.search_drawer .search_field input::placeholder {
  color: rgba(90, 90, 104, 0.55);
}
.search_drawer .search_field input::-webkit-search-cancel-button,
.search_drawer .search_field input::-webkit-search-decoration {
  display: none;
}
.search_drawer .search_clear {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, background-color 0.2s;
  background: rgba(0, 0, 0, 0.08) url(../img/close.svg) no-repeat center / 1rem;
}
.search_drawer .search_clear.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.search_drawer .search_clear:hover {
  background-color: rgba(0, 0, 0, 0.14);
}
.search_drawer .search_submit {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.search_drawer .search_footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.4rem;
  padding: 1.4rem 2.2rem;
  font-size: 1.25rem;
  color: rgba(90, 90, 104, 0.72);
}
.search_drawer .search_footer kbd {
  display: inline-block;
  min-width: 2.2rem;
  padding: 0.15rem 0.55rem;
  margin: 0 0.25rem;
  font-size: 1.1rem;
  font-family: inherit;
  text-align: center;
  border-radius: 0.45rem;
  background: rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.btn_mega_menu .sub-menu {
  display: none;
}
header nav.mega_menu {
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  margin: 0;
  padding: 0;
  border: none;
  color: #fff;
  transition: none;
  border-radius: 0;
  background-color: #fff;
  display: none;
  padding-bottom: 1.4rem;
}
header nav.mega_menu .flex {
  position: relative;
  background-color: transparent;
}
.mega_menu .content::before {
  content: '';
  position: absolute;
  left: 1.4rem;
  top: 0;
  right: 1.4rem;
  z-index: 2;
  height: 3.7rem;
  background-image: linear-gradient(to top, transparent, var(--secondary));
}
.mega_menu .flex::before {
  content: '';
  position: absolute;
  left: -0.7rem;
  bottom: 0;
  right: -0.7rem;
  z-index: 2;
  height: 3.7rem;
  background-image: linear-gradient(to bottom, transparent, var(--secondary));
}
.mega_menu .content {
  width: calc(100% - 2.8rem);
  max-width: unset;
  padding: 0 3.7rem;
  border-radius: 3rem 0 3rem 3rem;
  background-color: var(--secondary);
  overflow: hidden;
}
.mega_menu .nav {
  flex: 1;
  max-width: 27.6rem;
  overflow: auto;
  max-height: calc(100vh - 160px);
  padding: 3.7rem 0;
}
.mega_menu .nav ul {
  gap: 1rem;
  display: grid;
}
.mega_menu .nav a {
  display: block;
  font-size: 1.8rem;
  transition: all .3s;
  padding: 1.2rem 2rem;
  border-radius: 1rem;
  border: 2px solid transparent;
}
.mega_menu .nav .active a {
  border-color: var(--primary);
  background-color: rgba(255, 255, 255, 0.1);
}
.mega_menu .list {
  width: 80%;
  display: none;
  overflow: auto;
  max-height: calc(100vh - 160px);
  padding: 3.7rem 0.7rem 3.7rem 0;
  margin-right: -0.7rem;
}
.mega_menu .list.active {
  display: block;
}
.mega_menu .list ul {
  gap: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mega_menu .list a {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
  outline: 2px solid transparent;
  transition: all .3s;
}
.mega_menu .list a:hover {
  outline-color: var(--primary);
}
.mega_menu .list a:hover img {
  transform: scale(1.05);
}
.mega_menu .list .img {
  padding-bottom: 70%;
  background-color: #e6eaed;
}
.mega_menu .list .title {
  color: var(--title);
  padding: 1.5rem 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}
.mega_menu_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_menu_overlay.active {
  opacity: 1;
  pointer-events: all;
}
/*** global css ***/

@media screen and (min-width: 769px) and (max-width: 1440px) {
  header .lt {
    flex: unset;
  }
  header .logo img {
    height: 40px;
  }
  header .logo .text strong {
    font-size: 2rem;
  }
  header nav {
    margin: 0;
  }
  header nav .menu > li > a {
    font-size: 15px;
  }
  header .rt {
    flex: unset;
  }
  header .btn_lang {
    height: 54px;
    font-size: 15px;
  }
  header .btn {
    line-height: 54px;
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  header .lt {
    margin-right: 0;
  }
  header nav .menu {
    gap: 8px;
  }
  header nav .menu > li > a {
    font-size: 14px;
  }
  header nav .sub-menu > li > a {
    font-size: 13px;
  }
  header .btn_lang {
    gap: 8px;
    height: 53px;
    font-size: 14px;
    padding: 0 10px;
  }
  header .btn {
    width: 53px;
    height: 53px;
    padding: 0;
    text-indent: -999px;
  }
  header .btn:hover {
    padding: 0;
  }
  header .btn::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background: url(../img/icon-contact.svg) no-repeat center / contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  header .btn::after {
    display: none;
  }
  .page_banner .img.img_ct {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .product_list .info .title {
    font-size: 2rem;
  }
  .tcon h1 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 1024px) {
  .mega_menu, .mega_overlay {
    display: none !important;
  }
  header.hide:has(nav.active) {
    transform: unset;
  }
  header.white nav .sub-menu,
  header.sticky nav .sub-menu {
    background-color: rgba(0, 0, 0, 0.02);
  }
  header > .flex {
    position: static;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
    --radius: 8px;
    border-radius: 0;
    border: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
    align-self: unset;
  }
  header nav.active {
    pointer-events: auto;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    transform: translate(0);
  }
  header nav > .close {
    position: absolute;
    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: 40px;
    height: 40px;
    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) !important;
    display: block;
    font-size: 16px;
    line-height: 26px;
    padding: 10px 12px !important;
    transition: all 0.3s;
    border-radius: var(--radius);
    margin: 0 !important;
  }
  header nav .menu > li > a:hover {
    color: var(--title);
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu > li.current-menu-item > a,
  header nav .menu > li.current-menu-parent > a {
    margin: 0;
    color: var(--title);
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu > li.active > .sub-menu {
    transform: translate(0);
  }
  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 {
    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);
    border: none;
  }
  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);
    color: var(--title);
    text-align: left;
  }
  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 .btn_menu {
    width: 53px;
    height: 53px;
    display: block;
    overflow: hidden;
    position: relative;
    text-indent: -999px;
    transition: all 0.3s;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background-color: rgba(255, 255, 255, 0.1);
  }
  header .btn_menu::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/nav-btn.svg) no-repeat center / contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: contrast(0) brightness(2);
    transition: all 0.3s;
  }
  header .btn_menu:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.2);
  }
  header .rt {
    min-height: 86px;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon h1 {
    font-size: 5rem;
  }
  .tcon h2 {
    font-size: 4rem;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 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: 15px;
    line-height: 42px;
    padding: 0 50px 0 20px;
  }
  .btn::after {
    width: 30px;
    height: 30px;
  }
  .btn:hover {
    padding: 0 35px 2px 35px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 44px;
    height: 44px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    position: static;
    width: 100%;
    max-width: unset;
    justify-content: flex-end;
    transform: translate(0);
    pointer-events: all;
    margin-top: 30px;
    padding: 0 20px;
  }
  .tcon em {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    border-width: 1px;
  }
  .tcon h1 {
    font-size: 38px;
  }
  .tcon h2 {
    font-size: 30px;
  }
  .tcon p,
  .tcon .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
  }
  div.head p + p {
    margin-top: 12px;
  }
  div.head p,
  div.head .desc {
    margin-top: 12px;
  }
  div.head .btn {
    margin-top: 20px;
  }
  div.head.flex .tcon {
    padding: 0;
  }
  div.head.flex .btn {
    margin: 0;
  }
  header {
    padding: 10px 10px 0;
  }
  header.white {
    top: -10px;
  }
  header.white .lt,
  header.sticky .lt {
    top: 0;
  }
  header.hide {
    top: -74px;
  }
  header .flex {
    border-top-right-radius: 10px;
  }
  header .lt {
    left: -1px;
    top: -1px;
    margin-right: 0;
    padding-left: 10px;
  }
  header .lt > img:nth-of-type(1) {
    left: calc(100% - 1px);
  }
  header .lt > img:nth-of-type(2) {
    width: 10px;
    height: 10px;
  }
  header .logo {
    gap: 10px;
  }
  header .logo img {
    height: 50px;
  }
  header .logo .text strong {
    font-size: 20px;
  }
  header .logo .text span {
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-top: 2px;
  }
  header .rt {
    gap: 14px;
    flex: unset;
    min-height: 64px;
    padding-right: 10px;
    padding-top: 0;
  }
  header .btn_lang {
    height: 44px;
    font-size: 14px;
    padding: 0 10px;
    gap: 8px;
  }
  header .btn_menu {
    width: 44px;
    height: 44px;
  }
  header .btn {
    margin-right: 0;
    line-height: 42px;
    padding-right: 45px;
  }
  footer {
    border-radius: 16px 16px 0 0;
  }
  footer .main {
    border-radius: 16px;
    padding: 50px 0;
  }
  footer .logo {
    gap: 12px;
  }
  footer .logo img {
    height: 60px;
  }
  footer .logo .text strong {
    font-size: 20px;
  }
  footer .logo .text span {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  footer .foot_navs {
    margin-top: 30px;
  }
  footer .foot_navs strong {
    font-size: 18px;
    margin-bottom: 20px;
  }
  footer .foot_navs strong::after {
    margin-top: 8px;
  }
  footer .foot_intro {
    width: 280px;
    margin: 0;
  }
  footer .foot_intro p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .foot_intro .social {
    margin-top: 20px;
  }
  footer .foot_nav li + li {
    margin-top: 12px;
  }
  footer .foot_nav a {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .bottom {
    padding: 15px 0;
  }
  footer .bottom ul {
    gap: 10px;
  }
  .side_conn {
    right: 20px;
  }
  .side_conn li + li {
    margin-top: 14px;
  }
  .side_conn a,
  .side_conn i {
    width: 40px;
    height: 40px;
    transform: scale(1);
  }
  .footer_contact {
    padding: 50px 0;
  }
  .footer_contact .lt {
    padding: 0;
  }
  .footer_contact .tcon p {
    margin-top: 12px;
  }
  .footer_contact .contact {
    padding: 0;
  }
  .footer_contact .contact li {
    gap: 10px;
    margin-top: 20px;
  }
  .footer_contact .contact .icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }
  .footer_contact .contact .tcon a,
  .footer_contact .contact .tcon span {
    font-size: 18px;
  }
  .footer_contact .rt {
    border-radius: 16px;
  }
  .form_warp {
    padding: 20px;
  }
  .form_warp .head {
    margin-bottom: 30px;
  }
  .form_warp .head .title {
    font-size: 22px;
  }
  .form_warp .head .desc {
    font-size: 14px;
  }
  .form_warp .wrap input,
  .form_warp .wrap select,
  .form_warp .wrap textarea {
    height: 46px;
    padding: 0 15px;
    border-radius: 10px;
  }
  .form_warp .wrap textarea {
    height: 90px;
    padding: 12px 15px;
  }
  .form_warp .wrap .phone .code {
    width: 100px;
  }
  .form_warp .wrap .phone .code input {
    padding-left: 30px;
  }
  .form_warp .wrap .phone .code::before {
    left: 15px;
  }
  .form_warp .wrap .verification {
    gap: 10px;
  }
  .form_warp .wrap .verification .con {
    width: 150px;
  }
  .form_warp .wrap .verification .question {
    font-size: 14px;
  }
  .form_warp .wrap .verification .refresh {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }
  .form_warp .tip {
    margin-top: 15px;
  }
  .page_testimonial {
    padding: 50px 0;
  }
  .page_testimonial .head {
    display: block;
  }
  .page_testimonial .head .rt {
    margin: 0;
  }
  .page_testimonial .main {
    gap: 5%;
    margin-top: 30px;
  }
  .page_testimonial .main .lt {
    width: 45%;
  }
  .page_testimonial .main .rt {
    width: 50%;
    padding: 20px;
    border-radius: 16px;
  }
  .page_testimonial .page_testimonial_project_swiper .img {
    border-radius: 16px;
  }
  .page_testimonial .page_testimonial_project_swiper .info .cat {
    left: 12px;
    top: 12px;
    font-size: 12px;
    padding: 8px 12px;
  }
  .page_testimonial .page_testimonial_project_swiper .info .title {
    font-size: 18px;
    margin-top: 20px;
  }
  .page_testimonial .swiper-pagination {
    margin-top: 30px;
  }
  .page_testimonial .page_testimonial_swiper::before {
    width: 30px;
    height: 30px;
    margin-bottom: 15px;
  }
  .page_testimonial .page_testimonial_swiper .con {
    font-size: 15px;
    line-height: 1.7;
    min-height: unset;
  }
  .page_testimonial .page_testimonial_swiper .info {
    margin-top: 30px;
  }
  .page_testimonial .page_testimonial_swiper .info .name {
    font-size: 18px;
  }
  .page_testimonial .page_testimonial_swiper .info .desc {
    font-size: 12px;
  }
  .page_testimonial .pagination {
    font-size: 14px;
  }
  .page_testimonial .pagination .current {
    padding-right: 4px;
  }
  .page_banner {
    padding: 10px 10px 0;
  }
  .page_banner .con {
    border-radius: 10px;
    padding-top: 74px;
  }
  .page_banner .flex {
    min-height: unset;
    padding: 30px 0;
  }
  .page_banner .flex .head {
    padding: 0;
  }
  .page_banner .flex .head .tcon {
    margin: 0;
  }
  .page_banner .flex .head .breadcrumbs {
    margin-top: 0;
  }
  .page_banner .breadcrumbs {
    margin-bottom: 10px;
    padding: 5px 14px;
  }
  .page_banner .breadcrumbs span {
    font-size: 14px;
  }
  .page_banner .img.img_ct {
    margin-right: 0;
  }
  .page_banner .tags {
    margin-top: 50px;
    font-size: 13px;
  }
  .page_banner .tags span {
    padding: 0.5em 1em;
  }
  .page_stories {
    padding: 50px 0;
  }
  .page_stories .head {
    gap: 0 20px;
  }
  .page_stories .head h2 {
    max-width: 350px;
  }
  .page_stories .head p {
    margin-top: 12px;
  }
  .page_stories .page_stories_swiper {
    margin-top: 30px;
    --rd: 10px;
  }
  .page_stories .item .title {
    font-size: 18px;
  }
  .page_stories .swiper_con {
    margin-top: 30px;
  }
  .page_projects {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_projects .swiper_content {
    overflow: unset;
    padding: 0 20px;
  }
  .page_projects .page_projects_swiper {
    margin-top: 30px;
    padding: 0;
  }
  .partners_wrap {
    border-radius: 10px;
  }
  .partners_wrap .flex {
    padding: 25px 0;
  }
  .partners_wrap h3,
  .partners_wrap h2 {
    font-size: 22px;
    padding: 0;
    margin-bottom: 0;
  }
  .partners_wrap .partners ul {
    gap: 20px;
  }
  .partners_wrap .partners li {
    min-width: unset;
  }
  .partners_wrap .partners .logo {
    width: 50px;
    height: 40px;
  }
  .partners_wrap .partners .name {
    font-size: 12px;
    margin-top: 5px;
  }
  .nav_wrap .nav_list {
    width: calc(100% + 40px);
    padding: 0 20px;
    margin: 0 -20px;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
  }
  .nav_wrap .nav_list::-webkit-scrollbar {
    display: none;
  }
  .nav_wrap .nav_list li {
    flex-shrink: 0;
  }
  .nav_wrap .nav_list .nav_item {
    white-space: nowrap;
  }
  .product_list a {
    --rd: 10px;
  }
  .product_list .info .cat {
    left: 12px;
    top: 12px;
    font-size: 12px;
    padding: 8px 12px;
    margin: 0;
  }
  .product_list .info .title {
    font-size: 18px;
  }
  .product_list .info .metas {
    font-size: 12px;
  }
  .product_list .btn_quote {
    font-size: 14px;
  }
  .product_list .btn_quote::after {
    width: 30px;
    height: 30px;
  }
  .blog_list a {
    border-radius: 16px;
  }
  .blog_list a::after {
    border-radius: 16px;
  }
  .blog_list .img {
    border-radius: 16px 16px 0 0;
  }
  .blog_list .info .metas {
    font-size: 13px;
  }
  .blog_list .info .metas .cat {
    font-size: 13px;
  }
  .blog_list .info .title {
    font-size: 16px;
    margin-top: 10px;
  }
  .blog_list .more {
    font-size: 16px;
  }
  .blog_list .more::after {
    width: 30px;
    height: 30px;
  }
  .project_item {
    --rd: 10px;
  }
  .project_item .info {
    padding: 20px;
  }
  .project_item .info .text {
    padding-bottom: 20px;
  }
  .project_item .info .cat {
    font-size: 13px;
  }
  .project_item .info .title {
    font-size: 18px;
  }
  .project_item .info .desc {
    line-height: 1.5;
    margin-top: 10px;
  }
  .project_item .features {
    margin-top: 16px;
    grid-template-columns: 1fr 40px;
    gap: 14px;
  }
  .project_item .features ul {
    gap: 16px;
  }
  .project_item .features li strong {
    font-size: 18px;
  }
  .project_item .features li span {
    font-size: 13px;
    margin-top: 0;
  }
  .project_item .features .btn_c {
    margin: 0;
  }

  /*** global css ***/
  .wpcf7 form.wpcf7-form .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .search_drawer {
    padding: max(7vh, env(safe-area-inset-top, 0px)) 1.6rem 1.6rem;
  }
  .search_drawer .drawer_content {
    max-width: none;
  }
  .search_drawer .search_panel {
    border-radius: 1.4rem;
  }
  .search_drawer .search_field {
    padding: 1.5rem 1.6rem;
    gap: 1rem;
  }
  .search_drawer .search_icon {
    width: 2rem;
    height: 2rem;
  }
  .search_drawer .search_field input {
    font-size: 1.6rem;
  }
  .search_drawer .search_clear {
    width: 3rem;
    height: 3rem;
    background-size: 1.1rem;
  }
  .search_drawer .search_footer {
    display: none;
  }
  /*** global css ***/
}
@media screen and (max-width: 576px) {
  header .logo {
    gap: 8px;
  }
  header .logo img {
    height: 40px;
  }
  header .logo .text strong {
    font-size: 18px;
  }
  header .logo .text span {
    font-weight: 400;
  }
  header .rt {
    gap: 12px;
    min-height: 64px;
  }
  header .btn_lang {
    width: 40px;
    height: 40px;
    text-indent: -999px;
    overflow: hidden;
    padding: 0;
    position: relative;
  }
  header .btn_lang::before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  header .btn_lang::after {
    display: none;
  }
  header .btn_menu {
    width: 40px;
    height: 40px;
  }
  header .btn {
    display: none;
  }
  footer .foot_navs {
    display: block;
  }
  footer .foot_intro {
    width: 100%;
    margin-bottom: 30px;
  }
  footer .foot_nav {
    width: 100%;
  }
  footer .foot_nav.active strong {
    border-color: rgba(255, 255, 255, 0.7);
  }
  footer .foot_nav.active strong::after {
    transform: rotate(180deg);
  }
  footer .foot_nav strong {
    gap: 20px;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    transition: all 0.3s;
  }
  footer .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    margin: 0;
    transition: all 0.3s;
    background: url(../img/icon-select-w.svg) no-repeat center / contain;
  }
  footer .foot_nav div {
    display: none;
    padding: 0 20px 30px;
  }
  footer .bottom .flex {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .footer_contact .flex {
    display: block;
  }
  .footer_contact .rt {
    width: 100%;
    margin-top: 30px;
  }
  .page_testimonial .main {
    display: block;
  }
  .page_testimonial .main .lt {
    width: 100%;
  }
  .page_testimonial .main .rt {
    width: 100%;
    margin-top: 30px;
  }
  .page_stories {
    overflow: hidden;
  }
  .page_stories .head {
    display: block;
  }
  .page_stories .page_stories_swiper {
    overflow: unset;
  }
  .page_stories .page_stories_swiper .swiper-slide {
    max-width: 90%;
    padding: 0;
  }
  .page_stories .page_stories_swiper .swiper-slide.active {
    max-width: 90%;
  }
  .page_stories .page_stories_swiper .item {
    position: relative;
  }
  .page_stories .page_stories_swiper .item .img {
    position: relative;
    padding-bottom: 58.84353741%;
  }
  .page_stories .page_stories_swiper .item .img::after {
    opacity: 1;
  }
  .page_stories .page_stories_swiper .item .title {
    transform: translateY(0);
    opacity: 1;
  }
  .page_banner .flex {
    padding-bottom: 50px;
  }
  .page_banner .tags {
    display: none;
  }
  .page_banner .img.img_ct {
    width: 100%;
    order: -1;
  }
}
