@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@font-face {
  font-family: corbel_regular;
  src: url(../fonts/corbel/regular.ttf);
}
@font-face {
  font-family: helvetica_neue;
  src: url(../fonts/helvetica_neue/roman.otf);
}
@font-face {
  font-family: caveat_semiBold;
  src: url(../fonts/caveat/semiBold.ttf);
}
:root {
  /* --primary: #00B4DB; */
  --primary: #2E81FD;
  --secondary: #5A37FD;
  --light1: #F1F3F3;
  --filterPrimary: invert(47%) sepia(17%) saturate(3087%) hue-rotate(182deg) brightness(98%) contrast(104%);
  --filterSecondary: invert(0%) sepia(100%) saturate(19%) hue-rotate(19deg) brightness(101%) contrast(106%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

.bg-light1 {
  background-color: var(--light1);
}

* {
  margin: 0px;
  box-sizing: border-box;
  text-decoration: none;
  /*scroll-behavior: smooth;*/
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 7px;
}

*::-webkit-scrollbar-track {
  background-color: #eee;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

body {
  direction: ltr;
  overflow-x: hidden;
  font-family: corbel_regular;
  font-weight: 400;
  color: #5A5A5A;
  line-height: 1.3;
}

.arial-font {
  font-family: Arial, Helvetica, sans-serif;
}

div::-webkit-scrollbar,
ul::-webkit-scrollbar,
nav::-webkit-scrollbar {
  height: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: corbel_regular;
}

/*.caveat {*/
/*  font-family: caveat_semiBold;*/
/*}*/
/* ====================== [ Start mouse-cursor ] ====================== */
/*.swiper-wrapper.curs-scroll {*/
/*  cursor: none;*/
/*}*/
/*.mouse-cursor {*/
/*  position: fixed;*/
/*  left: 0;*/
/*  top: 0;*/
/*  pointer-events: none;*/
/*  border-radius: 50%;*/
/*  -webkit-transform: translateZ(0);*/
/*  transform: translateZ(0);*/
/*  visibility: hidden;*/
/*}*/
/*.cursor-inner {*/
/*  margin-left: -2px;*/
/*  margin-top: -2px;*/
/*  width: 5px;*/
/*  height: 5px;*/
/*  z-index: 10000001;*/
/*  background-color: #fff;*/
/*  border: 1px solid #fff;*/
/*  -webkit-transition: width .3s ease-in-out,*/
/* height .3s ease-in-out,*/
/* margin .3s ease-in-out,*/
/* opacity .3s ease-in-out;*/
/*  transition: width .3s ease-in-out,*/
/* height .3s ease-in-out,*/
/* margin .3s ease-in-out,*/
/* opacity .3s ease-in-out;*/
/*  opacity: 0;*/
/*}*/
/*.cursor-inner.cursor-hover {*/
/*  opacity: 1;*/
/*}*/
/*.cursor-outer {*/
/*  margin-left: -17px;*/
/*  margin-top: -17px;*/
/*  -webkit-box-sizing: border-box;*/
/*  box-sizing: border-box;*/
/*  opacity: .5;*/
/*  z-index: 10000000;*/
/*  -webkit-transition: width .3s ease-in-out,*/
/* height .3s ease-in-out,*/
/* margin .3s ease-in-out,*/
/* background-color .3s,*/
/* opacity .3s;*/
/*  transition: width .3s ease-in-out,*/
/* height .3s ease-in-out,*/
/* margin .3s ease-in-out,*/
/* background-color .3s,*/
/* opacity .3s;*/
/*  opacity: 1;*/
/*  -webkit-transition: all 0.1s linear;*/
/*  transition: all 0.1s linear;*/
/*  background: #fff5;*/
/*  border: 1px solid #fff;*/
/*  height: 25px;*/
/*  width: 25px;*/
/*  opacity: 0.3;*/
/*  -webkit-box-shadow: rgba(255, 255, 255, 0) 0px 0px 0px 5px;*/
/*          box-shadow: rgba(255, 255, 255, 0) 0px 0px 0px 5px;*/
/*}*/
/*.cursor-outer.cursor-hover {*/
/*  opacity: 1;*/
/*  margin-left: -25px;*/
/*  margin-top: -25px;*/
/*  width: 50px;*/
/*  height: 50px;*/
/*  background-color: #fff !important;*/
/*  border: 1px solid #fff;*/
/*  opacity: .3 !important;*/
/*}*/
/*.cursor-outer.cursor-scroll {*/
/*  margin-left: -35px;*/
/*  margin-top: -35px;*/
/*  width: 70px;*/
/*  height: 70px;*/
/*  border-color: transparent;*/
/*  background-color: #fff;*/
/*  opacity: 1;*/
/*}*/
/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #1B2021;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.filterPrimary {
  filter: var(--filterPrimary);
}

.filterSecondary {
  filter: var(--filterSecondary);
}

.filterWhite {
  filter: var(--filterWhite);
}

p,
.p {
  font-size: 15px;
  color: #555;
  line-height: 1.3;
  margin-bottom: 0;
}

a {
  color: #000;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}

a:hover {
  color: var(--primary) !important;
}

a:focus {
  outline: 0;
}

del,
.del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  transition: all 0.3s linear;
  background-color: transparent;
}

button:focus {
  border: none;
  box-shadow: transparent;
  outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  transition: all 0.3s ease;
  outline: 0;
  box-shadow: none;
}

form .form-group {
  position: relative;
}

form .form-control::-moz-placeholder {
  color: #58595B;
}

form .form-control::placeholder {
  color: #58595B;
}

form .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}

form input,
form select {
  height: 55px !important;
}

form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}

form textarea {
  resize: none;
}

form .form-check-input {
  height: 1em !important;
}

.progress-wrap {
  position: fixed;
  inset-inline-end: 15px;
  bottom: 15px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(130%);
  z-index: 99;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/icons/caret-arrow-up.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  /*color: var(--primary);*/
  left: 13px;
  top: 12px;
  height: 20px;
  width: 20px;
  display: block;
  /*-webkit-filter: var(--filterPrimary);*/
  /*        filter: var(--filterPrimary);*/
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.container,
.container-fluid,
.zi_5 {
  position: relative;
  z-index: 5;
}

.secImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

.trans_3 {
  transition: all 0.3s linear;
}

/**********************************************
   Start Loader
**********************************************/
#preloader {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
  pointer-events: none;
  /*----------- upload loader ------------*/
}

#preloader::after,
#preloader::before {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(to right, #0d1a36, #132650, #0a152e);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

#preloader::before {
  top: 0;
}

#preloader::after {
  bottom: 0;
}

#preloader .logo_img {
  width: 300px;
  max-width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0.5;
}

#preloader #loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3333333333);
  display: none;
  transition: all 0.5s ease;
}

#preloader #loading-wrapper.show {
  display: block;
}

#preloader #loading-wrapper #loading-text {
  display: block;
  position: absolute;
  top: calc(50% - 38px);
  left: 50%;
  color: #fff;
  width: 100px;
  height: 100px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-size: 20px;
}

#preloader #loading-wrapper img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}

#preloader #loading-wrapper #loading-content {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F00;
}

#preloader #loading-wrapper #loading-content::after {
  content: "";
  position: absolute;
  border: 3px solid #0F0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}

#preloader #loading-wrapper #loading-content::before {
  content: "";
  position: absolute;
  border: 3px solid #00F;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}

#preloader #loading-wrapper #loading-content {
  border: 3px solid transparent;
  border-top-color: #3659A3;
  border-bottom-color: #3659A3;
  border-radius: 50%;
  animation: loader 2s linear infinite;
}

#preloader #loading-wrapper #loading-content::before {
  border: 3px solid transparent;
  border-top-color: #0aafde;
  border-bottom-color: #0aafde;
  border-radius: 50%;
  animation: loader 3s linear infinite;
}

#preloader #loading-wrapper #loading-content::after {
  border: 3px solid transparent;
  border-top-color: #E33F74;
  border-bottom-color: #E33F74;
  border-radius: 50%;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}

#preloader.isdone {
  visibility: hidden;
  transition-delay: 1.5s;
}

#preloader.isdone #loading-wrapper {
  opacity: 0;
  transform: scale(3);
  filter: blur(2px);
}

#preloader.isdone::after,
#preloader.isdone::before {
  height: 0;
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition-delay: 1s;
}

#preloader #content-wrapper {
  color: #FFF;
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}

#preloader #header {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100px;
  background-color: #666;
}

#preloader #content {
  width: 800px;
  height: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: #888;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/**********************************************
   Start Animations
**********************************************/
@keyframes floating-y {
  0% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}
@keyframes floatingX {
  0% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(-2px);
  }
}
.slide_ltr {
  transition: all 1s ease-in-out;
  transition-delay: 0.1s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.slide_ltr.animated {
  transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.slide_ltr.no_scale {
  transform: scale(1);
}

.slide_rtl {
  transition: all 1s ease-in-out;
  transition-delay: 0.1s;
  /*-webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);*/
  /*        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);*/
}

.slide_rtl.animated {
  transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.slide_rtl.no_scale {
  transform: scale(1);
}
@keyframes puff-in {
  0% {
    transform: scale(1.05);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}
.puff-in {
  animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}
@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.text-focus-in {
  animation: text-focus-in 0.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border-radius: 25px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 45px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  transition: all 0.3s linear;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 45px;
  color: #272727;
  transition: all 0.3s linear;
  display: none;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  color: var(--primary);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 2%;
  left: auto;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: "\f0da";
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 2%;
  right: auto;
}

.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: "\f0d9";
}

.butn {
  position: relative;
  padding: 0.7rem 1.7rem;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 0;
}

.butn i {
  margin-inline-end: 7px;
}

.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}

.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}

.butn.primary_border_butn {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.butn.secondary_butn {
  background-color: var(--secondary);
  color: #fff;
}

.butn.secondary_border_butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}

.butn.white_butn {
  background-color: #fff;
  color: #333;
}

.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}

.butn:hover {
  background-color: #202020;
  border: 1px solid #202020;
  color: #fff !important;
}

.butn:hover .icon {
  filter: var(--filterWhite);
}

.icon18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
  object-fit: contain;
}

.icon15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
  object-fit: contain;
}

.main_butn {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: 0.3rem 1rem;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
}

.main_butn::before {
  content: "";
  width: 40px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  transition: all 0.3s linear;
  z-index: 0;
  background-color: #CECECE;
}

.main_butn:hover {
  color: #5A5A5A !important;
}

.main_butn:hover::before {
  width: 100%;
}

.section .txt_box .subtitle,
.section .title-wrapper .subtitle {
  font-size: 17px;
  font-family: corbel_regular;
  color: var(--primary);
}

