* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #003c6d;
  --secondary: #f76226;
  --tertiary: #f5c518;
  --title: #161616;
  --text: #424242;
  --text2: rgba(35, 35, 35, 0.8);
  --bg: #f6f6f6;
  --shadow: 0 1rem 1rem rgba(199, 207, 211, 0.45);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
html[lang="ar"] {
  direction: rtl;
  text-align: right;
}
html[lang="ar"] header .header_top .info a{
  gap: 1rem;
} 
html[lang="ar"] .header_main .btns{
  margin-right: 1.5rem;
}
html[lang="ar"] .swiper-horizontal{
  
  direction: ltr;
}
html[lang="ar"] .swiper-horizontal .swiper-slide{
  direction: rtl;
}
html[lang="ar"] .swiper_btns, html[lang="ar"] .solution_cases .bottom_nav{
  direction: ltr;
}
.content {
  max-width: 158rem;
  margin: 0 auto;
  position: relative;
}
.small_content{
  max-width: 144rem;
}

.left_content{
  padding-left: 10.4rem;
}
.full_content{
  max-width: 192rem !important;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 147rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
input,
button,
textarea {
  border: none;
  outline: none;
  font-family: unset;
  color: var(--title);
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
textarea {
  resize: none;
}
button,
input[type="submit"] {
  cursor: pointer;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
table {
  width: 100%;
  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: "Jost", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
h1,
h2,
h3,
strong {
  font-weight: 400;
}
.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;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img {
  position: absolute;
  left: 0;
  top: 0;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img.video {
  position: relative;
}
.img.video .rll-youtube-player,
.img.video .flying-press-youtube {
  padding: 0;
  position: static;
}
.img.video video,
.img.video img,
.img.video iframe,
.img.video div:not(.btn_play) {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  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;
}
.btn {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 0;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 3rem;
  padding: 1rem 2.6rem;
  min-width: 15.8rem;
  text-transform: uppercase;
}
.btn:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}


.btn.btn_arrow {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 0;
  background-color: white;
  border: 1px solid white;
  color: #161616;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 3rem;
  padding: 1.8rem 3rem;
  min-width: 26.2rem;
  text-transform: uppercase;
  font-weight: 450;
  letter-spacing: 0.5px;
  max-width: max-content;
  justify-content: center;
}
.btn.btn_arrow:after{
  content: "";
  width: 1.85rem;
  height: 1.85rem;
  display: inline-block;
  background: url('../img/button_arrow.svg') no-repeat center/contain;
  margin-left: 0.7rem;
}
.btn.btn_arrow:hover{
  background-color: var(--primary);
  color: white;
  border: 1px solid var(--primary);
}
.btn.btn_arrow:hover:after{
  filter: contrast(0) brightness(100);
}

.btn.btn_arrow.blue{
  background-color: var(--primary);
  color: white;
}
.btn.btn_arrow.blue:after{
  filter: brightness(100);
}
.btn.btn_arrow.blue:hover{
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn_line {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  background-color: transparent;
  border: 1px solid var(--primary);
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 3.1rem;
  padding: 1.2rem 2.75rem;
  min-width: 20.6rem;
}
.btn_line:hover {
  background-color: var(--primary);
  color: var(--title);
}

.btn.btn_square{
  background-color: unset;
  color: #161616;
  font-size: 2rem;
  position: relative;
  background-color: white;
  border: none;
  transition: all 0.3s;
}
.btn.btn_square:before{
  content: "";
  width: 7.2rem;
  height: 7.2rem;
  position: absolute;
  left: 80%;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(22,22,22,0.6);
  z-index: -1;
  transition: all 0.3s;
}
.btn.btn_square:after{
  content: '';
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  background: url("../img/btn_arrow.svg") no-repeat center / contain;
  transition: all 0.3s;
  position: absolute;
  filter: contrast(0) brightness(0);
  left: calc(80% + 3.6rem);
  top: 50%;
  transform: translate(-50%,-50%);
}

.btn.btn_square:hover:before{
  width: 100%;
  height: 100%;
  left: 0;
  top: 50%;
  z-index: 9;
  transform: translateY(-50%);
}
.btn.btn_square:hover:after{
  opacity: 0;
}

.btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #1a1a1a;
  background-color: transparent;
  font-size: 1.4rem;
  line-height: normal;
  font-weight: 500;
  gap: 0.7rem;
}
.btn_i::after {
  display: inline-block;
  flex-shrink: 0;
  content: '';
  width: 1.2rem;
  height: 1.2rem;
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
}
.btn_i:hover::after {
  transform: translateX(20%);
}
.swiper_btns {
  gap: 3.6rem;
  display: flex;
}
.swiper_btns div {
  width: 7.3rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid var(--title);
  background-color: var(--title);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow-r.svg) no-repeat center / 33.8%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
.swiper_btns div:hover::after {
  filter: contrast(0) brightness(0);
}
.swiper_btns .btn_prev::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(36, 36, 36, 0.45);
}
.swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(0);
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 171.7rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.swiper_btns.white div {
  border-color: var(--primary);
  background-color: var(--primary);
}
.swiper_btns.white div::after {
  filter: contrast(0) brightness(0);
}
.swiper_btns.white div:hover {
  background-color: transparent;
}
.swiper_btns.white div:hover::after {
  filter: none;
}
.swiper_btns.white div.swiper-button-disabled {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: transparent;
}
.swiper_btns.white div.swiper-button-disabled::after {
  filter: contrast(0) brightness(2);
}

.pagination .swiper-pagination-bullet{
  width: 3rem;
  height: 1px;
  background-color: #939393;
  opacity: 1;
  border-radius: 0;
}
.pagination.swiper-pagination-bullets{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.pagination .swiper-pagination-bullet-active{
  background-color: var(--secondary);
}
.syedittext p, .syedittext .desc {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 300;
  color: var(--text);
}
.syedittext.small_p p{
  font-size: 2rem;
  line-height: 3rem;
  color: #545454;
  font-weight: 350;
}
.head h1{
  font-size: 6rem;
  font-weight: 500;
  line-height: 7.4rem;
}
.head h2{
  font-size: 4.4rem;
  line-height: 1.477;
  color: var(--title);
}
.syedittext h2{
  font-size: 4.6rem;
  line-height: 6.5rem;
}
.syedittext p{
  font-size: 2.4rem;
  line-height: 4rem;
  color: #2d2d2d;
  font-weight: 340;
}

.head.white h2{
  color: white;
}
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  color: white;
  transition: all 0.3s;
}
header:before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom,rgba(0,0,0,0.25),rgba(0,0,0,0));
  transition: all 0.3s;
}
header .header_top .info{
  width: max-content;
  margin-left: auto;
}

header .header_top{
  padding: 0.9rem 0;
}
header .header_top .info a{
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  font-weight: 300;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
header .header_top .info a:before{
  content: "";
  display: inline-block;
  width: 1.7rem;
  height: 1.7rem;
  background: url('../img/whatsapp_white.svg') no-repeat center/contain;
  margin-right: 0.7rem;
  transition: all 0.3s;
}
header .header_top .info a.header_email::before{
  background-image: url('../img/email_white.svg');
  width: 1.65rem;
  height: 1.65rem;
}
header .header_top .info a.header_phone::before{
  background-image: url('../img/phone_white.svg');
  width: 1.5rem;
  height: 1.5rem;
}
header .header_top .info a + a{
  margin-left: 3rem;
}
header .header_top .info a.header_phone{
  margin-left: 4rem;
}
header .header_top .btn_search{
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  background: url('../img/search_white.svg') no-repeat center/contain;
  margin-left: 3.1rem;
  cursor: pointer;
}
header .header_top .btn_lang{
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 300;
  margin-left: 2.7rem;
  cursor: pointer;
}
header .header_top .btn_lang span{
  text-transform: uppercase;
}
header .header_top .btn_lang .img{
  width: 2.7rem;
  height: 2.7rem;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header_top .btn_lang .img img{
  display: inline-block;
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 50%;
}
.header_main{
  padding-top: 0rem;
  padding-bottom: 2.2rem;
}
.header_main .logo img{
  height: auto;
  transform: translateY(-1rem);
}
.header_main ul.menu{
  display: flex;
  gap: 6.1rem;
  align-items: center;
}
.header_main nav{
  display: flex;
  align-items: center;
  margin-right: 6rem;
}
.header_main .account_icon{
  width: 2.2rem;
  height: 2.2rem;
  display: inline-block;
  background: url('../img/account_icon.svg') no-repeat center/contain;
  text-indent: -9999px;
  margin-left: 5rem;
}
/* header.bg .header_main .account_icon{
  filter: contrast(0) brightness(0);
} */
.header_main .close{
  display: none;
}
.header_main nav .menu>li>a{
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1rem 0;
}
header.blue_bg{
  position: sticky;
}
header.bg .header_main .logo img{
  transform: translateY(0);
}
header.bg{
  top: -2.5rem;
}
header.bg .header_top{
  opacity: 0;
}
header.bg, header.blue_bg{
  background-color: #00264B;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header.bg:before{
  opacity: 0;
}
header .header_main .logo{
  aspect-ratio: 283/68;
  position: relative;
  display: inline-block;
  width: 28.3rem;
}
header .header_main .logo img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  left: 0;
  top: 0;
  opacity: 1;
  transition: all 0.3s;
}

header .header_main .logo img.color_logo{
  opacity: 0;
}
/* header.bg .header_main .logo img.color_logo{
  opacity: 1;
}
header.bg .header_top .info a{
  color: var(--title);
}

header.bg .header_top .info a:before{
  filter: brightness(0);
}
header.bg .header_top .btn_search{
  filter: brightness(0);
}

header.bg .header_top .btn_lang{
  color: var(--title);
}
header.bg .header_main nav .menu li a{
  color: var(--title);
}
header.bg .btn{
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}
header.bg .btn:hover{
  background-color: var(--title);
} */

header nav .menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header nav .menu-item-has-children{
  position: relative;
}
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: var(--primary);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
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 {
  color: white;
  /* background-color: #001C3C; */
}

/* Third-level submenu (flyout to the right) */
header nav .sub-menu .menu-item-has-children {
  position: relative;
}
header nav .sub-menu .menu-item-has-children > a {
  position: relative;
  padding-right: 28px;
}
header nav .sub-menu .menu-item-has-children > a::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.7;
}
header nav .sub-menu .sub-menu {
  position: absolute;
  top: -6px;
  left: 100%;
  padding: 6px;
  transform: translateX(-10px);
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
  min-width: 180px;
  border-radius: 5px;
  background-color: var(--primary);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
/* Invisible bridge to keep hover when moving between 2nd and 3rd level */
header nav .sub-menu .sub-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 100%;
}
header nav .sub-menu > li:hover > .sub-menu {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}

.footer_contact{
  padding: 10rem 0 9rem;
  background: url('../img/footer_contact_bg.jpg') no-repeat center/cover;
}
.footer_contact .head h2{
  font-size: 4.4rem;
  line-height: 5.3rem;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.3rem;
}

.footer_contact .btn{
  padding: 1.8rem 3rem;
  background-color: white;
  border-color: white;
  color: #001c3d;
  font-size: 1.8rem;
  min-width: 26.3rem;
  display: flex;
  align-items: center;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s;
}
.footer_contact .btn:after{
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  background: url('../img/btn_arrow_blue.svg') no-repeat center/contain;
  margin-left: 0.9rem;
}
.footer_contact .btn:hover{
  background-color: transparent;
  color: white;
  border-color: white;
}
.footer_contact .btn:hover:after{
  filter: contrast(0) brightness(100);
}

footer{
  background-color: #0D0D0D;
  color: white;
}
.footer_top{
  padding: 11rem 0 17rem;
}

.footer_top .footer_col.contact{
  max-width: 27.3rem;
}
.footer_top .footer_col.newsletter{
  max-width: 33.5rem;
}

.footer_top .footer_col .logo{
  display: block;
  margin-bottom: 3.2rem;
}
.footer_top .footer_col .logo img{
  width: 25.4rem;
  height: auto;
  display: block;
}
.footer_top .footer_col p{
  font-size: 1.6rem;
  line-height: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer_top .footer_col.contact ul{
  margin-top: 3.5rem;
}
.footer_top .footer_col.contact ul .icon{
  width: 5.6rem;
  height: 5.6rem;
  min-height: 5.6rem;
  background-color: #282828;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_top .footer_col.contact ul li{
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.footer_top .footer_col.contact ul .icon img{
  width: 35%;
  height: 35%;
  object-fit: contain;
}
.footer_top .footer_col.contact ul li + li{
  margin-top: 3.3rem;
}
.footer_top .footer_col.contact ul li p{
  font-size: 1.5rem;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer_top .footer_col > strong{
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  margin-top: 3.6rem;
  margin-bottom: 3rem;
}
.footer_top .footer_col:not(.contact) ul li a{
  font-size: 1.5rem;
  line-height: 3.4rem;
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}
.footer_top .footer_col:not(.contact) ul li a:hover{
  color: white;
}

.footer_top .footer_col form{
  display: flex;
  position: relative;
  margin-top: 2rem;
}
.footer_top .footer_col form input[type="email"]{
  border: none;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.21);
  background-color: transparent;
  font-size: 1.6rem;
  color: #ffffff;
  flex: 1;
}
.footer_top .footer_col form input[type="submit"]{
  width: 2.3rem;
  height: 2.3rem;
  display: inline-block;
  text-indent: -99999px;
  background: url('../img/fly.svg') no-repeat center/contain;
  position: absolute;
  right: 0;
  bottom: 1.1rem;
}
.footer_top .footer_col form input[type="email"]::placeholder{
  color: white;
}

.footer_top .footer_col .social{
  display: flex;
  gap: 1rem;
  margin-top: 2.6rem;
}
.footer_top .footer_col .social a{
  width: 4.7rem;
  height: 4.7rem;
  border-radius: 50%;
  display: inline-block;
  text-indent: -999999px;
  position: relative;
  background-color: transparent;
  transition: all 0.3s;
}
.footer_top .footer_col .social .active a{
  background-color: #2F2F2F;
}
.footer_top .footer_col .social a:after{
  content: "";
  width: 40%;
  height: 40%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: url('../img/facebook.svg') no-repeat center/contain;
}

.footer_top .footer_col .social .whatsapp a:after{
  background: url('../img/whatsapp.svg') no-repeat center/contain;
}
.footer_top .footer_col .social .instagram a:after{
  background: url('../img/instagram.svg') no-repeat center/contain;
}
.footer_top .footer_col .social .youtube a:after{
  background: url('../img/youtube.svg') no-repeat center/contain;
}

.footer_top .footer_col .social .twitter a:after{
  background: url('../img/twitter.svg') no-repeat center/contain;
}

.footer_top .footer_col .social .linkedin a:after{
  background: url('../img/linkedin.svg') no-repeat center/contain;
}

footer .copyright{
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255,255,255,0.21);
}
footer .copyright p{
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
}
footer .copyright div ul{
  display: flex;
  gap: 4.5rem;
}
footer .copyright div ul a{
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.68);
  transition: all 0.3s;
}
footer .copyright div ul a:hover{
  color: white;
}



.page_banner{
  position: relative;
}
.page_banner .img_bg{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.page_banner .content{
    position: relative;
    z-index: 9;
}
.page_banner .head{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 87.6rem;
    color: white;
    padding-top: 15rem;
}
.page_banner .head h1{
    
    margin-bottom: 3.5rem;
}

.line_head{
    padding-top: 9.7rem;
}
.line_head.bg{
    background-color: #F4F5F7;
}
.line_head .head{
    padding-bottom: 9.7rem;
}
.line_head .head h2{
    margin-bottom: 7rem;
    padding-left: 10.3rem;
}

.line_head .head p{
    padding-left: 32%;
    padding-right: 14%;
}
.line_head .head:after{
    content: "";
    width: 1px;
    height: 37rem;
    background-color: #161616;
    position: absolute;
    left: 28.8rem;

    bottom: -7rem;
}
.line_head .head:before{
    content: "";
    width: 1px;
    height: 7rem;
    background-color: #fff;
    background-color: transparent;
    position: absolute;
    left: 28.8rem;
    
    top: 100%;
    z-index: 9;
}
.line_head .head .btn{
    margin-left: 32%;
    min-width: 24rem;
    margin-top: 3rem;
    background-color: #001C3C;
    font-weight: 350;
}

.line_head .line_subtitle{
  margin-left: 4%;
}

.line_subtitle{
  font-size: 1.8rem;
  color: #161616;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 450;
  display: inline-block;
  position: relative;
}
.line_subtitle:before {
    content: "";
    width: 6.6rem;
    height: 1px;
    background-color: #161616;
    position: absolute;
    top: 1.2rem;
    right: calc(100% + 2rem);
}
    .login-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(5px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .login-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .login-modal {
      background: white;
      border-radius: 0;
      width: 100%;
      max-width: 1100px;
      display: flex;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
      overflow: hidden;
      transform: scale(0.95);
      transition: all 0.3s ease;
    }

    .login-overlay.active .login-modal {
      transform: scale(1);
    }

    .login-image {
      min-height: 68rem;
      background-image: url('../img/login_image.jpg');
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 8.6rem;
      width: 50%;
    }


    .login-image .logo {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .login-image .logo img {
      width: 28.5rem;
    }

    .login-form-container {
      padding: 6rem 6.7rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 50%;
      padding-right: 8.7rem;
      padding-bottom: 7rem;
    }

    .login-close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      width: 4rem;
      height: 4rem;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 10;
      display: none;
    }

    .login-form-container h2 {
      font-size: 3rem;
      font-weight: 500;
      color: #161616;
      margin-bottom: 6rem;
      text-align: center;
    }

    .login-message {
      padding: 1.4rem 1.8rem;
      border-radius: 0.4rem;
      font-size: 1.5rem;
      font-family: 'Jost', sans-serif;
      line-height: 1.5;
      margin-bottom: 2.4rem;
      text-align: center;
      animation: loginMsgFadeIn 0.3s ease;
    }
    .login-message.error {
      background-color: #fef2f2;
      color: #b91c1c;
      border: 1px solid #fecaca;
    }
    .login-message.success {
      background-color: #f0fdf4;
      color: #15803d;
      border: 1px solid #bbf7d0;
    }
    @keyframes loginMsgFadeIn {
      from { opacity: 0; transform: translateY(-0.6rem); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .form-group {
      margin-bottom: 2rem;
    }

    .form-group input {
      width: 100%;
      padding: 1.7rem 2.2rem;
      border: 1px solid #d2d2d2;
      font-size: 1.7rem;
      font-family: 'Jost', sans-serif;
      transition: border-color 0.3s;
      box-sizing: border-box;
      color: #242424;
    }
    .form-group input::placeholder {
      color: #242424;
    }

    .form-group input:focus {
      outline: none;
      border-color: var(--primary, #002d5a);
    }

    .btn-login {
      width: 100%;
      padding: 1.8rem;
      background-color: #001C3C;
      color: white;
      border: none;
      font-size: 1.7rem;
      font-weight: 350;
      font-family: 'Jost', sans-serif;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      transition: background-color 0.3s;
      margin-top: 6rem;
    }

    .btn-login:hover {
      background-color: #003d7a;
    }

    .btn-login span {
      display: inline-block;
    }
.default_head{
  padding: 9rem 0;
  background-color: #eee;
}
.default_head h1{
  font-size: 4.5rem;
}
.default_body{
  padding: 5rem 0;
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: #171717;
}

.default_body h2 {
  font-size: 2.6rem;
  line-height: 3.4rem;
  font-weight: 500;
  margin: 3.5rem 0 3.3rem;
}
.default_body h3 {
  font-size: 2rem;
  line-height: 3.4rem;
  font-weight: 500;
  margin: 1.6rem 0 1rem;
}
.default_body p {
  margin: 1rem 0;
}
.default_body img {
  border-radius: 8px;
  width: 100%;
  display: block;
  object-fit: cover;
  margin: 4.7rem 0;
}
.default_body ul {
  margin: 1rem 0;
}
.default_body ul li {
  position: relative;
  padding-left: 0;
  margin-bottom: 1rem;
  list-style: disc;
  margin-left: 2rem;
}
.default_body ul li:last-child {
  margin-bottom: 0;
}

div.search-block {
  position: fixed;
  /* visibility: hidden; */
  z-index: 400;
  background-color: #fff;
  box-shadow: 0 0 15px rgb(0 55 96 / 12%);
  transition: 0.3s ease;
  /* opacity: 0; */
  width: 100%;
  bottom: -200vh;
  height: 100vh;
  transition: 0.3s ease;
  opacity: 0;
}
div.search-block.active {
  bottom: 0;
  opacity: 1;
  transform: translateY(135px);
}
div.search-block div.content {
  position: relative;
  display: block;
}
.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  background: url(../img/close-black.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.wd-action-btn:hover{
  transform: rotate(180deg);
}
div.search-block .searchform {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  /* opacity: 0; */
  transition: opacity 0.35s ease 0.2s;
  --wd-form-color: #333;
  --wd-form-placeholder-color: #333;
  text-align: center;
  transition: 0.75s all ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.search-block .btn_search_submit {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s;
}
div.search-block .btn_search_submit:hover {
  background: var(--secondary);
  transform: scale(1.08);
}
div.search-block.active .searchform {
  opacity: 1;
}
div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
}
header div.main-menu div.main div.right {
  display: none;
}
div.search-block .searchform ::-webkit-input-placeholder {
  color: #333333;
}


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

.sidebar_contact{
  position: fixed;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.sidebar_contact.show{
  opacity: 1;
  transition: all 0.3s;
  pointer-events: all;
}
.sidebar_contact ul{
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.sidebar_contact ul .item{
  position: relative;
}
.sidebar_contact ul li:hover .item span{
  background: rgba(0, 0, 0, 0.3);
}
.sidebar_contact ul .item span{
  width: 6.2rem;
  height: 6.2rem;
  display: flex;
  cursor: pointer;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.22);
  transition: all 0.3s;
}
.sidebar_contact ul .item span img{
  width: 30%;
  height: 30%;
  object-fit: contain;

}
.sidebar_contact ul .whatsapp .item span img{
  width: 35%;
  height: 35%;
}
.sidebar_contact ul li:hover .item p{
  opacity: 1;
}
.sidebar_contact ul .item p{
  position: absolute;
  /* opacity: 0; */
  width: max-content;
  height: 100%;
  padding: 0 3.5rem;
  padding-right: 7.6rem;
  display: flex;
  align-items: center;
  border-radius: 20rem;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 1.6rem;
  color: white;
  right: 0;
  top: 0;
  font-weight: 350;
  opacity: 0;
  transition: all 0.3s;
  
}

.sidebar_contact ul .go_top .item span{
  background-color: var(--secondary);
}
.sidebar_contact ul .go_top .item span:hover{
  background-color: var(--primary);
}
.quote_modal form input[type="submit"]{
  display: none;
}

.quote_modal form span.btn{
  min-width: unset;
}
.quote_modal .form strong{
  font-size: 2.5rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}
.quote_modal .form p{
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.contact_btn{
  display: none;
}

.search-block .suggest{
  margin-top: 5rem;
}
.search-block .suggest ul{
  display: flex;
  gap: 1.5rem;
  flex-flow: wrap;
}
.search-block .suggest li{
  display: inline-block;
  border-radius: 200rem;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 1rem 2rem 0.7rem;
  font-size: 1.5rem;
  transition: all 0.3s;
  line-height: 1;
  cursor: pointer;
}
.search-block .suggest ul li:hover{
  border-color: var(--primary);
  background-color: var(--primary);
  color: white;
}

.solution_pattern .pattern_nav .swiper_btns div:hover{
  background: url("../img/btn_arrow_right.svg") center center / contain no-repeat !important;
}

.solution_cases .bottom_nav .btn_prev, .solution_cases .bottom_nav .btn_next{
  cursor: pointer;
}
.solution_adv .swiper_solution_adv .swiper-slide strong{
  min-height: 8.2rem;
}
.swiper_solution_pattern .swiper-slide{
  height: auto;
}
.swiper_solution_pattern .swiper-slide .item{
  height: 100%;
}

html[lang="ar"] .header_main .account_icon{
  margin-right: 1rem;
}

html[lang="ar"] .swiper_cat_nav.swiper-horizontal{
  direction: rtl;
}

@media screen and (min-width: 769px) and (max-width: 1500px) {
  .home_solutions .item .flex .btns{
    padding-right: 5rem;
  }
  .content, .small_content, .account-content, .swiper_content {
    max-width: 1300px !important;
    padding: 0 2rem !important;
  }
  .line_subtitle::before{
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content, .account-content {
    padding: 0 3rem;
  }
  .content, .small_content, .account-content, .swiper_content {
    max-width: 1000px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content, .small_content, .account-content, .swiper_content {
    max-width: 896px !important;
  }
}
@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;
  }
  
  .gap {
    gap: 20px;
  }
  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 !important;
  }
  header nav .con {
    width: min(300px, 90%);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    transform: translateX(-100%);
    background-color: var(--primary);
  }
  header nav .close_box {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 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-w.svg') no-repeat center / 12px;
  }
  header nav .close_box .close:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
  header nav .close_box + div {
    flex: 1;
    overflow: auto;
    padding: 12px 20px 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 {
    display: block;
    font-size: 16px;
    line-height: 26px;
    padding: 10px 12px;
    transition: all 0.3s;
    border-radius: var(--radius);
    font-weight: 400;
    letter-spacing: unset;
  }
  header nav .menu > li > a:hover {
    background-color: var(--primary);
    color: var(--title);
  }
  header nav .menu > li.current-menu-item > a,
  header nav .menu > li.current-menu-parent > a {
    background-color: var(--primary);
    color: var(--title);
  }
  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;
    filter: contrast(0) brightness(2);
  }
  header nav .menu .menu-item-has-children.active::before {
    background-color: rgba(255, 255, 255, 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(255, 255, 255, 0.05);
  }
  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: var(--primary);
  }
  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 .header_top .info a.header_whatsapp{
    display: none;
  }
  header .header_top .info a{
    font-size: 13px;
  }
  header .header_top .info a.header_phone{
    margin-left: 15px;
  }
  header .header_top .btn_search{
    margin-left: 15px;
  }
  header .header_top .btn_lang{
    margin-left: 15px;
  }
  header .btn{
    display: none;
  }
  header .header_main .logo{
    width: 170px;
  }
  header .header_main .logo img{
    transform: translateY(0);
  }
  .btn_menu{
    width: 24px;
    height: 24px;
    margin-left: 15px;
    background: url('../img/menu-mobile.svg') no-repeat center/contain;
  }
  .header_main nav{
    margin-right: 0;
  }
  .header_main nav .menu li a{
    text-align: left;
    background-color: transparent;
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    
  }
  .header_main nav .menu li a:hover{
    background-color: transparent;
    color: white;
  }
  .header_main ul.menu{
    display: block;
  }
  header nav .menu > li{
    text-align: left;
  }
  header nav .menu > li + li{
    margin-top: 5px;
  }
  .page_banner .head{
    padding-top: 150px;
    min-height: unset;
    padding-bottom: 50px;
  }
  .head h1{
    font-size: 28px;
    line-height: 1.5;
  }

  .btn.btn_arrow{
    min-width: unset;
    padding: 10px 20px;
    font-size: 13px;
  }
  .header_main{
    padding-bottom: 1.8rem;
  }
  .head h2{
    font-size: 23px;
    line-height: 1.5;
  }
  .syedittext p{
    font-size: 15px;
    line-height: 1.6;
  }
  section .content >.flex{
    flex-flow: wrap;
  }
  section .content >.flex > *{
    width: 100%;
  }
  .footer_contact{
    padding: 30px 0;
  }
  .footer_contact .head h2{
    font-size: 25px;
    line-height: 1.5;
  }
  .footer_contact .btn{
    padding: 5px 20px;
    font-size: 15px;
    min-width: unset;
  }
  .footer_top{
    padding: 30px 0;
  }
  .footer_top .footer_col .logo img{
    width: 200px;
  }
  header .header_top .btn_lang .img{
    width: 22px;
    height: 22px;
  }
  .header_main .account_icon{
    width: 20px;
    height: 20px;
  }
  .footer_top .footer_col p{
    font-size: 14px;
    line-height: 1.5;
  }
  .footer_top>.flex{
    flex-flow: wrap;
  }
  .footer_top .footer_col, .footer_top .footer_col.contact{
    max-width: unset;
    width: 100%;
  }
  .footer_top .footer_col .logo{
    margin-bottom: 20px;
  }
  .footer_top .footer_col.contact ul{
    margin-top: 20px;
  }
  .footer_top .footer_col.contact ul .icon{
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: unset;
  }
  .footer_top .footer_col.contact ul li a{
    font-size: 14px;
  }
  .footer_top .footer_col.contact ul li p{
    font-size: 13px;
  }
  
  .footer_top .footer_col:not(.newsletter) > strong{
    margin: 0;
    display: block;
    padding: 10px 20px;
    border: 1px solid #ddd;
    font-size: 15px;
    border-radius: 3px;
    font-weight: 350;
    text-transform: capitalize;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
   .footer_top .footer_col:not(.newsletter) > strong:after{
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    background: url('../img/select.svg') no-repeat center/contain;
    filter: contrast(0) brightness(100); 
   }
  .footer_top .footer_col > strong + div{
    padding: 15px 20px;
    display: none;
  }
  .footer_top .footer_col:not(.contact) ul li a{
    font-size: 14px;
  }
  .footer_top .footer_col + .footer_col{
    margin-top: 20px;
  }
  .footer_top .footer_col > strong{
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .footer_top .footer_col form input[type="email"]{
    padding: 8px 0;
    font-size: 15px;
  }
  .footer_top .footer_col form input[type="submit"]{
    width: 18px;
    height: 18px;
  }
  .footer_top .footer_col .social a{
    width: 35px;
    height: 35px;
  }
  footer .copyright p{
    font-size: 12px;
  }
  footer .copyright div ul{
    gap: 10px;
  }
  footer .copyright div ul a{
    font-size: 13px;
  }
  
  .btn.btn_arrow:after{
    width: 15px;
    height: 14px;
  }
  .left_content{
    padding: 0 20px;
  }
  .login-modal {
    flex-direction: column;
    max-width: 40rem;
  }

  .login-image {
    min-height: 15rem;
    padding: 3rem;
  }

  .login-form-container {
    padding: 4rem 3rem;
  }

  .login-image{
    display: none;
  }
  .login-form-container{
    width: 100%;
  }
  .login-form-container h2{
    font-size: 25px;
    margin-bottom: 20px;
  }
  .form-group input{
    padding: 10px 20px;
    font-size: 14px;
  }
  .btn-login{
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 20px;
  }
  .login-modal{
    max-width: unset;
  }
  #loginPopup{
    align-items: flex-end;
  }

  .default_head{
      padding: 10rem 0 5rem;
  }
  .default_head h1{
    font-size: 2rem;
  }
  .default_body{
    padding: 3rem 0;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  
  .default_body h2 {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0 1rem;
  }
  .default_body h3 {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0;
  }
  .default_body p {
    margin: 1rem 0;
  }
  
  
  .default_body ul li {
    position: relative;
    margin-bottom: 1rem;
  }
  .default_body ul li:last-child {
    margin-bottom: 0;
  }

  div.search-block .searchform {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  div.search-block input[type='text'] {
    flex: 1;
  }
  div.search-block input[type='submit'] {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 2.2vw 0 1.2vw;
    /* background: url(../img/page_home-header_search.svg) no-repeat center; */
    background: url(../img/search.svg) no-repeat center / contain;
    background-size: 1.4rem;
    display: inline-block;
    vertical-align: middle;
    transition: 0.3s all ease;
    cursor: pointer;
    border: none;
    outline: none;
  }
  div.search-block div.content {
    position: unset;
  }
  div.search-block .searchform input[type='text'] {
    font-size: 22px;
    height: 70px;
  }
  .wd-action-btn {
    width: 25px;
    height: 25px;
    top: unset;
    right: 2rem;
    bottom: 2rem;
  }
  div.search-block {
    height: 100%;
    width: 100%;
    top: 120%;
    bottom: unset;
    visibility: hidden;
  }
  div.search-block.active {
    top: 20%;
    visibility: visible;
    height: 80%;
    transform: translateY(0);
    bottom: unset;
  }
  .search-block input[type="submit"]:not(:disabled):hover {
    background-size: 1.4rem;
    border: none;
  }
  .footer_top .footer_col.newsletter{
    width: 100%;
    max-width: 100%;
  }
  .swiper_solution_adv{
    overflow: hidden;
  }
  header nav .menu > li.current-menu-item > a, header nav .menu > li.current-menu-parent > a{
    color: white;
  }
  .contact_btn{
    display: block;
  }
}

@media (max-width: 400px) {
  .head h1{
    font-size: 25px;
    line-height: 1.5;
  }
  .line_subtitle::before{
    display: none;
  }
  .solution_features .tabs .tab_nav li a{
    font-size: 12px;
  }
  footer .copyright .flex{
    flex-direction: column;
  }
}

/* 404 Page */
.page_404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_404 .inner {
  text-align: center;
  padding: 80px 20px;
}
.page_404 .number {
  font-size: 140px;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  opacity: 0.15;
  letter-spacing: -4px;
}
.page_404 h1 {
  font-size: 32px;
  font-weight: 600;
  margin: 16px 0 12px;
}
.page_404 p {
  color: #666;
  font-size: 16px;
  margin-bottom: 32px;
}

.page_404 .btn{
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .page_404 .number { font-size: 80px; }
  .page_404 h1 { font-size: 22px; }
  .page_404 .btn{
    margin-left: auto;
    margin-right: auto;
  }
}
