* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #005eff;
  --secondary: #0b2a6b;
  --bg: #EDF2FF;
  --title: #0e191d;
  --text: #000;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0 auto;
  position: relative;
}

.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 147rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
input,
button,
textarea {
  border: none;
  outline: none;
  font-family: unset;
  color: var(--title);
  background-color: transparent;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
textarea {
  resize: none;
}
button,
input[type="submit"] {
  cursor: pointer;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
table {
  width: 100%;
  border-collapse: collapse;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.center p,
.center .desc,
.center h1,
.center h2 {
  margin-left: auto;
  margin-right: auto;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.row_reverse {
  flex-direction: row-reverse;
}
body {
  font-size: 1.6rem;
  color: var(--title);
  font-family: 'Saira', sans-serif;
  animation: fadeIn 0.4s ease-in forwards;
}
p, .desc, .Inter, .inter{
  font-family: 'Inter', sans-serif;
}
.Saira, .saira{
  font-family: 'Saira', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}
.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;
}

.swiper_btns {
  gap: 2.5rem;
  display: flex;
}
.swiper_btns div {
  width: 7rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 1rem;
  background-color: var(--secondary);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow_white.svg) no-repeat center / 32%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  background-color: var(--primary);
}
.swiper_btns div.swiper-button-disabled {
  pointer-events: none;
  background-color: var(--secondary);
  opacity: 0.8;
}
.swiper_btns .btn_prev::after {
  transform: rotate(180deg);
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 170rem;
  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;
  background-color: var(--primary);
}
.swiper_btns.middle div:hover {
  background-color: var(--title);
}
.swiper_btns.middle div.swiper-button-disabled {
  background-color: var(--secondary);
  opacity: 1;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}

header {
  position: sticky;
  left: 0;
  top: 0;
  right: 0;
  z-index: 996;
  transition: all 0.3s;
  background-color: #fff;
  top: -12rem;
}
header .content{
  max-width: 146rem;
}
header.style {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header.sticky{
  top: -3.8rem;
}
header .header_top{
  background-color: var(--secondary);
  color: white;
  font-size: 1.4rem;
}

header .header_top p{
  line-height: 3.8rem;
  font-size: 1.4rem;
  font-weight: 300;
  margin-right: 5rem;
  display: flex;
  align-items: center;
}
header .header_top a{
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  margin-right: 4.8rem;
}
header .header_top a:before{
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  background: url('../img/header_phone.svg') no-repeat center/contain;
  margin-right: 0.7rem;
}
header .header_top p:before{
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  display: inline-block;
  background: url('../img/header_tip.svg') no-repeat center/contain;
  margin-right: 0.7rem;
}
header .header_top .flex{
  justify-content: right;
}
header .header_top .btn_lang{
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.3rem;
}
header .header_top .btn_lang:before{
  content: "";
  width: 1.45rem;
  height: 1.45rem;
  display: inline-block;
  background: url('../img/header_lang.svg') no-repeat center/contain;
}
header .header_top .btn_lang span{
  color: #a6acb2;
  cursor: pointer;
  font-size: 1.3rem;
}
header .header_top .btn_lang span + span{
  display: flex;
  align-items: center;
  gap: 1rem;
}
header .header_top .btn_lang span.active{
  color: white;
}
header .header_top .btn_lang span + span:before{
  content: "";
  width: 1px;
  height: 1.1rem;
  background-color: #a6acb2;
  display: inline-block;
  
}
.header_main, .header_main>.content{
  max-height: 8.2rem;
}
header .logo {
  display: block;
  position: relative;
  width: 19.6rem;
  height: 13.6rem;
  background-color: white;
  border-radius: 0 0 1.2rem 1.2rem;
  position: absolute;
  left: 0;
  bottom: -1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
header .logo img {
  display: block;
  width: auto;
  height: 9.7rem;
  transform: translateY(-1rem);
  transform: all 0.3s;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header.style .logo{
  height: 9.7rem;
  bottom: 0;
}
header.style .logo img{
  height: 7rem;
  transform: translateY(-0rem);
}
header nav{
  margin-left: auto;
}
header nav .close {
  display: none;
}
header nav .menu {
  gap: 6rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 8.2rem;
  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,
header nav .menu > li:has(.current-menu-parent) > a {
  color: var(--primary);
}
header nav .menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  padding: 6px;
  transition: all 0.3s;
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: 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(0, 0, 0, 0.05);
}
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: 2rem;
  display: flex;
  align-items: center;
  margin-left: 14.4rem;
}
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%;
}
.breadcrumbs {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0e191d;
}
.breadcrumbs > span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.breadcrumbs > span > span {
  display: flex;
  align-items: center;
}
.breadcrumbs a {
  color: #46536b;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-family: Inter, sans-serif;
  transition: all 0.3s;
}
.breadcrumbs a:hover {
  color: var(--primary);
}
.breadcrumbs a:after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background: url('../img/breadcrumbs_icon.svg') no-repeat center / contain;
  margin-left: 1.6rem;
  margin-right: 1.6rem;
}
.btn{
  line-height: 5.1rem;
  font-size: 1.8rem;
  padding: 0 3.3rem;
  transition: all 0.3s;
  border-radius: 1rem;
  background-color: var(--primary);
  color: white;
  font-weight: 500;
  cursor: pointer;
  width: max-content;
  display: flex;
}
.btn.dark{
  background-color: var(--secondary);
}
.btn.dark:hover{
  background-color: var(--primary);
}
.center .btn{
  margin-left: auto;
  margin-right: auto;
}
.btn.arrow{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 4.2rem;
  line-height: 5.6rem;
}
.btn.arrow:hover:after{
  transform: translateX(0.5rem);
}
.btn.arrow:after{
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  display: inline-block;
  transition: all 0.3s;
  background: url('../img/arrow_white.svg') no-repeat center/contain;
}
.btn_border{
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  transition: all 0.3s;
  border-radius: 1rem;
  background-color: transparent;
  color: white;
  font-weight: 500;
  cursor: pointer;
  padding: 0 3.3rem;
  line-height: 5.4rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn_border:hover{
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn_border.blue{
  background-color: transparent;
  border: 1px solid #d4dae3;
  font-weight: 600;
  color: var(--secondary);
}
.btn_border.blue:hover{
  color: white;
}
.btn:hover{
  background-color: var(--secondary);
}
.btn.loading{
  position: relative;
  pointer-events: none;
  color: transparent;
}
.btn.loading:after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2rem;
  margin: -1rem 0 0 -1rem;
  border: 0.2rem solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn_loading_spin 0.7s linear infinite;
}
@keyframes btn_loading_spin{
  to{
    transform: rotate(360deg);
  }
}
header .btns .btn_search{
  width: 5rem;
  height: 5rem;
  background-color: #E9EDF2;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .btns .btn_search:after{
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  background: url(../img/header_search.svg) no-repeat center / contain;
}
.tcon.center > em{
  justify-content: center;
}
.tcon .title{
  font-size: 6.2rem;
  line-height: 6.4rem;
  font-weight: 700;
  color: #0b2a6b;
}
.tcon h2{
  font-size: 5rem;
  line-height: 6rem;
  color: #0b2a6b;
  font-weight: 600;
}
.tcon p{
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #46536b;
}
.tcon > em + h2{
  margin-top: 1rem;
}
.tcon h2 + p{
  margin-top: 1.5rem;
}
.tcon .title + p{
  margin-top: 2.5rem;
}
.tcon .title em{
  color: var(--primary);
}
.tcon>em{
  font-size: 1.6rem;
  color: #0e3fd8;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  letter-spacing: 0.13rem;
}
.tcon>em + .title{
  margin-top: 2rem;
}
.tcon>em:before{
  content: "";
  width: 1.9rem;
  height: 1.9rem;
  background: url('../img/subtitle_icon.svg') no-repeat center/contain;
  display: inline-block;
  margin-right: 0.9rem;
}
.tcon.white>em{
  color: #7fa3ff;
}
.tcon.white>em:before{
  background-image: url('../img/subtitle_icon2.svg');
}
.tcon.white h2{
  color: white;
}
.tcon.white p{
  color: #9aa6bc;
}
.footer_contact{
  padding: 0 7.8rem;
  position: relative;
  z-index: 9;
  color: white;
}
.footer_contact .content{
  z-index: 9;
}
.footer_contact .content:before{
  content: "";
  width: 30rem;
  height: 30rem;
  background: url('../img/cat_img_bg.svg') no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);

}
.footer_contact .main{
  padding: 8.5rem 0 8.9rem;
}
.footer_contact .content:after{
  content: "";
  z-index: 1;
  width: 180.6rem;
  height: 100%;
  border-radius: 200rem;
  background: linear-gradient(to right, #0B2B6D, #0F3EC6);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: -1;
}
.footer_contact .tcon{
  padding-left: 23.5rem;
}
.footer_contact .tcon h2{
  font-size: 4.4rem;
  line-height: 6rem;
  color: white;
  font-weight: 600;
  max-width: 64.3rem;
}
.footer_contact .tcon p{
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #9aa6bc;
  max-width: 51.2rem;
  margin-top: 2rem;
}

.footer_contact .btns{
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
  padding-right: 1rem;
}
.footer_contact .btn_border{
  gap: 0.5rem;
}
.footer_contact .btn_border:before{
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: url('../img/phone_white.svg') no-repeat center/contain;
}
footer{
  margin-top: 7.8rem;
  background-color: #0C1323;
  padding-top: 9.8rem;
  color: white;
}
footer .logo img{
  display: block;
  height: 12.2rem;
  width: auto;
}
footer .social{
  display: flex;
  gap: 0.8rem;
}
footer .social a{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #212A3B;
  width: 5.2rem;
  height: 5.2rem;
  position: relative;
  text-indent: -99999px;
  transition: all 0.3s;
}
footer .social a:hover{
  background-color: var(--primary);
}
footer .social a:hover:after{
  filter: brightness(1000);
}
footer .social a:after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 33%;
  height: 33%;
  background: url('../img/linkedin.svg') no-repeat center/contain;
  transition: all 0.3s;
}
footer .social .whatsapp a:after{
  background-image: url('../img/whatsapp.svg');
}
footer .social .facebook a:after{
  background-image: url('../img/facebook.svg');
}
footer .social .youtube a:after{
  background-image: url('../img/youtube.svg');
}
footer .social .instagram a:after{
  background-image: url('../img/instagram.svg');
}
footer .main{
  margin-top: 5rem;
  padding-bottom: 10rem;
}
footer .main .left{
  width: 53.08%;
}
footer .main .right{
  width: 35.82%;
}
footer .main .left .col strong{
  font-size: 2rem;
  font-weight: 600;
  display: block;
  margin-bottom: 1.4rem;
}
footer .main .left .contact_info .item{
  display: flex;
  align-items: center;
  gap: 1.3rem;
}
footer .main .left .contact_info .item + .item{
  margin-top: 2.1rem;
}
footer .main .left .contact_info .item span{
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  color: #9aa6bc;
  text-transform: uppercase;
  display: block;
}
footer .main .left .contact_info .item .img img{
  width: 2.7rem;
  display: inline-block;
  height: auto;
}
footer .main .left .contact_info .item a{
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 0.2rem;
  color: white;
  transition: all 0.3s;
}
footer .main .left .contact_info .item a:hover{
  color: var(--primary);
}
footer .main .left .col li a{
  font-size: 1.7rem;
  font-weight: 500;
  color: #9aa6bc;
  font-family: "Inter", sans-serif;
  transition: all 0.3s;
}
footer .main .left .col li a:hover{
  color: var(--primary);
}
footer .main .left .col li + li{
  margin-top: 1rem;
}
footer .main .right{
  padding: 3.2rem 4.4rem;
  background-color: #07255B;
  border-radius: 1.9rem;
}
footer .main .right strong{
  font-size: 2rem;
  font-weight: 600;
  display: block;
  margin-bottom: 2.8rem;
}
footer .main .right form{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  column-gap: 1.2rem;
  row-gap: 1.6rem;
}
footer .main .right input[type="email"]{
  line-height: 5.4rem;
  height: 5.4rem;
  padding: 0 1.5rem;
  font-size: 1.7rem;
  font-family: "Inter", sans-serif;
  background-color: #4a648f;
  border-radius: 1rem;
  color: white;
  width: 100%;
  border: 1px solid transparent;
  transition: all 0.3s;
  box-sizing: border-box;
}
footer .main .right input[type="email"]::placeholder{
  color: rgba(255, 255, 255, 0.78);
}
footer .main .right input[type="email"]:focus{
  border-color: var(--primary);
}
footer .main .right input[type="submit"]{
  width: 5.4rem;
  height: 5.4rem;
  min-width: 5.4rem;
  flex: 0 0 5.4rem;
  border-radius: 1rem;
  background: #005EFE url('../img/email_icon.svg') no-repeat center/2.2rem;
  display: inline-block;
  text-indent: -999999px;
  overflow: hidden;
  color: transparent;
  transition: all 0.3s;
}
footer .main .right input[type="submit"]:hover{
  background-color: #3D557F;
}

footer .copyright{
  padding: 1rem 0 2rem;
}
footer .copyright p{
  font-size: 1.4rem;
  color: #9aa6bc;
}
footer .copyright div ul{
  display: flex;
  gap: 2.9rem;
}
footer .copyright div ul a{
  font-size: 1.4rem;
  color: rgba(154, 166, 188, 0.68);
  font-family: "Inter", sans-serif;
}
footer .copyright div ul a:hover{
  color: var(--primary);
}

.section_banner {
  overflow: hidden;
  color: #fff;
  background-color: var(--secondary);
}
.section_banner .section_banner_swiper {
  max-width: 2560px;
  margin: 0 auto;
}
.section_banner .section_banner_swiper .swiper-wrapper {
  transition: linear;
}
.section_banner .section_banner_swiper .swiper-slide {
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 1.6rem;
  max-width: max-content;
  padding: 1.4rem 0;
  color: rgba(255, 255, 255, 0.7);
  
}
.section_banner .section_banner_swiper .swiper-slide::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 3rem;
  border-radius: 50%;
  background-color: var(--primary);
}


.products_list .img{
  aspect-ratio: 343/280;
  background-color: #E6EAED;
  position: relative;
}
.products_list .item{
  border-radius: 2.2rem;
  overflow: hidden;
  display: block;
  border: 1px solid #e6e9ee;
  outline: 1px solid transparent;
  transition: all 0.3s;
}
.products_list .item .img span{
  display: block;
  line-height: 3.6rem;
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  color: #0b2a6b;
  font-weight: 600;
  border-radius: 20rem;
  background-color: white;
  width: max-content;
  padding: 0 1.8rem;
  position: absolute;
  left: 2rem;
  top: 2.5rem;
}
.products_list .item .info{
  padding: 2.5rem 2.6rem 1.5rem;
}
.products_list .item .info strong{
  font-size: 2.2rem;
  color: var(--secondary);
  font-weight: 600;
  display: block;
}
.products_list .item .info p{
  font-size: 1.4rem;
  color: #46536b;
  font-weight: 500;
  margin-bottom: 3rem;
  margin-top: 0.5rem;
}
.products_list .item .info .flex span{
  font-size: 1.6rem;
  font-weight: 600;
  color: #0b2a6b;
  font-family: "Inter", sans-serif;
}
.products_list .item .info .flex .arrow{
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s;
}
.products_list .item .info .flex .arrow:after{
  content: "";
  width: 20%;
  height: 20%;
  position: absolute;
  display: inline-block;
  background: url('../img/product_arrow.svg') no-repeat center/contain;
}

.products_list .active .item .info .flex .arrow{
  transform: rotate(45deg);
  background-color: var(--primary);
}

.products_list .active .item{
  border-color: var(--primary);
  outline: 1px solid var(--primary);
}

.home_products{
  padding: 11rem 0 14rem;
  background-color: #fff;
}
.home_products.bg{
  background-color: #F5F6FA;
}
.home_products .content{
  max-width: 144rem;
}
.home_products .tcon{
  margin-bottom: 4.5rem;
}
.home_products .tcon p{
  max-width: 65.8rem;
}
.home_products .main ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
}
.home_products .main ul li:nth-child(3){
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: start;
  width: 64.72%;
}
.home_products .main ul li:nth-child(4){
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: end;
  width: 33.5%;
}
.home_products .main ul li:nth-of-type(1) .item .info p{
  max-width: 27.2rem;
}
.home_products .main ul li .item{
  display: flex;
  justify-content: space-between;
  padding: 3.8rem 3.2rem 2.6rem;
  border-radius: 1.6rem;
  background-color: #EFF1F5;
  height: 100%;
  position: relative;
}
.home_products .main ul li .item p{
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #46536b;
}
.home_products .main ul li .item .info{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 33.7rem;
}
.home_products .main ul li .item strong{
  font-size: 3rem;
  color: var(--secondary);
  font-weight: 600;
  display: block;
}
.home_products .main ul li .item.contact_item{
  background-color: #0B2A6B;
}
.home_products .main ul li .item.contact_item strong{
  color: white;
}
.home_products .main ul li .item .arrow{
  width: 5rem;
  height: 5rem;
  position: absolute;
  border-radius: 1rem;
  right: 2.9rem;
  bottom: 2.5rem;
  background: var(--secondary) url('../img/arrow_white.svg') no-repeat center/30%;
  z-index: 1;
  transition: all 0.3s;
}
.home_products .main ul li .item.contact_item .arrow{
  background: white url('../img/arrow_blue.svg') no-repeat center/30%;
}
.home_products .main ul li .item.contact_item strong{
  font-size: 3rem;
  line-height: 3.7rem;
  font-weight: 500;
}
.home_products .main ul li .item.contact_item:after{
  content: "";
  width: 23.9rem;
  height: 23.9rem;
  background: url('../img/cat_img_bg.svg') no-repeat center/contain;
  position: absolute;
  right: 4.3rem;
  bottom: 0;
  z-index: 0;
}
.home_products .main ul li .item:hover img{
  transform: scale(1.05);
}
.home_products .main ul li .item:hover .arrow{
  background-color: var(--primary);
  background-image: url('../img/arrow_white.svg');
}

