* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #00377a;
  --secondary: #00d2fd;
  --tertiary: #0c4da2;
  --title: #00377a;
  --text: #424752;
  --text_w: rgba(255, 255, 255, 0.85);
  --bg: #f0f4f8;
  --linear: linear-gradient(to right, var(--primary), var(--tertiary));
}
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;
}
.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: "Inter", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.Manrope {
  font-family: "Manrope", sans-serif;
}
.Inter {
  font-family: "Inter", sans-serif;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
#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;
  --h: 100%;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.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;
}
.icon.icon_ab {
  position: relative;
}
.icon.icon_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.icon img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.custom-popup {
  --radius: 0px;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  z-index: 999;
  padding: 8px;
  font-size: 14px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.2s ease;
}
.custom-popup.show {
  opacity: 1;
  transform: scaleY(1);
}
.custom-popup.up {
  transform-origin: bottom;
}
.custom-popup .popup-empty {
  padding: 12px;
  text-align: center;
  color: #999;
}
.custom-popup input.popup-input {
  display: block;
  width: 100%;
  padding: 11px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--title);
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup input.popup-input::placeholder {
  color: #666;
}
.custom-popup input.popup-input:focus {
  border-color: var(--primary);
}
.custom-popup .popup-options {
  overflow: auto;
  max-height: 50vh;
}
.custom-popup .popup-option {
  padding: 12px;
  margin: 0 0 4px;
  cursor: pointer;
  transition: all 0.15s;
  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 {
  position: relative;
  z-index: 2;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  background-color: transparent;
  border: 1px solid;
  border-image: var(--linear) 1;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 5.8rem;
  padding: 0 3.25rem;
}
.btn::before {
  position: absolute;
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  content: '';
  z-index: -1;
  background-image: var(--linear);
  pointer-events: none;
  transition: all 0.3s;
}
.btn:hover {
  color: var(--primary);
}
.btn:hover::before {
  opacity: 0;
}
.btn_line {
  position: relative;
  z-index: 2;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  background-color: transparent;
  border: 1px solid #c3c6d4;
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 5.9rem;
  padding: 0 3.4rem;
}
.btn_line::before {
  position: absolute;
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  content: '';
  z-index: -1;
  background-image: var(--linear);
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.btn_line:hover {
  color: #fff;
  border-color: transparent;
}
.btn_line:hover::before {
  opacity: 1;
}
.btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: normal;
  color: var(--title);
  background-color: transparent;
  gap: 1.2rem;
}
.btn_i::after {
  display: inline-block;
  content: '';
  flex-shrink: 0;
  width: 0.8rem;
  height: 1.4rem;
  background: url("../img/arrow.svg") no-repeat center / contain;
  transition: all 0.3s;
}
.btn_i:hover {
  color: var(--secondary);
}
.btn_i:hover::after {
  transform: translateX(20%);
}
.swiper_btns {
  gap: 2.7rem;
  display: flex;
}
.swiper_btns div {
  position: relative;
  width: 6.5rem;
  cursor: pointer;
  transition: all 0.3s;
  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-w.svg) no-repeat center / 21%;
}
.swiper_btns div:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.swiper_btns div:hover::after {
  background-image: url("../img/arrow3.svg");
}
.swiper_btns .btn_prev::after,
.swiper_btns .btn_prev::before {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(22, 22, 22, 0.5);
}
.swiper_btns .swiper-button-disabled::after {
  background-image: url("../img/arrow2.svg");
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 173.4rem;
  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.white {
  color: #fff;
}
.head.white p,
.head.white .desc {
  color: var(--text_w);
  font-weight: 300;
  letter-spacing: 0.0155rem;
}
.head.center h1,
.head.center h2,
.head.center p,
.head.center .desc {
  margin-left: auto;
  margin-right: auto;
}
.head .subtitle {
  display: inline-grid;
  grid-template-columns: 0.6667em 1fr;
  align-items: center;
  background-color: rgba(0, 210, 253, 0.2);
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 600;
  gap: 0.6667em;
  padding: 0.41667em 1.33em 0.41667em 1em;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01rem;
}
.head .subtitle::before {
  display: block;
  padding-bottom: 100%;
  border-radius: 50%;
  content: '';
  background-color: var(--secondary);
  opacity: 0.67;
}
.head h1 {
  font-size: 8.6rem;
  line-height: 1.02325581;
  font-weight: 800;
}
.head h2 {
  font-size: 4.4rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.11rem;
}
.head p,
.head .desc {
  font-size: 1.8rem;
  line-height: 3rem;
  color: var(--text);
}
header {
  position: sticky;
  left: 0;
  top: -86px;
  right: 0;
  z-index: 996;
  padding: 13px 0;
  transition: all 0.3s;
  background-color: #fff;
}
header.opt {
  top: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .content {
  width: calc(100% - 6rem);
  max-width: 174rem;
}
header .logo {
  display: block;
  position: relative;
  margin-top: 6px;
  margin-right: 11.8%;
}
header .logo img {
  display: block;
  width: auto;
  height: 3.57037rem;
}
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: 6.15rem;
  display: flex;
  text-transform: uppercase;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 17px;
  font-weight: 500;
  line-height: 40px;
  padding-top: 4px;
  color: #475569;
  transition: all 0.3s;
}
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 {
  color: var(--primary);
}
header nav .menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  padding: 6px;
  transition: all 0.3s;
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: 180px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header nav .sub-menu > li > a {
  display: block;
  font-size: 16px;
  white-space: nowrap;
  color: #475569;
  padding: 12px 18px;
  transition: all 0.3s;
}
header nav .sub-menu > li > a:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--primary);
}
header .btns {
  gap: 2.7rem;
  display: flex;
  align-items: center;
  min-height: 60px;
  padding-top: 2px;
}
header .icon_btn {
  flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
  overflow: hidden;
  text-indent: -999px;
  background: no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(0.6);
  margin-top: 3px;
}
header .icon_btn:hover {
  filter: unset;
}
header .icon_btn.btn_search {
  background-image: url(../img/icon-search.svg);
  background-size: 85%;
}
header .icon_btn.btn_email {
  background-image: url(../img/icon-email.svg);
}
header .icon_btn.btn_lang {
  background-image: url(../img/icon-lang.svg);
}
header .btn_lang {
  position: relative;
  overflow: unset;
  color: transparent;
  margin-left: 17px;
}
header .btn_lang::before {
  position: absolute;
  display: inline-block;
  content: '';
  width: 1px;
  height: 21px;
  background-color: #475569;
  opacity: 0.29;
  left: -24px;
  top: 0;
}
header .btn_menu {
  display: none;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/nav-btn.svg) no-repeat center / contain;
}
header .btn {
  line-height: 5.5rem;
  margin-left: 12px;
  padding: 0 3.35rem;
}
footer .main {
  padding: 11.3rem 0 10.2rem;
}
footer .main strong {
  display: block;
  font-weight: 500;
  color: #0f0f0f;
  text-transform: uppercase;
}
footer .main .flex {
  gap: 6rem 2rem;
}
footer .main .foot_intro {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #cfd1d3;
}
footer .main .foot_intro .logo {
  display: block;
  max-width: max-content;
  margin-bottom: 0.5rem;
}
footer .main .foot_intro .logo img {
  display: block;
  width: 100%;
  height: 5.1rem;
}
footer .main .foot_intro .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .main .foot_intro .rt {
  min-width: 24.2%;
}
footer .main .foot_intro strong {
  color: #505254;
  margin-bottom: 1.8rem;
}
footer .main .foot_intro .connect li + li {
  margin-top: 2rem;
}
footer .main .foot_intro .connect .email a::before {
  background-image: url("../img/icon-email.svg");
  filter: contrast(0) brightness(0);
}
footer .main .foot_intro .connect a {
  display: grid;
  grid-template-columns: 2.4rem 1fr 1.7rem;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
  color: #0f0f0f;
  transition: all 0.3s;
  gap: 1.9rem;
}
footer .main .foot_intro .connect a::before,
footer .main .foot_intro .connect a::after {
  display: block;
  padding-bottom: 100%;
  content: '';
  background: no-repeat center right / contain;
}
footer .main .foot_intro .connect a::after {
  background-image: url("../img/arrow.svg");
  transition: all 0.3s;
}
footer .main .foot_intro .connect a:hover {
  color: var(--primary);
}
footer .main .foot_intro .connect a:hover::after {
  transform: translateX(20%);
}
footer .main .foot_nav strong {
  margin-bottom: 3.1rem;
}
footer .main .foot_nav li a {
  font-size: 1.8rem;
  font-weight: 500;
  color: #505254;
  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_nav li + li {
  margin-top: 1.5rem;
}
footer .main .foot_nav button {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--primary);
  transition: all 0.3s;
  margin-top: 1.9rem;
}
footer .main .foot_nav button:hover {
  color: var(--secondary);
}
footer .main .foot_related {
  min-width: 24.203%;
}
footer .main .foot_related strong {
  margin-bottom: 1.7rem;
  margin-top: 4.9rem;
}
footer .main .foot_related strong:first-child {
  margin-top: 0;
}
footer .main .foot_related .certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5rem;
}
footer .main .foot_related .certifications .img {
  border: 1px solid #dfe3e7;
  --h: 92.85714286%;
  width: 8.6rem;
}
footer .main .foot_related .certifications p {
  color: #505254;
  margin-top: 1.4rem;
}
footer .main .foot_related .social {
  gap: 2rem 4.1rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.7rem;
}
footer .main .foot_related .social a {
  opacity: 1;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
footer .main .foot_related .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
footer .main .foot_related .social a:hover {
  transform: scale(1.1);
}
/* footer .main .foot_related .social .facebook a::after {
  background-image: url(../img/social-facebook.svg);
}
footer .main .foot_related .social .twitter a::after {
  background-image: url(../img/social-twitter.svg);
}
footer .main .foot_related .social .youtube a::after {
  background-image: url(../img/social-youtube.svg);
}
footer .main .foot_related .social .instagram a::after {
  background-image: url(../img/social-instagram.svg);
}
footer .main .foot_related .social .linkedin a::after {
  background-image: url(../img/social-linkedin.svg);
} */
 .ff-message-success{
  color: white;
 }
footer .main .foot_related .social a::after{
  background-image: var(--icon);
}
footer .bottom {
  padding: 2.2rem 0;
}
footer .bottom p,
footer .bottom a {
  font-size: 1.4rem;
  color: #70707a;
}
footer .bottom a {
  color: #898993;
  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: 2.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer #backtop {
  position: fixed;
  z-index: 99;
  right: 2.5rem;
  bottom: 1.5rem;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  width: 5.8rem;
  height: 5.8rem;
  background: url("../img/arrow-t-w.svg") no-repeat center / 29.3% var(--primary);
  opacity: 0;
  transform: translateY(100%);
}
footer #backtop.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
footer #backtop:hover {
  transform: scale(1.1);
}
.footer_contact {
  background-image: linear-gradient(to bottom, var(--bg) 0 calc(100% - 22rem), #fff calc(100% - 22rem) 100%);
}
.footer_contact .inner {
  width: calc(100% - 4rem);
  max-width: 162.8rem;
  margin: 0 auto;
  background-color: var(--primary);
  overflow: hidden;
}
.footer_contact .head {
  flex: 1;
  width: 100%;
  align-self: center;
  max-width: 42.3rem;
  padding: 4rem 0 10.7rem;
}
.footer_contact .head ul {
  font-weight: 300;
  letter-spacing: 0.012rem;
  margin-top: 3rem;
}
.footer_contact .head ul li + li {
  margin-top: 1em;
}
.footer_contact .head ul li {
  position: relative;
  padding-left: 1.8125em;
}
.footer_contact .head ul li::before {
  position: absolute;
  left: 0;
  top: 0.0625em;
  width: 1em;
  height: 1em;
  content: '';
  background: url("../img/gou-c.svg") no-repeat center / contain;
}
.footer_contact p {
  margin-top: 2.8rem;
}
.footer_contact .quote_form {
  position: relative;
  z-index: 2;
  width: 57.02898551%;
  --w: 8.1rem;
  padding: 4.9275362% 0% 4.4927536% 12.826087%;
}
.footer_contact .quote_form::before {
  position: absolute;
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  content: '';
  z-index: -1;
  background-color: #fff;
  opacity: 0.055;
  pointer-events: none;
  clip-path: polygon(var(--w) 0, 100% 0, 100% 100%, 0 100%);
}
.footer_contact form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 1.4rem;
  color: #dbeafe;
  gap: 2.3rem 0;
  letter-spacing: -0.013rem;
}
.footer_contact form span {
  width: 100%;
}
.footer_contact form .col-2 {
  width: 48.35526316%;
}
.footer_contact form .label {
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.2rem;
}
.footer_contact form input,
.footer_contact form textarea,
.footer_contact form .upload_are {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #bfdbfe;
  border: 1px solid transparent;
  background-color: rgba(255, 255, 255, 0.09);
  transition: all 0.2s;
  height: 5.6rem;
  padding: 0 2.2rem;
}
.footer_contact form input::placeholder,
.footer_contact form textarea::placeholder,
.footer_contact form .upload_are::placeholder {
  color: #bfdbfe;
}
.footer_contact form input:focus,
.footer_contact form textarea:focus,
.footer_contact form .upload_are:focus {
  border-color: var(--secondary);
}
.footer_contact form textarea {
  padding: 1.4rem 2.2rem;
  height: 12.8rem;
  margin-top: 1.3rem;
}
.footer_contact form span:has(textarea) {
  margin-top: 0.3rem;
}
.footer_contact form .upload_are {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 6.2rem;
  margin-top: 1.3rem;
  min-height: max-content;
}
.footer_contact form .upload_are::after {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  width: 4.3rem;
  height: 4.3rem;
  content: '';
  background: url("../img/icon-download.svg") no-repeat center / 39.5% var(--secondary);
}
.footer_contact form .upload_are:hover::after {
  background-color: #fff;
}
.footer_contact form .upload_are input[type=file] {
  display: none;
}
.footer_contact form span:has(input[type=checkbox]) {
  margin-top: 1px;
}
.footer_contact form input[type=checkbox] {
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: none;
  vertical-align: top;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer_contact form input[type=checkbox]::after {
  content: '';
  display: block;
  width: 80%;
  height: 80%;
  background: url(../img/gou.svg) no-repeat center / contain;
  transition: all 0.3s;
  opacity: 0;
}
.footer_contact form input[type=checkbox]:checked::after {
  opacity: 1;
}
.footer_contact form input[type=checkbox] ~ span {
  vertical-align: top;
  cursor: pointer;
  display: inline-block;
  width: calc(100% - 2.2rem);
  padding-left: 0.8rem;
  margin-top: -1px;
}
.footer_contact form span:has(input[type=submit]) {
  margin-top: 0.5rem;
}
.footer_contact form input[type=submit] {
  transition: all 0.3s;
  text-align: center;
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--title);
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 600;
}
.footer_contact form input[type=submit]:hover {
  background-color: transparent;
  color: var(--secondary);
}
/* ===== Fluent Forms override (footer contact) ===== */
.footer_contact .frm-fluent-form {
  display: block;
  margin: 0;
  padding: 0;
}
.footer_contact .frm-fluent-form fieldset {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.3rem 0;
  border: none;
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 1.4rem;
  color: #dbeafe;
  letter-spacing: -0.013rem;
}
.footer_contact .frm-fluent-form .ff-t-container.ff_columns_total_2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.29%;
  row-gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}
