* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #006ab4;
  --secondary: #000;
  --title: #232323;
  --text: #474747;
  --text_op: rgba(35, 24, 21, 0.8);
  --bg: #f6f8f9;
  --bg2: linear-gradient(52.8763deg, #e1e5ea -13.86%, #fff);
}
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);
}
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%;
  word-break: normal;
  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;
}
.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;
  word-break: break-word;
  color: var(--title);
  font-family: "Inter", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img {
  position: absolute;
  left: 0;
  top: 0;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  pointer-events: none;
}
.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;
}
.btn {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  border-radius: 0.6rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 6.2rem;
  padding: 0 3.5rem 0 3.4rem;
  min-width: 18.6rem;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn_line {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  background-color: transparent;
  border: 1px solid rgba(35, 35, 35, 0.5);
  color: var(--title);
  border-radius: 0.6rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 6.3rem;
  padding: 0 3.5rem 0 3.4rem;
}
.btn_line:hover {
  background-color: var(--primary);
  color: #fff;
}
.btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  gap: 1.7rem;
  letter-spacing: 0.1px;
}
.btn_i::before {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  content: '';
  transition: all 0.3s;
  flex-shrink: 0;
  border-radius: 50%;
  background: url("../img/arrow-r-w.svg") no-repeat center / 30% var(--title);
}
.btn_i:hover {
  gap: 2rem;
}
.btn_i:hover::before {
  background-color: var(--primary);
  transform: rotate(-45deg);
}
.btn_i.rv {
  flex-direction: row-reverse;
  justify-content: space-between;
  font-size: 1.8rem;
}
.btn_i.rv:hover {
  padding-left: 1rem;
}
.btn_i.theme::before {
  background-color: var(--primary);
}
.btn_circle {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background: url("../img/arrow-r-w.svg") no-repeat center / 32% var(--title);
  transition: all 0.3s;
  width: 5rem;
}
.btn_circle::after {
  padding-bottom: 100%;
  display: block;
  content: '';
}
.btn_circle:hover {
  background-color: var(--primary);
  transform: rotate(-45deg);
}
.swiper_btns {
  gap: 3.7rem;
  display: flex;
}
.swiper_btns div {
  width: 7rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / 30.88%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--title);
  background-color: var(--title);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(22, 22, 22, 0.4);
}
.swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(0);
}
.swiper_btns .swiper-button-lock {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 172.8rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.head.bn p {
  font-size: 2rem;
  color: var(--text_op);
  letter-spacing: 0.09px;
}
.head .subtitle {
  display: inline-grid;
  grid-template-columns: 1.3rem 1fr;
  align-items: center;
  font-size: 1.6rem;
  color: #61666b;
  text-transform: uppercase;
  gap: 0.4rem;
  margin-bottom: 2rem;
}
.head .subtitle::before {
  display: block;
  padding-bottom: 92.31%;
  content: '';
  background: url("../img/icon-subtitle.svg") no-repeat center / contain;
}
.head h1 {
  font-size: 6.4rem;
  line-height: 1.203125;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.head h2 {
  font-size: 4.8rem;
  line-height: 1.29166667;
  font-weight: 600;
  letter-spacing: 1.3px;
}
.head p {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: var(--text);
}
header {
  position: sticky;
  top: -94px;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.3s;
  background-color: #fff;
}
header.opt {
  top: 0;
}
header .content {
  width: calc(100% - 4rem);
  max-width: 180rem;
}
header .lt {
  display: flex;
  align-items: center;
  padding-top: 0.25%;
  margin-right: 4.7%;
}
header .lt .logo {
  display: block;
  position: relative;
}
header .lt .logo img {
  display: block;
  width: auto;
  height: 47.9963px;
}
header .lt .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .menu {
  display: flex;
  gap: 3.9rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li::after {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  background-color: var(--primary);
  transition: all 0.3s;
  opacity: 0;
}
header nav .menu > li > a {
  display: block;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s;
  line-height: 92px;
  padding-top: 2px;
}
header nav .menu > li.menu-item-has-children > a {
  position: relative;
  padding-right: 14px;
}
header nav .menu > li.menu-item-has-children > a::after {
  position: absolute;
  width: 8px;
  height: 8px;
  right: 0;
  top: 52.5%;
  transform: translateY(-50%);
  content: '';
  background: url("../img/icon-select.svg") no-repeat center / contain;
  transition: all 0.3s;
}
header nav .menu > li.current-menu-item::after,
header nav .menu > li.current-menu-parent::after,
header nav .menu > li:hover::after {
  opacity: 1;
}
header nav .menu > li:hover ul {
  opacity: 1;
  pointer-events: all;
  padding: 16px 24px;
}
header nav .menu > li:hover ul li {
  transform: translate(0);
}
header nav .menu > li.btn_mega_menu .sub-menu {
  display: none;
}
header nav .sub-menu {
  left: -24px;
  position: absolute;
  min-width: 200px;
  background-color: #fff;
  padding: 16px 24px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}
header nav .sub-menu > li {
  margin-bottom: 5px;
  transition: all 0.4s;
  transform: translateY(-16px);
}
header nav .sub-menu > li > a {
  display: block;
  padding: 8px 0;
  transition: all 0.3s;
}
header nav .sub-menu > li > a:hover {
  color: var(--primary);
}
header .btns {
  gap: 4.1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 94px;
  padding-top: 1px;
}
header .btns .btn_search {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: url(../img/icon-search.svg) no-repeat center / contain;
  margin-top: 2px;
}
header .btns .btn_lang {
  width: 23px;
  height: 23px;
  cursor: pointer;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
  margin-top: 2px;
}
header .btns .btn_menu {
  display: none;
}
header .btns .btn {
  font-size: 1.6rem;
  min-width: unset;
  line-height: 5.8rem;
  padding: 0 3.5rem;
  margin-left: -1px;
}
footer .main {
  padding: 6.8rem 0 15rem;
}
footer .main strong {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  color: #0c0c0c;
  text-transform: uppercase;
}
footer .main .flex {
  gap: 5.9rem 2rem;
}
footer .main .lt > strong,
footer .main .rt > strong {
  font-size: 1.8rem;
  font-weight: 400;
  color: #001119;
  position: relative;
  border-bottom: 1px solid rgba(12, 12, 12, 0.15);
  padding-bottom: 2.1rem;
  margin-bottom: 4.6rem;
}
footer .main .lt > strong::after,
footer .main .rt > strong::after {
  width: 3.1rem;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -2px;
  content: '';
  border-radius: 10px;
  background-color: var(--primary);
}
footer .main .lt {
  flex: 1;
  max-width: 92.8rem;
}
footer .main .rt {
  width: 34.7rem;
}
footer .main .nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}
footer .main .slide_logo {
  width: 100%;
}
footer .main .slide_logo .logo {
  display: block;
  position: relative;
  max-width: 30.1rem;
}
footer .main .slide_logo .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .main .slide_logo .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .main .slide_obj {
  min-width: 23%;
}
footer .main .slide_obj strong {
  margin-bottom: 2.4rem;
}
footer .main .slide_obj li a {
  font-size: 1.8rem;
  color: #515151;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .main .slide_obj li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .main .slide_obj li + li {
  margin-top: 2rem;
}
footer .main .slide_connect li {
  position: relative;
  padding-left: 4.3rem;
}
footer .main .slide_connect li::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  background: no-repeat top left / contain;
  position: absolute;
  left: 0;
  top: 0;
}
footer .main .slide_connect li a {
  color: #0c0c0c;
}
footer .main .slide_connect li + li {
  margin-top: 1.9rem;
}
footer .main .slide_connect .phone::before {
  background-image: url(../img/icon-phone.svg);
  background-size: 80%;
}
footer .main .slide_connect .email::before {
  background-image: url(../img/icon-email.svg);
}
footer .main .slide_follow {
  margin-top: 6.8rem;
}
footer .main .slide_follow strong {
  margin-bottom: 3.8rem;
}
footer .main .slide_follow .social {
  gap: 2rem 3.8rem;
  display: flex;
  flex-wrap: wrap;
}
footer .main .slide_follow .social a {
  opacity: 1;
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
footer .main .slide_follow .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
footer .main .slide_follow .social a:hover {
  transform: scale(1.1);
}
footer .main .slide_follow .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .main .slide_follow .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
footer .main .slide_follow .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .main .slide_follow .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
footer .main .slide_follow .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .bottom {
  padding: 3.9rem 0;
}
footer .bottom .flex {
  gap: 3rem 2.1rem;
  padding-right: 17rem;
}
footer .bottom p,
footer .bottom a {
  font-size: 1.437rem;
  color: #0c0c0c;
  letter-spacing: -0.13px;
}
footer .bottom a {
  opacity: 0.68;
  display: block;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .bottom a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .bottom ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 0;
}
footer .bottom ul li {
  display: flex;
  align-items: center;
}
footer .bottom ul li::before {
  width: 1px;
  height: 1.3rem;
  background-color: #0c0c0c;
  opacity: 0.15;
  content: '';
  display: inline-block;
  margin: 0 1.5rem;
}
footer .bottom ul li:first-child::before {
  margin-left: 0;
}
footer .footer_float {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99;
  pointer-events: none;
  bottom: 2.1rem;
}
footer .footer_float .content {
  display: flex;
}
footer .footer_float #backtop {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
footer .footer_float #backtop span {
  font-size: 1.437rem;
  color: rgba(12, 12, 12, 0.68);
  pointer-events: none;
  transition: all 0.4s, opacity 0.3s;
  transform: translateX(100%);
  opacity: 0;
}
footer .footer_float #backtop i {
  width: 5.6rem;
  display: block;
  margin-left: auto;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--primary);
  flex-shrink: 0;
  pointer-events: all;
}
footer .footer_float #backtop i::after {
  padding-bottom: 100%;
  display: block;
  content: '';
  background: url("../img/icon-top.svg") no-repeat center / contain;
}
footer .footer_float #backtop i:hover {
  transform: scale(1.1);
}
footer .footer_float #backtop:hover span {
  transform: translateX(0);
  opacity: 1;
}
footer .footer_float #backtop.active {
  transform: translateY(0);
  opacity: 1;
}
.footer_started {
  background-color: #e7f1f7;
  overflow: hidden;
}
.footer_started .flex {
  min-height: 49.9rem;
  padding: 1.5rem 0;
}
.footer_started .head {
  flex: 1;
  max-width: 67.6rem;
  width: 100%;
  padding: 4.6rem 0 4rem;
}
.footer_started h2 {
  letter-spacing: 1.2px;
}
.footer_started .btn {
  margin-top: 4rem;
  padding: 0 4rem;
}
.footer_started .img {
  width: 53.8194444%;
  height: auto;
  align-self: flex-end;
  margin-left: -5%;
}
.footer_started .img:hover img {
  transform: scale(1.02);
}
.footer_started .logo_op {
  width: 37.5%;
  opacity: 0.17;
  top: 0;
  right: -14.7916667%;
}
.footer_services {
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, transparent, #dddddd 34%, #dddddd 66%, transparent) 1;
}
.footer_services .list {
  overflow: hidden;
}
.footer_services .list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-left: -6.55%;
  margin-right: -6.3%;
}
.footer_services .list .active i {
  background-color: var(--primary);
}
.footer_services .item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 5.5rem;
  height: 100%;
  align-items: end;
  gap: 2rem;
  padding: 7.9% 11.3% 5% 11.6%;
}
.footer_services .item::after {
  width: 1px;
  height: 45%;
  position: absolute;
  right: 0;
  top: 54%;
  transform: translateY(-50%);
  content: '';
  background-color: rgba(76, 76, 76, 0.29);
}
.footer_services .item .info strong {
  font-size: 2.4rem;
  font-weight: 500;
  color: #0c0c0c;
  letter-spacing: 0.3px;
}
.footer_services .item .info p {
  line-height: 2.3rem;
  color: #666666;
  max-width: 37.7rem;
  margin-top: 1.1rem;
  letter-spacing: -0.09px;
}
.footer_services .item i {
  padding-bottom: 100%;
  border-radius: 50%;
  display: block;
  content: '';
  transition: all 0.3s;
  background: url("../img/ft-arrow.svg") no-repeat center / 16.3636% var(--title);
  margin-bottom: 0.8rem;
}
.quote_modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 999;
  align-items: center;
  overflow-y: auto;
  display: none;
  opacity: 0;
}
.quote_modal .quote_box {
  position: relative;
  width: calc(100% - 4rem);
  max-width: 103.5rem;
  margin: 5rem auto;
  border-radius: 1.6rem;
  background-color: #fff;
  display: flex;
}
.quote_modal .quote_box .close {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  content: '';
  transition: all 0.3s;
  cursor: pointer;
  z-index: 2;
  top: 2.1rem;
  right: 2rem;
  background: url("../img/close.svg") no-repeat center / contain;
}
.quote_modal .quote_box .close:hover {
  transform: rotate(360deg);
}
.quote_modal .img {
  width: 44.681%;
  border-radius: 1.6rem;
  --h: 147.84%;
}
.quote_modal .img:hover img {
  transform: scale(1.02);
}
.quote_modal .rt {
  flex: 1;
  width: 100%;
  align-self: center;
}
.quote_modal form {
  display: grid;
  padding: 4.8% 9.5% 4% 10.1222%;
  gap: 1.5rem;
}
.quote_modal form .title {
  font-size: 3.6rem;
  font-weight: 600;
  color: #161616;
  margin-bottom: 1.1rem;
  letter-spacing: 0.7px;
}
.quote_modal form span {
  width: 100%;
}
.quote_modal form input {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  color: #161616;
  border-radius: 0.8rem;
  border: 1px solid #cecece;
  background-color: transparent;
  height: 5.5rem;
  padding: 0 1.9rem;
}
.quote_modal form input::placeholder {
  color: #161616;
}
.quote_modal form input:focus {
  border-color: var(--primary);
}