.home_application{
  padding: 14rem 0 12.8rem;
  background-color: #F5F6FA;
}
.home_application.no_bg{
  background-color: white;
}
.home_application .head{
  margin-bottom: 5rem;
}
.home_application .head p{
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #46536b;
  max-width: 56.5rem;
}
.home_application .main ul{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2.5rem;
}
.home_application .main ul li{
  padding: 3.4rem 3.2rem;
  border-radius: 1.4rem;
  background-color: #fff;
  border: 1px solid #d4dae3;
  transition: all 0.5s;
}
.home_application .main ul li .img{
  width: 5.9rem;
  height: 5.9rem;
  border-radius: 1.1rem;
  margin-bottom: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EDF2FF;
  transition: all 0.3s;
}
.home_application .main ul li .img img{
  width: 60%;
  height: 60%;
  transition: none;
}
.home_application .main ul li strong{
  font-size: 2.4rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1.8rem;
  display: block;
  transition: all 0.3s;
}
.home_application .main ul li p{
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #5a6780;
  transition: all 0.3s;
}
.home_application .main ul li.active{
  background-color: var(--secondary);
}
.home_application .main ul li.active strong{
  color: white;
}
.home_application .main ul li.active p{
  color: rgba(255, 255, 255, 0.7);
}
.home_application .main ul li.active .img{
  background-color: var(--primary);
}
.home_application .main ul li.active .img img{
  filter: contrast(0) brightness(100);
}
.home_process{
  padding: 16.7rem 0 13.6rem;
  background-color: #F5F6FA;
}
.home_process .tcon{
  margin-bottom: 5.3rem;
}
.home_process .tcon p{
  max-width: 51rem;
  margin-top: 3rem;
}
.home_process .left{
  width: 47.777%;
}
.home_process .right{
  width: 44.444%;
}
.home_process .left .img{
  aspect-ratio: 683/400;
  border-radius: 3.1rem;
}
.home_process .right li{
  display: flex;
  gap: 3.6rem;
}
.home_process .right li + li{
  margin-top: 3rem;
}
.home_process .right li span{
  width: 8rem;
  height: 8rem;
  min-width: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  font-size: 2rem;
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
}
.home_process .right li:last-of-type span:after, .home_process .right li:last-of-type span:before{
  display: none;
}
.home_process .right li span:after{
  content: "";
  width: 3px;
  height: 4.8rem;
  background-color: #E0E3E6;
  position: absolute;

  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.home_process .right li span:before{
  content: "";
  width: 3px;
  height: 0;
  background-color: #0E3FD9;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.home_process .right li.active span{
  background-color: #0E3FD9;
  color: white;
}
.home_process .right li.active span:before{
  animation: height-48 3s linear forwards;
}
@keyframes height-48 {
  0%{
    height: 0;
  }
  100%{
    height: 4.8rem;
  }
}

.home_process .right li strong{
  font-size: 2.4rem;
  color: #0b2a6b;
  font-weight: 600;
  display: block;
  margin-bottom: 0.7rem;
}
.home_process .right li p{
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #46536b;
  max-width: 45rem;
}
.home_process .right .btn{
  margin-top: 5rem;
}
.contact_main .main{
  align-items: flex-start;
}

@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1380px) {
  header nav .menu {
    gap: 3.4rem;
  }
  header .btns {
    margin-left: 6rem;
  }
  header .content {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 1600px) {
  header .logo {
    position: static;
  }
  header .header_main,
  header .header_main > .content {
    max-height: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon .title {
    font-size: 5rem;
    line-height: 5.6rem;
  }
}
@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 {
    margin: 0;
    width: 35px;
    height: 35px;
  }
  .footer_contact {
    padding: 0 3rem;
  }
  .footer_contact .main {
    flex-wrap: wrap;
    padding: 6rem 0 6.4rem;
  }
  .footer_contact .tcon {
    padding-left: 0;
    padding-right: 4rem;
  }
  footer .main {
    flex-wrap: wrap;
  }
  footer .main .left,
  footer .main .right {
    width: 100%;
  }
  footer .main .right {
    margin-top: 4rem;
  }
  .home_products .main ul li:nth-child(3),
  .home_products .main ul li:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
    width: 100%;
  }
  .home_application .main ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .home_process .content > .flex {
    flex-wrap: wrap;
  }
  .home_process .left,
  .home_process .right {
    width: 100%;
  }
  .home_process .right {
    margin-top: 4.5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon .title {
    font-size: 4.4rem;
    line-height: 5rem;
  }
}
@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;
  }
  .breadcrumbs {
    font-size: 12px;
  }
  .breadcrumbs a:after {
    margin-left: 10px;
    margin-right: 10px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
  }
  .tcon > em {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .tcon h1 {
    font-size: 38px;
    line-height: 1.3;
  }
  .tcon 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 {
    margin: 0;
  }
  div.head .desc,
  div.head p {
    margin-top: 12px;
  }
  div.head .btn {
    margin-top: 20px;
  }
  header {
    top: 0;
  }
  header .logo {
    width: auto;
    height: auto;
    padding: 10px 12px;
    position: unset;
  }
  header .logo img {
    width: auto;
    height: 65px;
    max-height: 50px;
    position: unset;
    transform: translateY(0);
  }
  header.style .logo {
    width: auto;
    height: auto;
    padding: 10px 12px;
  }
  header.style .logo img {
    width: auto;
    height: 65px;
    max-height: 50px;
    transform: translateY(0);
  }
  header .btns {
    gap: 12px;
    min-height: 64px;
  }
  .section_banner .section_banner_swiper .swiper-slide {
    padding: 12px 0;
  }
  .section_banner .section_banner_swiper .swiper-slide::before {
    margin: 0 20px;
  }
  .tcon .title {
    font-size: 32px;
    line-height: 1.3;
  }
  .tcon h2 + p,
  .tcon .title + p {
    margin-top: 12px;
  }
  .btn.arrow {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
    gap: 8px;
  }
  .btn_border {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
  }
  .swiper_btns {
    gap: 12px;
  }
  .swiper_btns div {
    width: 44px;
    border-radius: 8px;
  }
  .swiper_btns.middle {
    display: none;
  }
  header.sticky {
    top: 0;
  }
  header .header_top {
    display: none;
  }
  .home_products {
    padding: 50px 0 60px;
  }
  .home_products .tcon {
    margin-bottom: 24px;
  }
  .home_products .main ul {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home_products .main ul li .item {
    padding: 24px 20px 22px;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .home_products .main ul li .item .img {
    width: 60%;
    align-self: center;
  }
  .home_products .main ul li .item .arrow {
    width: 40px;
    height: 40px;
    right: 16px;
    bottom: 16px;
  }
  .home_products .main ul li .item strong {
    font-size: 22px;
  }
  .home_products .main ul li .item.contact_item strong {
    font-size: 22px;
    line-height: 1.3;
  }
  .home_products .main ul li .item p {
    font-size: 14px;
    line-height: 1.5;
  }
  .home_products .main ul li:nth-of-type(1) .item .info p {
    max-width: none;
  }
  .home_products .main ul li .item.contact_item:after {
    width: 14rem;
    height: 14rem;
    right: 1rem;
  }
  .home_application {
    padding: 50px 0;
  }
  .home_application .head {
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .home_application .main ul {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home_application .main ul li {
    padding: 24px 20px;
  }
  .home_application .main ul li .img {
    margin-bottom: 40px;
  }
  .home_application .main ul li strong {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .home_application .main ul li p {
    font-size: 14px;
    line-height: 1.5;
  }
  .home_process {
    padding: 50px 0;
  }
  .home_process .tcon {
    margin-bottom: 24px;
  }
  .home_process .right li {
    gap: 16px;
  }
  .home_process .right li + li {
    margin-top: 24px;
  }
  .home_process .right li span {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 16px;
  }
  .home_process .right li strong {
    font-size: 18px;
  }
  .home_process .right li p {
    font-size: 14px;
    line-height: 1.5;
  }
  .home_process .right .btn {
    margin-top: 24px;
  }
  .products_list .img span {
    line-height: 28px;
    font-size: 12px;
    padding: 0 12px;
    left: 12px;
    top: 12px;
  }
  .products_list .item .info {
    padding: 14px 14px 10px;
  }
  .products_list .item .info strong {
    font-size: 16px;
  }
  .products_list .item .info p {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .products_list .item .info .flex span {
    font-size: 13px;
  }
  .products_list .item .info .flex .arrow {
    width: 30px;
    height: 30px;
  }
  .footer_contact {
    padding: 0;
  }
  .footer_contact .content:before {
    display: none;
  }
  .footer_contact .content:after {
    width: 100%;
    border-radius: 24px;
  }
  .footer_contact .main {
    padding: 40px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer_contact .tcon {
    padding-left: 0;
  }
  .footer_contact .tcon h2 {
    font-size: 26px;
    line-height: 1.3;
  }
  .footer_contact .tcon p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .footer_contact .btns {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    padding-right: 0;
    margin-top: 20px;
  }
  footer {
    margin-top: 50px;
    padding-top: 50px;
  }
  footer .logo img {
    height: 60px;
  }
  footer .social a {
    width: 40px;
    height: 40px;
  }
  footer .main {
    margin-top: 30px;
    padding-bottom: 40px;
  }
  footer .main .left {
    display: flex;
    flex-direction: column;
  }
  footer .main .left .col.contact_info {
    order: 3;
  }
  footer .main .left .col.contact_info > div {
    display: block;
  }
  footer .main .left .contact_info .item .img img {
    width: 20px;
  }
  footer .main .left .contact_info .item a {
    font-size: 14px;
  }
  footer .main .left .col strong {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    line-height: 24px;
    padding: 12px 0;
    margin-bottom: 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  footer .main .left .col strong:after {
    content: "";
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    transition: all 0.3s;
    background: url(../img/select.svg) no-repeat center / contain;
    filter: brightness(100);
  }
  footer .main .left .col.active strong:after {
    transform: rotate(180deg);
  }
  footer .main .left .col > div {
    display: none;
    padding: 12px 0;
  }
  footer .main .left .contact_info .item + .item {
    margin-top: 12px;
  }
  footer .main .right {
    margin-top: 30px;
    padding: 24px 20px;
  }
  footer .main .right strong {
    font-size: 16px;
    margin-bottom: 16px;
  }
  footer .main .right input[type="email"] {
    line-height: 46px;
    height: 46px;
    font-size: 14px;
  }
  footer .main .right input[type="submit"] {
    width: 46px;
    height: 46px;
    min-width: 46px;
    flex: 0 0 46px;
    background-size: 18px;
  }
  footer .main .right .wpcf7-spinner,
  footer .main .right form.submitting .wpcf7-spinner {
    top: 14px;
    right: 14px;
  }
  footer .copyright {
    flex-direction: column-reverse;
    gap: 8px;
    padding: 16px 0;
    text-align: center;
  }
  footer .copyright div ul {
    gap: 16px;
    justify-content: center;
  }

  header{
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 576px) {
  header .btns .btn {
    display: none;
  }
}

.jst-language-switcher {
  display: none;
}

body.page-id-7 .home_products,
.tax-products .home_products {
  background-color: #F5F6FA;
}
body.page-id-7 .home_application,
.tax-products .home_application {
  background-color: white;
}

/* Products mega menu (backdrop + panel), mirrors the .search_drawer pattern */
.products_megamenu {
  --mm-top: 0px;
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  /* visibility (not display) so the fade can play; delay hiding until it ends. */
  visibility: hidden;
  transition: visibility 0s linear 0.35s;
}
.products_megamenu.active {
  visibility: visible;
  transition: visibility 0s;
}
.products_megamenu .megamenu_backdrop {
  position: absolute;
  top: var(--mm-top);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  border: 0;
  padding: 0;
  background: rgba(11, 42, 107, 0.55);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  cursor: pointer;
}
.products_megamenu.active .megamenu_backdrop {
  opacity: 1;
  pointer-events: auto;
}
.products_megamenu .megamenu_panel {
  position: absolute;
  top: var(--mm-top);
  left: 0;
  right: 0;
  z-index: 1;
  max-height: calc(100vh - var(--mm-top));
  overflow-y: auto;
  background: #fff;
  box-shadow: 0 2rem 6rem rgba(11, 42, 107, 0.2);
  opacity: 0;
  transform: translateY(-1.6rem);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.products_megamenu.active .megamenu_panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.products_megamenu .megamenu_panel .content {
  padding: 3.2rem 2.4rem;
}
.products_megamenu .megamenu_close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 2;
  width: 4rem;
  height: 4rem;
  border: 0;
  border-radius: 0.8rem;
  background: url(../img/close.svg) no-repeat center / 1.4rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.products_megamenu .megamenu_close:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.products_megamenu .megamenu_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  gap: 3.2rem 4rem;
}
.products_megamenu .megamenu_col {
  min-width: 0;
}
.products_megamenu .megamenu_cat {
  display: block;
  font-family: "Saira", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--title);
  padding-bottom: 1.2rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(14, 25, 29, 0.12);
  transition: color 0.3s;
}
.products_megamenu .megamenu_cat:hover {
  color: var(--primary);
}
.products_megamenu .megamenu_subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-bottom: 1.6rem;
}
.products_megamenu .megamenu_subcats a {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary);
  transition: color 0.3s;
}
.products_megamenu .megamenu_subcats a:hover {
  color: var(--secondary);
}
.products_megamenu .megamenu_items {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  list-style: none;
}
.products_megamenu .megamenu_items a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.6rem;
  border-radius: 0.8rem;
  transition: background-color 0.3s;
}
.products_megamenu .megamenu_items a:hover {
  background-color: rgba(14, 25, 29, 0.04);
}
.products_megamenu .megamenu_items .thumb {
  flex-shrink: 0;
  width: 4.8rem;
  height: 4.8rem;
  overflow: hidden;
  border-radius: 0.6rem;
  background-color: #f2f4f8;
}
.products_megamenu .megamenu_items .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products_megamenu .megamenu_items .name {
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--title);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}
.products_megamenu .megamenu_items a:hover .name {
  color: var(--primary);
}
.products_megamenu .megamenu_all {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.3s;
}
.products_megamenu .megamenu_all:hover {
  color: var(--secondary);
}
.products_megamenu .megamenu_foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 3.2rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(14, 25, 29, 0.12);
}
/* The mega menu replaces the plain dropdown on the Products item. */
header nav .menu > li.has-megamenu:hover > .sub-menu {
  display: none;
}
header nav .menu > li.has-megamenu.megamenu-open > a {
  color: var(--primary);
}
@media screen and (max-width: 1024px) {
  .products_megamenu .megamenu_panel .content {
    padding: 5.6rem 2rem 3rem;
  }
  .products_megamenu .megamenu_grid {
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .products_megamenu .megamenu_grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }
}

.search_drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}
.search_drawer.active {
  display: block;
}
.search_drawer .drawer_backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 42, 107, 0.55);
  border: 0;
  width: 100%;
}
.search_drawer .drawer_content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 16rem 2rem 4rem;
}
.search_drawer .search_panel {
  width: min(72rem, 100%);
  background: #fff;
  border-radius: 1.6rem;
  padding: 3rem;
  box-shadow: 0 2rem 6rem rgba(11, 42, 107, 0.2);
}
.search_drawer .search_field {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border: 1px solid #d4dae3;
  border-radius: 1rem;
  padding: 0 1.6rem;
}
.search_drawer .search_field input {
  flex: 1;
  line-height: 5.6rem;
  font-size: 1.8rem;
  font-family: Inter, sans-serif;
}
/* Hide the browser's native search "X" so only the custom .search_clear button shows */
.search_drawer .search_field input[type="search"]::-webkit-search-cancel-button,
.search_drawer .search_field input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
.search_drawer .search_clear {
  width: 2.4rem;
  height: 2.4rem;
  opacity: 0;
  pointer-events: none;
  background: url('../img/close.svg') no-repeat center/contain;
}
.search_drawer .search_clear.visible {
  opacity: 1;
  pointer-events: auto;
}
.search_drawer .search_submit {
  display: none;
}
.search_drawer .search_footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1.6rem;
  font-size: 1.4rem;
  color: #46536b;
  font-family: Inter, sans-serif;
}