.footer_contact .frm-fluent-form .ff-t-container.ff_columns_total_2 > .ff-t-cell {
  width: 100%;
  max-width: 100%;
  flex-basis: auto !important;
  padding: 0 !important;
  margin: 0;
}
/* Flatten nested name-field container */
.footer_contact .frm-fluent-form .ff-field_container,
.footer_contact .frm-fluent-form .ff-name-field-wrapper {
  margin: 0;
  padding: 0;
}
.footer_contact .frm-fluent-form .ff-t-container.ff_columns_total_2 > .ff-t-cell .ff-t-container,
.footer_contact .frm-fluent-form .ff-t-container.ff_columns_total_2 > .ff-t-cell .ff-t-cell {
  display: block;
  width: 100%;
  padding: 0 !important;
  margin: 0;
  gap: 0;
  flex-basis: auto !important;
}
.footer_contact .frm-fluent-form .ff-el-group {
  width: 100%;
  margin: 0;
  padding: 0;
}
.footer_contact .frm-fluent-form .ff-el-input--label {
  padding: 0;
  margin: 0;
}
.footer_contact .frm-fluent-form .ff-el-input--label label {
  text-transform: uppercase;
  display: block;
  margin: 0 0 1.2rem;
  padding: 0;
  color: #dbeafe;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.2;
}
.footer_contact .frm-fluent-form .ff-el-input--label.asterisk-right label::after,
.footer_contact .frm-fluent-form .ff-el-input--label label .ff-el-is-required {
  display: none !important;
  content: none !important;
}
.footer_contact .frm-fluent-form .ff-el-input--content {
  margin: 0;
  padding: 0;
}
.footer_contact .frm-fluent-form .ff-el-form-control {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #bfdbfe;
  border: 1px solid transparent !important;
  background-color: rgba(255, 255, 255, 0.09) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  transition: all 0.2s;
  height: 5.6rem;
  padding: 0 2.2rem;
  font-family: unset;
}
.footer_contact .frm-fluent-form .ff-el-form-control::placeholder {
  color: transparent !important;
  opacity: 0 !important;
}
.footer_contact .frm-fluent-form .ff-el-form-control::-webkit-input-placeholder {
  color: transparent !important;
  opacity: 0 !important;
}
.footer_contact .frm-fluent-form .ff-el-form-control::-moz-placeholder {
  color: transparent !important;
  opacity: 0 !important;
}
.footer_contact .frm-fluent-form .ff-el-form-control:focus {
  border-color: var(--secondary) !important;
  box-shadow: none !important;
  outline: none;
}
.footer_contact .frm-fluent-form textarea.ff-el-form-control {
  padding: 1.4rem 2.2rem;
  height: 12.8rem;
  line-height: 1.4;
  resize: none;
}
/* Add small top spacing for textarea group like original (span:has(textarea){margin-top:.3rem}) */
.footer_contact .frm-fluent-form .ff-el-group:has(textarea) {
  margin-top: 0.3rem;
}
/* File upload */
.footer_contact .frm-fluent-form .ff_file_upload_holder {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 5px 6.2rem 5px 2.2rem;
  min-height: 5.6rem;
  height: auto;
  border: 1px solid transparent;
  background-color: rgba(255, 255, 255, 0.09);
  transition: all 0.2s;
  color: #bfdbfe;
  font-size: 1.4rem;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}