.section .txt_box .title,
.section .title-wrapper .title {
  color: #5A5A5A !important;
  line-height: 1.2;
  font-size: 24px;
  margin-bottom: 10px !important;
}

.vision_pg.section .txt_box .title,
.vision_pg.section .title-wrapper .title {
  /*font-size: 36px;*/
  font-family: corbel_regular;
  /*color: var(--secondary) !important;*/
  text-wrap: balance;
}

.vision_pg.section .txt_box .subtitle,
.vision_pg.section .title-wrapper .subtitle {
  line-height: 1.2;
  font-size: 22px;
  color: var(--primary) !important;
  margin-bottom: 20px !important;
}

/*.vision_pg.section .txt_box .p {*/
/*    font-size: 21px;*/
/*}*/
.sub-color2 {
  color: var(--primary) !important;
}

.section .txt_box .p {
  font-size: 21px;
  color: #272727;
  line-height: 1.3;
  /* text-wrap: balance; */
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar {
  flex-direction: column;
  flex-wrap: wrap;
  padding: 2rem 1rem;
  z-index: 9;
  transition: all 0.5s ease;
  z-index: 99;
}

.navs-container .navbar.home_nav {
  padding-top: 70px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.navs-container .navbar .logo_wh {
  display: none;
}

.navs-container .navbar .logo {
  display: none !important;
}

.navs-container .navbar.scrolled .logo {
  display: inline-block !important;
}

.navs-container .navbar.scrolled .logo_wh {
  display: none !important;
}

.navs-container .navbar .logo_wh {
  display: inline-block !important;
  height: 45px;
}

.navs-container .navbar.scrolled .nav-link {
  color: #121212 !important;
}

.navs-container .navbar.scrolled {
  background-color: #fff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.5s;
}

.navs-container .navbar.scrolled .logo_box {
  margin-bottom: 5px !important;
  padding-bottom: 0px !important;
}

.navs-container .navbar.scrolled .logo_box .logo {
  /*width: 60%;*/
}

.navs-container .navbar.scrolled .drop_down {
  top: 70px;
}

.navs-container .navbar .logo_box .logo {
  /*width: 100%;*/
  /*-o-object-fit: contain;*/
  /*   object-fit: contain;*/
  display: block;
  margin: auto;
  height: 40px;
}

.navs-container .navbar .nav-item {
  margin-inline-start: 20px;
}

.navs-container .navbar .nav-link {
  font-weight: 400;
  font-size: 16px;
  color: #000;
  text-transform: capitalize;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.navs-container .navbar .nav-link:hover {
  color: var(--primary);
}

.navs-container .navbar .nav-link {
  color: #fff;
}

/* .navs-container .navbar .nav-link::after {
  content: '';
  width: 0;
  height: 2px;
  background-color: var(--primary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
} */
.navs-container .navbar .nav-link:hover::after {
  width: 100%;
  opacity: 1;
}

.navs-container .navbar .has_dropdown {
  position: relative;
}

.navs-container .navbar .drop_down {
  padding: 30px 10px;
  background-color: #fff;
  position: absolute;
  top: 130px;
  left: 0;
  right: 0;
  width: 100%;
  transition: all 0.3s linear;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.navs-container .navbar .drop_down.active {
  opacity: 1;
  visibility: visible;
}

.navs-container .navbar .drop_down .box .item {
  display: block;
  margin-bottom: 20px;
}

.navs-container .navbar .drop_down .box .item .icon {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
  object-fit: contain;
}

.navs-container .navbar .drop_down .box .item .title {
  font-size: 16px;
  margin-bottom: 5px;
  transition: all 0.3s linear;
  text-transform: capitalize;
}

.navs-container .navbar .drop_down .box .item .p {
  color: #959595;
  font-size: 12px;
  line-height: 1.5;
}

.navs-container .navbar .drop_down .box .item:hover .item {
  color: var(--primary);
}

.navs-container .navbar .drop_down .secImg {
  /*height: 237px;*/
  height: 100%;
}

.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  /*background-color: rgba(221, 221, 221, 0.3);*/
  border: none;
  position: relative;
}

.navbar-toggler.active .navbar-toggler-icon {
  background-color: transparent !important;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after,
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.navs-container .lang-link {
  font-family: "Noto Kufi Arabic", sans-serif;
}

.navs-container .logo_box {
  max-height: 45px;
}

.footer {
  background-color: var(--light1);
  padding: 60px 0 20px !important;
}

.footer .content {
  /* margin-bottom: 25px; */
}

.footer .content .logo {
  height: 45px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  margin-bottom: 5rem;
}

.footer .content .social_links a {
  color: #272727;
  margin-inline-end: 5px;
  font-size: 20px;
}

.footer .content .social_links a::after {
  content: "|";
  color: #999999;
  opacity: 0.61;
  display: inline-block;
  margin: 0 5px;
  position: relative;
  top: -2px;
}

.footer .content .social_links a:last-child::after {
  display: none;
}

.footer .content .title {
  font-size: 16px;
}

.footer .content .links .item {
  color: #999999;
  font-size: 13px;
  margin-bottom: 10px;
  /*font-family: 'Poppins', sans-serif;*/
  text-transform: capitalize;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

.footer .content .links .item i {
  display: inline-block;
  position: relative;
  top: 4px;
  margin-inline-end: 10px;
  flex-shrink: 0;
}

.footer .content .links .item a {
  color: #999999;
}

.footer .foot {
  border-top: 1px solid #707070;
  padding-top: 20px;
  margin-top: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

.footer .foot .foot-links a {
  display: inline-block;
  line-height: 1;
  font-size: 14px;
  color: #999;
  padding-inline-end: 10px;
  margin-inline-end: 10px;
  margin-bottom: 15px;
  border-inline-end: 1px solid #999;
}

.footer .foot .foot-links a:last-of-type {
  padding-inline-end: 0;
  margin-inline-end: 0;
  border-inline-end: 0;
}

.footer .foot .copyright_p {
  color: #999999;
  /*font-family: 'Poppins', sans-serif;*/
  font-size: 14px;
}

.footer .foot .links a {
  color: #999999;
  font-size: 15px;
  margin-inline-end: 10px;
}

.footer .foot .links a::after {
  content: "|";
  color: #999999;
  display: inline-block;
  margin: 0 10px;
}

.footer .foot .links a:last-child::after {
  display: none;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  position: relative;
}

.header .item {
  padding: 250px 0 200px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 20;
  height: 100dvh;
}

.header .item .title {
  font-size: 36px;
  letter-spacing: 3px;
  text-wrap: balance;
}

/* .header .item::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffffd4), color-stop(#ffffffe1), to(#ffffff00));
  background-image: linear-gradient(to bottom, #ffffffd4, #ffffffe1, #ffffff00);
  height: 60%;
  z-index: 3;
} */
/*.header .item::after {*/
/*  content: '';*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  display: block;*/
/*  background-color: rgba(18, 56, 100, 0.3);*/
/*  background-image: -webkit-gradient(linear, left top, right top, from(#a795ff), to(#7bd7eb));*/
/*  background-image: linear-gradient(to right, #a795ff, #7bd7eb);*/
/*  opacity: .3;*/
/*  z-index: 2;*/
/*}*/
.header .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.2666666667);
  opacity: 1;
}

.header .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}

.header .swiper-pagination {
  width: 100%;
  text-align: center;
  padding-bottom: 5px !important;
  /*display: none;*/
}

.header .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.4;
  margin: 5px;
}

.header .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ------- style 12/9/2024  */
.header .item .bg {
  z-index: -2;
  /* 10/7/2025 */
  object-position: top;
}

.header .item::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #272727;
  opacity: 45%;
  z-index: -1;
}

.header .title {
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

.header .sub-title {
  font-size: 36px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 10px;
  color: #fff;
}

.header .item .float_logos {
  position: absolute;
  right: 0;
  bottom: 50px;
  z-index: 20;
  height: 120px;
  max-width: 50%;
  background-color: #fff;
  padding: 20px 10px;
  display: flex;
}

.header .item .float_logos img {
  height: 100%;
  max-width: 50%;
  width: 170px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0 20px;
}

.header .item .float_logos img:last-of-type {
  border-inline-start: 2px solid #000;
}

.about_sec {
  position: relative;
  padding: 110px 0;
  background-color: #F1F3F3;
}

.about_sec .img_box {
  overflow: hidden;
  height: 485px;
  position: relative;
}

.about_sec .img_box .secImg {
  width: 98%;
}

.about_sec .txt_box .p {
  overflow: hidden;
  font-size: 21px;
  line-height: 1.3;
  margin: 20px 0;
}

.about_sec .about-cards {
  font-family: Arial, Helvetica, sans-serif;
}

.about_sec .about-cards .item {
  position: relative;
  text-align: center;
}

.about_sec .about-cards .col-lg-4 {
  position: relative;
}

.about_sec .about-cards .col-lg-4::after {
  position: absolute;
  content: "";
  right: 0;
  top: calc(50% - 60px) !important;
  height: 120px;
  width: 2px;
  background-color: #272727;
}

.about_sec .about-cards .row .col-lg-4:last-of-type:after {
  display: none;
}

.about_sec .about-cards .item .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.about_sec .about-cards .item .numb {
  /* color: var(--primary); */
  font-size: 37px;
  font-weight: bold;
}

.about_sec .about-cards .item .text {
  font-size: 21px;
  text-transform: capitalize;
  /* font-weight: 300; */
  margin-top: 5px;
}

.impact_sec .img_box {
  height: 400px;
}

.impact_sec .txt_box .p {
  height: auto;
  overflow: unset;
}

.services_sec .txt_box {
  background-color: #272727;
  padding: 100px 6vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: c;
}

.services_sec .txt_box .p {
  font-size: 16px;
}

.services_sec .cards_box,
.services_sec .cards_box .row {
  height: 100%;
}

.services_sec .serv_card {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.services_sec .serv_card .txt_content {
  background-color: #272727;
  padding: 20px;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  transition: all 0.3s linear;
  transform: translateY(100px);
}

.services_sec .serv_card .txt_content .title {
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.services_sec .serv_card .txt_content .p {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.services_sec .serv_card .txt_content .more_butn {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  transition: all 0.3s linear;
  display: none;
}

/*.services_sec .serv_card .txt_content .more_butn::after {*/
/*  content: '\f178';*/
/*  font-family: "Font Awesome 6 Pro";*/
/*  font-weight: 900;*/
/*  display: inline-block;*/
/*  position: absolute;*/
/*  right: -25px;*/
/*  -webkit-transform: translateY(50px) rotate(40deg);*/
/*          transform: translateY(50px) rotate(40deg);*/
/*  opacity: 0;*/
/*  -webkit-transition: all .3s linear;*/
/*  transition: all .3s linear;*/
/*}*/
.services_sec .serv_card .txt_content .more_butn:hover {
  transform: translateX(-15px);
}

.services_sec .serv_card .txt_content .more_butn:hover::after {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
}

.services_sec .serv_card:hover .txt_content {
  transform: translateY(0px);
}

.projects_sec {
  position: relative;
  background-color: #F1F3F3;
  padding-inline-start: calc((100vw - 1320px) / 2);
}

.projects_sec .swiper-container {
  position: relative;
}

.projects_sec .item .img_box {
  position: relative;
  overflow: hidden;
  width: 550px;
  height: 300px;
  max-width: 100%;
}

.projects_sec .item .img_box svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.projects_sec .item .box {
  background-color: #fff;
  margin-top: -175px;
  padding: 70px 4vw;
  padding-inline-end: calc((100vw - 1320px) / 2);
}

.projects_sec .item .box .logo_proj_1 {
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 200px;
  margin-inline-start: 1vw;
}

.projects_sec .item .box .logo-side {
  display: flex;
}

.projects_sec .item .box .logo_proj_2 {
  height: 70px;
  /* width: 70px; */
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top;
     object-position: top;
  margin-inline-end: 20px;
  margin-top: 5px;
}

.projects_sec .item .box .logo-side span {
  font-size: 16px;
  text-transform: uppercase;
}

.projects_sec .item .box .p {
  font-size: 15px;
  color: #272727;
  line-height: 1.3;
  padding-inline-start: 2vw;
}

.projects_sec .arrows {
  display: flex;
  position: absolute;
  left: 560px;
  top: 50px;
}

.arrows.arrows-dark img {
  filter: brightness(0);
}

.projects_sec .arrows .swiper-button-next,
.projects_sec .arrows .swiper-button-prev {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  margin: unset;
}

.projects_sec .container-fluid {
  /* -webkit-padding-start: 6vw;
  padding-inline-start: 6vw; */
}

.features_sec {
  padding: 100px 0 70px 0;
}

.features_sec .item {
  margin-bottom: 60px;
  text-align: center;
}

.features_sec .item .icon {
  height: 90px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 auto 25px auto;
  transform: scale(0.9);
}

.features_sec .item .title {
  font-size: 18px;
  width: 67%;
  margin: auto;
  /*font-family: helvetica_neue;*/
  color: var(--primary) !important;
}

/**********************************************
    Start Edit pg-header
**********************************************/
.pg_header .item {
  height: 670px;
}

.pg_header .item h5 {
  /*font-family: corbel_regular !important;*/
  font-size: 40px !important;
  color: #fff !important;
  margin-bottom: 0 !important;
}

.pg_header .item .title {
  font-size: 28px !important;
  /* font-weight: 500 !important; */
  text-transform: uppercase !important;
  margin-top: 10px;
  color: #fff;
}

.pg_header.no_overlay .item::after,
.pg_header.no_overlay .item::before {
  display: none;
}

/**********************************************
    Start Edit Who We Are Pages
**********************************************/
.about_pg .txt_box {
  padding: 70px 3vw;
}

.about_pg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: #272727;
  height: calc(100% - 280px);
  top: 50%;
  transform: translateY(-50%);
}

.content_sec {
  background-color: #F1F3F3;
  margin-bottom: 100px;
}

.content_sec .p {
  font-size: 18px;
  color: #272727;
}

.story_pg .img_box {
  overflow: hidden;
}

.story_pg::after {
  background-color: #F1F3F3;
}

.ceo_pg.section .txt_box .p {
  /*max-height: 160px;*/
  /*overflow-x: hidden;*/
  /*padding-inline-end: 30px;*/
}

.ceo_pg .img_box {
  position: relative;
}

.ceo_pg .img_box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-image: linear-gradient(to right, rgba(46, 129, 253, 0.5215686275), #fff);
  opacity: 0.51;
}

.drives_pg .box {
  height: calc(100% - 70px);
  padding: 45px 45px;
  position: relative;
  margin-bottom: 25px;
}

.drives_pg .box .title {
  font-size: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  height: 62px;
  overflow: hidden;
}

.drives_pg .box .title.color-secondary {
  color: #3386ff;
}

.drives_pg .box .title.color-primary {
  color: #00B4DB;
}

.drives_pg .box .title .icon {
  margin-inline-end: 15px;
  -o-object-fit: contain;
  object-fit: contain;
}

.drives_pg .box .p {
  font-size: 15px;
  color: #272727;
  line-height: 1.3;
}

.drives_pg .col-lg-6:nth-child(1) .box {
  background-color: #E8F7FC;
}

.drives_pg .col-lg-6:nth-child(2) .box {
  background-color: #EAF3FF;
}

.values_sec {
  position: relative;
}

.values_sec .swiper-button-lock {
  display: block;
}

.values_sec .swiper-button-prev.swiper-button-disabled, .values_sec .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  cursor: pointer;
  pointer-events: all;
}

.values_sec .item {
  padding: 100px 0;
}

.values_sec .item .txt_box {
  padding: 45px 3.5vw;
  background-color: #fff;
}

.values_sec .item .txt_box .p {
  height: 109px;
  overflow: hidden;
  text-wrap: balance;
  margin-top: 30px;
}

.values_sec .swiper-container .swiper-button-next::before,
.values_sec .swiper-container .swiper-button-prev::before {
  color: #fff;
}

/*.drives_txt_sec .txt_box .p {*/
/*    font-size: 15px;*/
/*}*/
.drives_txt_sec .txt_box .p.fs-5 {
  font-size: 15px !important;
}

/*.drives_txt_sec .txt_box .subtitle {*/
/*    font-size: 36px;*/
/*}*/
/*.drives_txt_sec .txt_box .title {*/
/*    font-size: 25px;*/
/*    color: var(--primary) !important;*/
/*    width: 260px;*/
/*}*/
/*.drives_txt_sec .txt_box .title.title_1 {*/
/*    width: 70%;*/
/*}*/
/**********************************************
    Start Edit WHAT WE DO Pages 
**********************************************/
.do_pg .txt_box .title {
  /*color: var(--primary) !important;*/
}

.do_pg {
  background-color: #F1F3F3;
}

.services_sec_st2.with-traingle {
  padding-top: 150px !important;
}

.services_sec_st2.with-traingle::before {
  content: "";
  width: 200px;
  height: 100px;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #F1F3F3;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.turnkey_proj_sec {
  background-color: #fff;
  padding-top: 170px;
  margin-bottom: 100px;
}

.turnkey_proj_sec .proj_card {
  position: relative;
  background-color: #fff;
  padding: 45px 15px;
  text-align: center;
  margin-bottom: 25px;
  height: calc(100% - 25px);
  transition: all 0.3s linear;
}

.turnkey_proj_sec .proj_card .logo {
  /*width: 83px;*/
  height: 45px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  margin: 0 auto 25px auto;
  transition: all 0.3s linear;
}

.turnkey_proj_sec .proj_card .title {
  font-size: 23px;
  color: #707070;
  margin-bottom: 10px;
  transition: all 0.3s linear;
}

.turnkey_proj_sec .proj_card .p {
  font-size: 14px;
  color: #808080;
  line-height: 1.5;
  transition: all 0.3s linear;
}

.turnkey_proj_sec .proj_card:hover .logo {
  filter: invert(143%) sepia(0%) saturate(47%) hue-rotate(100deg) brightness(827%) contrast(96%);
}

.turnkey_proj_sec .proj_card:hover .title,
.turnkey_proj_sec .proj_card:hover .p {
  color: #fff;
}

.turnkey_proj_sec .col-lg-3:nth-child(1) .proj_card:hover {
  background-color: #00C4B3;
}

.turnkey_proj_sec .col-lg-3:nth-child(2) .proj_card:hover {
  background-color: #70D44B;
}

.turnkey_proj_sec .col-lg-3:nth-child(3) .proj_card:hover {
  background-color: #124A95;
}

.turnkey_proj_sec .col-lg-3:nth-child(4) .proj_card:hover {
  background-color: #667A8F;
}

/*.turnkey_proj_sec::before {*/
/*    content: '';*/
/*    width: 200px;*/
/*    height: 100px;*/
/*    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);*/
/*    clip-path: polygon(0 0, 50% 100%, 100% 0);*/
/*    background-color: #F1F3F3;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 50%;*/
/*    -webkit-transform: translateX(-50%);*/
/*    transform: translateX(-50%);*/
/*}*/
.turnkey_proj_pg {
  padding: 100px 0;
}

.turnkey_proj_pg .logo {
  width: 250px;
  -o-object-fit: contain;
  object-fit: contain;
}

/*.turnkey_proj_pg .p {*/
/*    font-size: 20px;*/
/*}*/
.tech_sys_pg {
  padding: 100px 0;
  margin-bottom: 100px;
  background-color: #E6F9F8;
}

.tech_sys_pg .item {
  margin-bottom: 25px;
}

.tech_sys_pg .item .secImg {
  height: 185px;
  margin-bottom: 25px;
}

.tech_sys_pg .item .title {
  font-size: 16px;
  font-weight: bold;
}

.catering_pg .inner {
  padding: 70px 3vw;
  background-color: #EAF2FC;
}

.catering_pg .inner .txt_box .title {
  font-size: 29px;
}

.landscaping_pg .inner {
  padding: 70px 3vw;
  background-color: #F0FBEF;
}

.landscaping_pg .inner .txt_box .title {
  font-size: 40px;
  color: var(--primary) !important;
}

.landscaping_pg .inner .landscapingImg {
  height: 215px;
}

.agriculture_pg .txt_box .p {
  font-size: 18px;
}

.agriculture_pg .img_box .secImg {
  height: 220px;
  margin-bottom: 15px;
  /*height: calc(100% - 15px);*/
}

.agriculture_pg .txt_box .title {
  width: 60%;
  min-width: 400px;
}

/**********************************************
    Start Edit impact Pages 
**********************************************/
.vision_pg .vision_logo {
  display: block;
  background-color: #F1F3F3;
  padding: 130px 15px;
  margin-bottom: 60px;
  height: 450px;
}

.vision_pg .vision_logo img {
  display: block;
  margin: 0 auto;
  width: 70%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.partners_pg .content_box {
  background-color: #F1F3F3;
  padding: 50px 4vw;
  position: relative;
  text-align: center;
}

.partners_pg .content_box .p {
  font-size: 21px;
  line-height: 1.3;
}

.partners_pg .logos_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /*justify-content: space-between;*/
  justify-content: center;
}

.partners_pg .logos_box .logo {
  -o-object-fit: contain;
  object-fit: contain;
  margin: 5px 20px;
  height: 50px;
  max-width: 150px;
}

.partners_pg .box {
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  padding: 70px 3vw;
}

.partners_pg .box .p {
  font-size: 20px;
}

.partners_pg .box::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.9058823529), rgba(255, 255, 255, 0));
  z-index: 1;
}