.quote_modal form textarea{
  display: block;
  width: 100%;
  font-size: 1.8rem;
  color: #161616;
  border-radius: 0.8rem;
  border: 1px solid #cecece;
  background-color: transparent;
  height: 12rem;
  padding: 1.6rem 1.9rem;
}
.quote_modal form textarea::placeholder {
  color: #161616;
}
.quote_modal form textarea:focus {
  border-color: var(--primary);
}

.quote_modal form .drop_area {
  position: relative;
  background-color: var(--bg);
  border-radius: 1.1rem;
  padding: 1.8rem 2rem 1.8rem;
  margin-top: 0.5rem;
  cursor: pointer;
}
.quote_modal form .drop_area input[type=file] {
  display: none;
}
.quote_modal form .drop_area .text {
  text-align: center;
}
.quote_modal form .drop_area .text strong {
  font-size: 1.8rem;
  font-weight: 500;
  color: #000000;
}
.quote_modal form .drop_area .text p {
  font-size: 1.3rem;
  color: #878787;
  margin-top: 1.1rem;
}
.quote_modal form .drop_area .text .btn {
  font-size: 1.2rem;
  font-weight: 500;
  border: none;
  line-height: 2.7rem;
  border-radius: 100px;
  color: #191919;
  background-color: #fff;
  margin-top: 1rem;
  min-width: unset;
  padding: 0 2rem;
}
.quote_modal form .drop_area .text .btn:hover {
  background-color: var(--primary);
  color: #fff;
}
.quote_modal form span:has(input[type=submit]) {
  margin-top: 1.5rem;
}
.quote_modal form input[type=submit] {
  transition: all 0.3s;
  text-align: center;
  border-radius: 0.6rem;
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 500;
  height: auto;
  line-height: 6.2rem;
}
.quote_modal form input[type=submit]:hover {
  background-color: transparent;
  color: var(--primary);
}
.page_services {
  padding: 11.5rem 0 5.8rem;
  overflow: hidden;
}
.page_services.bg {
  background-color: var(--bg);
  padding: 13.9rem 0 14.2rem;
}
.page_services .head {
  gap: 0 1.9rem;
}
.page_services .head.center {
  display: block;
}
.page_services .head.center .subtitle {
  width: auto;
}
.page_services .head.center h2 {
  max-width: unset;
}
.page_services .subtitle {
  width: 100%;
  margin-bottom: 1.9rem;
}
.page_services h2 {
  max-width: 50rem;
}
.page_services p {
  max-width: 58.2rem;
  margin-bottom: 1.1rem;
}
.page_services .page_services_swiper {
  overflow: hidden;
  border-radius: 1.6rem;
  margin-top: 6.2rem;
}
.page_services .swiper_btns{
  display: none;
}
.page_services_swiper ul.swiper-wrapper{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2.4rem;
  transform: none !important;
}
.page_services_swiper ul.swiper-wrapper li.swiper-slide{
  margin: 0 !important;
}

