* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #f34012;
  --secondary: #1e86ff;
  --title: #0c1626;
  --text: #5a6b82;
  --bg: #f2f6f9;
  --border: #e2e9f1;
  --bg_rd: 2.8rem;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 138rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 141rem;
  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: "Archivo", sans-serif;
  animation: fadeIn 0.4s ease-in forwards;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.Inter,
p,
.btn,
.btn_line,
.btn_i {
  font-family: "Inter", sans-serif;
}
.Archivo {
  font-family: "Archivo", sans-serif;
}
.Archivo p {
  font-family: "Archivo", 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,
.img.img_cv picture {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img,
.img.img_ab video,
.img.img_ab iframe,
.img.img_ab picture {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img,
.img.img_aba video,
.img.img_aba iframe,
.img.img_aba picture {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.img img,
.img video,
.img iframe,
.img picture {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img,
.img_bg > video,
.img_bg > iframe,
.img_bg > picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.img_bg > picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon {
  transition: all 0.3s;
}
.icon.icon_ab {
  position: relative;
  padding-bottom: 100%;
}
.icon.icon_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.icon img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.custom-popup {
  --radius: 0px;
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  z-index: 999;
  padding: 8px;
  font-size: var(--font-size, 14px);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.custom-popup.show {
  opacity: 1;
  transform: scaleY(1);
}
.custom-popup.up {
  transform-origin: bottom;
}
.custom-popup.up .popup-input {
  order: 3;
  margin-bottom: 0;
  margin-top: 8px;
}
.custom-popup.up .popup-options {
  order: 1;
}
.custom-popup.up .popup-empty {
  order: 2;
}
.custom-popup .popup-empty {
  padding: 12px;
  text-align: center;
  color: #999;
}
.custom-popup input.popup-input {
  display: block;
  width: 100%;
  padding: 11px 12px;
  font-size: inherit;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--title);
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 2px);
  flex-shrink: 0;
}
.custom-popup input.popup-input::placeholder {
  color: #666;
}
.custom-popup input.popup-input:focus {
  border-color: var(--primary);
}
.custom-popup .popup-options {
  flex: 0 1 auto;
  min-height: 0;
  overflow: auto;
  max-height: 50vh;
}
.custom-popup .popup-option {
  padding: 12px;
  margin: 0 0 4px;
  cursor: pointer;
  transition: all 0.15s;
  word-break: break-word;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup .popup-option:hover,
.custom-popup .popup-option.selected {
  background-color: #f0f0f0;
}
.custom-popup .popup-option:last-child {
  margin-bottom: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 10rem;
  line-height: 5.4rem;
  gap: 1.2rem;
  padding: 0 3.2rem;
}
.btn::after {
  display: inline-block;
  flex-shrink: 0;
  content: '';
  width: 1.0625em;
  height: 1.0625em;
  filter: contrast(0) brightness(2);
  transition: all 0.3s;
  background: url("../img/arrow-line.svg") no-repeat center / contain;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn:hover::after {
  filter: none;
  transform: translateX(20%);
}
.btn.sm {
  line-height: 5.2rem;
  gap: 0.8rem;
  padding: 0 3rem;
}
.btn.sm::after {
  width: 0.75em;
  height: 0.75em;
  background-image: url("../img/arrow-r.svg");
}
.btn.no_a::after {
  display: none;
}
.btn_line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background-color: transparent;
  border: 1px solid #d8dfe5;
  color: var(--title);
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 10rem;
  line-height: 5.5rem;
  gap: 1.3rem;
  padding: 0 3.1rem;
}
.btn_line::after {
  display: inline-block;
  flex-shrink: 0;
  content: '';
  width: 1.0625em;
  height: 1.0625em;
  filter: contrast(0) brightness(0);
  transition: all 0.3s;
  background: url("../img/arrow-line.svg") no-repeat center / contain;
}
.btn_line:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn_line:hover::after {
  filter: contrast(0) brightness(2);
  transform: translateX(20%);
}
.btn_line.no_a::after {
  display: none;
}
.btn_line.wt {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn_line.wt:hover {
  border-color: var(--primary);
}
.btn_line.wt::after {
  filter: contrast(0) brightness(2);
}
.btn_i {
  display: inline-grid;
  grid-template-columns: 1fr 2.5em;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.6rem;
  font-weight: 600;
  color: #221a11;
  gap: 2.2rem;
}
.btn_i::after {
  display: block;
  padding-bottom: 100%;
  border-radius: 50%;
  background: url("../img/arrow-r-w.svg") no-repeat center / 30% var(--primary);
  content: '';
  transition: all 0.3s;
}
.btn_i:hover {
  color: var(--primary);
}
.btn_i:hover::after {
  transform: translateX(20%);
}
.btn_i.ft {
  color: #0a6bdc;
  grid-template-columns: 1fr 1.0625em;
  gap: 0.9rem;
}
.btn_i.ft::after {
  padding-bottom: 65%;
  border-radius: 0;
  background: url("../img/arrow-line-sec.svg") no-repeat center / contain;
}
.swiper_btns {
  gap: 2.7rem;
  display: flex;
}
.swiper_btns div {
  width: 5.9rem;
  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 / 31.6%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  cursor: default;
  pointer-events: none;
  background-color: #fff;
  border-color: #eaeaea;
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns .swiper-button-disabled:hover {
  background-color: #fff;
  border-color: #eaeaea;
}
.swiper_btns .swiper-button-disabled:hover::after {
  filter: none;
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 164.7rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.tcon.white {
  color: #fff;
}
.tcon.white p,
.tcon.white .desc {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  letter-spacing: 0.00889em;
}
.tcon.white > em {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}
.tcon.white.bn > em {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  grid-template-columns: 0.54em 1fr;
  gap: 0.85em;
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.61);
  color: #fff;
  border-radius: 1.4em;
  letter-spacing: 0.078em;
  padding: 0.85em 1.15em 0.65em;
  margin-bottom: 2.1rem;
}
.tcon.white.bn p,
.tcon.white.bn .desc {
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.0011em;
}
.tcon.sm p,
.tcon.sm .desc {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.tcon.sm p,
.tcon.sm p.desc {
  letter-spacing: -0.0044em;
}
.tcon em {
  font-style: normal;
}
.tcon > em {
  display: inline-grid;
  grid-template-columns: 0.43em 1fr;
  align-items: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  border: 1px solid var(--border);
  border-radius: 1.286em;
  padding: 0.7em 1.5em 0.55em 1.43em;
  gap: 0.786em;
  margin-bottom: 2.3rem;
  letter-spacing: 0.06em;
}
.tcon > em::before {
  display: block;
  padding-bottom: 100%;
  border-radius: 50%;
  content: '';
  background-color: var(--primary);
}
.tcon h1 {
  font-size: 6rem;
  line-height: 1.23333;
  font-weight: 900;
}
.tcon h1 em {
  color: var(--primary);
}
.tcon h2,
.tcon .head_h2 {
  font-size: 4.8rem;
  line-height: 1.2;
  font-weight: 800;
}
.tcon h2 em,
.tcon .head_h2 em {
  color: var(--primary);
}
.tcon p,
.tcon .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
}
.head.grid {
  display: grid;
  grid-template-columns: var(--w) 1fr;
  align-items: start;
  gap: 0 2rem;
  --w: 46%;
}
.head.grid > em {
  width: 100%;
  max-width: max-content;
  grid-column: -1/1;
}
.head.grid p {
  margin-left: auto;
}
header {
  position: sticky;
  left: 0;
  top: -88px;
  right: 0;
  z-index: 996;
  transition: all 0.3s;
  background-color: #fff;
}
header.style {
  top: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .logo {
  display: block;
  position: relative;
  margin-right: 6%;
  padding-top: 2px;
}
header .logo img {
  display: block;
  width: auto;
  height: 5.41rem;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .close {
  display: none;
}
header nav .menu {
  gap: 4.6rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #0f172a;
  line-height: 48px;
  padding-top: 3px;
  transition: all 0.3s;
  letter-spacing: -0.0044em;
}
header nav .menu > li > a:hover {
  color: var(--primary);
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a,
header nav .menu > li:has(.current-menu-parent) > a {
  color: var(--primary);
}
header nav .menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header nav .menu > li.btn_mega_menu .sub-menu {
  display: none;
}
header nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  padding: 6px;
  transition: all 0.3s;
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: 180px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header nav .sub-menu > li {
  position: relative;
}
header nav .sub-menu > li > a {
  display: block;
  font-size: 16px;
  white-space: nowrap;
  padding: 12px 18px;
  transition: all 0.3s;
  border-radius: 5px;
}
header nav .sub-menu > li > a:hover {
  background-color: rgba(243, 64, 18, 0.1);
}
header nav .sub-menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: auto;
  opacity: 1;
}
header nav .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}
header .btns {
  gap: 1.4rem;
  display: flex;
  align-items: center;
  min-height: 88px;
  padding-top: 4px;
}
header .btns .btn_search {
  display: block;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-search.svg) no-repeat center / 38.64%;
}
header .btns .btn_menu {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/nav-btn.svg) no-repeat center / 52.3%;
}
footer .foot_follow {
  border-bottom: 1px solid #ebeef5;
  padding: 14.5rem 0 3.2rem;
}
footer .foot_follow .logo {
  display: block;
  position: relative;
  max-width: 27.85rem;
}
footer .foot_follow .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .foot_follow .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .foot_follow .social {
  padding-bottom: 0.5rem;
}
footer .main {
  color: #111214;
  padding: 5.7rem 0 8.8rem;
}
footer .main strong {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}
footer .main .foot_intro {
  width: 24.4%;
  margin-top: -3px;
}
footer .main .foot_intro p {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.004em;
}
footer .main .foot_intro .btn_line {
  border-color: #63687a;
  margin-top: 2.7rem;
  gap: 0.9rem;
  padding: 0 2.9rem;
}
footer .main .foot_intro .btn_line:hover {
  border-color: var(--primary);
}
footer .main .foot_nav strong {
  margin-bottom: 3.2rem;
}
footer .main .foot_nav li + li {
  margin-top: 1.3rem;
}
footer .main .foot_nav li a {
  font-size: 1.8rem;
  color: var(--text);
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .main .foot_nav li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .main .foot_connect {
  width: 28.5rem;
}
footer .main .foot_connect strong {
  margin-bottom: 3.7rem;
}
footer .main .foot_connect li + li {
  margin-top: 3.2rem;
}
footer .main .foot_connect li {
  position: relative;
  padding-left: 4.125em;
}
footer .main .foot_connect li::before,
footer .main .foot_connect li::after {
  position: absolute;
  left: 0;
  top: -0.1875em;
  content: '';
  width: 2.8125em;
  height: 2.8125em;
  background-color: #e8f0fa;
  border-radius: 0.75em;
  transition: all 0.3s;
}
footer .main .foot_connect li::after {
  background: no-repeat center / 44.45%;
}
footer .main .foot_connect li .label {
  font-size: 1.5rem;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
footer .main .foot_connect li a,
footer .main .foot_connect li span {
  font-size: 1.8rem;
  font-weight: 600;
}
footer .main .foot_connect li a {
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .main .foot_connect li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .main .foot_connect li:hover::before {
  background-color: var(--primary);
}
footer .main .foot_connect li:hover::after {
  filter: contrast(0) brightness(2);
}
footer .main .foot_connect .locate {
  margin-top: 3.7rem;
}
footer .main .foot_connect .phone::after {
  background-image: url(../img/icon-phone.svg);
}
footer .main .foot_connect .email::after {
  background-image: url(../img/icon-email.svg);
}
footer .main .foot_connect .locate::after {
  background-image: url(../img/icon-locate.svg);
  background-size: 35.56%;
}
footer .bottom {
  font-size: 1.437rem;
  color: #101426;
  padding: 2.6rem 0;
  letter-spacing: -0.008em;
}
footer .bottom a {
  font-size: 1.4rem;
  color: #1c1c1c;
  opacity: 0.68;
  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 {
  gap: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .bottom ul li {
  display: flex;
  align-items: center;
}
footer .bottom ul li::before {
  display: inline-block;
  width: 1px;
  height: 0.93em;
  background-color: #1c1c1c;
  opacity: 0.15;
  content: '';
  margin: 0 1.07143em;
}
footer .bottom ul li:first-child::before {
  display: none;
}
footer #backtop {
  position: fixed;
  z-index: 99;
  right: 2.6rem;
  bottom: 1.6rem;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: url("../img/arrow-t-w.svg") no-repeat center / 25% #056ee2;
  opacity: 0;
  transform: translateY(100%);
}
footer #backtop.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
footer #backtop:hover {
  transform: scale(1.1);
  background-color: var(--primary);
}
.mage-menu-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 990;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.mage-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.mega_menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  border-top: 1px solid var(--border);
  background-color: #fff;
  padding: 5rem 0;
  display: none;
}
.mega_menu .nav {
  width: 23%;
  border-right: 1px solid var(--border);
  max-height: calc(100vh - 28rem);
  overflow-y: auto;
  padding-right: 2rem;
}
.mega_menu .nav li + li {
  margin-top: 1rem;
}
.mega_menu .nav .active a,
.mega_menu .nav a:hover {
  background-color: rgba(243, 64, 18, 0.08);
}
.mega_menu .nav a {
  display: grid;
  grid-template-columns: 1fr 0.7em;
  align-items: center;
  transition: all 0.3s;
  font-size: 16px;
  border-radius: 4px;
  padding: 14px;
  gap: 0.7em;
}
.mega_menu .nav a::after {
  display: block;
  padding-bottom: 100%;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center / contain;
}
.mega_menu .list {
  flex: 1;
  display: none;
  flex-direction: column;
  max-height: calc(100vh - 28rem);
  overflow: hidden;
}
.mega_menu .list.active {
  display: flex;
}
.mega_menu .list ul {
  flex: 1;
  overflow-y: auto;
  padding-right: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(25rem, 100%), 1fr));
  gap: 4rem 2rem;
}
.mega_menu .list ul a:hover img {
  transform: scale(1.03);
}
.mega_menu .list ul .img {
  padding-bottom: 58.69074492%;
  background-color: rgba(230, 234, 237, 0.81);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
}
.mega_menu .list ul .img.img_ab img {
  width: 69.81981982%;
  left: unset;
}
.mega_menu .list ul .title {
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  margin-top: 1.5rem;
}
.mega_menu .list p.center:has(.btn_line) {
  margin-top: 5rem;
}
.page_quality {
  background-color: var(--bg);
  padding: 10.9rem 0 12.6rem;
}
.page_quality .head > em {
  border-color: #c1d0db;
}
.page_quality p {
  max-width: 49.5rem;
  margin-top: 2.4rem;
}
.page_quality .flex {
  margin-top: 6.5rem;
}
.page_quality .items {
  flex: 1;
  max-width: 66.3rem;
}
.page_quality .items .item {
  margin-bottom: 1.2rem;
}
.page_quality .items .item:last-child {
  margin-bottom: 0;
}
.page_quality .items .item {
  position: relative;
  --rd: 1.6rem;
  border-radius: var(--rd);
  background-color: #fff;
}
.page_quality .items .item::after {
  position: absolute;
  left: -0.5px;
  top: -0.5px;
  bottom: -0.5px;
  right: -0.5px;
  content: '';
  border-radius: var(--rd);
  border: 1px solid var(--primary);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.page_quality .items .item.active::after {
  opacity: 1;
}
.page_quality .items .item.active .title .icon {
  background-color: var(--primary);
}
.page_quality .items .item.active .title .icon img {
  filter: contrast(0) brightness(2);
}
.page_quality .items .item:last-child {
  margin-bottom: 0;
}
.page_quality .items .title {
  display: grid;
  grid-template-columns: 9.076175% 1fr;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  gap: 4.376013%;
  padding: 3.1674208% 3.4690799% 2.2624434%;
}
.page_quality .items .title .icon {
  border-radius: 1.1rem;
  background-color: #e8f0fa;
}
.page_quality .items .title .icon img {
  transform: scale(0.5);
}
.page_quality .items .title h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.page_quality .items .desc {
  display: none;
  line-height: 2.6rem;
  color: var(--text);
  margin: -2.2624434% 3.4690799% 0;
  padding: 0 6.4829822% 3.2656402% 13.2901135%;
}
.page_quality .spec_card {
  position: relative;
  z-index: 2;
  width: 45.2173913%;
  border-radius: 2.2rem;
  background-image: linear-gradient(150deg, #062e64 -15.78%, #03152f 116%);
  overflow: hidden;
  color: #fff;
  padding: 5.6521739% 3.6231884% 1.8115942%;
}
.page_quality .spec_card::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: '';
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
  background-image: radial-gradient(ellipse 137.5% 138.3% at 20.7% -8.44%, #1e86ff, transparent 60%);
}
.page_quality .spec_card strong {
  font-size: 6.4rem;
  font-weight: 800;
  line-height: 1;
}
.page_quality .spec_card strong i {
  font-size: 0.4375em;
  font-weight: 900;
  color: var(--secondary);
  margin-left: 0.393em;
}
.page_quality .spec_card .label {
  font-size: 1.4rem;
  color: #8fa6c4;
  text-transform: uppercase;
  margin-top: 1.6rem;
}
.page_quality .spec_card ul {
  margin-top: 6.3rem;
}
.page_quality .spec_card ul li {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
  color: #8fa6c4;
  text-transform: uppercase;
  gap: 1em;
  padding: 2rem 0 1.8rem;
}
.page_quality .spec_card ul li span:last-child {
  font-size: 1.07143em;
  font-weight: 600;
  color: #fff;
  text-align: right;
}
.page_values {
  padding: 15.6rem 0 14.7rem;
}
.page_values .img {
  width: 49.05797101%;
  --h: 54.0620384%;
  border-radius: 1.2rem;
}
.page_values .head {
  flex: 1;
  width: 100%;
  max-width: 57.9rem;
  padding-bottom: 2.8%;
}
.page_values .head > em {
  border-color: #c1d0db;
}
.page_values p {
  max-width: 46.6rem;
  margin-top: 4.1rem;
}
.page_values .page_values_swiper {
  overflow: hidden;
  margin-top: 7.2rem;
}
.page_values .page_values_swiper .tcon {
  border-top: 0.3rem solid #ebeef5;
  padding-top: 3.7rem;
}
.page_values .page_values_swiper h3 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #14161b;
}
.page_values .page_values_swiper .desc {
  max-width: 26.5rem;
  margin-top: 1.4rem;
}
.page_faqs {
  padding: 13.9rem 0 8rem;
}
.page_faqs.bg {
  background-color: var(--bg);
  padding: 18.6rem 0 12.3rem;
}
.page_faqs.bg .faq_list .faq_item {
  border-color: var(--bg);
}
.page_faqs .head {
  flex: 1;
  width: 100%;
  max-width: 44.5rem;
}
.page_faqs .head .tcon > em {
  border-color: #c1d0db;
}
.page_faqs p {
  max-width: 36.9rem;
  margin-top: 2.8rem;
}
.page_faqs .btn {
  margin-top: 3.2rem;
}
.page_faqs .faqs {
  width: 53.04347826%;
}
.page_faqs .faq_list .faq_item {
  border-radius: 1.6rem;
  background-color: #fff;
  border: 1px solid var(--border);
  transition: all 0.3s;
  margin-bottom: 0.9rem;
}
.page_faqs .faq_list .faq_item.active {
  border-color: var(--primary);
  margin-bottom: 1.5rem;
}
.page_faqs .faq_list .faq_item.active .question::after {
  transform: rotate(90deg);
  opacity: 0;
}
.page_faqs .faq_list .faq_item:last-child {
  margin-bottom: 0;
}
.page_faqs .faq_list .question {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.75em;
  align-items: center;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 600;
  padding: 2.9rem 3.3rem 2.6rem;
  gap: 0.7em;
}
.page_faqs .faq_list .question::before,
.page_faqs .faq_list .question::after {
  position: absolute;
  width: 0.75em;
  height: 2px;
  background-color: var(--title);
  content: '';
  right: 3.3rem;
}
.page_faqs .faq_list .question::after {
  width: 2px;
  height: 0.75em;
  transition: all 0.3s;
  margin-right: 0.35em;
}
.page_faqs .faq_list .answer {
  display: none;
  line-height: 1.625;
  color: var(--text);
  padding: 0 3.3rem 2.9rem;
  margin-top: -0.8rem;
}
.page_banner {
  width: calc(100% - var(--bg_rd));
  max-width: 189.2rem;
  margin: 0 auto;
  border-radius: var(--bg_rd);
  overflow: hidden;
  background-image: linear-gradient(154.9999deg, #062e64 -53%, #041e45 60%, #03152f 153%);
}
.page_banner.img_bg > img:nth-of-type(2) {
  width: auto;
  left: unset;
  right: 0;
  max-width: 100%;
}
.page_banner.img_bg > picture {
  width: auto;
  left: unset;
  right: 0;
  max-width: 100%;
}
.page_banner .flex {
  min-height: 59.9rem;
  padding: 6rem 0;
}
.page_banner .head {
  flex: 1;
  width: 100%;
  padding-top: 1.2%;
}
.page_banner p {
  max-width: 54.3rem;
  margin-top: 1.8rem;
}
.page_banner .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 2.6rem;
  margin-top: 2.9rem;
}
.footer_contact {
  --bg_h: 0;
  background-image: linear-gradient(to bottom, var(--bg) 0 var(--bg_h), transparent var(--bg_h) 100%);
}
.footer_contact .con {
  position: relative;
  z-index: 2;
  width: calc(100% - var(--bg_rd));
  max-width: 189.2rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--bg_rd);
  background-image: linear-gradient(150deg, #062e64 -32%, #03152f 132%);
  padding: 10.1rem 0 12.6rem;
}
.footer_contact .con::before,
.footer_contact .con::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: '';
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
  background-image: radial-gradient(ellipse 134.2% 131.1% at 83.28125% top, #1e86ff, transparent 60%);
}
.footer_contact .con::after {
  background-image: linear-gradient(to right, #fff, transparent);
  opacity: 0.04;
}
.footer_contact .head {
  --w: 34.710145%;
}
.footer_contact .head::after {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  content: '';
  opacity: 0.1;
  align-self: end;
  margin-bottom: 2rem;
}
.footer_contact .flex {
  margin-top: 3.7rem;
}
.footer_contact .connect {
  flex: 1;
  width: 100%;
  max-width: 78rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.footer_contact .connect ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: -1px;
  margin-bottom: -1px;
  padding-right: 1px;
}
.footer_contact .connect li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 11.182663% 7.7121814% 15.0387537% 11.9538812%;
}
.footer_contact .connect li::before {
  display: block;
  width: 2.8125em;
  height: 2.8125em;
  border-radius: 0.75em;
  content: '';
  transition: all 0.3s;
  background: no-repeat center / 42.23% rgba(30, 134, 255, 0.22);
  margin-bottom: 5.2rem;
}
.footer_contact .connect li.active::before {
  background-color: var(--primary);
}
.footer_contact .connect li .label {
  font-size: 1.4rem;
  color: #bccce9;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}
.footer_contact .connect li a,
.footer_contact .connect li span {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.011em;
}
.footer_contact .connect li a {
  vertical-align: top;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.footer_contact .connect li a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.footer_contact .connect .phone::before {
  background-image: url("../img/icon-phone-w.svg");
}
.footer_contact .connect .email::before {
  background-image: url("../img/icon-email-w.svg");
  background-size: 40%;
}
.footer_contact .connect .locate::before {
  background-image: url("../img/icon-locate-w.svg");
  background-size: 35.6%;
}
.footer_contact .info {
  width: 34.56521739%;
  padding-top: 1.45%;
}
.footer_contact .info .btn {
  margin-top: 4.3rem;
}
div.swiper-pagination.swiper-pagination-bullets {
  position: static;
  width: auto;
  display: flex;
  gap: 0.8rem;
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 0.85rem;
  height: 0.85rem;
  background: #ced5e0;
  opacity: 1;
  margin: 0;
  border-radius: 1rem;
  transition: all 0.4s;
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  width: 3.6rem;
  background: var(--primary);
  margin: 0 1px;
}
.social {
  gap: 2rem 0.9rem;
  display: flex;
  flex-wrap: wrap;
}
.social a {
  opacity: 1;
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 0.9rem;
  background-color: rgba(232, 240, 250, 0.42);
}
.social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / 38.5%;
  transition: all 0.3s;
}
.social a:hover {
  background-color: var(--primary);
}
.social a:hover::after {
  filter: contrast(0) brightness(2);
}
.social .facebook a::after {
  background-image: url(../img/social-facebook.svg);
}
.social .whatsapp a::after {
  background-image: url(../img/social-whatsapp.svg);
}
.social .youtube a::after {
  background-image: url(../img/social-youtube.svg);
}
.social .instagram a::after {
  background-image: url(../img/social-instagram.svg);
}
.social .linkedin a::after {
  background-image: url(../img/social-linkedin.svg);
}
.head .breadcrumbs {
  display: inline-grid;
  grid-template-columns: 0.54em 1fr;
  align-items: center;
  font-size: 1.3rem;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.61);
  text-transform: uppercase;
  line-height: 2rem;
  border-radius: 1.4em;
  gap: 0.85em;
  padding: 0.6em 1.2em 0.55em;
  margin-bottom: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.head .breadcrumbs::before {
  display: block;
  padding-bottom: 100%;
  border-radius: 50%;
  content: '';
  background-color: var(--primary);
}
.head .breadcrumbs span span::before {
  content: ' / ';
  opacity: 0.5;
  margin-right: -1px;
}
.head .breadcrumbs span span:first-child::before {
  display: none;
}
.head .breadcrumbs span a {
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.head .breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.news_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news_list a:hover img {
  transform: scale(1.03);
}
.news_list .img {
  border-radius: 1.3rem;
  padding-bottom: 60.23622047%;
}
.news_list .info {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 3rem;
}
.news_list .metas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.5rem;
  color: #63687a;
  text-transform: uppercase;
  gap: 0.4em;
}
.news_list .metas .cat {
  font-weight: 500;
  color: var(--primary);
  margin-right: 0.133em;
}
.news_list .title {
  font-size: 2.2rem;
  line-height: 1.22727273;
  font-weight: 600;
  color: #10161d;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  margin-top: 1.4rem;
}
.news_list .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  margin-top: 1rem;
  margin-bottom: auto;
}
.news_list .btn_i {
  margin-top: 3rem;
}
.product_list {
  --rd: 1.8rem;
}
.product_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--rd);
  border: 1px solid var(--border);
}
.product_list a:hover img {
  transform: scale(1.03);
}
.product_list .img {
  margin: -0.5px;
  padding-bottom: 58.69074492%;
  background-color: rgba(230, 234, 237, 0.81);
  border-radius: var(--rd);
  display: flex;
  justify-content: center;
}
.product_list .img.img_ab img {
  width: 69.81981982%;
  left: unset;
}
.product_list .img img.logo_fallback {
  width: 100%;
  height: 100%;
  left: unset;
  padding: 3rem;
  object-fit: contain;
}
.product_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 6.9977427% 8.8036117% 5.8690745%;
}
.product_list .info .text {
  flex: 1;
  border-bottom: 1px solid var(--border);
  padding-bottom: 13.6986301%;
  padding-left: 1px;
}
.product_list .info .metas {
  font-size: 1.4rem;
  font-weight: 600;
  color: #d81f26;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product_list .info .title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 0.6rem;
}
.product_list .info ul {
  color: var(--text);
  margin-top: 1.6rem;
}
.product_list .info ul li + li {
  margin-top: 0.5625em;
}
.product_list .info ul li {
  position: relative;
  padding-left: 0.8125em;
}
.product_list .info ul li::before {
  position: absolute;
  width: 0.3125em;
  height: 0.3125em;
  border-radius: 50%;
  content: "";
  left: 0;
  top: 0.375em;
  background-color: var(--primary);
}
.product_list .info .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.2rem;
}
.product_list .info .wrap .md {
  display: inline-grid;
  grid-template-columns: 0.643em 1fr;
  align-items: center;
  font-size: 1.4rem;
  color: #8a94a6;
  gap: 0.643em;
}
.product_list .info .wrap .md::before {
  display: block;
  padding-bottom: 133.34%;
  content: '';
  background: url("../img/pd-file.svg") no-repeat center / contain;
}


.footer_contact .right,
.page_inquiry .right {
  width: 47.82%;
  padding: 5.5rem 4.8rem 3.3rem;
  background-color: white;
  border-radius: 0.93rem;
  margin-top: 2rem;
}
.page_inquiry .right {
  width: 40%;
  margin-top: 0;
}
.footer_contact .right .icon,
.page_inquiry .right .icon {
  width: 5.4rem;
  height: 5.4rem;
  min-width: 5.4rem;
  background-color: var(--secondary);
  border-radius: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_contact .right .icon img,
.page_inquiry .right .icon img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}
.footer_contact .right .item,
.page_inquiry .right .item {
  display: flex;
  gap: 3rem;
}
.footer_contact .right .item+.item,
.page_inquiry .right .item+.item {
  margin-top: 2.9rem;
  padding-top: 2.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer_contact .right .item span,
.page_inquiry .right .item span {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: rgba(20, 22, 27, 0.6);
  display: block;
  font-weight: 500;
  margin-bottom: 1.8rem;
}
.footer_contact .right .item a,
.page_inquiry .right .item a {
  font-size: 1.8rem;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  color: #14161b;
  transition: all 0.3s;
}
.footer_contact .right .item a:hover,
.page_inquiry .right .item a:hover {
  color: var(--primary);
}
.footer_contact .right .item p,
.page_inquiry .right .item p {
  font-size: 1.8rem;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  color: #14161b;
  line-height: 2.8rem;
  max-width: 39rem;
}

.page_inquiry {
  padding: 12rem 0 14rem;
  background-color: #F6F7F9;
}
.page_inquiry .head {
  max-width: 78rem;
}
.page_inquiry .main {
  margin-top: 5rem;
}
.page_inquiry .quote_form {
  width: 56%;
}
.page_inquiry form,
.quote_modal form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.2rem 0;
}
.page_inquiry form {
  border: 1px solid #dcdee2;
  background-color: #fff;
  border-radius: 0.4rem;
  padding: 4rem 3.6rem;
}
.page_inquiry form span,
.quote_modal form span {
  width: 100%;
}
.page_inquiry form .col-2,
.quote_modal form .col-2 {
  width: 48.5%;
}
.page_inquiry form .label,
.quote_modal form .label {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--title);
}
.page_inquiry form .label i,
.quote_modal form .label i {
  color: var(--primary);
}
.page_inquiry form input,
.page_inquiry form textarea,
.page_inquiry form select,
.quote_modal form input,
.quote_modal form textarea,
.quote_modal form select {
  display: block;
  width: 100%;
  font-size: 1.5rem;
  color: var(--text);
  border: 1px solid #e5e5e5;
  background-color: transparent;
  transition: border-color 0.2s;
  border-radius: 0.2rem;
  height: 5rem;
  padding: 0 1.8rem;
}
.page_inquiry form input::placeholder,
.page_inquiry form textarea::placeholder,
.page_inquiry form select::placeholder,
.quote_modal form input::placeholder,
.quote_modal form textarea::placeholder,
.quote_modal form select::placeholder {
  color: #9aa1ab;
}
.page_inquiry form input:focus,
.page_inquiry form textarea:focus,
.page_inquiry form select:focus,
.quote_modal form input:focus,
.quote_modal form textarea:focus,
.quote_modal form select:focus {
  border-color: var(--primary);
  outline: none;
}
.page_inquiry form select,
.quote_modal form select {
  background: url("../img/select.svg") no-repeat center right 1.6rem / 1.2rem;
  padding-right: 4rem;
}
.page_inquiry form textarea,
.quote_modal form textarea {
  padding: 1.5rem 1.8rem;
  height: 12rem;
}
.page_inquiry form span:has(.tip),
.quote_modal form span:has(.tip) {
  margin-top: 0.2rem;
}
.page_inquiry form .tip,
.quote_modal form .tip {
  font-size: 1.3rem;
  color: var(--text);
  line-height: 1.5;
}
.page_inquiry form .tip i,
.quote_modal form .tip i {
  color: var(--primary);
}
.page_inquiry form span:has(.btn),
.quote_modal form span:has(.btn) {
  margin-top: 0.6rem;
  position: relative;
}
.page_inquiry form .btn,
.quote_modal form .btn {
  width: auto;
  gap: 1.2rem;
  cursor: pointer;
}
.page_inquiry form .btn input,
.quote_modal form .btn input {
  display: none;
}

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


.side_bar {
  position: fixed;
  z-index: 99;
  right: 2.6rem;
  top: 50%;
  transform: translateY(-50%);
}
.side_bar ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.side_bar li > * {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: 1px solid #e4e7eb;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s;
  overflow: visible;
}
.side_bar li > *::after {
  content: '';
  display: block;
  width: 40%;
  height: 40%;
  background: no-repeat center / contain;
  transition: all 0.3s;
}
.side_bar li > *:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: scale(1.08);
}
.side_bar li span {
  position: absolute;
  right: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%) translateX(0.6rem);
  white-space: nowrap;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background-color: var(--title);
  border-radius: 0.6rem;
  padding: 0.9rem 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.side_bar li span::after {
  content: '';
  position: absolute;
  right: -0.4rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0.4rem solid transparent;
  border-left-color: var(--title);
}
.side_bar li > *:hover span {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.side_bar .quote .btn_quote::after {
  background-image: url("../img/icon-form.svg");
  filter: brightness(0);
}
.side_bar .phone a::after {
  background-image: url("../img/contact_phone.svg");
  filter: brightness(0);
}
.side_bar .email a::after {
  background-image: url("../img/contact_email.svg");
  filter: brightness(0);
}
.side_bar .whatsapp a::after {
  background-image: url("../img/whatsapp.svg");
}
.side_bar .quote .btn_quote:hover::after,
.side_bar .phone a:hover::after,
.side_bar .email a:hover::after,
.side_bar .whatsapp a:hover::after {
  filter: brightness(0) invert(1);
}

@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  .mega_menu .list ul .title {
    font-size: 16px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
}
@media screen and (max-width: 1024px) {
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
    --radius: 8px;
  }
  header nav.active {
    pointer-events: auto;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    transform: translate(0);
  }
  header nav > .close {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.75);
  }
  header nav .con {
    width: min(300px, 80%);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    transform: translateX(-100%);
    background-color: #fff;
  }
  header nav .close_box {
    padding: 12px;
    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);
    display: block;
    font-size: 16px;
    line-height: 26px;
    padding: 10px 12px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu > li.current-menu-item > a,
  header nav .menu > li.current-menu-parent > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children {
    position: relative;
  }
  header nav .menu .menu-item-has-children > a {
    margin-right: 46px;
  }
  header nav .menu .menu-item-has-children::before,
  header nav .menu .menu-item-has-children::after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .menu .menu-item-has-children::after {
    background: url(../img/select.svg) no-repeat center / 12px;
  }
  header nav .menu .menu-item-has-children.active::before {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children.active::after {
    transform: rotate(180deg);
  }
  header nav .sub-menu {
    position: static;
    padding: 10px;
    margin: 12px 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transition: none;
    min-width: unset;
    border-radius: var(--radius);
    transform: translate(0);
    background-color: rgba(0, 0, 0, 0.02);
  }
  header nav .sub-menu > li {
    cursor: pointer;
    transform: translate(0);
  }
  header nav .sub-menu > li + li {
    margin-top: 6px;
  }
  header nav .sub-menu > li > a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
    padding: 10px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .sub-menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu > li.current-menu-item > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu .menu-item-has-children > a {
    margin-right: 42px;
  }
  header nav .sub-menu .menu-item-has-children::before,
  header nav .sub-menu .menu-item-has-children::after {
    top: 2px;
    width: 36px;
    height: 36px;
    background-size: 10px;
  }
  header nav .sub-menu .sub-menu {
    margin: 10px 0;
  }
  header nav .sub-menu .sub-menu > li + li {
    margin-top: 0;
  }
  header nav .sub-menu .sub-menu > li > a {
    font-size: 12px;
  }
  header .logo,
  header .btns {
    margin: 0;
    padding: 0;
  }
  header .btns .btn_menu {
    display: block;
  }
  header .btns .btn_search,
  header .btns .btn_lang,
  header .btns .btn {
    margin: 0;
  }
  header .mega_menu {
    display: none !important;
  }
  .side_bar {
    right: 20px;
  }
  .side_bar ul {
    gap: 8px;
  }
  .side_bar li > * {
    width: 44px;
    height: 44px;
  }
  .side_bar li span {
    font-size: 12px;
    padding: 8px 10px;
    right: calc(100% + 8px);
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon h1 {
    font-size: 5rem;
  }
  .tcon h2,
  .tcon .head_h2 {
    font-size: 4rem;
  }
  .footer_contact .info {
    width: 100%;
  }
  .footer_contact .connect {
    max-width: unset;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --bg_rd: 10px;
  }
  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,
  .btn_line {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
    gap: 8px;
  }
  .btn.sm {
    line-height: 42px;
    padding: 0 20px;
    gap: 8px;
  }
  .btn_i {
    font-size: 14px;
    gap: 12px;
  }
  .btn_i.ft {
    gap: 8px;
  }
  .swiper_btns {
    gap: 16px;
  }
  .swiper_btns div {
    width: 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.white.bn > em {
    font-size: 13px;
    padding: 0.5em 1.2em 0.4em;
    gap: 0.7em;
    margin-bottom: 8px;
  }
  .tcon.sm p,
  .tcon.sm .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  .tcon > em {
    font-size: 14px;
    padding: 0.5em 1.2em 0.4em;
    gap: 0.7em;
    margin-bottom: 8px;
  }
  .tcon h1 {
    font-size: 38px;
    line-height: 1.3;
  }
  .tcon h2,
  .tcon .head_h2 {
    font-size: 30px;
    line-height: 1.3;
  }
  .tcon .desc,
  .tcon p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  div.head.flex .tcon {
    padding: 0;
  }
  div.head.flex .btn,
  div.head.flex .btn_line {
    margin: 0;
  }
  div.head .desc,
  div.head p {
    margin-top: 12px;
  }
  div.head p + p {
    margin-top: 12px;
  }
  div.head .btn,
  div.head .btn_line {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
    gap: 8px;
    margin-top: 20px;
  }
  div.head .btns {
    gap: 16px;
    margin-top: 20px;
  }
  div.head .btns .btn,
  div.head .btns .btn_line {
    margin: 0;
    padding: 0 20px;
    gap: 8px;
  }
  div.head.grid {
    grid-template-columns: 1fr 1fr;
  }
  div.head.grid p {
    margin-top: 12px;
  }
  div.head .breadcrumbs {
    font-size: 13px;
    line-height: 1.5;
    padding: 0.4em 1.2em 0.3em;
    gap: 0.7em;
    margin-bottom: 8px;
  }
  div.head .breadcrumbs span span::before {
    margin: 0;
  }
  header {
    top: 0;
  }
  header .logo img {
    height: 35px;
  }
  header .btns {
    gap: 14px;
    min-height: 64px;
  }
  footer .foot_follow {
    padding: 50px 0 20px;
  }
  footer .foot_follow .logo {
    width: 200px;
  }
  footer .foot_follow .social {
    padding: 0;
  }
  footer .main {
    display: block;
    padding: 20px 0 50px;
  }
  footer .main strong {
    font-size: 18px;
  }
  footer .main .foot_intro {
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
  }
  footer .main .foot_intro p {
    font-size: 16px;
  }
  footer .main .foot_intro .btn_line {
    margin-top: 20px;
    gap: 8px;
    padding: 0 20px;
  }
  footer .main .foot_nav strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid var(--border);
    padding: 0 22px;
    position: relative;
    margin-bottom: 16px;
  }
  footer .main .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  footer .main .foot_nav.active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .main .foot_nav > div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .main .foot_nav > div li + li {
    margin-top: 14px;
  }
  footer .main .foot_nav > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  footer .main .foot_nav > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .main .foot_connect {
    width: 100%;
    padding-top: 20px;
  }
  footer .main .foot_connect strong {
    margin-bottom: 20px;
  }
  footer .main .foot_connect li + li,
  footer .main .foot_connect .locate {
    margin-top: 20px;
  }
  footer .main .foot_connect li a,
  footer .main .foot_connect li span {
    font-size: 16px;
  }
  footer .main .foot_connect li .label {
    font-size: 14px;
    margin-bottom: 5px;
  }
  footer .bottom {
    font-size: 13px;
    padding: 20px 0;
  }
  footer .bottom a {
    font-size: 14px;
  }
  footer #backtop {
    width: 44px;
    height: 44px;
    right: 20px;
    bottom: 20px;
  }
  .page_quality {
    padding: 50px 0;
  }
  .page_quality .flex {
    margin-top: 30px;
  }
  .page_quality .items .item {
    margin-bottom: 14px;
    --rd: 10px;
  }
  .page_quality .items .title {
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding: 14px 16px;
  }
  .page_quality .items .title .icon {
    border-radius: 5px;
  }
  .page_quality .items .title h3 {
    font-size: 18px;
    margin: 0;
  }
  .page_quality .items .desc {
    line-height: 1.5;
    margin: -10px 20px 0;
    padding: 0 0 16px 56px;
  }
  .page_quality .spec_card {
    border-radius: 10px;
    padding: 20px;
  }
  .page_quality .spec_card strong {
    font-size: 40px;
  }
  .page_quality .spec_card .label {
    font-size: 13px;
    margin-top: 10px;
  }
  .page_quality .spec_card ul {
    margin-top: 20px;
  }
  .page_quality .spec_card ul li {
    font-size: 13px;
    padding: 14px 0;
  }
  .page_values {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_values .img {
    border-radius: 10px;
  }
  .page_values .head {
    padding: 0;
  }
  .page_values .page_values_swiper {
    overflow: unset;
    margin-top: 30px;
  }
  .page_values .page_values_swiper .tcon {
    padding-top: 20px;
  }
  .page_values .page_values_swiper h3 {
    font-size: 20px;
  }
  .page_values .page_values_swiper .desc {
    margin-top: 10px;
  }
  .page_faqs {
    padding: 50px 0;
  }
  .page_faqs.bg {
    padding: 50px 0;
  }
  .page_faqs .faqs {
    width: 60%;
  }
  .page_faqs .faq_list .faq_item {
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .page_faqs .faq_list .question {
    font-size: 18px;
    padding: 14px 20px;
  }
  .page_faqs .faq_list .question::before,
  .page_faqs .faq_list .question::after {
    right: 20px;
  }
  .page_faqs .faq_list .answer {
    line-height: 1.5;
    margin: 0;
    padding: 0 20px 20px;
  }
  .footer_contact .con {
    padding: 50px 0;
    width: calc(100% - 30px);
  }
  .footer_contact .head.grid {
    grid-template-columns: 41% 1fr;
  }
  .footer_contact .head.grid::after {
    margin-bottom: 11px;
  }
  .footer_contact .flex {
    margin-top: 30px;
    display: block;
  }
  .footer_contact .connect {
    border-radius: 10px;
  }
  .footer_contact .connect ul {
    grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
    padding-right: 0;
  }
  .footer_contact .connect li {
    padding: 20px;
  }
  .footer_contact .connect li::before {
    width: 40px;
    height: 40px;
    margin-bottom: 30px;
    border-radius: 5px;
  }
  .footer_contact .connect li .label {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .footer_contact .connect li a,
  .footer_contact .connect li span {
    font-size: 16px;
  }
  .footer_contact .info {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
  .footer_contact .info .btn {
    margin-top: 20px;
  }
  .page_banner {
    width: calc(100% - 30px);
  }
  .page_banner .flex {
    min-height: unset;
    padding: 50px 0;
  }
  .page_banner .flex .head {
    padding: 0;
  }
  .social {
    gap: 10px;
  }
  .social a {
    width: 44px;
    height: 44px;
    border-radius: 6px;
  }
  div.swiper-pagination.swiper-pagination-bullets {
    gap: 6px;
  }
  div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
    width: 25px;
    margin: 0;
  }
  .news_list .img {
    border-radius: 10px;
  }
  .news_list .info {
    margin-top: 20px;
  }
  .news_list .info .metas {
    font-size: 14px;
  }
  .news_list .info .title {
    font-size: 18px;
    margin-top: 10px;
  }
  .news_list .info .desc {
    margin-top: 10px;
  }
  .news_list .btn_i {
    margin-top: 20px;
  }
  .product_list {
    --rd: 10px;
  }
  .product_list .info {
    padding: 20px;
  }
  .product_list .info .text {
    padding-bottom: 20px;
  }
  .product_list .info .metas {
    font-size: 13px;
  }
  .product_list .info .title {
    font-size: 20px;
    margin-top: 5px;
  }
  .product_list .info ul {
    margin-top: 12px;
  }
  .product_list .info .wrap {
    margin-top: 16px;
    gap: 14px;
  }
  .product_list .info .wrap .md {
    font-size: 13px;
  }
  .page_inquiry {
    padding: 40px 0 50px;
  }
  .page_inquiry .main {
    margin-top: 28px;
  }
  .page_inquiry .quote_form,
  .page_inquiry .right {
    width: 100%;
  }
  .page_inquiry form {
    padding: 24px 20px;
  }
  .page_inquiry form .col-2,
  .quote_modal form .col-2 {
    width: 100%;
  }
  .page_inquiry form,
  .quote_modal form {
    gap: 16px 0;
  }
  .page_inquiry form .label,
  .quote_modal form .label {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .page_inquiry form input,
  .page_inquiry form textarea,
  .page_inquiry form select,
  .quote_modal form input,
  .quote_modal form textarea,
  .quote_modal form select {
    font-size: 14px;
    padding: 0 16px;
    height: 46px;
  }
  .page_inquiry form select,
  .quote_modal form select {
    padding-right: 30px;
    background-size: 10px;
    background-position-x: right 12px;
  }
  .page_inquiry form textarea,
  .quote_modal form textarea {
    padding: 14px 16px;
    height: 90px;
  }
  .page_inquiry form .tip,
  .quote_modal form .tip {
    font-size: 13px;
  }
  .quote_modal .modal_content {
    width: calc(100% - 40px);
    padding: 30px 20px;
    margin: 40px auto;
  }
  .quote_modal .head {
    margin-bottom: 24px;
  }
  .quote_modal .head .title {
    font-size: 26px;
  }
  .quote_modal .head .desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  header .btns .btn {
    display: none;
  }
  div.head.grid {
    display: block;
  }
  .page_quality .spec_card {
    width: 100%;
  }
  .page_values .img {
    width: 100%;
    order: -1;
  }
  .page_faqs .faqs {
    width: 100%;
  }
  .footer_contact .head.grid::after {
    display: none;
  }
  footer .foot_follow {
    flex-direction: column;
    align-items: center;
  }
  footer .foot_follow .social {
    width: 100%;
    justify-content: space-around;
  }
  footer .bottom {
    text-align: center;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .page_banner.img_bg > picture {
    opacity: 0.7;
  }
  .footer_contact .left,
  .footer_contact .right,
  .page_inquiry .right {
    width: 100%;
  }
  .footer_contact .left .btns {
    margin-top: 24px;
    gap: 14px;
    flex-wrap: wrap;
  }
  .footer_contact .right,
  .page_inquiry .right {
    margin-top: 30px;
    padding: 24px 20px;
  }
  .footer_contact .right .item,
  .page_inquiry .right .item {
    gap: 16px;
  }
  .footer_contact .right .item+.item,
  .page_inquiry .right .item+.item {
    margin-top: 20px;
    padding-top: 20px;
  }
  .footer_contact .right .icon,
  .page_inquiry .right .icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
  .footer_contact .right .icon img,
  .page_inquiry .right .icon img {
    width: 20px;
    height: 20px;
  }
  .footer_contact .right .item span,
  .page_inquiry .right .item span {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .footer_contact .right .item a,
  .footer_contact .right .item p,
  .page_inquiry .right .item a,
  .page_inquiry .right .item p {
    font-size: 15px;
    line-height: 1.5;
    max-width: unset;
  }
}

/* === btn_quote === */
/* quote modal */
.quote_modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(12, 12, 12, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.quote_modal.active {
  opacity: 1;
  visibility: visible;
}
.quote_modal_close {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  width: 3.6rem;
  height: 3.6rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.quote_modal_close::before,
.quote_modal_close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.4rem;
  height: 2px;
  background-color: #fff;
  transition: background-color 0.2s ease;
}
.quote_modal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.quote_modal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.quote_modal_close:hover::before,
.quote_modal_close:hover::after {
  background-color: var(--primary);
}
.quote_modal_inner {
  width: 92%;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e8e5f0;
  border-radius: 1.2rem;
  padding: 3.6rem 3.2rem;
}
.quote_modal .form form {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  gap: 1.5rem;
}
.quote_modal .form form strong.title,
.quote_modal .form form > .head {
  display: none;
}
.quote_modal_inner .head {
  text-align: center;
  margin-bottom: 2.4rem;
}
.quote_modal_inner .head .subtitle {
  display: block;
  text-align: center;
  color: #000000;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
}
.quote_modal_inner .head .subtitle:before {
  display: none;
}
.quote_modal_inner .head .subtitle + h2,
.quote_modal_inner .head .subtitle + strong {
  margin-top: 0;
}
.quote_modal_inner .head h2,
.quote_modal_inner .head strong {
  display: block;
  color: var(--title);
  font-family: "Archivo", sans-serif;
  font-size: 2.4rem;
  line-height: 1.35;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}
.quote_modal_inner .head h2 span,
.quote_modal_inner .head strong span {
  display: block;
  color: var(--primary);
}
.quote_modal_inner .con {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.quote_modal_inner .con > span {
  width: 100%;
}
.quote_modal_inner .con > span.col2 {
  width: calc(50% - 0.75rem);
}
.quote_modal .form form br {
  display: none;
}
.quote_modal .form form .hidden-fields-container {
  display: none;
}
.quote_modal .form form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.quote_modal .form form span.col2 > label,
.quote_modal .form form span.col-2 > label,
.quote_modal .form form span.col_file > label,
.quote_modal .form form span.col_textarea > label,
.quote_modal .form form > span > label {
  display: block;
  font-size: 1.4rem;
  color: #303030;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0;
}
.quote_modal .form form span label i {
  color: var(--primary);
  margin-left: 0.4rem;
}
.quote_modal .form form span {
  display: block;
  width: 100%;
}
.quote_modal .form form span.col2,
.quote_modal .form form span.col-2 {
  width: calc(50% - 0.75rem);
}
.quote_modal .form form .label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #303030;
  margin-bottom: 0.8rem;
}
.quote_modal .form form .label i {
  font-style: normal;
  color: var(--primary);
}
.quote_modal .form form .tip {
  display: block;
  font-size: 1.3rem;
  color: #60686d;
  line-height: 1.6;
}
.quote_modal .form form .tip i {
  font-style: normal;
  color: var(--primary);
}
.quote_modal .form form span input:not([type="checkbox"]),
.quote_modal .form form .wpcf7-form-control-wrap input:not([type="checkbox"]) {
  height: 5rem;
  line-height: 5rem;
  padding: 0 1.5rem;
  border: 1px solid #dddddd;
  border-radius: 0.6rem;
  width: 100%;
  color: #111;
  font-size: 1.5rem;
  transition: all 0.3s;
  box-sizing: border-box;
  background: #fff;
}
.quote_modal .form form span input:not([type="checkbox"]):focus,
.quote_modal .form form .wpcf7-form-control-wrap input:not([type="checkbox"]):focus,
.quote_modal .form form textarea:focus,
.quote_modal .form form span select:focus,
.quote_modal .form form .wpcf7-form-control-wrap select:focus {
  border-color: var(--primary);
  outline: none;
}
.quote_modal .form form span select,
.quote_modal .form form .wpcf7-form-control-wrap select {
  height: 5rem;
  line-height: 5rem;
  padding: 0 1.5rem;
  border: 1px solid #dddddd;
  border-radius: 0.6rem;
  width: 100%;
  font-size: 1.5rem;
  color: #60686d;
  background: #fff url('../img/select.svg') no-repeat right 1.5rem center/1.2rem;
  box-sizing: border-box;
  appearance: none;
}
.quote_modal .form form .upload_con {
  padding: 1.8rem;
  border-radius: 0.6rem;
  border: 2px dashed #dddddd;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.quote_modal .form form .upload_con:hover {
  border-color: var(--primary);
}
.quote_modal .form form .upload_con.has-file {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb, 0, 0, 0), 0.04);
}
.quote_modal .form form .upload_con.dragover {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb, 0, 0, 0), 0.06);
}
.quote_modal .form form .upload_filename {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 600;
}
.quote_modal .form form .upload_con .upload_hint {
  font-weight: 400;
}
.quote_modal .form form .upload_con .icon {
  width: 3.6rem;
  height: 3.6rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.8rem;
}
.quote_modal .form form .upload_con p {
  font-size: 1.4rem;
  color: #666666;
}
.quote_modal .form form .upload_con p strong {
  font-weight: 600;
  color: #111111;
}
.quote_modal .form form .upload_con span {
  font-size: 1.4rem;
  color: #888888;
  margin-top: 0.5rem;
}
.quote_modal .form form span.col_file,
.quote_modal .form form span.col_textarea {
  margin-top: 0;
}
.quote_modal .form form textarea,
.quote_modal .form form .wpcf7-form-control-wrap textarea {
  padding: 1.4rem 1.5rem;
  border: 1px solid #dddddd;
  border-radius: 0.6rem;
  width: 100%;
  font-size: 1.5rem;
  color: #111;
  height: 14rem;
  box-sizing: border-box;
  resize: none;
  background: #fff;
}
.quote_modal .form form input[type="file"],
.quote_modal .form form .wpcf7-file {
  display: none !important;
}
.quote_modal .form form > p,
.quote_modal .form form > p.agree_row {
  font-size: 1.3rem;
  color: #60686d;
  width: 100%;
  margin: 0;
  padding: 0;
}
.quote_modal .form form > p.agree_row .wpcf7-form-control-wrap,
.quote_modal .form form .wpcf7-acceptance {
  width: 100%;
}
.quote_modal .form form > p input[type="checkbox"],
.quote_modal .form form .wpcf7-acceptance input[type="checkbox"] {
  width: 1.8rem;
  height: 1.8rem;
  min-width: 1.8rem;
  margin: 0.15rem 0 0;
  border: 2px solid #333;
  border-radius: 0.2rem;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  cursor: pointer;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}
.quote_modal .form form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  display: block;
}
.quote_modal .form form .wpcf7-acceptance label {
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  column-gap: 1rem;
  row-gap: 0;
  align-items: start;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: none;
  color: #60686d;
  margin-bottom: 0;
  cursor: pointer;
}
.quote_modal .form form .wpcf7-acceptance .wpcf7-list-item-label {
  grid-column: 2;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
.quote_modal .form form .btn {
  width: 100%;
  height: 5rem;
  line-height: 5rem;
  padding: 0 3rem;
  justify-content: center;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  cursor: pointer;
  position: relative;
  color: white;
}
.quote_modal .form form .btn:hover{
  color: var(--primary);
}
.quote_modal .form form .btn:not(.is-ready) {
  opacity: 0.55;
  cursor: not-allowed;
  filter: none;
}
.quote_modal .form form .btn.is-ready {
  opacity: 1;
  cursor: pointer;
}
.quote_modal .form form .btn.is-ready:hover {
  filter: brightness(120%);
}
.quote_modal .form form .btn > p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.quote_modal .form form > p.agree_row.needs-attention {
  color: #c0392b;
}
.quote_modal .form form .btn:after {
  width: 1.45rem;
  height: 1.45rem;
  margin-left: 1.2rem;
}
.quote_modal .form form .btn input[type="submit"] {
  display: none;
}
.quote_modal .form form .btn input[type="submit"]:disabled {
  display: none;
}
.quote_modal .form form > p input:checked,
.quote_modal .form form .wpcf7-acceptance input:checked {
  background: url('../img/correct.svg') no-repeat center/100%;
  background-color: var(--primary);
  border-color: var(--primary);
}
.quote_modal .form .wpcf7-spinner {
  position: absolute;
  right: 1rem;
  width: 24px;
}
.quote_modal .form .wpcf7-response-output {
  width: 100%;
  margin: 1rem 0 0;
  padding: 0.8rem 1.2rem;
  border-radius: 0.6rem;
  font-size: 1.3rem;
}
.quote_modal .form .wpcf7-not-valid-tip {
  font-size: 1.2rem;
  color: #c0392b;
  margin-top: 0.4rem;
}
body.quote_modal_open {
  overflow: hidden;
}


.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%;
  
  content: '';
}

@media (max-width: 768px) {
  .quote_modal_inner {
    padding: 3rem 2rem;
    border-radius: 1.2rem;
  }
  .quote_modal .form form {
    gap: 1.2rem;
  }
  .quote_modal .form form strong.title,
  .quote_modal_inner .head h2,
  .quote_modal_inner .head strong {
    font-size: 1.8rem;
  }
  .quote_modal .form form span.col2,
  .quote_modal .form form span.col-2,
  .quote_modal_inner .con > span.col2 {
    width: 100%;
  }
  .quote_modal .form form span input:not([type="checkbox"]),
  .quote_modal .form form .wpcf7-form-control-wrap input:not([type="checkbox"]) {
    line-height: 4rem;
    font-size: 1.4rem;
  }
  .quote_modal .form form span select,
  .quote_modal .form form .wpcf7-form-control-wrap select {
    line-height: 4rem;
    font-size: 1.4rem;
  }
  .quote_modal .form form textarea,
  .quote_modal .form form .wpcf7-form-control-wrap textarea {
    height: 12rem;
    font-size: 1.4rem;
  }
  .quote_modal .form form span.col2 > label,
  .quote_modal .form form span.col-2 > label,
  .quote_modal .form form span.col_file > label,
  .quote_modal .form form span.col_textarea > label,
  .quote_modal .form form > span > label {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  .quote_modal .form form > p,
  .quote_modal .form form > p.agree_row {
    font-size: 1.3rem;
  }
  .quote_modal .form form .upload_con p {
    font-size: 1.5rem;
  }
  .quote_modal .form form .upload_con span {
    font-size: 1.4rem;
  }
  .quote_modal .form form > p input[type="checkbox"],
  .quote_modal .form form .wpcf7-acceptance input[type="checkbox"] {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
  }
  .quote_modal .form form .btn {
    font-size: 1.5rem;
  }
}
/* === /btn_quote === */

/* === btn_search === */
div.search-block {
    position: fixed;
    z-index: 998;
    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;
  }
  
  @media (max-width: 768px) { 
    div.search-block div.content {
      height: 100%;
    }
    div.search-block {
      height: calc(100vh - 150px);
    }
    div.search-block.active {
      transform: translate(0);
    }
    div.search-block .searchform {
      padding-top: 2rem;
      display: grid;
      align-items: center;
      grid-template-columns: 1fr auto;
      gap: 12px;
    }
    div.search-block .searchform input[type='text'] {
      height: 42px;
      min-width: unset;
      width: 100%;
      font-size: 22px;
    }
    div.search-block .searchform input[type='submit'] {
      display: block;
      width: 20px;
      filter: contrast(0) brightness(0);
      height: 20px;
      background: url(../img/icon-search.svg) no-repeat center/contain;
    }
    .wd-action-btn {
      right: 2rem;
      bottom: 2rem;
      top: unset;
    }
  }
/* === /btn_search === */