/**********************************************
    Start Edit media Pages 
**********************************************/
.media_pg .sec_title {
  color: var(--primary) !important;
}

.media_pg .sm_items_box {
  padding: 10px 25px;
  height: 655px;
  overflow-y: auto;
  border-right: 1px solid #707070;
  border-left: 1px solid #707070;
}

.media_pg .sm_items_box .item {
  border: 1px solid #707070;
  position: relative;
  padding: 25px 25px;
  margin-bottom: 30px;
  width: 100%;
}

.media_pg .sm_items_box .item .date {
  font-family: helvetica_neue;
  font-size: 18px;
  color: #707070;
}

.media_pg .sm_items_box .item .logo {
  height: 50px;
  max-width: 170px;
  -o-object-fit: contain;
  object-fit: contain;
}

.media_pg .sm_items_box .item .title {
  font-weight: bold;
  font-family: helvetica_neue;
  font-size: 18px;
  color: #707070;
  height: 50px;
  overflow: hidden;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media_pg .sm_items_box::-webkit-scrollbar {
  width: 15px;
}

.media_pg .sm_items_box::-webkit-scrollbar-track {
  background-color: transparent;
}

.media_pg .sm_items_box::-webkit-scrollbar-thumb {
  background: #F1F3F3;
  border-radius: 25px;
}

.media_pg .box {
  background-color: #F1F3F3;
  padding: 35px;
  position: relative;
}

.media_pg .box .logo {
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  margin-inline-start: auto;
}

.media_pg .box .secImg {
  height: 315px;
  margin: 35px 0;
}

.media_pg .box .txt_box .title {
  font-weight: bold;
  font-family: helvetica_neue;
  font-size: 20px;
  color: #707070;
}

.media_pg .box .txt_box .p {
  font-family: helvetica_neue;
  font-size: 16px;
  height: 109px;
  overflow: hidden;
}

.kit_sec {
  background-color: #F1F3F3;
  padding-top: 170px;
  margin-bottom: 100px;
}

.kit_sec .item {
  text-align: center;
  margin-bottom: 25px;
}

.kit_sec .item .icon {
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  margin: 0 auto 25px auto;
}

.kit_sec .item .p {
  font-family: helvetica_neue;
  font-size: 20px;
}

.kit_sec::before {
  content: "";
  width: 200px;
  height: 100px;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/**********************************************
    Start Edit contact Pages 
**********************************************/
.contact_pg .form_box .form-group {
  margin-bottom: 20px;
}

.contact_pg .form_box .submit_butn {
  border-radius: 10px;
  width: 145px;
  height: 50px;
  background-color: #F1F3F3;
  font-size: 18px;
}

.contact_pg .form_box .submit_butn:hover {
  background-color: var(--primary);
  color: #fff;
}

/**********************************************
    Start Edit Media screens 
**********************************************/
@media screen and (max-width: 991px) {
    
  .portfolio-sec .portfolio-content .info-item {
      flex-wrap: wrap;
  }
    
  .order_md_1 {
    order: -1;
  }
  .navs-container .navbar {
    position: relative !important;
    background-color: #000;
    padding: 20px 0 !important;
  }
  .navs-container .navbar .logo_box {
    margin-bottom: 0 !important;
  }
  .navs-container .navbar .navbar-collapse {
    background: #fff;
    margin-top: 20px;
  }
  .navs-container .navbar .logo_box .logo {
    margin: 0;
    width: 190px;
  }
  .navs-container .navbar .nav-link {
    margin: 0 5px;
  }
  .navs-container .navbar .drop_down {
    left: 0;
    right: unset;
    /*-webkit-transform: translateX(0);*/
    /*        transform: translateX(0);*/
    width: 100%;
    background-color: #f9f9f9;
  }
  .navs-container .navbar .drop_down#dropdown_1 {
    top: 130px;
  }
  .navs-container .navbar .drop_down#dropdown_2 {
    top: 170px;
  }
  .navs-container .navbar .drop_down#dropdown_3 {
    top: 210px;
  }
  .navs-container .navbar .drop_down#dropdown_4 {
    top: 250px;
  }
  .navs-container .navbar .drop_down#dropdown_5 {
    top: 290px;
  }
  .navs-container .navbar .navbar-toggler {
    position: absolute;
    inset-inline-end: 10px;
    top: 5px;
  }
  .header .item .title {
    font-size: 40px;
    padding-top: 0 !important;
    margin-top: 0 !important;
    /*width: 70%;*/
    line-height: 1.1;
  }
  .header .item {
    padding: 120px 0;
  }
  .about_sec .img_box {
    height: 300px;
    margin-bottom: 25px;
  }
  .services_sec .txt_box {
    padding: 50px 5vw;
    margin-bottom: 25px;
    height: calc(100% - 25px);
  }
  .services_sec .serv_card {
    height: 400px;
    margin-bottom: 25px;
  }
  .projects_sec .item .secImg {
    width: 100%;
  }
  .projects_sec .item .box .logo_proj_1 {
    margin-top: 120px;
  }
  .projects_sec .arrows {
    right: auto;
    top: auto;
    left: calc(50% - 40px);
    bottom: 40px;
  }
  .features_sec .item .title {
    font-size: 15px;
    width: 95%;
  }
  .footer .foot .copyright_p {
    font-size: 13px;
  }
  .footer .foot .links a {
    font-size: 10px;
    margin-inline-end: 5px;
  }
  .footer .foot .links a::after {
    margin: 0 5px;
  }
  .projects_sec .item .box .logo-side {
    border-top: 1px solid rgba(153, 153, 153, 0.3333333333);
    margin-top: 20px !important;
    padding-top: 30px;
    margin-bottom: 20px;
  }
  .projects_sec .item .box .p {
    padding: 0 !important;
  }
  .footer .foot {
    text-align: center;
    /*padding-bottom: 50px;*/
  }
  .pg_header .item {
    height: -moz-max-content;
    height: max-content;
  }
  .pg_header .item .pt-5 {
    padding-top: 0 !important;
  }
  .pg_header .item .mt-5 {
    margin-top: 0 !important;
  }
  .about_pg::after {
    height: 100%;
    top: auto;
    transform: translateY(0);
  }
  .about_pg .txt_box {
    padding: 30px 3vw 0;
  }
  .about_pg .secImg {
    height: 50px;
  }
  .about_pg.story_pg .secImg {
    height: 300px;
  }
  .ceo_pg .img_box {
    margin-bottom: 30px;
  }
  .values_sec {
    padding: 0;
  }
  .drives_txt_sec .txt_box {
    margin-bottom: 0 !important;
  }
  .drives_txt_sec .container .txt_box:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .drives_txt_sec .txt_box .title {
    font-size: 40px;
    width: 100%;
  }
  .turnkey_proj_pg .logo {
    margin-bottom: 30px;
  }
  .turnkey_proj_pg .logo {
    transform: translate3d(0, 0px, 0px) !important;
  }
  .tech_sys_pg {
    margin-bottom: 0;
  }
  .agriculture_pg {
    padding-top: 0;
  }
  .catering_pg {
    padding-top: 0;
  }
  .catering_pg .inner .txt_box .col-lg-5:first-of-type {
    order: 5;
  }
  .catering_pg .inner .txt_box .secImg {
    margin-top: 20px;
  }
  .vision_pg .vision_logo {
    margin: 40px auto;
    padding: 80px 0;
  }
  .csr_pg .img_box {
    margin-bottom: 30px;
  }
  .partners_pg .logos_box a {
    width: 40%;
    height: 60px;
    margin: 10px 0;
    padding: 5px;
  }
  .partners_pg .logos_box .logo {
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .partners_pg .box .p {
    margin-top: 30px;
  }
  .partners_pg .box {
    margin-top: 70px;
  }
  .media_pg .sm_items_box {
    height: -moz-max-content;
    height: max-content;
  }
  .pg_header {
    overflow: hidden;
  }
  /*.swiper-container .swiper-button-prev, .swiper-container .swiper-container-rtl .swiper-button-next {*/
  /*    left: calc(50% - 35px);*/
  /*    right: auto;*/
  /*    bottom: 20px;*/
  /*    top: auto;*/
  /*}*/
  /*.swiper-container .swiper-button-next, .swiper-container .swiper-container-rtl .swiper-button-prev {*/
  /*    right: calc(50% - 35px);*/
  /*    left: auto;*/
  /*    bottom: 20px;*/
  /*    top: auto;*/
  /*}*/
  .header.pg_header .item .title {
    min-width: 100%;
    font-size: 16px !important;
  }
  /*.swiper-container .swiper-button-next, .swiper-container .swiper-container-rtl .swiper-button-prev,*/
  /*.swiper-container .swiper-button-prev, .swiper-container .swiper-container-rtl .swiper-button-next{*/
  /*    bottom: 0;*/
  /*}*/
  .projects_sec .swiper-slide {
    height: auto;
  }
  .projects_sec .swiper-slide .item {
    height: 100%;
    background: linear-gradient(to top, #fff, transparent);
  }
  .section .txt_box .title {
    font-size: 30px;
  }
  .content_sec {
    margin-bottom: 0;
  }
  .values_sec .item .txt_box {
    padding: 45px 30px;
  }
  .values_sec .swiper-container .swiper-button-next,
  .values_sec .swiper-container .swiper-container-rtl .swiper-button-prev,
  .values_sec .swiper-container .swiper-button-prev,
  .values_sec .swiper-container .swiper-container-rtl .swiper-button-next {
    bottom: 25px;
    display: none;
  }
  .landscaping_pg .inner,
  .catering_pg .inner {
    padding: 50px 20px;
  }
  .landscaping_pg .inner .landscapingImg {
    margin-bottom: 15px;
  }
  .navigation {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: calc(100% - 10px);
    height: 70px;
    padding-top: 10px;
    border-radius: 20px 20px 0 0;
    position: fixed;
    bottom: -1px;
    left: 5px;
    z-index: 999;
    filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.1333333333));
  }
  .navigation ul {
    display: flex;
    /* width: 90%; */
    position: relative;
  }
  .navigation ul li {
    position: relative;
    width: 90px;
    height: 60px;
    z-index: 2;
  }
  .navigation ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    font-weight: 500;
  }
  .navigation ul li a .icon {
    position: relative;
    display: block;
    line-height: 65px;
    font-size: 1.5em;
    transition: 0.5s;
    color: #222;
  }
  .navigation ul li.active a .icon {
    transform: translateY(-35px);
    color: var(--mainColor);
  }
  .navigation ul li a .text {
    position: absolute;
    font-size: 0.75em;
    transition: 0.5s;
    color: #fff;
    background-color: var(--secondary);
    padding: 2px 7px;
    border-radius: 30px;
    text-transform: capitalize;
    opacity: 0;
    transform: translateY(15px);
  }
  .navigation ul li.active a .text {
    transform: translateY(-4px);
    opacity: 1;
  }
  .navigation .indicator {
    position: absolute;
    top: -38px;
    width: 90px;
    height: 70px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 1;
    transition: 0.5s;
  }
  .navigation .indicator::before {
    position: absolute;
    content: "";
    top: 5px;
    left: -28px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 50%;
    box-shadow: 15px 18px #fff;
  }
  .navigation .indicator::after {
    position: absolute;
    content: "";
    top: 5px;
    right: -28px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -15px 18px #fff;
  }
  .navigation ul li:nth-child(1).active ~ .indicator {
    transform: translateX(0px);
  }
  .navigation ul li:nth-child(2).active ~ .indicator {
    transform: translateX(90px);
  }
  .navigation ul li:nth-child(3).active ~ .indicator {
    transform: translateX(180px);
  }
  .navigation ul li:nth-child(4).active ~ .indicator {
    transform: translateX(270px);
  }
  .main_butn::before {
    width: 100%;
  }
  .main_butn span {
    color: #fff;
  }
  .services_sec .serv_card .txt_content {
    transform: translateY(0);
  }
  .slide_ltr {
    transition: all 1s ease-in-out;
    transition-delay: 0.1s;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%) !important;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%) !important;
  }
  .slide_ltr.animated {
    transform: scale(1);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .services_sec .serv_card .txt_content .title {
    margin-bottom: 5px;
  }
  .services_sec .serv_card .txt_content .more_butn {
    display: block;
  }
  .form-sec .content .img {
      margin-top: 30px;
  }
  
  .navs-container .navbar .nav-item.has_dropdown:hover .dropdown-wrapper {
      opacity: 1;
      visibility: visible;
  }
  
  .portfolio-sec .portfolio-content {
      margin-top: 20px;
  }
  
  .portfolio-sec .portfolio-content .careers .jops-st2.grid .jop-item-row {
      width: 100% !important;
  }
  
}
@media screen and (max-width: 787px) {
  .container,
  .container-fluid {
    padding: 0 24px !important;
  }
}
/**********************************************
    Start Edit EN direction 
**********************************************/
html[dir=rtl] body {
  direction: rtl;
}