.page_services .page_services_swiper .swiper-slide {
  max-width: 342px;
}
.page_services .page_services_swiper .active .item::after {
  opacity: 1;
}
.page_services .page_services_swiper .active .btn_i::before {
  background-color: var(--primary);
}
.page_services .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  border-radius: 1.6rem;
  border: 1px solid rgba(205, 209, 211, 0.54);
}
.page_services .item::after {
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 1.6rem;
  left: -1px;
  top: -1px;
  border: 2px solid var(--primary);
  pointer-events: none;
  content: '';
  transition: all 0.3s;
  opacity: 0;
}
.page_services .item:hover img {
  transform: scale(1.02);
}
.page_services .item .img {
  padding-bottom: 78.299%;
  border-radius: 1.6rem 1.6rem 0 0;
  background-image: var(--bg2);
}
.page_services .item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10.2941% 9.4118% 6.1765%;
}
.page_services .item .info .title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.2px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page_services .item .info .desc {
  font-size: 1.7rem;
  line-height: 2.6rem;
  color: var(--text);
  margin-top: 1.7rem;
  margin-bottom: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page_services .item .info .btn_i {
  margin-top: 1.5rem;
}
.page_services .swiper_btns {
  max-width: 167.8rem;
  top: 51.1%;
}
.page_showcases {
  padding: 11.5rem 0 11.6rem;
  overflow: hidden;
}
.page_showcases .page_showcases_swiper {
  margin-top: 8.2rem;
}
.page_showcases .page_showcases_swiper .swiper-slide {
  max-width: 36.5rem;
}
.page_showcases .page_showcases_swiper .active .pic {
  border-color: var(--primary);
}
.page_showcases .page_showcases_swiper .active .wrap {
  transform: translateY(0);
  opacity: 1;
}
.page_showcases .item {
  display: block;
  height: 100%;
}
.page_showcases .item:hover img {
  transform: scale(1.02);
}
.page_showcases .item .pic {
  position: relative;
  border-radius: 2.1rem;
  border: 1px solid rgba(79, 79, 79, 0.18);
  overflow: hidden;
  transition: all 0.3s;
}
.page_showcases .item .img {
  width: 100%;
  padding-bottom: 115.385%;
}
.page_showcases .item .title {
  font-size: 2.2rem;
  font-weight: 500;
  color: #000000;
  margin-top: 2.4rem;
  letter-spacing: 0.2px;
}
.page_showcases .item .wrap {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-color: rgba(0, 106, 180, 0.88);
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: #fff;
  transform: translateY(50%);
  opacity: 0;
  transition: all 0.5s, opacity 0.4s;
  padding: 10.4683% 10.4683% 6.0606%;
}
.page_showcases .item ul {
  flex: 1;
  overflow-y: auto;
}
.page_showcases .item ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem 0 1.7rem;
}
.page_showcases .item ul strong {
  opacity: 0.6;
  font-weight: 300;
  font-size: 1.8rem;
  letter-spacing: 0.2px;
}
.page_showcases .item ul p {
  font-size: 2rem;
  margin-top: 0.9rem;
  letter-spacing: 0.15px;
}
.page_showcases .item .btn_i {
  color: #fff;
  margin-top: 2rem;
}
.page_showcases .item .btn_i::before {
  background-image: url("../img/arrow-r.svg");
  background-color: #fff;
}
.page_showcases .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  gap: 1.3rem;
  margin-top: 8.4rem;
}
.page_showcases .pagination:has(.swiper-pagination-lock) {
  opacity: 0;
}
.page_showcases .pagination .total {
  opacity: 0.5;
}
.page_showcases .pagination .current {
  font-weight: 500;
}
.page_showcases .pagination div.swiper-pagination.swiper-pagination-progressbar {
  width: 13.8rem;
}
.page_numbers {
  padding-top: 4.2rem;
}
.page_numbers h2 {
  font-size: 3rem;
  font-weight: 500;
  color: #001119;
  letter-spacing: 0.8px;
}
.page_numbers .nums {
  margin-top: -0.8rem;
  overflow: hidden;
}
.page_numbers .nums ul {
  display: flex;
  gap: 2rem 1.1rem;
  height: 38.5rem;
  min-height: max-content;
}
.page_numbers .nums li {
  flex: 1;
  border-radius: 1.1rem 1.1rem 0 0;
  display: flex;
  flex-direction: column;
  color: #fff;
  gap: 2rem;
  padding: 1.875% 2.8472% 2.2222% 2.2222%;
  height: 100%;
  margin-top: auto;
  min-height: max-content;
}
.page_numbers .nums li.black_font {
  color: var(--text);
}
.page_numbers .nums li.black_font .wrap {
  color: var(--primary);
}
.page_numbers .nums li.black_font .wrap .num {
  color: var(--title);
}
.page_numbers .nums .wrap {
  font-size: 4.4rem;
  font-weight: 600;
  white-space: nowrap;
}
.page_numbers .nums .wrap .num {
  font-size: 5.2rem;
}
.page_numbers .nums .label {
  font-size: 1.8rem;
  margin-top: auto;
  text-align: right;
}
.page_advantages {
  background-color: var(--bg);
  padding: 12.6rem 0 8.3rem;
}
.page_advantages .main {
  margin-top: 5.9rem;
  gap: 2rem 0;
}
.page_advantages .main .lt {
  width: 74.44444%;
}
.page_advantages .main .rt {
  width: 28.05555556%;
  margin-left: -5%;
  margin-bottom: 4.5%;
}
.page_advantages .page_advantages_swiper {
  overflow: hidden;
}
.page_advantages .page_advantages_swiper .img {
  width: 61.9403%;
  border-radius: 1.7rem;
  --h: 95.933735%;
}
.page_advantages .page_advantages_swiper .img:hover img {
  transform: scale(1.02);
}
.page_advantages .page_advantages_swiper .info {
  flex: 1;
  max-width: 32.1rem;
  width: 100%;
  padding-bottom: 4%;
  font-size: 1.8rem;
  line-height: 1.777778;
}
.page_advantages .page_advantages_swiper .info h3 {
  font-size: 3.8rem;
  line-height: 1.31578947;
  font-weight: 600;
}
.page_advantages .page_advantages_swiper .info p {
  color: var(--text);
  margin-top: 3.7rem;
}
.page_advantages .page_advantages_swiper .info .btn {
  margin-top: 5.4rem;
}
.page_advantages .page_advantages_swiper .info ul {
  margin-top: 1.6rem;
  font-weight: 600;
  color: #000;
  line-height: 2.4rem;
  display: none;
}
.page_advantages .page_advantages_swiper .info ul li + li {
  margin-top: 1.2rem;
}
.page_advantages .page_advantages_swiper .info ul li {
  position: relative;
  padding-left: 3.8rem;
}
.page_advantages .page_advantages_swiper .info ul li::before {
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  left: 0;
  top: 0.3rem;
  content: '';
  background: url("../img/gou.svg") no-repeat center / contain;
}
.page_advantages .nav_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}
.page_advantages .nav_list .nav_item {
  position: relative;
  font-size: 2.2rem;
  font-weight: 500;
  color: #5f6368;
  transition: all 0.3s;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 5rem;
  align-items: center;
  border: 1px solid rgba(79, 79, 79, 0.18);
  border-radius: 1.4rem;
  overflow: hidden;
  gap: 2rem;
  padding: 1.8rem 2.3rem 1.7rem 16.1%;
  letter-spacing: 0.2px;
}
.page_advantages .nav_list .nav_item::before {
  border-radius: 1.4rem;
  width: 0;
  height: calc(100% + 2px);
  position: absolute;
  right: -1px;
  top: -1px;
  content: '';
  z-index: 1;
  transition: all 0.3s;
  background-color: var(--primary);
}
.page_advantages .nav_list .nav_item.active {
  color: #fff;
}
.page_advantages .nav_list .nav_item.active::before {
  width: 100%;
}
.page_advantages .nav_list .nav_item.active .icon {
  filter: contrast(0) brightness(2);
}
.page_advantages .nav_list .nav_item .icon {
  position: relative;
  z-index: 2;
  padding-bottom: 100%;
  transition: all 0.3s;
  filter: contrast(0) brightness(1);
}
.page_advantages .nav_list .nav_item .title {
  position: relative;
  z-index: 2;
  margin-top: 2%;
}
.page_process {
  padding: 13.3rem 0 13.9rem;
  overflow: hidden;
}
.page_process .head {
  display: grid;
  grid-template-columns: 26.458333% 1fr;
  gap: 3rem;
  align-items: start;
}
.page_process .head.center {
  display: block;
}
.page_process .head.center .subtitle {
  margin-top: 0;
}
.page_process .head.center p {
  max-width: 93.6rem;
  margin: 2.8rem auto 0;
}
.page_process .subtitle {
  margin-top: 1.2rem;
}
.page_process p {
  grid-column: 2;
  max-width: 76.3rem;
}
.page_process .page_process_swiper {
  margin-top: 5.7rem;
}
.page_process .page_process_swiper .swiper-slide {
  max-width: 35.6rem;
}
.page_process .page_process_swiper .active .bg {
  opacity: 0;
}
.page_process .page_process_swiper .active .border {
  opacity: 1;
}
.page_process .page_process_swiper .active .order {
  color: #fff;
  background-color: var(--primary);
}
.page_process .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
  min-height: 48.6rem;
  padding: 12.6404% 10.9551% 9.2697%;
}
.page_process .item > img {
  object-fit: contain;
  transition: all 0.3s;
}
.page_process .item .border {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
  opacity: 0;
}
.page_process .item .info {
  flex: 1;
}
.page_process .item .info h3 {
  font-size: 3rem;
  line-height: 4.4rem;
  font-weight: 600;
  max-width: 23rem;
  letter-spacing: 0.7px;
}
.page_process .item .info p {
  font-size: 1.8rem;
  line-height: 2.9rem;
  color: var(--text);
  margin-top: 2.7rem;
}
.page_process .item .icon {
  width: 8rem;
  height: 8rem;
  margin-top: 2rem;
}
.page_process .item .order {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 5.3rem;
  height: 5.3rem;
  background-color: #d1e4f1;
  font-size: 1.7rem;
  font-weight: 500;
  color: #231815;
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.page_process p.center:has(.btn) {
  max-width: unset;
  margin-top: 4.3rem;
}
.page_testimonials {
  padding: 12.6rem 0 2.8rem;
  overflow: hidden;
}
.page_testimonials.bg {
  background-color: var(--bg);
}
.page_testimonials.bg .page_testimonials_swiper .icon > img {
  filter: unset;
}
.page_testimonials .subtitle {
  margin-bottom: 2.3rem;
}
.page_testimonials .head {
  padding-bottom: 0.3rem;
}
.page_testimonials .page_testimonials_swiper {
  margin-top: 5.2rem;
}
.page_testimonials .page_testimonials_swiper .swiper-slide {
  max-width: 52.2rem;
}
.page_testimonials .page_testimonials_swiper .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  color: #fff;
  border-radius: 2.2rem;
  padding: 5.1724% 8.046% 7.6628%;
  min-height: 52rem;
}
.page_testimonials .page_testimonials_swiper .icon {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  width: 18.774%;
  padding-bottom: 18.774%;
}
.page_testimonials .page_testimonials_swiper .icon > img {
  filter: contrast(0) brightness(2);
  top: -1px;
}
.page_testimonials .page_testimonials_swiper .icon::after {
  position: absolute;
  width: 60.2%;
  padding-bottom: 60.2%;
  right: 0;
  top: 0;
  content: '';
  border-radius: 1.2rem;
  background: url("../img/douhao-w.svg") no-repeat center / 35.6% var(--primary);
}
.page_testimonials .page_testimonials_swiper .client {
  height: 7rem;
  width: auto;
  filter: contrast(0) brightness(2);
}
.page_testimonials .page_testimonials_swiper .star {
  --w: 16.2rem;
  width: var(--w);
  margin-top: 4.3rem;
}
.page_testimonials .page_testimonials_swiper .star::after {
  content: '';
  display: block;
  padding-bottom: 14.1975%;
  width: var(--value);
  background: url("../img/star.svg") no-repeat left center / var(--w) 100%;
}
.page_testimonials .page_testimonials_swiper .desc {
  flex: 1;
  font-size: 2.2rem;
  line-height: 4rem;
  margin-top: 2.1rem;
  letter-spacing: 0.24px;
}
.page_testimonials .page_testimonials_swiper .info {
  margin-top: 2rem;
}
.page_testimonials .page_testimonials_swiper .info h3 {
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.page_testimonials .page_testimonials_swiper .info p {
  font-size: 1.5rem;
  opacity: 0.6;
  margin-top: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.05px;
}
.page_clients {
  padding: 2.8rem 0 13.3rem;
}
.page_clients.bg {
  background-color: var(--bg);
}
.page_clients.bg .page_clients_swiper::before {
  background-image: linear-gradient(to right, var(--bg) 25.4%, transparent);
}
.page_clients.bg .page_clients_swiper::after {
  background-image: linear-gradient(to left, var(--bg) 25.4%, transparent);
}
.page_clients .page_clients_swiper {
  max-width: 192rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.page_clients .page_clients_swiper .swiper-wrapper {
  transition: linear;
}
.page_clients .page_clients_swiper::before,
.page_clients .page_clients_swiper::after {
  width: 23.80208333%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  content: '';
}
.page_clients .page_clients_swiper::before {
  left: 0;
  background-image: linear-gradient(to right, #fff 25.4%, transparent);
}
.page_clients .page_clients_swiper::after {
  right: 0;
  background-image: linear-gradient(to left, #fff 25.4%, transparent);
}
.page_clients .page_clients_swiper .swiper-slide {
  max-width: 16.4rem;
}
.page_clients .page_clients_swiper .img {
  padding-bottom: 48.78%;
}
.page_blog {
  padding: 3.1rem 0 14.2rem;
}
.page_blog h2 {
  letter-spacing: 0.9px;
}
.page_blog .head {
  padding-bottom: 0.9rem;
}
.page_blog .page_blog_swiper {
  margin-top: 6.4rem;
  overflow: hidden;
  border-radius: 2rem 2rem 0 0;
}
.page_blog .page_blog_swiper .swiper-slide {
  max-width: 451px;
}
.page_blog .swiper_btns {
  top: 52.5%;
}
.page_faqs {
  padding: 15.6rem 0 16rem;
}
.page_faqs .head {
  width: 31.3194444%;
}
.page_faqs p {
  max-width: 40.3rem;
  hyphens: auto;
  margin-top: 3.7rem;
}
.page_faqs .faqs {
  flex: 1;
  width: 100%;
  max-width: 86.9rem;
  margin-top: 2px;
}
.page_faqs .faqs .faq_item {
  border-radius: 1.6rem;
  border: 1px solid rgba(132, 141, 154, 0.24);
  margin-bottom: 1.9rem;
}
.page_faqs .faqs .faq_item.active .question::after {
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
}
.page_faqs .faqs .faq_item:last-child {
  margin-bottom: 0;
}
.page_faqs .faqs .question {
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 2.2rem;
  font-weight: 500;
  color: #1c1c1c;
  --w: 1.7rem;
  padding: 2.5rem 6.9204% 3rem 3.3449%;
  letter-spacing: 0.15px;
}
.page_faqs .faqs .question::before,
.page_faqs .faqs .question::after {
  position: absolute;
  right: 3.3%;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  transition: all 0.3s;
  border-radius: 10px;
  background-color: #1d384a;
  width: var(--w);
  height: 2px;
}
.page_faqs .faqs .question::after {
  width: 2px;
  height: var(--w);
  right: calc(3.3% + var(--w) / 2 - 1px);
}
.page_faqs .faqs .answer {
  display: none;
  border-top: 1px solid rgba(0, 6, 22, 0.18);
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
  hyphens: auto;
  margin: -1.1rem 3.3449% 0;
  padding: 2.1rem 4% 2.4rem 0;
}
.page_banner {
  overflow: hidden;
}
.page_banner .flex {
  height: 100vh;
  max-height: 81.6rem;
  min-height: max-content;
  padding: 6rem 0;
}
.page_banner .head {
  flex: 1;
  width: 100%;
  max-width: 62.6rem;
  padding-bottom: 3.3%;
}
.page_banner p {
  max-width: 54.1rem;
  margin-top: 2.6rem;
}
.page_banner .btn {
  margin-top: 3.7rem;
  min-width: 22.2rem;
}
.page_banner .img {
  width: 55.5555556%;
  height: auto;
  margin-right: -1.3194444%;
}
.page_banner .img:hover img {
  transform: scale(1.02);
}
.page_banner .logo_op {
  opacity: 0.13;
  width: 57.81034722%;
  top: 0;
  right: -18.05556%;
  z-index: -1;
}
div.swiper-pagination.swiper-pagination-progressbar {
  position: static;
  width: 16.2rem;
  height: 1px;
  background: #d3d3d3;
  pointer-events: all;
}
div.swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--primary);
  height: 2px;
}
div.swiper-pagination.swiper-pagination-progressbar.swiper-pagination-lock {
  display: block;
  opacity: 0;
}
.logo_op {
  position: absolute;
  pointer-events: none;
  height: auto;
}
.logo_op img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.blog_list .active .btn_i {
  transform: translateX(0);
}
.blog_list .active .btn_i::before {
  background-color: var(--primary);
}
.blog_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.blog_list a:hover img {
  transform: scale(1.02);
}
.blog_list .img {
  border-radius: 2rem;
  padding-bottom: 63.777778%;
}
.blog_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 2.8rem;
}
.blog_list .metas {
  display: flex;
  align-items: center;
  padding-right: 1.1rem;
}
.blog_list .metas::before {
  display: inline-block;
  content: '';
  background-color: #0f0f0f;
  opacity: 0.19;
  flex: 1;
  height: 1px;
  margin: 0 2.6rem 0 1.5rem;
}
.blog_list .metas .date {
  font-size: 1.7rem;
  color: rgba(63, 63, 63, 0.85);
}
.blog_list .metas .cat {
  font-size: 1.8rem;
  color: #0a162d;
  border-radius: 100px;
  background-color: rgba(0, 106, 180, 0.18);
  line-height: 4rem;
  padding: 0 2.2rem;
  order: -1;
  text-align: center;
  min-width: 9.8rem;
}
.blog_list .title {
  font-size: 2.4rem;
  line-height: 1.4583333;
  font-weight: 500;
  color: #161616;
  margin-top: 2.3rem;
  margin-bottom: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  letter-spacing: 0.25px;
}
.blog_list .btn_i {
  margin-top: 4.8rem;
  transform: translateX(-6.7rem);
}
.application_item.active a,
.application_item:hover a {
  box-shadow: 0 0.7rem 0.5rem rgba(0, 0, 0, 0.06);
}
.application_item.active .btn_i::before,
.application_item:hover .btn_i::before {
  background-color: var(--primary);
}
.application_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
  border-radius: 1.6rem;
  border: 1px solid rgba(205, 209, 211, 0.54);
  overflow: hidden;
  background-color: #fff;
}
.application_item a:hover img {
  transform: scale(1.02);
}
.application_item .img {
  padding-bottom: 58.4434783%;
}
.application_item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 7.6253% 6.9717% 4.5752%;
}
.application_item .info .title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.application_item .info .desc {
  font-size: 1.7rem;
  line-height: 2.6rem;
  color: var(--text);
  hyphens: auto;
  margin-top: 1.6rem;
  margin-bottom: auto;
  letter-spacing: 0.08px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.application_item .info .btn_i {
  margin-top: 4.9rem;
}
.finish_item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.6rem;
  border: 1px solid rgba(205, 209, 211, 0.54);
}
.finish_item.active::after {
  opacity: 1;
}
.finish_item.active .btn_i::before {
  background-color: var(--primary);
}
.finish_item:hover img {
  transform: scale(1.02);
}
.finish_item::after {
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: -1px;
  top: -1px;
  content: '';
  border-radius: 1.6rem;
  border: 2px solid var(--primary);
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
}
.finish_item .img {
  padding-bottom: 62.7451%;
  background-image: var(--bg2);
  border-radius: 1.6rem 1.6rem 0 0;
}
.finish_item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 7.6253% 8.9325% 4.793%;
}
.finish_item .info .title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #000;
}
.finish_item .info .desc {
  font-size: 1.7rem;
  line-height: 2.6rem;
  color: var(--text);
  margin-top: 1.6rem;
  margin-bottom: auto;
}
.finish_item .info .btn_i {
  margin-top: 0.5rem;
}
.finish_item .info:not(:has(.btn_i)) {
  padding-bottom: 11.329%;
}
.default_head{
  padding: 9rem 0;
  background-color: #eee;
}
.default_head h1{
  font-size: 4.5rem;
}
.default_body{
  padding: 5rem 0;
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: #171717;
}