.quote_modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2100;
  place-items: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 3rem 2rem;
}
.quote_modal .modal_content {
  width: min(86rem, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 2rem;
  padding: 3.2rem 4rem 4rem; 
}
.quote_modal .head .title {
  font-size: 3.2rem;
  font-weight: 600;
  color: #14304a;
}
.quote_modal .head .desc {
  margin: 1.2rem 0 2.4rem;
  color: #46536b;
  font-size: 1.6rem;
  font-family: Inter, sans-serif;
}
.quote_modal .hidden-fields-container,
.contact_main .right .hidden-fields-container {
  display: none;
}
.quote_modal .wpcf7-form,
.contact_main .right .wpcf7-form {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  gap: 2.4rem 0;
}
.quote_modal .wpcf7-form > span:not(.wpcf7-spinner),
.contact_main .right .wpcf7-form > span:not(.wpcf7-spinner),
.quote_modal .wpcf7-form-control-wrap,
.contact_main .right .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.quote_modal .wpcf7-form > span.col2,
.contact_main .right .wpcf7-form > span.col2 {
  width: 48.05%;
}
.quote_modal input:not([type=submit]):not([type=hidden]),
.quote_modal textarea,
.contact_main .right .wpcf7-form input:not([type=submit]):not([type=hidden]),
.contact_main .right .wpcf7-form textarea {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 0.6rem;
  font-size: 1.6rem;
  font-family: Inter, sans-serif;
  transition: all 0.3s;
}
.quote_modal input:not([type=submit]):not([type=hidden]),
.contact_main .right .wpcf7-form input:not([type=submit]):not([type=hidden]) {
  line-height: 5rem;
  padding: 0 1.5rem;
}
.quote_modal textarea,
.contact_main .right .wpcf7-form textarea {
  padding: 1.5rem;
  height: 15.7rem;
}
.quote_modal input:not([type=submit]):not([type=hidden]):focus,
.quote_modal textarea:focus,
.contact_main .right .wpcf7-form input:not([type=submit]):not([type=hidden]):focus,
.contact_main .right .wpcf7-form textarea:focus {
  border-color: var(--primary);
}
.quote_modal label,
.contact_main .right .wpcf7-form label {
  font-size: 1.6rem;
  font-family: Inter, sans-serif;
  font-weight: 600;
  color: #0b1d38;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 0.3rem;
}
.quote_modal label i,
.contact_main .right .wpcf7-form label i {
  color: var(--primary);
}
.quote_modal label.btn,
.contact_main .right .wpcf7-form label.btn {
  position: relative;
  width: 100%;
  justify-content: center;
  line-height: 6rem;
  font-size: 1.8rem;
  letter-spacing: 0.05rem;
  color: #fff;
}
.quote_modal label.btn input,
.contact_main .right .wpcf7-form label.btn input,
.quote_modal input.wpcf7-submit,
.contact_main .right input.wpcf7-submit {
  display: none;
}
@keyframes sytech-spin {
  to {
    transform: rotate(360deg);
  }
}
.quote_modal .wpcf7-spinner,
.contact_main .wpcf7-spinner,
footer .wpcf7-spinner {
  display: none;
  visibility: hidden;
  width: 1.8rem;
  height: 1.8rem;
  margin: 0;
  padding: 0;
  background: none;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  opacity: 1;
  pointer-events: none;
}
.quote_modal .wpcf7-spinner,
.contact_main .wpcf7-spinner{
  position: absolute;
  right: 2rem;
}
.quote_modal .wpcf7-spinner::before,
.contact_main .wpcf7-spinner::before,
footer .wpcf7-spinner::before {
  content: none;
  display: none;
}
.quote_modal form.submitting .wpcf7-spinner,
.contact_main form.submitting .wpcf7-spinner {
  display: inline-block;
  visibility: visible;
  margin-left: 1rem;
  color: #fff;
  animation: sytech-spin 0.6s linear infinite;
}
footer .main .right form {
  position: relative;
}
footer .main .right .wpcf7-spinner {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  z-index: 2;
  display: block;
  flex: none;
  width: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
  visibility: hidden;
  border: 0;
}
footer .main .right form.submitting .wpcf7-spinner {
  visibility: visible;
  width: 1.8rem;
  height: 1.8rem;
  overflow: visible;
  border: 2px solid #fff;
  border-right-color: transparent;
  animation: sytech-spin 0.6s linear infinite;
}
footer .main .right form.submitting input.wpcf7-submit {
  background-image: none;
  pointer-events: none;
}
.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 0.8rem;
  font-size: 1.3rem;
  color: #c0392b;
  font-family: Inter, sans-serif;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output {
  margin: 1.6rem 0 0;
  padding: 1.4rem 1.8rem;
  border: 0;
  border-radius: 1rem;
  background: #EDF2FF;
  color: #0b2a6b;
  font-family: Inter, sans-serif;
}
.wpcf7 form.wpcf7-form.init .wpcf7-response-output,
.wpcf7 form.wpcf7-form.resetting .wpcf7-response-output,
.wpcf7 form.wpcf7-form.submitting .wpcf7-response-output {
  display: none;
}
.wpcf7 form.wpcf7-form.failed .wpcf7-response-output,
.wpcf7 form.wpcf7-form.aborted .wpcf7-response-output {
  background: #fdecea;
  color: #8a1f11;
}
.wpcf7 form.wpcf7-form.sent .wpcf7-response-output {
  background: #e8f6ec;
  color: #1e6b35;
}
.wpcf7 form.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7 form.wpcf7-form.unaccepted .wpcf7-response-output,
.wpcf7 form.wpcf7-form.spam .wpcf7-response-output {
  background: #fff6e5;
  color: #8a5a00;
}
.contact_main .right .wpcf7 {
  border: 0;
  padding: 0;
}
.quote_modal .wpcf7-form > p.tip,
.contact_main .right .wpcf7-form > p.tip {
  width: 100%;
  font-size: 1.4rem;
  color: #46536b;
  text-align: center;
  margin-top: -0.4rem;
}
.quote_modal .wpcf7-form > .wpcf7-response-output,
.contact_main .right .wpcf7-form > .wpcf7-response-output {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .quote_modal {
    padding: 1.6rem;
  }
  .quote_modal .modal_content {
    padding: 2.4rem 1.6rem 2.8rem;
  }
  .quote_modal .head .title {
    font-size: 2.4rem;
  }
  .quote_modal .wpcf7-form,
  .contact_main .right .wpcf7-form {
    gap: 1.6rem 0;
  }
  .quote_modal .wpcf7-form > span.col2,
  .contact_main .right .wpcf7-form > span.col2 {
    width: 100%;
  }
  .quote_modal input:not([type=submit]):not([type=hidden]),
  .contact_main .right .wpcf7-form input:not([type=submit]):not([type=hidden]) {
    line-height: 4.4rem;
    font-size: 1.4rem;
  }
  .quote_modal textarea,
  .contact_main .right .wpcf7-form textarea {
    font-size: 1.4rem;
    height: 12rem;
  }
  .quote_modal label,
  .contact_main .right .wpcf7-form label {
    font-size: 1.4rem;
  }
  .quote_modal label.btn,
  .contact_main .right .wpcf7-form label.btn {
    line-height: 4.6rem;
    font-size: 1.6rem;
  }
}
footer .main .right .hidden-fields-container {
  display: none;
}
footer .main .right .wpcf7-form-control-wrap {
  flex: 1 1 0;
  min-width: 0;
}
footer .main .right input.wpcf7-submit {
  width: 5.4rem;
  height: 5.4rem;
  min-width: 5.4rem;
  flex: 0 0 5.4rem;
  border-radius: 1rem;
  background: #005EFE url('../img/email_icon.svg') no-repeat center/2.2rem;
  text-indent: -999999px;
  overflow: hidden;
  color: transparent;
}
footer .main .right .wpcf7-response-output {
  flex: 1 0 100%;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