.content_pg,
.content_pg p {
  font-size: 18px;
}

/* -------- 6 / 27 --------  */
.navs-container .has_dropdown .nav-link .arrow {
  font-size: 12px;
  margin-inline-start: 5px;
  transition: all 0.3s ease;
  /* display: none; */
}

.navs-container .has_dropdown .nav-link:hover .arrow {
  transform: rotate(180deg);
}

.navs-container .drop_down .drop-title {
  display: none;
}

@media screen and (max-width: 991px) {
  .navs-container .drop_down .drop-title {
    padding: 15px 0;
    border-bottom: 1px solid rgba(153, 153, 153, 0.2);
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .navs-container .navbar .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 999;
    transform: translateX(0);
    transition: all 0.3s ease;
    margin-top: 0;
  }
  .navs-container .navbar .navbar-collapse .collapse-title {
    position: relative;
    background-color: #fff;
    color: #272727;
    padding: 24px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #f0f0f0;
    border-bottom: 1px solid rgba(153, 153, 153, 0.2);
  }
  .navs-container .navbar .navbar-collapse .collapse-title .cls-btn,
  .navs-container .navbar .navbar-collapse .collapse-title .back-btn {
    font-size: 16px;
  }
  .navs-container .navbar .navbar-collapse:not(.show) {
    display: block;
    transform: translateX(100%);
  }
  .navs-container .navbar .drop_down {
    position: fixed;
    top: 0 !important;
    left: -100%;
    transform: translateX(0);
    width: 100%;
    height: 100dvh;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
  }
  .navs-container .navbar .drop_down.active {
    left: 0;
  }
  .navs-container .navbar .nav-item {
    margin: 0;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(153, 153, 153, 0.2666666667);
  }
  .navs-container .navbar .nav-item .nav-link {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
  .navs-container .has_dropdown .nav-link .arrow {
    transform: rotate(-90deg);
    font-size: 14px;
  }
}
/*----------- new dropdown 29/7/2024 -----------*/
.navbar .dropdown-wrapper {
  position: absolute;
  left: 0;
  top: calc(100% + 15px);
  background-color: #fff;
  /* background-image: linear-gradient(to bottom, #ffffff6f, #ffffffee, #fff); */
  padding: 15px 20px 5px;
  width: 200px;
  min-width: -moz-max-content;
  min-width: max-content;
  box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.0196078431);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.navbar .has_dropdown:hover .dropdown-wrapper {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown-wrapper .link-item {
  /*text-transform: capitalize;*/
  margin: 10px 0;
  padding-bottom: 10px;
  display: block;
  /* border-bottom: 1px solid transparent; */
}

.navbar .dropdown-wrapper .link-item h6 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 0;
  color: #121212;
  transition: all 0.3s ease;
}

.navbar .dropdown-wrapper .link-item .text {
  color: #959595;
  font-size: 12px;
  margin-top: 5px;
}

.navbar .dropdown-wrapper .link-item:hover {
  /* border-color: #121212; */
}

.navbar .dropdown-wrapper.dropdown-icons,
.navbar .dropdown-wrapper.dropdown-lg {
  width: 280px;
}

.navbar .dropdown-wrapper.dropdown-icons .link-item {
  display: flex;
  align-items: center;
}

.navbar .dropdown-wrapper.dropdown-icons .link-item .icon {
  position: relative;
  width: 35px;
  height: 35px;
  top: -1px;
}

@media screen and (max-width: 991px) {
  .navbar .dropdown-wrapper {
    /*position: relative;*/
    width: 100% !important;
    background: #fff;
    z-index: 99;
    top: 0;
    /*height: 0;*/
    /*overflow: hidden;*/
  }
  .navbar .has_dropdown:hover .dropdown-wrapper {
    /*height: max-content;*/
  }
}
.pg_header .item {
  /*height: -moz-max-content !important;*/
  /*height: max-content !important;*/
  height: 70vh !important;
  /*min-height: max-content !important;*/
  padding: 250px 0 200px;
}

/*.pg_header .item .anim_txt  {*/
/*    color: #fff !important;*/
/*}*/
/*.pg_header .item::before {*/
/*    content: '';*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    display: block;*/
/*    background-color: rgba(18, 56, 100, 0.3);*/
/*    background-color: transparent;*/
/*    background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffffd4), color-stop(#ffffffe1), to(#ffffff00));*/
/*    background-image: linear-gradient(to bottom, #ffffffd4, #ffffffe1, #ffffff00);*/
/*    height: 70%;*/
/*    z-index: 3;*/
/*}*/
.navs-container .navbar .nav-link:hover {
  color: #fff !important;
}

.navs-container .navbar.scrolled .nav-link:hover {
  color: #000 !important;
}

.header .swiper-container .swiper-button-next::before,
.header .swiper-container .swiper-button-prev::before {
  color: #fff;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-container {
  overflow: hidden;
}

.services_sec_st2 {
  position: relative;
  padding: 70px 0 !important;
}

.services_sec_st2 .main-txt {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 30px;
}

.services_sec_st2 .service-card {
  position: relative;
  min-height: 250px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services_sec_st2 .service-card .brand-img {
  height: 50px;
}

.services_sec_st2 .float-card {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
}

.services_sec_st2 .service-card:hover .float-card {
  opacity: 1;
}

.services_sec_st2 .service-card .img {
  position: relative;
  height: 250px;
}

.services_sec_st2 .service-card .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #000;
  opacity: 0;
  transition: all 0.3s ease;
}

.services_sec_st2 .service-card .img img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services_sec_st2 .service-card .info-card {
  position: absolute;
  left: 0;
  top: 0;
  padding: 30px;
  width: 100%;
  height: 100%;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.services_sec_st2 .service-card .info-card .brand {
  height: 35px;
  filter: invert(100%) sepia(13%) saturate(2%) hue-rotate(227deg) brightness(300%) contrast(100%);
  margin-bottom: 20px;
}

.services_sec_st2 .service-card .info-card h5 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.2;
  text-transform: capitalize;
}

.services_sec_st2 .service-card .info-card .text {
  position: relative;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.services_sec_st2 .service-card .info-card .more-link {
  position: absolute;
  left: 30px;
  bottom: 30px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
}

.services_sec_st2 .service-card:hover .img::after {
  opacity: 0.5;
}

.services_sec_st2 .service-card:hover .info-card {
  opacity: 1;
  visibility: visible;
}

.subsidiary_sec {
  position: relative;
  padding: 130px 0;
  z-index: 20;
}

.subsidiary_sec .container {
  position: relative;
  z-index: 20;
}

.subsidiary_sec .txt_box .title,
.subsidiary_sec .p,
.subsidiary_sec .main_butn {
  color: #fff !important;
}

.subsidiary_sec .main_butn::before {
  background-color: #ACACAE;
}

.subsidiary_sec .p {
  font-size: 17px !important;
}

.subsidiary_sec::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7254901961), transparent);
}