.default_body h2 {
  font-size: 2.6rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 3.5rem 0 3.3rem;
}
.default_body h3 {
  font-size: 2rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 1.6rem 0 1rem;
}
.default_body p {
  margin: 1rem 0;
}
.default_body img {
  border-radius: 8px;
  width: 100%;
  display: block;
  object-fit: cover;
  margin: 4.7rem 0;
}
.default_body ul {
  margin: 1rem 0;
}
.default_body ul li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 1rem;
}
.default_body ul li:last-child {
  margin-bottom: 0;
}
.default_body ul li::before {
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  left: 0;
  top: 0.8rem;
  border-radius: 50%;
  background-color: var(--theme_color);
  content: '';
}

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

.finish_item.hide{
  display: none !important;
}
.jst-language-switcher{
  display: none;
}

.header_menu {
  display: none;
}
.header_menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  width: 100%;
  padding: 3.6rem 0;
  border-top: 1px solid #e8e9ea;
}
.header_menu .content > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: flex-start;
  gap: 2rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.header_menu .content > ul > li {
  width: 18%;
}
.header_menu[data-id="menu-item-39"] .content > ul > li, .header_menu[data-id="menu-item-38"] .content > ul > li{
  width: 23%;
}
.header_menu .content > ul li .img {
  aspect-ratio: 234/162;
  width: 100%;
  background-color: #f2f2f2;
  position: relative;
  overflow: hidden;
}
.header_menu .content > ul li .img img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  transition: all 0.3s;
  max-height: 100%;
  object-fit: cover;
}
.header_menu .content > ul li strong {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.header_menu .content > ul li:hover .img img {
  transform: scale(1.1);
}
.header_menu .content > ul li strong:after {
  content: "";
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  background: url('../img/arr-thr.svg') no-repeat center / contain;
  display: inline-block;
}
.header_menu.product_menu .content > ul li ul {
  column-count: 2;
}
.header_menu .content > ul li ul li {
  margin-bottom: .8rem;
}
.header_menu .content > ul li ul li a {
  font-size: 1.4rem;
  color: #888;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.2rem;
  transition: all 0.3s;
}
.header_menu .content > ul li ul li a:after {
  content: "";
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
  background: url('../img/right8.svg') no-repeat center / contain;
  filter: brightness(0.8);
}
.header_menu .content > ul li ul li a:hover {
  color: var(--theme_color);
}
.menu_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}
.menu_overlay.active {
  opacity: 1;
  pointer-events: all;
}
header nav .sub-menu{
  display: none;
}
header nav #menu-item-41 .sub-menu{
  display: block;
}

