@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;
  --secondary: #5A37FD;
  --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%);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: corbel_regular;
  /*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;
}

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

.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 {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

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

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

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

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .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;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: transparent;
}

button:focus {
  border: none;
  -webkit-box-shadow: transparent;
          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 {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-group {
  position: relative;
}

form .form-control {
  font-size: 16px;
  border-radius: 0;
  background-color: #F1F3F3;
  border-color: #F1F3F3;
  font-family: helvetica_neue;
  color: #58595B;
}

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

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

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

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

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: 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);
  -webkit-box-shadow: none;
          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;
  -webkit-box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
          box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 10.5px;
  top: 10.5px;
  height: 25px;
  width: 25px;
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

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

.trans_3 {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

/**********************************************
   Start Loader
**********************************************/
#preloader {
  width: 100%;
  height: 100vh;
  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: -webkit-gradient(linear, left top, right top, from(#0d1a36), color-stop(#132650), to(#0a152e));
  background: linear-gradient(to right, #0d1a36, #132650, #0a152e);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  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%;
  -webkit-transform: translate(-50%, -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: #0005;
  display: none;
  -webkit-transition: all 0.5s ease;
  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%;
  -webkit-animation: loader 2s linear infinite;
  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%;
  -webkit-animation: loader 3s linear infinite;
  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%;
  -webkit-animation: loader 1.5s linear infinite;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}

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

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

#preloader.isdone::after, #preloader.isdone::before {
  height: 0;
  -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -webkit-transition-delay: 1s;
  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;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

.slide_ltr {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .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 {
  -webkit-transform: scale(1);
          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 {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.slide_rtl {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: .1s;
          transition-delay: .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 {
  -webkit-transform: scale(1);
          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 {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@-webkit-keyframes puff-in {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes puff-in {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.puff-in {
  -webkit-animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
          animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 0.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 0.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 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;
  -webkit-transition: all .3s linear;
  transition: all .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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 45px;
  color: #272727;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.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: .7rem 1.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 0;
}

.butn i {
  -webkit-margin-end: 7px;
          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 {
  -webkit-filter: var(--filterWhite);
          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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: 0.5rem 1.5rem;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  text-transform: uppercase;
  font-size: 17px;
}

.main_butn::before {
  content: '';
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  z-index: 0;
  background-color: var(--primary);
}

.main_butn:hover {
  color: #fff !important;
}

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

.section .txt_box .subtitle {
  font-size: 20px;
  /*font-family: "Caveat", cursive;*/
}

.section .txt_box .title {
  line-height: 1.2;
  font-size: 39px;
  color: #3387FF !important;
}

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

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 2rem 1rem;
  z-index: 9;
  -webkit-transition: all 0.5s ease;
  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.scrolled {
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-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: 50px;
}

.navs-container .navbar .nav-link {
  font-weight: 600;
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
  position: relative;
}

.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%;
  -webkit-transition: all .3s linear;
  transition: all .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;
  -webkit-transition: all .3s linear;
  transition: all .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;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          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;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

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

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  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: var(--primary);
  -webkit-transition: 0.5s;
  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: 50px;
}

.footer {
  background-color: #272727;
}

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

.footer .content .logo {
  width: 245px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 4rem;
}

.footer .content .social_links a {
  color: #fff;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.footer .content .social_links a::after {
  content: '|';
  color: #999999;
  opacity: .61;
  display: inline-block;
  margin: 0 10px;
}

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

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

.footer .content .links .item {
  color: #999999;
  font-size: 13px;
  margin-bottom: 7px;
  /*font-family: 'Poppins', sans-serif;*/
  text-transform: capitalize;
  display: block;
}

.footer .content .links .item i {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.footer .foot {
  border-top: 1px solid #707070;
  padding-top: 30px;
  margin-top: 10px;
}

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

.footer .foot .links a {
  color: #999999;
  font-size: 15px;
  -webkit-margin-end: 10px;
          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 .item {
  padding: 250px 0 200px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.header .item .title {
  font-size: 53px;
  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: #fff4;
  opacity: 1;
}

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

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

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

.about_sec .txt_box .p {
  height: 136px;
  overflow: hidden;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: c;
      -ms-flex-pack: c;
          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;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: translateY(65px);
          transform: translateY(65px);
}

.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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  display: block;
}

.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 {
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
}

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

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

.projects_sec {
  background-color: #F1F3F3;
}

.projects_sec .item .img_box {
  position: relative;
  overflow: hidden;
  width: 90%;
  height: 300px;
}

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

.projects_sec .item .box {
  background-color: #fff;
  margin-top: -175px;
  padding: 70px 4vw;
}

.projects_sec .item .box .logo_proj_1 {
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 200px;
  -webkit-margin-start: 1vw;
          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;
    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.5rem;
  -webkit-padding-start: 2vw;
          padding-inline-start: 2vw;
}

.projects_sec .arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 37%;
  top: 50px;
}

.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: 70px 0 40px 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;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.features_sec .item .title {
  font-size: 18px;
  width: 67%;
  margin: auto;
  /*font-family: helvetica_neue;*/
  color: #2D81FD !important;
}

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

.pg_header .item h5 {
  /*font-family: "Caveat", cursive !important;*/
}

.pg_header .item .title {
  letter-spacing: 0;
  width: 60%;
margin: 0 auto;
min-width: 400px;
}

.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%;
  -webkit-transform: translateY(-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: -webkit-gradient(linear, left top, right top, from(#2d81fd85), to(#fff));
  background-image: linear-gradient(to right, #2d81fd85, #fff);
  opacity: .51;
}

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

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

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

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

.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 .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;
}

.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: 19px;
}

.drives_txt_sec .txt_box .subtitle {
  font-size: 20px;
}

.drives_txt_sec .txt_box .title {
  font-size: 56px;
  color: #2D81FD !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: #3387FF !important;
}

.turnkey_proj_sec {
  background-color: #F1F3F3;
  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);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

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

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

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

.turnkey_proj_sec .proj_card:hover .logo {
  -webkit-filter: invert(143%) sepia(0%) saturate(47%) hue-rotate(100deg) brightness(827%) contrast(96%);
          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: #667A8F;
}

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

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

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

.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: #fff;
  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: #3387FF !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 {
  width: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 35px auto;
}

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

.partners_pg .content_box .p {
  font-size: 25px;
  line-height: 1.6;
}

.partners_pg .logos_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.partners_pg .logos_box .logo {
  -o-object-fit: contain;
     object-fit: contain;
  margin: 5px 20px;
}

.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: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(#ffffffe7), to(#ffffff00));
  background-image: linear-gradient(to right, #fff, #ffffffe7, #ffffff00);
  z-index: 1;
}

/**********************************************
    Start Edit media Pages 
**********************************************/
.media_pg .sec_title {
  color: #3387FF !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;
  -webkit-margin-start: auto;
          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%;
  -webkit-transform: translateX(-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) {
  .order_md_1 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .navs-container .navbar {
        position: relative !important;
        background-color: #fff;
        padding: 20px !important;
  }
  .navs-container .navbar .logo_box {
      margin-bottom: 0 !important;
  }
  .navs-container .navbar .navbar-collapse {
    background: #fff;
  }
  .navs-container .navbar .logo_box .logo {
    margin: 0;
    width: 250px;
  }
  .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: 110px;
  }
  .navs-container .navbar .drop_down#dropdown_2 {
    top: 150px;
  }
  .navs-container .navbar .drop_down#dropdown_3 {
    top: 190px;
  }
  .navs-container .navbar .drop_down#dropdown_4 {
    top: 230px;
  }
  .navs-container .navbar .drop_down#dropdown_5 {
    top: 270px;
  }
  .navs-container .navbar .navbar-toggler {
    position: absolute;
    inset-inline-end: 10px;
    top: 5px;
  }
  .header .item .title {
    font-size: 25px;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  .header .item {
      padding: 150px 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: 10px;
  }
  .features_sec .item .title {
    font-size: 15px;
    width: 95%;
  }
  .footer .foot .copyright_p {
    font-size: 13px;
  }
  .footer .foot .links a {
    font-size: 10px;
    -webkit-margin-end: 5px;
            margin-inline-end: 5px;
  }
  .footer .foot .links a::after {
    margin: 0 5px;
  }
  
  .projects_sec .item .box .logo-side {
    border-top: 1px solid #9995;
    margin-top: 20px !important;
    padding-top: 30px;
    margin-bottom: 20px;
  }
  
  .projects_sec .item .box .p {
      padding: 0 !important;
  }
  
  .footer .foot {
      text-align: center;
  }
  
  .pg_header .item {
      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: 60%;
        top: auto;
        transform: translateY(0);
    }
    
    .about_pg .txt_box {
        padding: 70px 3vw 0;
    }
    
    .ceo_pg .img_box {
        margin-bottom: 30px;
    }
    
    .values_sec {
        padding-top: 0;
    }
    
    .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;
        height: 150px;
    }
    
    .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: max-content;
    }
  
}

@media screen and (max-width: 787px) {
  .container, .container-fluid {
    padding: 0 10px !important;
  }
}

/**********************************************
    Start Edit EN direction 
**********************************************/
html[dir="rtl"] body {
  direction: rtl;
}
/*# sourceMappingURL=style.css.map */

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