.subsidiary_sec .logo {
  position: relative;
  margin: 15px 0;
}

.clients_sec {
  position: relative;
  padding-bottom: 100px;
  overflow: hidden;
}

.clients_sec .clients_slider {
  overflow: hidden;
}

.clients_sec .swiper-slide {
  /* text-align: center; */
}

.clients_sec .brand {
  position: relative;
  /* margin-bottom: 30px; */
  height: 150px;
  display: inline-block;
}

.clients_sec .brand img {
  width: 100%;
  height: 100%;
  max-width: 170px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ----------- about page ----------- */
.about-txt-sec {
  position: relative;
  /* padding: 120px 0; */
  background-color: #F1F3F3;
  padding: 100px 0 70px;
}

.about-txt-sec .main-txt {
  position: relative;
  font-size: 31px;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.about-txt-sec .text {
  position: relative;
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 30px;
}

.about-story {
  position: relative;
}

.about-story .story-slider {
  overflow: hidden;
}

.about-story .cards .item {
  position: relative;
  margin-top: 50px;
}

.about-story .cards .item .year {
  position: relative;
  font-size: 40px;
  color: var(--secondary);
  padding-bottom: 20px;
  border-bottom: 1px solid #707070;
  font-weight: 600;
}

.about-story .cards .item .year::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  width: 21px;
  height: 21px;
  background-color: var(--secondary);
}

.about-story .cards .item .text {
  position: relative;
  font-size: 15px;
  line-height: 1.3;
  margin-top: 40px;
}

.about-story-st2 {
  position: relative;
}

.ab-cards {
  position: relative;
  margin: 100px 0;
  background-color: #F4F1FF;
}

.ab-cards .item {
  position: relative;
  text-align: center;
}

.ab-cards .item .icon {
  position: relative;
  height: 70px;
  margin-bottom: 20px;
}

.ab-cards .item .text {
  position: relative;
  font-size: 17px;
  color: var(--secondary);
  line-height: 1.3;
  padding: 0 20px;
  font-family: Arial, Helvetica, sans-serif;
}

img {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.drives_txt_sec .Directors .item {
  position: relative;
  margin: 20px 10px;
  cursor: pointer;
}

.drives_txt_sec .Directors .item .img {
  position: relative;
  height: 300px;
  z-index: 20;
}

.drives_txt_sec .Directors .item .img img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 10;
}

.drives_txt_sec .Directors .item .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 90%;
  height: 100%;
  background-color: var(--primary);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%, 0% 100%);
  z-index: 5;
}