.header_menu[data-id="menu-item-38"] .content > ul li .img img{
  object-fit: contain;
} 

.home .service_banner .img{
  position: absolute;
}
.home .banner_spe{
  position: relative;
}
.home .banner_spe .imgs > img{
  width: 125%;
  background: url('../img/home-mask1.svg') no-repeat center/58%;
}

.home .banner_spe:after{
  content: "";
  width: 100%;
  height: 200%;
  position: absolute;
  left: -49%;
  top: 1%;
  transform: translateY(-50%) rotate(29deg);
  background: white;
  box-shadow: 0 0 100px 50px rgba(255, 255, 255, 0.8),
              0 0 200px 100px rgba(255, 255, 255, 0.6),
              0 0 300px 150px rgba(255, 255, 255, 0.4);
  z-index: -1;
  pointer-events: none;
  display: none;
}

@media screen and (min-width: 769px) and (max-width: 1550px) {
  header .lt {
    margin-right: 0;
  }
  header nav .menu {
    gap: 3rem;
  }
  header .btns {
    gap: 3rem;
  }
  header .btns .btn {
    padding: 0 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
    max-width: 1220px;
  }
  .swiper_content {
    padding: 1.5rem 3rem;
    max-width: 1220px;
  }
  header .content {
    width: 100%;
  }
  header .lt .logo img {
    height: 30px;
  }
  header nav .menu {
    gap: 2rem;
  }
  header nav .menu > li > a {
    font-size: 14px;
  }
  header .btns {
    gap: 2rem;
  }
  header .btns .btn_lang,
  header .btns .btn_search {
    width: 18px;
    height: 18px;
  }
  .head h1 {
    font-size: 5.6rem;
  }
  .page_banner .img {
    margin-right: 0;
  }
  .page_services_swiper ul.swiper-wrapper{
    grid-template-columns: repeat(3,1fr);
  }
  .page_services_swiper ul.swiper-wrapper li.swiper-slide{
    max-width: none !important;
    width: auto !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h1 {
    font-size: 5rem;
  }
  .head h2 {
    font-size: 4rem;
  }
  .page_services .head {
    align-items: flex-start;
  }
  .page_numbers .nums .wrap {
    font-size: 4rem;
  }
  .page_numbers .nums .wrap .num {
    font-size: 4rem;
  }
  .page_advantages .page_advantages_swiper .info h3 {
    font-size: 3rem;
  }
  .footer_started .img {
    align-self: center;
  }
}
@media screen and (max-width: 1024px) {
  header .lt {
    margin: 0;
    padding: 0;
  }
  header .lt .logo img {
    height: 40px;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    transition: all 0.3s;
  }
  header nav.active {
    pointer-events: all;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    opacity: 1;
    transform: translate(0);
  }
  header nav .close {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    opacity: 0;
  }
  header nav .con {
    position: absolute;
    left: 0;
    top: 0;
    width: min(300px, 80vw);
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: rgba(0 0 0/10%) 0 0 24px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-100%);
  }
  header nav .con .close_box {
    padding: 32px 20px 20px;
    border-bottom: 1px solid #eee;
    text-align: right;
  }
  header nav .con .close_box .close {
    display: inline-block;
    width: 15px;
    height: 15px;
    filter: brightness(0);
    background: url('../img/mobile-menu/close.svg') no-repeat center / contain;
    cursor: pointer;
    transition: all 0.3s;
  }
  header nav .con .close_box .close:hover {
    transform: rotate(180deg);
  }
  header nav .con .close_box + div {
    flex: 1;
    overflow: auto;
  }
  header nav .con .close_box + div::-webkit-scrollbar {
    width: 5px;
  }
  header nav .con .close_box + div::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 10px;
  }
  header nav .con .menu {
    display: block;
  }
  header nav .con .menu > li {
    cursor: pointer;
  }
  header nav .con .menu > li::after {
    display: none;
    opacity: 1;
  }
  header nav .con .menu > li > a {
    color: var(--title);
    line-height: 64px;
    padding: 0 0 0 32px;
    font-size: 18px;
  }
  header nav .con .menu > li > a:hover {
    color: var(--primary);
  }
  header nav .con .menu > li.menu-item-has-children > a {
    margin-right: 52px;
  }
  header nav .con .menu > li.menu-item-has-children > a::after {
    display: none;
  }
  header nav .con .menu > li.menu-item-has-children::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/mobile-menu/select.svg) no-repeat center / contain;
    position: absolute;
    left: calc(100% - 32px);
    top: 26px;
    transition: all 0.3s;
  }
  header nav .con .menu > li.active::after {
    transform: rotate(180deg);
  }
  header nav .con .menu > li:hover ul {
    padding: 16px 24px;
  }
  header nav .con .menu .current-menu-item > a,
  header nav .con .menu .current-menu-parent > a {
    color: var(--primary);
  }
  header nav .con .sub-menu {
    position: static;
    padding: 16px 24px;
    background-color: #f8f8f8;
    margin: 0 32px;
    box-shadow: none;
    border-radius: 8px;
    display: none;
    opacity: 1;
    pointer-events: all;
    transition: none;
    transform: translate(0);
    min-width: unset;
    width: auto;
  }
  header nav .con .sub-menu li {
    transform: translate(0);
  }
  header nav .con .sub-menu li a {
    padding: 8px 0;
    word-break: break-word;
    font-size: 14px;
    color: var(--title);
  }
  header nav .con .sub-menu li a::after {
    display: none;
  }
  header nav .con .sub-menu li a:hover {
    color: var(--primary);
  }
  header .btns {
    padding: 0;
    margin: 0;
    gap: 20px;
  }
  header .btns .btn_search,
  header .btns .btn_lang {
    width: 22px;
    height: 22px;
    margin: 0;
  }
  header .btns .btn_menu {
    display: block;
    width: 23px;
    height: 23px;
    cursor: pointer;
    transition: all 0.3s;
    background: url(../img/mobile-menu/nav-btn.svg) no-repeat center / contain;
  }
  header .mega_menu {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h1 {
    font-size: 4.5rem;
  }
  .head h2 {
    font-size: 3.5rem;
  }
}
@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 30px;
  }
  .swiper_content {
    padding: 10px 30px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn,
  .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    min-width: 120px;
  }
  .btn_i {
    font-size: 14px;
    gap: 12px;
    letter-spacing: unset;
  }
  .btn_i::before {
    width: 40px;
    height: 40px;
  }
  .btn_i.rv {
    font-size: 14px;
  }
  .btn_circle {
    width: 40px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
  }
  .swiper_btns.middle {
    position: static;
    width: 100%;
    padding: 0 30px;
    justify-content: flex-end;
    margin-top: 30px;
    transform: translateX(0);
  }
  div.head.bn p {
    font-size: 14px;
    letter-spacing: unset;
  }
  div.head .subtitle {
    font-size: 14px;
    grid-template-columns: 10px 1fr;
    gap: 5px;
    margin-bottom: 10px;
    word-spacing: unset;
    letter-spacing: unset;
  }
  div.head h1 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
    margin-top: 12px;
  }
  div.head .btn,
  div.head .btn_line {
    margin-top: 20px;
    min-width: 120px;
    padding: 0 20px;
  }
  header {
    top: 0;
  }
  header .content {
    width: 100%;
  }
  header .lt .logo img {
    height: 35px;
  }
  header .btns {
    gap: 26px;
    min-height: 64px;
  }
  header .btns .btn {
    display: none;
  }
  footer .main {
    padding: 50px 0;
  }
  footer .main .flex {
    display: block;
  }
  footer .main strong {
    font-size: 18px;
  }
  footer .main .slide_logo .logo {
    max-width: 220px;
    margin: 0 auto;
  }
  footer .main .lt,
  footer .main .rt {
    width: 100%;
  }
  footer .main .lt > strong,
  footer .main .rt > strong {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 30px;
  }
  footer .main .nav {
    display: block;
  }
  footer .main .slide_obj:not(.slide_connect) {
    width: 100%;
    min-width: unset;
  }
  footer .main .slide_obj:not(.slide_connect) strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(22, 22, 22, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 16px;
  }
  footer .main .slide_obj:not(.slide_connect) strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/mobile-menu/select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  footer .main .slide_obj:not(.slide_connect).active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .main .slide_obj:not(.slide_connect) > div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .main .slide_obj:not(.slide_connect) > div li + li {
    margin-top: 14px;
  }
  footer .main .slide_obj:not(.slide_connect) > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  footer .main .slide_obj:not(.slide_connect) > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .main .slide_connect strong {
    margin-bottom: 20px;
  }
  footer .main .slide_connect li + li {
    margin-top: 20px;
  }
  footer .main .slide_connect li {
    padding-left: 30px;
  }
  footer .main .slide_connect li::before {
    width: 16px;
    height: 16px;
    top: 3px;
  }
  footer .main .slide_connect li a {
    font-size: 16px;
  }
  footer .main .slide_follow {
    margin-top: 30px;
  }
  footer .main .slide_follow strong {
    margin-bottom: 20px;
  }
  footer .main .slide_follow .social {
    gap: 16px;
    justify-content: space-around;
  }
  footer .main .slide_follow .social a {
    width: 22px;
    height: 22px;
  }
  footer .bottom {
    padding: 20px 0;
  }
  footer .bottom .flex {
    gap: 30px;
    flex-direction: column-reverse;
    padding: 0;
  }
  footer .bottom ul {
    gap: 1rem 0;
  }
  footer .bottom ul li::before {
    height: 10px;
    margin: 0 10px;
  }
  footer .bottom p {
    font-size: 13px;
  }
  footer .bottom a {
    font-size: 14px;
  }
  footer .footer_float {
    bottom: 20px;
  }
  footer .footer_float #backtop i {
    width: 40px;
  }
  footer .footer_float #backtop span {
    display: none;
  }
  .quote_modal .quote_box {
    border-radius: 10px;
    flex-wrap: wrap;
  }
  .quote_modal .quote_box .close {
    width: 14px;
    height: 14px;
    right: 20px;
    top: 20px;
  }
  .quote_modal .img {
    border-radius: 10px;
  }
  .quote_modal form {
    gap: 16px;
    padding: 30px 20px;
  }
  .quote_modal form .title {
    font-size: 20px;
    letter-spacing: unset;
    margin-bottom: 10px;
  }
  .quote_modal form input {
    font-size: 14px;
    height: 46px;
    padding: 0 20px;
  }
  .quote_modal form .drop_area {
    padding: 14px;
    margin-top: 0;
  }
  .quote_modal form .drop_area .text strong {
    font-size: 16px;
  }
  .quote_modal form .drop_area .text p {
    font-size: 14px;
    margin-top: 10px;
  }
  .quote_modal form .drop_area .text .btn {
    font-size: 14px;
    line-height: 2;
    margin-top: 10px;
  }
  .quote_modal form span:has(input[type=submit]) {
    margin-top: 10px;
  }
  .quote_modal form input[type=submit] {
    min-width: 120px;
    font-size: 14px;
    padding: 0 20px;
    line-height: 40px;
  }
  .page_services {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_services.bg {
    padding: 50px 0;
  }
  .page_services .head {
    display: block;
  }
  .page_services .page_services_swiper {
    margin-top: 30px;
    overflow: unset;
  }
  .page_services .page_services_swiper .swiper-slide {
    max-width: 313px;
  }
  .page_services .item {
    border-radius: 10px;
  }
  .page_services .item::after {
    border-radius: 10px;
  }
  .page_services .item .img {
    border-radius: 10px 10px 0 0;
  }
  .page_services .item .info {
    padding: 20px;
  }
  .page_services .item .info .title {
    font-size: 18px;
    letter-spacing: unset;
  }
  .page_services .item .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .page_services .item .info .btn_i {
    margin-top: 20px;
  }
  .page_showcases {
    padding: 50px 0;
  }
  .page_showcases .page_showcases_swiper {
    margin-top: 30px;
  }
  .page_showcases .page_showcases_swiper .swiper-slide {
    max-width: 277px;
  }
  .page_showcases .item .pic {
    border-radius: 10px;
    border-color: var(--primary);
  }
  .page_showcases .item .title {
    font-size: 18px;
    letter-spacing: unset;
    margin-top: 20px;
  }
  .page_showcases .item .wrap {
    transform: translateY(0);
    opacity: 1;
    padding: 20px;
  }
  .page_showcases .item ul li {
    padding: 10px 0;
  }
  .page_showcases .item ul strong {
    font-size: 16px;
    letter-spacing: unset;
  }
  .page_showcases .item ul p {
    font-size: 14px;
    margin-top: 10px;
    letter-spacing: unset;
  }
  .page_showcases .item .btn_i {
    margin-top: 10px;
  }
  .page_showcases .pagination {
    gap: 12px;
    margin-top: 40px;
  }
  .page_showcases .pagination div.swiper-pagination.swiper-pagination-progressbar {
    width: 100px;
  }
  .page_numbers h2 {
    font-size: 22px;
    letter-spacing: unset;
  }
  .page_numbers .nums {
    margin-top: 30px;
    overflow: unset;
  }
  .page_numbers .nums ul {
    width: calc(100% + 60px);
    margin: 0 -30px;
    padding: 0 30px;
    gap: 10px;
    overflow-x: auto;
    height: 200px;
  }
  .page_numbers .nums ul::-webkit-scrollbar {
    display: none;
  }
  .page_numbers .nums li {
    flex: 1 0 150px;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    gap: 14px;
  }
  .page_numbers .nums .wrap {
    font-size: 18px;
  }
  .page_numbers .nums .wrap .num {
    font-size: 20px;
  }
  .page_numbers .nums .label {
    font-size: 14px;
  }
  .page_advantages {
    padding: 50px 0;
  }
  .page_advantages .main {
    margin-top: 30px;
  }
  .page_advantages .main .rt {
    margin-bottom: 0;
  }
  .page_advantages .page_advantages_swiper .img {
    border-radius: 10px;
  }
  .page_advantages .page_advantages_swiper .info {
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .page_advantages .page_advantages_swiper .info h3 {
    font-size: 18px;
    letter-spacing: unset;
  }
  .page_advantages .page_advantages_swiper .info p {
    margin-top: 10px;
  }
  .page_advantages .page_advantages_swiper .info ul {
    margin-top: 10px;
    line-height: 1.5;
  }
  .page_advantages .page_advantages_swiper .info ul li + li {
    margin-top: 10px;
  }
  .page_advantages .page_advantages_swiper .info ul li {
    padding-left: 22px;
  }
  .page_advantages .page_advantages_swiper .info ul li::before {
    width: 14px;
    height: 14px;
    top: 2px;
  }
  .page_advantages .page_advantages_swiper .info .btn {
    margin-top: 20px;
  }
  .page_advantages .nav_list {
    gap: 14px;
  }
  .page_advantages .nav_list .nav_item {
    grid-template-columns: 1fr 40px;
    padding: 10px;
    padding-left: 25px;
    letter-spacing: unset;
    font-size: 14px;
    border-radius: 10px;
  }
  .page_advantages .nav_list .nav_item::before {
    border-radius: 10px;
  }
  .page_advantages .nav_list .nav_item .title {
    margin: 0;
  }
  .page_process {
    padding: 50px 0;
  }
  .page_process .head {
    display: block;
  }
  .page_process .head.center p {
    margin-top: 12px;
  }
  .page_process .head .subtitle {
    margin-top: 0;
  }
  .page_process .page_process_swiper {
    margin-top: 30px;
  }
  .page_process .page_process_swiper .swiper-slide {
    max-width: 220px;
  }
  .page_process .item {
    min-height: 300px;
    padding: 20px;
  }
  .page_process .item .info h3 {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: unset;
  }
  .page_process .item .info p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .page_process .item .icon {
    width: 50px;
    height: 50px;
  }
  .page_process .item .order {
    width: 35px;
    height: 35px;
    font-size: 14px;
    border-radius: 5px;
  }
  .page_testimonials {
    padding: 50px 0 30px;
  }
  .page_testimonials .head {
    padding: 0;
  }
  .page_testimonials .page_testimonials_swiper {
    margin-top: 30px;
  }
  .page_testimonials .page_testimonials_swiper .swiper-slide {
    max-width: 313px;
  }
  .page_testimonials .page_testimonials_swiper .item {
    border-radius: 10px;
    min-height: unset;
  }
  .page_testimonials .page_testimonials_swiper .icon::after {
    border-radius: 10px;
  }
  .page_testimonials .page_testimonials_swiper .client {
    height: 50px;
  }
  .page_testimonials .page_testimonials_swiper .star {
    --w: 100px;
    margin-top: 20px;
  }
  .page_testimonials .page_testimonials_swiper .desc {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 20px;
    letter-spacing: unset;
  }
  .page_testimonials .page_testimonials_swiper .info {
    margin-top: 30px;
  }
  .page_testimonials .page_testimonials_swiper .info h3 {
    font-size: 15px;
    letter-spacing: unset;
  }
  .page_testimonials .page_testimonials_swiper .info p {
    font-size: 14px;
    margin-top: 10px;
    letter-spacing: unset;
  }
  .page_clients {
    padding: 30px 0 50px;
  }
  .page_clients .page_clients_swiper .swiper-slide {
    max-width: 120px;
  }
  .page_blog {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_blog .head {
    padding: 0;
  }
  .page_blog .page_blog_swiper {
    overflow: unset;
    margin-top: 30px;
  }
  .page_blog .page_blog_swiper .swiper-slide {
    max-width: 313px;
  }
  .footer_started .flex {
    min-height: unset;
    padding: 50px 0;
  }
  .footer_started .head {
    padding: 0;
  }
  .footer_started .img {
    align-self: center;
    margin: 0;
  }
  .footer_services .item {
    grid-template-columns: 1fr 40px;
    gap: 14px;
  }
  .footer_services .item .info strong {
    font-size: 18px;
    letter-spacing: unset;
  }
  .footer_services .item .info p {
    line-height: 1.5;
    margin-top: 10px;
    letter-spacing: unset;
  }
  .footer_services .item i {
    margin: 0;
  }
  .page_faqs {
    padding: 50px 0;
  }
  .page_faqs .head {
    width: 100%;
  }
  .page_faqs .faqs {
    margin: 0;
  }
  .page_faqs .faqs .faq_item {
    border-radius: 10px;
    margin-bottom: 16px;
  }
  .page_faqs .faqs .question {
    font-size: 18px;
    padding: 14px 40px 14px 20px;
    letter-spacing: unset;
    --w: 10px;
  }
  .page_faqs .faqs .question::before,
  .page_faqs .faqs .question::after {
    right: 20px;
  }
  .page_faqs .faqs .question::after {
    right: calc(20px + var(--w) / 2 - 1px);
  }
  .page_faqs .faqs .answer {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 20px;
    padding: 10px 0 20px;
  }
  .page_banner .flex {
    height: auto;
    max-height: unset;
    min-height: unset;
    padding: 50px 0;
  }
  .page_banner .flex .head {
    padding: 0;
  }
  .page_banner .img {
    margin: 0;
  }
  div.swiper-pagination.swiper-pagination-progressbar {
    width: 100px;
  }
  .blog_list .img {
    border-radius: 10px;
  }
  .blog_list .info {
    margin-top: 14px;
  }
  .blog_list .metas {
    padding: 0;
  }
  .blog_list .metas::before {
    margin: 0 10px;
  }
  .blog_list .metas .date {
    font-size: 14px;
  }
  .blog_list .metas .cat {
    font-size: 14px;
    line-height: 2;
    padding: 0 14px;
    min-width: unset;
  }
  .blog_list .title {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 12px;
    letter-spacing: unset;
  }
  .blog_list .btn_i {
    margin-top: 20px;
    transform: translateX(0);
  }
  .application_item a {
    border-radius: 10px;
  }
  .application_item .info .title {
    font-size: 18px;
  }
  .application_item .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .application_item .info .btn_i {
    margin-top: 20px;
  }
  .finish_item {
    border-radius: 10px;
  }
  .finish_item .img {
    border-radius: 10px 10px 0 0;
  }
  .finish_item .info {
    padding: 20px;
  }
  .finish_item .info .title {
    font-size: 18px;
  }
  .finish_item .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .finish_item .info .btn_i {
    margin-top: 20px;
  }
  .finish_item .info:not(:has(.btn_i)) {
    padding-bottom: 20px;
  }
  .default_head{
    padding: 5rem 0;
  }
  .default_head h1{
    font-size: 2rem;
  }
  .default_body{
    padding: 3rem 0;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  
  .default_body h2 {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0 1rem;
  }
  .default_body h3 {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0;
  }
  .default_body p {
    margin: 1rem 0;
  }
  
  
  .default_body ul li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
  }
  .default_body ul li:last-child {
    margin-bottom: 0;
  }
  .default_body ul li::before {
    width: 1.4rem;
    height: 1.4rem;
    position: absolute;
    left: 0;
    top: 0.8rem;
    border-radius: 50%;
    background-color: var(--theme_color);
    content: '';
  }
  div.search-block .searchform {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  div.search-block input[type='text'] {
    flex: 1;
  }

  div.search-block input[type='submit'] {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 2.2vw 0 1.2vw;
    background: url(../img/page_home-header_search.svg) no-repeat center;
    background-size: 1.4rem;
    display: inline-block;
    vertical-align: middle;
    transition: 0.3s all ease;
    cursor: pointer;
    border: none;
    outline: none;
  }

  div.search-block div.content {
    position: unset;
  }

  div.search-block .searchform input[type='text'] {
    font-size: 22px;
    height: 70px;
  }

  .wd-action-btn {
    width: 25px;
    height: 25px;
    top: unset;
    right: 2rem;
    bottom: 2rem;
  }

  div.search-block {
    height: 100%;
    width: 100%;
    top: 120%;
    bottom: unset;
    display: none;
  }

  div.search-block.active {
    top: 20%;
    display: block;
    height: 80%;
    transform: translateY(0);
  }

  .search-block input[type="submit"]:not(:disabled):hover { 
    background-size: 1.4rem;
    border: none;
  }
  .swiper_btns div:hover{
    background-color: transparent !important;
  }
  .swiper_btns div:hover:after{
    filter: contrast(0) brightness(0) !important;
  }
  .service_intro .sm_img{
    width: 100% !important;
  }
  .page_faqs .faqs .question{
    font-size: 15px !important;
  }
  .page_services_swiper ul.swiper-wrapper{
    grid-template-columns: repeat(2,1fr);
  }
  .page_services_swiper ul.swiper-wrapper li.swiper-slide{
    max-width: none !important;
    width: auto !important;
  }
}
@media screen and (max-width: 576px) {
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .swiper_btns.middle {
    padding: 0 20px;
  }
  .quote_modal .quote_box {
    flex-direction: column-reverse;
  }
  .quote_modal .img {
    width: 100%;
  }
  .page_numbers .nums ul {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 20px;
  }
  .page_advantages .main .lt,
  .page_advantages .main .rt {
    width: 100% !important;
    margin: 0 !important;
  }
  .page_advantages .page_advantages_swiper .img {
    width: 100%;
  }
  .footer_started .img {
    width: 100%;
    order: -1;
  }
  .footer_services .list ul {
    grid-template-columns: 1fr;
    margin: 0;
  }
  .footer_services .item {
    padding: 20px 0;
  }
  .footer_services .item::after {
    display: none;
  }
  .page_banner .img {
    width: 100%;
    order: -1;
  }
  
}