.footer_contact .frm-fluent-form .ff_file_upload_holder::after {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  width: 4.3rem;
  height: 4.3rem;
  content: '';
  background: url("../img/icon-download.svg") no-repeat center / 39.5% var(--secondary);
}
.footer_contact .frm-fluent-form .ff_file_upload_holder:hover::after {
  background-color: #fff;
}
.footer_contact .frm-fluent-form .ff_file_upload_holder .ff_upload_btn {
  background: none !important;
  border: none !important;
  color: #bfdbfe;
  padding: 0;
  margin: 0;
  font-size: 1.4rem;
  font-weight: normal;
  height: auto;
  line-height: 1.2;
  pointer-events: none;
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0;
}
.footer_contact .frm-fluent-form .ff_file_upload_holder input[type=file],
.footer_contact .frm-fluent-form input.ff-screen-reader-element {
  display: none !important;
}
.footer_contact .frm-fluent-form .ff-uploaded-list {
  width: 100%;
  margin-top: 8px;
  color: #bfdbfe;
  font-size: 1.2rem;
}
/* Submit button */
.footer_contact .frm-fluent-form .ff_submit_btn_wrapper {
  width: 100%;
  text-align: left;
  margin-top: 0.5rem;
}
.footer_contact .frm-fluent-form .ff-btn-submit {
  display: block;
  width: 100%;
  transition: all 0.3s;
  text-align: center;
  background-color: var(--secondary) !important;
  border: 1px solid var(--secondary) !important;
  color: var(--title) !important;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 600;
  height: 5.6rem;
  line-height: 5.6rem;
  padding: 0;
  cursor: pointer;
  border-radius: 0 !important;
  box-shadow: none !important;
  letter-spacing: 0;
}
.footer_contact .frm-fluent-form .ff-btn-submit:hover {
  background-color: transparent !important;
  color: var(--secondary) !important;
}
/* Privacy custom-html block (FF strips real checkbox, we draw a faux one) */
.footer_contact .frm-fluent-form .ff-custom_html {
  margin: 0;
  padding: 0;
  color: #dbeafe;
  font-size: 1.4rem;
  outline: none !important;
  box-shadow: none !important;
}
.footer_contact .frm-fluent-form .ff-custom_html:focus,
.footer_contact .frm-fluent-form .ff-custom_html:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
.footer_contact .frm-fluent-form .ff-custom_html > span {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.footer_contact .frm-fluent-form .ff-custom_html label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  margin: 0;
  padding: 0;
  font-weight: normal;
  text-transform: none;
  line-height: 1.4;
  position: relative;
}
/* Faux checkbox via ::before (FF removes real <input type=checkbox>) */
.footer_contact .frm-fluent-form .ff-custom_html label::before {
  content: '';
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 1px;
  background-color: rgba(255, 255, 255, 0.09);
  background-image: url(../img/gou.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% 80%;
  border: 1px solid transparent;
  transition: all 0.2s;
  /* unchecked by default - hide tick */
  filter: opacity(0);
}
.footer_contact .frm-fluent-form .ff-custom_html label.is-checked::before,
.footer_contact .frm-fluent-form .ff-custom_html input[type=checkbox]:checked + span::before {
  filter: opacity(1);
}
.footer_contact .frm-fluent-form .ff-custom_html label > span {
  flex: 1;
  padding-left: 0.8rem;
  margin-top: -1px;
  font-size: 1.4rem;
  color: #dbeafe;
  display: inline-block;
  cursor: pointer;
}
/* If a real checkbox does exist (e.g. Terms&Conditions field), keep matching style */
.footer_contact .frm-fluent-form input[type=checkbox]:not(.ff-screen-reader-element) {
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  margin: 0;
  border: 1px solid transparent;
  background-color: rgba(255, 255, 255, 0.09);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  vertical-align: top;
}
.footer_contact .frm-fluent-form input[type=checkbox]:not(.ff-screen-reader-element)::after {
  content: '';
  display: block;
  width: 80%;
  height: 80%;
  background: url(../img/gou.svg) no-repeat center / contain;
  transition: all 0.3s;
  opacity: 0;
}
.footer_contact .frm-fluent-form input[type=checkbox]:not(.ff-screen-reader-element):checked::after {
  opacity: 1;
}
/* Hidden inputs reset */
.footer_contact .frm-fluent-form input[type=hidden] {
  display: none !important;
  height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}
/* Validation/error messages */
.footer_contact .frm-fluent-form .error,
.footer_contact .frm-fluent-form .text-danger {
  color: #ff8a8a;
  font-size: 1.2rem;
  margin-top: 0.4rem;
  background: transparent;
  padding: 0;
  border: none;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  header .content {
    width: 100%;
  }
  header .logo {
    margin: 0;
  }
  header nav .menu {
    gap: 4rem;
  }
  header nav .menu > li > a {
    font-size: 16px;
  }
  .head h1 {
    font-size: 7rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h1 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 1024px) {
  header .content {
    width: 100%;
  }
  header .logo,
  header .btns {
    margin: 0;
    padding: 0;
  }
  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: all;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    transform: translate(0);
  }
  header nav > .close {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.75);
    display: block;
  }
  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: all;
    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 .btn_menu {
    display: block;
  }
  header .icon_btn,
  header .btn {
    margin: 0;
  }
  header .btn_lang {
    margin-left: 17px;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h1 {
    font-size: 5rem;
  }
  .head h2 {
    font-size: 4rem;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn,
  .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
  }
  .btn_i {
    font-size: 14px;
    gap: 10px;
  }
  .btn_i::after {
    width: 5px;
    height: 12px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    position: static;
    width: 100%;
    max-width: unset;
    justify-content: flex-end;
    transform: translateX(0);
    margin-top: 30px;
    padding: 0 20px;
  }
  div.head.flex .text {
    padding: 0;
  }
  div.head.flex .btn,
  div.head.flex .btn_line,
  div.head.flex .btn_i {
    margin: 0;
  }
  div.head.white p,
  div.head.white .desc {
    letter-spacing: unset;
  }
  div.head .subtitle {
    font-size: 12px;
    margin-bottom: 8px;
    letter-spacing: unset;
  }
  div.head h1 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    margin-top: 12px;
  }
  div.head p + p {
    margin-top: 10px;
  }
  div.head .btn,
  div.head .btn_line,
  div.head .btn_i {
    margin-top: 20px;
  }
  header {
    padding: 0;
    top: 0;
  }
  header .logo img {
    height: 30px;
  }
  header .btns {
    gap: 26px;
    min-height: 64px;
  }
  header .icon_btn {
    width: 22px;
    height: 22px;
  }
  header .btn_lang {
    margin: 0;
  }
  header .btn_lang::before {
    display: none;
  }
  header .btn {
    line-height: 40px;
    padding: 0 20px;
  }
  footer .main {
    padding: 50px 0;
  }
  footer .main .flex {
    display: block;
  }
  footer .main .foot_intro {
    display: block;
    padding-bottom: 14px;
    margin-bottom: 20px;
  }
  footer .main .foot_intro .logo {
    width: max-content;
    margin: 0 auto;
  }
  footer .main .foot_intro .logo .img {
    height: 35px;
  }
  footer .main .foot_intro .rt {
    min-width: unset;
    margin-top: 30px;
  }
  footer .main .foot_intro strong {
    margin-bottom: 22px;
  }
  footer .main .foot_intro .connect li + li {
    margin-top: 16px;
  }
  footer .main .foot_intro .connect a {
    grid-template-columns: 18px 1fr 12px;
    font-size: 14px;
    gap: 10px;
  }
  footer .main .foot_nav {
    width: 100%;
  }
  footer .main .foot_nav strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid #cfd1d3;
    padding: 0 22px;
    position: relative;
    margin-bottom: 16px;
  }
  footer .main .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/icon-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_related {
    min-width: unset;
    padding-top: 20px;
  }
  footer .main .foot_related strong {
    margin: 30px 0 20px;
  }
  footer .main .foot_related .certifications {
    gap: 16px;
  }
  footer .main .foot_related .certifications .img {
    width: 60px;
  }
  footer .main .foot_related .certifications p {
    margin-top: 10px;
  }
  footer .main .foot_related .social {
    gap: 16px;
    margin-top: 20px;
  }
  footer .main .foot_related .social a {
    width: 22px;
    height: 22px;
  }
  footer .bottom {
    gap: 20px;
  }
  footer .bottom .flex {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }
  footer .bottom p,
  footer .bottom a {
    font-size: 14px;
  }
  footer .bottom p {
    font-size: 13px;
  }
  footer .bottom ul {
    gap: 16px;
  }
  footer #backtop {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
  }
  .footer_contact .content {
    padding: 0;
  }
  .footer_contact .flex {
    gap: 0;
  }
  .footer_contact .head {
    padding: 40px 20px;
  }
  .footer_contact .head ul {
    margin-top: 12px;
  }
  .footer_contact .quote_form {
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.055);
  }
  .footer_contact .quote_form::before {
    display: none;
  }
  .footer_contact form {
    gap: 16px 0;
    font-size: 14px;
  }
  .footer_contact form input,
  .footer_contact form textarea,
  .footer_contact form .upload_are {
    font-size: 14px;
    height: 46px;
    padding: 0 20px;
    margin: 0;
  }
  .footer_contact form .label {
    margin-bottom: 10px;
  }
  .footer_contact form select {
    background-size: 12px;
    background-position: right 20px center;
    padding-right: 40px;
  }
  .footer_contact form textarea {
    height: 120px;
    padding: 14px 20px;
  }
  .footer_contact form span:has(textarea) {
    margin: 0;
  }
  .footer_contact form .upload_are {
    padding: 5px 50px 5px 20px;
  }
  .footer_contact form .upload_are::after {
    width: 32px;
    height: 32px;
    right: 7px;
  }
  .footer_contact form span:has(input[type=checkbox]) {
    margin-top: 0;
  }
  .footer_contact form input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  .footer_contact form input[type=checkbox] ~ span {
    width: calc(100% - 24px);
    padding-left: 12px;
    margin-top: 0;
  }
  .footer_contact form span:has(input[type=submit]) {
    margin-top: 0;
  }
  .footer_contact form input[type=submit] {
    font-size: 14px;
  }
  /* Fluent Forms responsive override */
  .footer_contact .frm-fluent-form .ff-t-container.ff_columns_total_2 {
    column-gap: 16px;
  }
  .footer_contact .frm-fluent-form fieldset {
    gap: 16px 0;
    font-size: 14px;
  }
  .footer_contact .frm-fluent-form .ff-el-form-control {
    font-size: 14px;
    height: 46px;
    padding: 0 20px;
  }
  .footer_contact .frm-fluent-form .ff-el-input--label label {
    margin-bottom: 10px;
  }
  .footer_contact .frm-fluent-form textarea.ff-el-form-control {
    height: 120px;
    padding: 14px 20px;
  }
  .footer_contact .frm-fluent-form .ff_file_upload_holder {
    padding: 5px 50px 5px 20px;
    min-height: 46px;
    font-size: 14px;
  }
  .footer_contact .frm-fluent-form .ff_file_upload_holder .ff_upload_btn {
    font-size: 14px;
  }
  .footer_contact .frm-fluent-form .ff_file_upload_holder::after {
    width: 32px;
    height: 32px;
    right: 7px;
  }
  .footer_contact .frm-fluent-form .ff-custom_html input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  .footer_contact .frm-fluent-form .ff-custom_html label::before {
    width: 20px;
    height: 20px;
  }
  .footer_contact .frm-fluent-form .ff-custom_html label > span,
  .footer_contact .frm-fluent-form .ff-custom_html input[type=checkbox] ~ span {
    padding-left: 12px;
    font-size: 14px;
  }
  .footer_contact .frm-fluent-form .ff-btn-submit {
    font-size: 14px;
    height: 46px;
    line-height: 46px;
  }
}
@media screen and (max-width: 576px) {
  header .btn {
    display: none;
  }
  .footer_contact .quote_form {
    width: 100%;
  }
  .footer_contact .quote_form form .col-2 {
    width: 100%;
  }
  .footer_contact .frm-fluent-form .ff-t-container.ff_columns_total_2 {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .footer_contact .frm-fluent-form .ff-t-container.ff_columns_total_2 > .ff-t-cell {
    width: 100%;
    flex-basis: 100% !important;
  }
}
/* ===== Quote Popup ===== */
.quote_popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.quote_popup.active {
  display: flex;
}
.quote_popup_mask {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  cursor: pointer;
}
.quote_popup_dialog {
  position: relative;
  width: 100%;
  max-width: 138rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--primary);
  animation: quote_popup_in 0.35s ease;
}
@keyframes quote_popup_in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.quote_popup_close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 5;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
}
.quote_popup_close:hover {
  background-color: var(--secondary);
  color: var(--title);
  border-color: var(--secondary);
  transform: rotate(90deg);
}
body.popup_open {
  overflow: hidden;
}
/* footer_contact reused inside popup with smaller spacing */
.footer_contact.in_popup {
  background: none;
}
.footer_contact.in_popup .inner {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.footer_contact.in_popup .content {
  padding: 0;
}
.footer_contact.in_popup .head {
  padding: 3.2rem 0 3.2rem 4rem;
  max-width: 36rem;
}
.footer_contact.in_popup .head h2 {
  font-size: 3.4rem;
  line-height: 1.25;
}
.footer_contact.in_popup .head p {
  margin-top: 1.8rem;
  font-size: 1.4rem;
}
.footer_contact.in_popup .head ul {
  margin-top: 2rem;
}
.footer_contact.in_popup .quote_form {
  width: 57%;
  padding: 3.2rem 4rem 3.6rem 7rem;
}
.footer_contact.in_popup .quote_form::before {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .quote_popup_dialog {
    max-width: 110rem;
  }
  .footer_contact.in_popup .head {
    padding: 3rem 0 3rem 3rem;
  }
  .footer_contact.in_popup .quote_form {
    padding: 3rem 3rem 3rem 5rem;
  }
}
@media screen and (max-width: 768px) {
  .quote_popup {
    padding: 0;
  }
  .quote_popup_dialog {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
  }
  .quote_popup_close {
    width: 36px;
    height: 36px;
    font-size: 22px;
    line-height: 34px;
    top: 12px;
    right: 12px;
  }
  .footer_contact.in_popup .flex.between.gap.wrap {
    display: block;
  }
  .footer_contact.in_popup .head {
    padding: 50px 20px 20px;
    max-width: 100%;
  }
  .footer_contact.in_popup .head h2 {
    font-size: 22px;
  }
  .footer_contact.in_popup .quote_form {
    width: 100%;
    padding: 20px 20px 30px;
    background-color: rgba(255, 255, 255, 0.055);
  }
}