.drives_txt_sec .Directors .item .info {
  position: relative;
  /* transition-delay: 0.5s; */
  /* transition: all 0.3s ease; */
}

.drives_txt_sec .Directors .item .info .trngl {
  position: absolute;
  content: "";
  left: 40px;
  bottom: 0;
  width: 30px;
  height: 60px;
  border-top: 30px solid transparent;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid #F1F3F3;
  opacity: 0;
  /* transition: all 0.3s ease; */
  /* transition-delay: 0.3s; */
}

.drives_txt_sec .Directors .item .info.active {
  padding-bottom: 60px;
}

.drives_txt_sec .Directors .item .info.active .trngl {
  opacity: 1;
}

.drives_txt_sec .Directors .item .info h5 {
  font-size: 22px;
  margin: 20px 0 0;
  /* line-height: 1; */
  font-weight: bold;
}

/*.drives_txt_sec .Directors .item .info .p {*/
/*    font-size: 18px;*/
/*}*/
.drives_txt_sec .Directors .item .info-box {
  position: relative;
  width: 100vw;
  left: 0;
  /* margin-top: 50px; */
  overflow: hidden;
  display: none;
}

.drives_txt_sec .Directors .item.show .info-box {
  display: block;
}

.drives_txt_sec .Directors .item.show .info {
  padding-bottom: 60px;
}

.drives_txt_sec .Directors .item.show .info .trngl {
  opacity: 1;
}

.drives_txt_sec .Directors .item .info-box .box {
  background-color: #F1F3F3;
  padding: 40px 40px 25px;
}

.drives_txt_sec .Directors .item .info-box .box .text {
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.vision-csr {
  margin-bottom: 100px;
}

.vision-csr .p {
  /*font-size: 21px !important;*/
  margin-bottom: 15px;
}

.blog-pg {
  position: relative;
}

.blog-pg .txt_box {
  position: relative;
}

.blog-pg .txt_box .news-toggle {
  position: absolute;
  right: 15px;
  top: 15px;
  display: none;
}

.blog-pg .filter-side .txt {
  /*color: var(--primary) !important;*/
  line-height: 1.2;
  font-size: 20px;
}

.blog-pg .form-control {
  position: relative;
  min-height: 50px;
  border: 1px solid #ccc;
  border-radius: 0;
  margin-top: 15px;
  background-color: #fff;
}

.blog-pg .cards .item {
  position: relative;
  margin-top: 30px;
  height: calc(100% - 30px);
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
}

.blog-pg .cards .item .img {
  position: relative;
  height: 260px;
}

.blog-pg .cards .item .img .tag {
  position: absolute;
  right: 15px;
  top: 15px;
  padding: 7px 25px;
  /* padding-bottom: 10px; */
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 13px;
  display: inline-block;
}

.blog-pg .cards .item .info {
  position: relative;
  padding-top: 30px;
  color: #272727;
}

.blog-pg .cards .item .info .date {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-pg .cards .item .info .title {
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 15px;
  font-weight: bold;
  min-height: 40px;
  font-family: Arial, Helvetica, sans-serif;
}

.blog-pg .cards .item .info .text {
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
  line-height: 1.3;
}

.blog-pg .cards .item .info .more {
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 20px;
  font-weight: 600;
  display: block;
  letter-spacing: 1px;
  /* font-family: Arial, Helvetica, sans-serif; */
}

.blog-pg .post-det {
  position: relative;
  padding: 5vw;
  background: #f1f3f3;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  font-family: Arial, Helvetica, sans-serif;
}

.blog-pg .post-det .logos .lgo {
  height: 45px;
  margin-top: 20px;
}

.blog-pg .post-det .info .date {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-pg .post-det .info .title {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 15px;
  font-weight: bold;
  min-height: 40px;
  font-family: Arial, Helvetica, sans-serif;
}

.blog-pg .post-det .info .text {
  font-size: 17px;
  margin-top: 30px;
  line-height: 1.3;
}

.blog-pg .back-lnk {
  font-size: 18px;
  color: #5A5A5A;
  display: inline-flex;
  align-items: center;
  /* margin-top: 50px; */
  font-weight: bold;
}

.blog-pg .back-lnk img {
  margin-inline-end: 5px;
  flex-shrink: 0;
  filter: invert(32%) sepia(1%) saturate(1596%) hue-rotate(353deg) brightness(97%) contrast(78%);
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.up_group {
  position: relative;
}

.up_group .input-group-append {
  position: absolute;
  right: 6px;
  bottom: 5px;
  width: 130px;
  font-size: 17px;
  min-height: calc(100% - 10px);
  text-align: center;
  display: inline-block;
  background-color: #999;
  border-radius: 10px !important;
  overflow: hidden;
  color: #fff;
  pointer-events: none;
  padding: 10px;
  z-index: 2;
}

.up_group .file {
  position: absolute;
  opacity: 0;
  right: 2px;
  bottom: 2px;
  width: 150px;
  min-height: 50px;
  z-index: 20;
  cursor: pointer;
}

/* .up_group .input_ques {
  padding-left: 180px !important;
  border-radius: 30px !important;
} */
/*   
  .up_group .input_ques::-moz-placeholder {
    color: rgba(153, 153, 153, 0.6);
  }

  .up_group .input_ques::placeholder {
    color: rgba(153, 153, 153, 0.6);
  } */
/* --------- devision-colord ----------- */
.devision-colord {
  position: relative;
  padding: 0 0 100px;
}

.devision-colord .shap {
  margin-top: -2px;
}

.devision-colord.bg1 {
  background: linear-gradient(#029387 0%, #80b5b2 100%);
  color: #fff;
}

.devision-colord.bg2 {
  background: linear-gradient(#436377 0%, #628796 100%);
  color: #fff;
}

.devision-colord.bg3 {
  background: #163b84;
  color: #fff;
}

.devision-colord.bg4 {
  background: #73AF2F;
  color: #fff;
}

.devision-colord .main-text {
  position: relative;
  font-size: 25px;
  margin-top: 20px;
}

.devision-items.bg1 {
  background: linear-gradient(to right, #E2F2F1 0%, #D8EBE9 100%);
}

.devision-items.bg2 {
  background: linear-gradient(to right, #E8EDF0 0%, #E5E9EC 100%);
}

.devision-items.bg3 {
  background: linear-gradient(to right, #ECF0F6 0%, #DDE6F1 100%);
}

.devision-items.bg4 {
  background: linear-gradient(to right, #EEF7EB 0%, #EEF7EB 100%);
}

.devision-items .main-text {
  font-size: 34px;
  margin-bottom: 20px;
}

.devision-items .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.devision-items .cards .item {
  position: relative;
  width: 25%;
  text-align: center;
  margin-top: 60px;
}

.devision-items .cards.cards-5 .item {
  width: 20%;
}

.devision-items .cards .item .icon {
  height: 50px;
  margin-bottom: 15px;
}

.devision-items .cards .item .txt {
  font-size: 14px;
  font-weight: 600;
  max-width: 150px;
  margin: 0 auto;
}

.devision-btm {
  position: relative;
  text-align: center;
}

.devision-btm .main-text {
  font-size: 25px;
}

.devision-btm.bg3 {
  background-color: #0F2E60;
  color: #fff;
}

.devision .logo {
  height: 60px;
  margin-bottom: 30px;
}

.devision-img-cards {
  position: relative;
  background-color: #292E28;
  color: #fff;
  padding-top: 100px;
}

.devision-img-cards .title-wrapper {
  position: relative;
  text-align: center;
}

.devision-img-cards .title-wrapper .txt {
  font-size: 17px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5058823529);
}

.devision-img-cards .title-wrapper .title {
  font-size: 34px;
  text-transform: uppercase;
  color: #72AF2E;
}

.devision-img-cards .title-wrapper .sub-title {
  font-size: 24px;
  font-weight: bold;
  text-transform: capitalize;
}

.devision-img-cards .title-wrapper .text {
  font-size: 23px;
  margin-top: 15px;
}

.devision-img-cards .cards {
  position: relative;
  margin-top: 50px;
}

.devision-img-cards .cards .item {
  position: relative;
}

.devision-img-cards .cards .item::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #000, transparent);
  z-index: 1;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.devision-img-cards .cards .item:hover::after {
  opacity: 1;
}

.devision-img-cards .cards .item .img {
  position: relative;
  height: 500px;
}

.devision-img-cards .cards .item .info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  padding: 60px 50px;
}

.devision-img-cards .cards .item h4 {
  position: relative;
  font-size: 20px;
  text-transform: uppercase;
}

.devision-img-cards .cards .item .card-text {
  position: relative;
  margin-top: 20px;
  font-size: 18px;
  opacity: 0;
  transition: all 0.3s ease;
}

.devision-img-cards .cards .item:hover .card-text {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .navs-container .navbar.scrolled {
    position: fixed;
  }
  .navs-container .navbar.scrolled .navbar-toggler .navbar-toggler-icon,
  .navs-container .navbar.scrolled .navbar-toggler .navbar-toggler-icon::after,
  .navs-container .navbar.scrolled .navbar-toggler .navbar-toggler-icon::before {
    background: #000;
  }
  .header .item .float_logos {
    bottom: 60px;
    max-width: 70%;
    height: 90px;
    padding: 15px 0;
  }
  .header .sub-title {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 10px;
    color: #fff;
    padding: 0 30px;
  }
  /*.navs-container .navbar .logo {*/
  /*     display: inline-block !important;*/
  /*}*/
  .navs-container .navbar .logo_wh {
    height: 40px !important;
    margin-top: 7px;
  }
  .navs-container .navbar .nav-link,
  .navs-container .navbar .nav-link:hover {
    color: #000 !important;
  }
  .header .item {
    /*min-height: calc(100dvh - 90px);*/
  }
  .header .swiper-button-next,
  .header .swiper-button-prev {
    display: none;
  }
  .header .info {
    text-align: start !important;
    width: 85%;
    padding: 0 20px;
  }
  .header .info .sub-title {
    padding: 0;
  }
  .navbar .has_dropdown:hover .dropdown-wrapper {
    top: 100%;
    opacity: 0;
    visibility: hidden;
  }
  .navbar .has_dropdown .dropdown-wrapper {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    /*height: 100vh;*/
    /*transform: translateX(100%);*/
    padding: 0;
  }
  .navbar .dropdown-wrapper ul li {
    position: relative;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(153, 153, 153, 0.2666666667);
  }
  .navbar .dropdown-wrapper .link-item {
    margin: 0 !important;
    padding: 5px 0;
    border: 0 !important;
  }
  .navbar .has_dropdown.show .dropdown-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .about_sec .about-cards .col-lg-4::after {
    top: auto !important;
    right: auto !important;
    left: calc(50% - 60px) !important;
    bottom: 0;
    height: 2px;
    width: 120px;
  }
  .about_sec .about-cards .item {
    position: relative;
    text-align: center;
    margin-top: 30px;
    padding-bottom: 30px;
  }
  .section .txt_box .title {
    font-size: 16px;
    /* font-weight: 400 !important; */
  }
  .services_sec_st2 .main-txt {
    font-size: 25px;
  }
  .projects_sec .item .box {
    padding: 70px 4vw 100px;
  }
  .projects_sec .item .box .p {
    font-size: 20px;
    margin-inline-end: 30px;
  }
  .projects_sec .item .box .logo_proj_1 {
    margin-inline-start: 0;
  }
  .projects_sec .item .box .logo_proj_2 {
    height: 60px;
    margin-bottom: 15px;
  }
  br {
    display: none;
  }
  .footer .content .social_links {
    margin-bottom: 30px;
  }
  .pg_header .item h5 {
    font-size: 30px !important;
    margin-bottom: 30px !important;
  }
  .header .item .title {
    font-size: 30px !important;
    margin-bottom: 30px;
  }
  .section {
    padding: 60px 0;
  }
  .about-txt-sec .main-txt {
    font-size: 25px;
    line-height: 1.3;
  }
  .about-txt-sec .text {
    font-size: 17px;
    line-height: 1.3;
  }
  .about-story .swiper-wrapper {
    display: block;
    transform: none !important;
  }
  .about-story .cards .item .year {
    position: relative;
    font-size: 40px;
    color: var(--secondary);
    padding-bottom: 20px;
    border-bottom: 0;
    font-weight: 600;
    padding-bottom: 0;
    padding-inline-start: 50px;
    margin-top: 0;
    padding-top: 30px;
  }
  .about-story .cards .item .year::after {
    position: absolute;
    content: "";
    left: 0;
    top: 45px;
    width: 30px;
    height: 30px;
    background-color: var(--secondary);
  }
  .about-story .cards .item .text {
    position: relative;
    font-size: 17px;
    margin-top: 10px;
    margin-inline-start: 50px;
  }
  .about-story .cards .item {
    margin-top: 0;
  }
  .about-story .cards .item::before {
    position: absolute;
    content: "";
    left: 14px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #272727;
  }
  .about-story .cards .swiper-wrapper .swiper-slide:first-of-type .item::before {
    top: 50px;
  }
  .drives_pg .box {
    padding: 40px 25px;
    margin-top: 0 !important;
    height: -moz-max-content;
    height: max-content;
  }
  .drives_pg .box .p {
    font-size: 12px;
  }
  .drives_pg .box .title {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .drives_pg .box .title .icon {
    height: 25px;
  }
  .values_sec .item .txt_box {
    padding: 45px 20px;
  }
  .values_sec .item .txt_box .p {
    height: -moz-max-content;
    height: max-content;
    margin-top: 20px;
    font-size: 13px;
  }
  .drives_txt_sec .Directors .item .info-box {
    left: -24px !important;
  }
  /*.vision_pg.section .txt_box .p {*/
  /*    font-size: 17px;*/
  /*}*/
  .blog-pg .txt_box {
    padding: 0 15px;
  }
  /* .blog-pg .container {
      padding: 0 !important;
  } */
  .blog-pg .post-det .info .text {
    font-size: 15px;
    margin-top: 30px;
  }
  .blog-pg .post-det {
    padding: 30px;
    filter: none;
    border-radius: 0;
  }
  .subsidiary_sec .logo {
    position: relative;
    height: 65px;
    text-align: center;
    margin-bottom: 50px;
  }
  .drives_pg .txt_box {
    text-align: center;
    margin-bottom: 40px;
  }
  .drives_txt_sec .Directors .item .info-box .box {
    width: calc(100% - 20px);
  }
  .filter-side {
    display: none;
    padding: 15px;
  }
  .blog-pg .txt_box .news-toggle {
    display: inline-block;
  }
  .blog-pg .back-lnk {
    margin-top: 0;
  }
  .blog-pg .post-det .info .title {
    font-size: 18px;
  }
  .vision-csr .p {
    font-size: 17px !important;
  }
  .values_sec .swiper-container .swiper-pagination {
    bottom: 30px;
  }
  .values_sec .swiper-container .swiper-pagination .swiper-pagination-bullet {
    background-color: #fff;
  }
  .progress-wrap {
    position: fixed;
    inset-inline-end: 24px;
    bottom: 80px;
  }
  .services_sec_st2 .service-card .info-card {
    opacity: 1;
    visibility: visible;
  }
  .services_sec_st2 .service-card .img::after {
    opacity: 0.5;
  }
  .clients_sec .swiper-slide {
    text-align: center;
  }
  html[dir=rtl] .about-story .cards .item::before {
    left: auto !important;
    right: 14px !important;
  }
  .turnkey_proj_sec::before {
    width: 100px;
    height: 40px;
  }
  .navbar .dropdown-wrapper .link-item .text {
    margin-top: 0;
  }
  .devision-items .cards .item {
    width: 50%;
  }
}
/*-- new pages---*/
/*------------files------------*/
.files-content {
  border-bottom: 0px;
  border-radius: 8px;
  color: #3d3d3d;
  font-weight: 500;
  overflow: hidden;
}

.files-content .top-heading {
  background-color: #dce1e1;
}

.files-content .content .item span {
  font-size: 15px;
}

.files-content .mobile {
  display: none;
}

.pagination .page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  font-weight: bold;
}

.pagination .page-link {
  background-color: #f1f4f8;
  margin: 10px;
  border-radius: 8px !important;
  border: 1px solid transparent;
  color: #0a152e;
  padding: 10px 20px 14px;
  line-height: 1;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  padding: 12px 20px;
}

.pagination .page-link:hover {
  background-color: #0a152e;
  color: #fff !important;
}

.table-content .row.content:nth-child(odd) {
  background-color: #F1F3F3;
}

.table-content .row.content:nth-child(even) {
  background-color: #fbfbfb;
}

.btn-secondary {
  padding: 6px 25px;
  border-radius: 10px;
}

.btn-secondary:hover {
  color: white !important;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #f1f3f3;
  border-color: transparent;
}

/* ---------- careers pages 5/3/2025 ---------- */
.careers {
  position: relative;
}
.careers .title-wrapper {
  position: relative;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2666666667);
}
.careers .title-wrapper .search {
  position: relative;
  display: flex;
  align-items: end;
}
.careers .title-wrapper .search .form-group {
  position: relative;
  width: 100%;
}
.careers .title-wrapper .search .form-group .search-icon {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 40px;
  height: 45px;
  background-color: #fff;
  border-radius: 6px;
  color: #3387ff;
}
.careers .title-wrapper .search .list-grid-btns {
  position: relative;
  display: flex;
  background-color: #f1f4f8;
  height: 55px;
  padding: 5px;
  border-radius: 8px;
  margin-inline-start: 15px;
  flex-shrink: 0;
  gap: 5px;
}
.careers .title-wrapper .search .list-grid-btns a {
  position: relative;
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #3387ff !important;
  border-radius: 5px;
}
.careers .title-wrapper .search .list-grid-btns a.active {
  background-color: #3387ff;
  color: #fff !important;
}
.careers .jops {
  position: relative;
}
.careers .jops .table-header {
  position: relative;
  background-color: #3387ff;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 0 30px;
}
.careers .jops .table-header h6 {
  position: relative;
  padding: 15px 0;
  font-weight: bold;
  color: #fff;
  margin: 0;
}
.careers .jops .jop-card {
  position: relative;
  padding: 15px 30px;
  background-color: #f1f4f8;
  border-radius: 10px;
  margin-bottom: 15px;
}
.careers .jops .jop-card .item {
  position: relative;
  padding: 15px 0;
}
.careers .jops .jop-card .item h6 {
  position: relative;
  font-weight: bold;
  color: #0a152e;
  margin-bottom: 10px;
  display: none;
}
.careers .jops .jop-card .bttn {
  font-weight: bold;
  padding: 10px 15px;
  font-size: 12px;
}
.careers .jops .jop-card .col-lg-1 {
  padding: 0;
}
.careers .jops.grid .table-header {
  display: none;
}
.careers .jops.grid .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.careers .jops.grid .cards .jop-card {
  width: 32%;
}
.careers .jops.grid .cards .jop-card .col-lg-1,
.careers .jops.grid .cards .jop-card .col-lg-3,
.careers .jops.grid .cards .jop-card .col-lg-4,
.careers .jops.grid .cards .jop-card .col-lg-5,
.careers .jops.grid .cards .jop-card .col-lg-6,
.careers .jops.grid .cards .jop-card .col-lg-7,
.careers .jops.grid .cards .jop-card .col-lg-8,
.careers .jops.grid .cards .jop-card .col-lg-9,
.careers .jops.grid .cards .jop-card .col-lg-10,
.careers .jops.grid .cards .jop-card .col-lg-11 {
  width: 100%;
}
.careers .jops.grid .cards .jop-card .col-lg-2 {
  width: 50%;
}
.careers .jops.grid .cards .jop-card .col-lg-1 {
  padding: 0 15px;
}
.careers .jops.grid .cards .jop-card .item {
  padding: 10px 0;
}
.careers .jops.grid .cards .jop-card .item h6 {
  display: block;
  margin-bottom: 10px;
}
.careers .jops.grid .pagination {
  justify-content: center;
}
.careers .jops-st2 {
  position: relative;
}
.careers .jops-st2.grid .cards {
  gap: 1%;
}
.careers .jops-st2.grid .jop-title-row {
  display: none;
}
.careers .jops-st2.grid .jop-item-row {
  display: block;
  padding: 30px 30px 50px;
  width: 24%;
}
.careers .jops-st2.grid .jop-item-row .item.action {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100% !important;
    padding: 20px !important;
}
.careers .jops-st2.grid .jop-item-row .tit {
  display: inline-block;
}
.careers .jops-st2.grid .jop-item-row .item {
  width: 100%;
  padding: 10px 0;
}
.careers .jops-st2.grid .jop-item-row .item.discription {
  width: 100%;
}
.careers .jops-st2.grid .jop-item-row .item.fav {
  text-align: start;
}
.careers .jops-st2 .jop-title-row {
  position: relative;
  background-image: linear-gradient(90deg, #5a5ca9 , #0fb6df );
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 0 30px;
  display: flex;
  align-items: center;
}
.careers .jops-st2 .jop-title-row .item {
  position: relative;
  padding: 15px 0;
  font-weight: bold;
  color: #fff;
  margin: 0;
  text-transform: capitalize;
  flex-grow: 1;
  width: 100px;
}
.careers .jops-st2 .jop-title-row .item.discription {
  width: 300px;
}
.careers .jops-st2 .jop-title-row .item.fav {
  width: 50px;
  text-align: center;
  padding-inline-end: 0;
}
.careers .jops-st2 .jop-title-row .item:last-of-type {
  text-align: end;
  padding-inline-end: 20px;
}
.careers .jops-st2 .jop-item-row {
  position: relative;
  background-color: #f1f4f8;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 0 30px;
  display: flex;
  align-items: center;
}
.careers .jops-st2 .jop-item-row.closed {
  opacity: 0.6;
}
.careers .jops-st2 .jop-item-row .tit {
  margin-inline-end: 10px;
  color: #000;
  display: none;
}
.careers .jops-st2 .jop-item-row .item {
  position: relative;
  padding: 15px 0;
  padding-inline-end: 10px;
  margin: 0;
  text-transform: capitalize;
  flex-grow: 1;
  width: 100px;
}
.careers .jops-st2 .jop-item-row .item.discription {
  width: 300px;
  padding-inline-end: 30px;
  font-size: 14px;
}
.careers .jops-st2 .jop-item-row .item.fav {
  width: 50px;
  text-align: center;
  padding-inline-end: 0;
}
.careers .jops-st2 .jop-item-row .item:last-of-type {
  text-align: end;
  padding-inline-end: 0;
}
.careers .jops-st2 .jop-item-row .bttn {
  font-weight: bold;
  padding: 10px 15px;
  font-size: 12px;
  background: #5a5ba8 ;
  border-radius: 25px ;
}
.careers .jops-st2 .jop-item-row .bttn:hover {
    background: #00b4da ;
}
.careers .jops-st2 .jop-item-row .fav-btn {
  position: relative;
  opacity: 0.3;
}
.careers .jops-st2 .jop-item-row .fav-btn.active {
  opacity: 1;
  color: var(--secondary);
}

.form-sec {
  position: relative;
}
.form-sec .content {
  position: relative;
  padding: 15px;
  border: 3px solid #f1f4f8;
  border-radius: 15px;
}
.form-sec .content .form-side {
  position: relative;
}
.form-sec .content .form-side .login-form {
  margin-top: 30px;
}
.form-sec .content .form-side .login-form .bttn {
    margin-bottom: 15px;
    
    padding: 12px 50px;
    border-radius: 0;
    clip-path: polygon(100% 0, 100% 50%, 90% 100%, 0 100%, 0 0);
}
.form-sec .content .form-side .login-form .bttn::after{
    content: '';
    position: absolute;
    left: -190%;
    top: 0px;
    width: 300%;
    height: 100%;
    background: rgb(33,209,159);
    /*background: linear-gradient(45deg, rgba(33,209,159,1) 0%, rgba(34,44,64,1) 50%, rgba(21,65,153,1) 100%);*/
        background: linear-gradient(to left, #5fcaeb, #1FADDA, #5A6BAB);
    z-index: -1;
    transition: all 300ms ease-in;
}
.form-sec .content .form-side .login-form .bttn:hover::after {
    left: 0%;
    top: 0px;
}
.form-sec .content .img {
  position: relative;
  border-radius: 15px;
  height: 400px;
  overflow: hidden;
}
.form-sec .content .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.form-st2 .form-control {
  position: relative;
  min-height: 55px !important;
  background-color: #f1f4f8;
  border: 1px solid transparent !important;
  border-radius: 10px;
  border: 0;
  padding: 15px 20px;
  box-shadow: none !important;
}
.form-st2 .form-control:focus {
  border: 1px solid #0a152e;
}
.form-st2 .form-check {
  margin-bottom: 0;
}

.edit-info-modal .avatar-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.edit-info-modal .avatar-wrapper .avatar {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
}
.edit-info-modal .avatar-wrapper .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal-content {
  padding: 10px;
  border-radius: 20px;
  border: 0;
}

.show_hide_password {
  position: relative;
}
.show_hide_password .show_pass {
  opacity: 0.5;
  font-size: 14px;
  position: absolute;
  right: 15px;
  bottom: 18px;
  cursor: pointer;
  z-index: 10;
}

.bttn {
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  background-color: #0a152e;
  color: #fff;
  border-radius: 10px;
  font-weight: bold;
  padding: 15px 30px;
  font-size: 16px;
  text-align: center;
}
.bttn.bttn-sm {
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px;
}
.bttn.disabled {
  pointer-events: none;
  opacity: 0.1;
  filter: grayscale(1);
}
.bttn:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: #fff !important;
}
.bttn.bttn-line {
  background-color: transparent;
  border: 1px solid #0a152e;
  color: #0a152e !important;
}
.bttn.bttn-line:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: #fff !important;
}

/* ---------- dropdown-select ---------- */
.dropdown-select .dropdown-toggle {
  text-align: start;
}
.dropdown-select .dropdown-toggle::after {
  display: none;
}
.dropdown-select .cat-txt {
  position: relative;
  padding: 5px 15px;
  background-color: #fff;
  border-radius: 20px;
}
.dropdown-select .dropdown-menu {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  background-color: #f1f4f8;
  border: 3px solid #fff;
}

/* ---------- input-select ---------- */
.input-dropdown .input-select {
  text-align: start;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.input-dropdown .input-select::after {
  display: none;
}
.input-dropdown .cat-txt {
  position: relative;
  padding: 5px 15px;
  background-color: #fff;
  border-radius: 20px;
}
.input-dropdown .dropdown-menu {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  background-color: #f1f4f8;
  border: 3px solid #fff;
}
.input-dropdown .dropdown-menu .input-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.input-dropdown .dropdown-menu .input-list .li {
  width: calc(50% - 10px);
}
.input-dropdown .dropdown-menu .input-list .li .form-control {
  background-color: #fff;
  font-size: 14px;
  min-height: 40px !important;
  height: 40px !important;
}
.input-dropdown .dropdown-menu .bttn {
  font-size: 12px;
  padding: 8px 30px;
  font-size: 14px;
  margin-top: 10px;
}

/* ---------- portfolio page ---------- */
.portfolio-sec {
  position: relative;
}
.portfolio-sec .side-menu {
  position: relative;
  padding: 30px;
  background-color: #f1f4f8;
  border-radius: 15px;
  min-height: 500px;
}
.portfolio-sec .side-menu .user-info {
  position: relative;
  display: flex;
  margin-bottom: 30px;
}
.portfolio-sec .side-menu .user-info .letters {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
  color: #0a152e;
  font-size: 30px;
  text-transform: uppercase;
  margin-inline-end: 15px;
  flex-shrink: 0;
}
.portfolio-sec .side-menu .user-info .avatar {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
  margin-inline-end: 15px;
  flex-shrink: 0;
  overflow: hidden;
}
.portfolio-sec .side-menu .user-info .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio-sec .side-menu .nav-pills {
  display: block;
}
.portfolio-sec .side-menu .nav-pills .nav-item .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: start;
  padding: 15px 20px;
  background-color: transparent;
  color: #0a152e;
  border-radius: 8px;
  font-weight: 600;
}
.portfolio-sec .side-menu .nav-pills .nav-item .nav-link .arrow {
  opacity: 0;
}
.portfolio-sec .side-menu .nav-pills .nav-item .nav-link.active {
  background-color: #fff;
}
.portfolio-sec .side-menu .nav-pills .nav-item .nav-link.active .arrow {
  opacity: 1;
}
.portfolio-sec .portfolio-content {
  position: relative;
  padding: 30px;
  border: 3px solid #f1f4f8;
  border-radius: 15px;
  min-height: 500px;
}
.portfolio-sec .portfolio-content .info-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 0;
  text-transform: capitalize;
}
.portfolio-sec .portfolio-content .info-item .ico {
  font-size: 8px;
  margin-inline-end: 10px;
  opacity: 0.3;
}
.portfolio-sec .portfolio-content .info-item strong {
  color: #0a152e;
  margin-inline-start: 10px;
}
.portfolio-sec .portfolio-content .careers .jops-st2.grid .jop-item-row {
  width: 32%;
}

/* ---------- thanks page ---------- */
.thanks-sec {
  position: relative;
}
.thanks-sec .content {
  position: relative;
  text-align: center;
}
.thanks-sec .content .icon {
  height: 100px;
  margin-bottom: 50px;
}
.thanks-sec .content h2 {
  font-size: 40px;
}

@media screen and (max-width: 991px) {
  .careers .jops.grid .cards {
    gap: 0;
    flex-wrap: wrap;
  }
  .careers .jops-st2.grid .jop-item-row {
      width: 100%;
  }
  .careers .jops.grid .cards .jop-card {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact_pg.px-5 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .justify-content-between.d-flex {
    display: block !important;
  }
  .mobile {
    display: block !important;
  }
  .desktop {
    display: none;
  }
  .files-content .d-flex {
    display: block !important;
  }
  .files-content .ps-0 {
    padding-right: 10px !important;
  }
}
.label-box {
  background-color: var(--light1);
  padding: 10px;
}

.label-box-grey {
  background-color: #dce1e1;
  padding: 15px;
}

.application-card {
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.subtitle2 {
  font-size: 17px;
  color: #1851a7;
}

.submit_butn.secondary {
  background-color: #999999 !important;
  border-radius: 10px;
  width: 145px;
  height: 50px;
  background-color: #F1F3F3;
  font-size: 18px;
  color: white;
}

.submit_butn.secondary:hover {
  background-color: var(--primary) !important;
}

.contact_pg label.form-check-label {
  color: #58595B;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */


#preloader{
  z-index: 99999!important;
}

.form-check .form-check-input {
    margin-top: 2px;
}

.navs-container .navbar .nav-link.lang-link {
    opacity: 0;
}



