@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
@font-face {
  font-family: "corbel_light";
  src: url(../fonts/corbel/corbel-light.ttf);
}
@font-face {
  font-family: "corbel_regular";
  src: url(../fonts/corbel/corbel-regular.ttf);
}
@font-face {
  font-family: "corbel_bold";
  src: url(../fonts/corbel/corbel-bold.ttf);
}
@font-face {
  font-family: "bukra_bold";
  src: url(../fonts/29ltbukrabold.otf);
}
@font-face {
  font-family: "bukra_regular";
  src: url(../fonts/29ltbukraregular.otf);
}
:root {
  --primary: #4f7cbd;
  --secondary: #6163aa;
  --filterPrimary: invert(49%) sepia(55%) saturate(537%) hue-rotate(176deg) brightness(85%) contrast(84%);
  --filterSecondary: invert(40%) sepia(30%) saturate(767%) hue-rotate(200deg) brightness(95%) contrast(97%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  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;
}

.bukra_bold {
  font-family: "bukra_bold";
}

.bukra_regular {
  font-family: "bukra_regular";
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #272727;
}

.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: #6d6e71;
  line-height: 1.7rem;
  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 {
  font-size: 14px;
}
form .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}
form input,
form select {
  height: 60px !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/top-arrow.png);
  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: 10.5px;
  top: 10.5px;
  height: 25px;
  width: 25px;
  display: block;
  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: 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: 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 {
  transform: translateX(5%);
  transition: all 1.2s ease-in-out;
  transition-delay: 0.1s;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.slide_ltr.animated {
  transform: translateX(0%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.slide_ltr.no_scale {
  transform: scale(1);
}

.slide_rtl {
  transform: translateX(-5%);
  transition: all 1s ease-in-out;
  transition-delay: 0.1s;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.slide_rtl.animated {
  transform: translateX(0%);
  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.2);
    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 1s 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,
.section .swiper-pagination {
  bottom: 0;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet,
.section .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 25px;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet-active,
.section .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev,
.section .swiper-button-next,
.section .swiper-button-prev {
  background-image: unset;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  background-color: #f5f5f5;
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before,
.section .swiper-button-next::before,
.section .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: 15px;
  color: var(--secondary);
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover,
.section .swiper-button-next:hover,
.section .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}
.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before,
.section .swiper-button-next:hover::before,
.section .swiper-button-prev:hover::before {
  color: #fff;
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev,
.section .swiper-button-next,
.section .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,
.section .swiper-button-next::before,
.section .swiper-container-rtl .swiper-button-prev::before {
  content: "\f0da";
}
.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next,
.section .swiper-button-prev,
.section .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,
.section .swiper-button-prev::before,
.section .swiper-container-rtl .swiper-button-next::before {
  content: "\f0d9";
}

.butn {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 19px;
  border: 1px solid transparent;
  border-radius: 0;
  width: 240px;
  height: 55px;
  transition: all 0.3s linear;
  clip-path: polygon(100% 0, 100% 50%, 90% 100%, 0 100%, 0 0);
  background-size: 300% 100%;
  font-weight: bold;
}
.butn.primary_linear {
  background-image: linear-gradient(to right, #4f7cbd, #6163aa, #4f518e, #80a7df);
  box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
  color: #fff;
}
.butn.white_butn {
  background-image: linear-gradient(to right, #fff, #fff, #4f518e, #80a7df);
  box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
  color: #0db5db;
}
.butn:hover {
  background-position: 100% 0 !important;
  color: #fff !important;
}

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

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

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar {
  padding: 1.3rem 1rem;
  background-image: linear-gradient(25deg, #4f7cbd, #6163aa);
  z-index: 99;
}
.navs-container .navbar.home_nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-image: unset;
  background-color: rgba(79, 125, 189, 0.5568627451);
}
.navs-container .navbar .logo {
  width: 205px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navs-container .navbar .nav-link {
  font-size: 20px;
  margin: 0 2vw;
  color: #fff !important;
}
.navs-container .navbar .lang_butn {
  font-size: 20px;
  color: #fff;
}
.navs-container .navbar .lang_butn .icon {
  width: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navs-container .navbar .has_dropdown {
  position: relative;
}
.navs-container .navbar .has_dropdown .drop_down {
  position: absolute;
  top: 50px;
  width: 220px;
  inset-inline-end: 0;
  transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear;
  box-shadow: 0 0 15px 0 rgba(71, 70, 70, 0.067);
}
.navs-container .navbar .has_dropdown .drop_down a {
  padding: 0.7rem 1rem;
  display: block;
  position: relative;
  background-color: #6667ac;
  color: #fff;
}
.navs-container .navbar .has_dropdown .drop_down a::before {
  content: "";
  width: 12px;
  height: 12px;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background-color: #2cb6db;
  display: inline-block;
  margin-inline-end: 15px;
}
.navs-container .navbar .has_dropdown .drop_down a:nth-child(odd) {
  background-color: #6163aa;
}
.navs-container .navbar .has_dropdown .drop_down a:last-child {
  clip-path: polygon(100% 0, 100% 40%, 90% 100%, 0 100%, 0 0);
}
.navs-container .navbar .has_dropdown .drop_down a:hover {
  color: #84daf2 !important;
}
.navs-container .navbar .has_dropdown .drop_down::before {
  content: "";
  width: 100px;
  height: 2.5px;
  background-image: linear-gradient(to right, #2cb6db, transparent);
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  z-index: 1;
}
.navs-container .navbar .has_dropdown:hover .drop_down {
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
}
.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 {
  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;
}

.footer .social_icons a {
  margin: 0 4px;
  font-size: 25px;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  padding: 0;
}
.header .item {
  min-height: 130vh;
  padding-top: 150px;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
}
.header .item .txt_box {
  z-index: 5;
  position: relative;
  padding-bottom: 70px;
}
.header .item .txt_box .title {
  font-size: 50px;
  text-transform: capitalize;
  margin-bottom: 0 !important;
  text-shadow: 0 0 4px rgba(68, 67, 104, 0.9), 0 0 12px rgba(68, 67, 104, 0.8), 0 0 22px rgba(68, 67, 104, 0.7), 0 0 40px rgba(68, 67, 104, 0.6);
}
.header .item .txt_box .p {
  font-family: "corbel_light";
  margin-top: 0px !important;
  font-size: 20px;
  text-shadow: 0 0 4px rgba(68, 67, 104, 0.9), 0 0 12px rgba(68, 67, 104, 0.8), 0 0 22px rgba(68, 67, 104, 0.7), 0 0 40px rgba(68, 67, 104, 0.6);
}
.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: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2980392157));
  z-index: 1;
}
.header .act_butns {
  display: flex;
  align-items: center;
  bottom: 50px;
  position: absolute;
  width: 100%;
  justify-content: space-between;
  padding-inline: 8vw;
}
.header .act_butns .swiper-button-next,
.header .act_butns .swiper-button-prev {
  width: 88px;
  height: 40px;
  top: unset;
  background-image: unset;
  position: relative;
  right: unset;
  left: unset;
  margin: 0;
  background-color: transparent !important;
  border-radius: 0 !important;
}
.header .act_butns .swiper-button-next::before,
.header .act_butns .swiper-button-prev::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/icons/swiper_arrow.png) no-repeat center;
  background-size: contain !important;
  display: block;
  transition: all 0.3s linear;
}
.header .act_butns .swiper-button-next::before {
  transform: rotateY(180deg);
}
.header .act_butns .swiper-pagination {
  position: relative;
}
.header .act_butns .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 100px;
  height: 3px;
  background-image: linear-gradient(to right, #fff, #fff);
  transition: all 0.3s linear;
  border-radius: 15px;
  margin: 0 5px;
  transition: all 0.3s linear;
}
.header .act_butns .swiper-pagination .swiper-pagination-bullet-active {
  background-image: linear-gradient(to right, #2cb6db, #6163aa);
}
.header .search_box {
  width: 280px;
  position: absolute;
  inset-inline-end: 5%;
  top: 130px;
  z-index: 2;
}
.header .search_box .form-control {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  height: 45px !important;
  padding-inline-end: 55px;
  transition: all 0.3s linear;
}
.header .search_box .form-control:focus {
  background-color: rgba(255, 255, 255, 0.5333333333);
  font-weight: bold;
}
.header .search_box .search_butn {
  position: absolute;
  inset-inline-end: 15px;
  top: 7.5px;
}
.header .search_box .search_butn .icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.has_line {
  position: relative;
}
.has_line::after {
  width: 150px;
  height: 6px;
  content: "";
  background-image: linear-gradient(to left, #2cb6db, #6163aa);
  display: block;
  margin: 15px 0;
}

.lh_2 {
  line-height: 2rem;
}

.service_partner .item {
  text-align: center;
}
.service_partner .item .counter {
  background: linear-gradient(to left, #1d8ba9, #6163aa, #6163aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: calc(4vw + 35px);
  font-weight: bold;
  font-family: "bukra_bold";
}
.service_partner .item .label {
  font-size: 22px;
  color: #808184;
  margin-top: 15px;
}

.bg_light {
  background-color: #f0f1f1;
}

.strategic_division .strategic_box {
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;
  clip-path: polygon(100% 0, 100% 86%, 78% 100%, 0 100%, 0 0);
}
.strategic_division .strategic_box .nesmaLogo {
  width: 250px;
  transition: all 0.3s linear;
  -o-object-fit: contain;
     object-fit: contain;
}
.strategic_division .strategic_box .on_hvr {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: baseline;
  z-index: 5;
  padding: 25px 25px;
}
.strategic_division .strategic_box .on_hvr * {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 0.3s linear;
}
.strategic_division .strategic_box .on_hvr .nesmaLogo2 {
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 10px auto;
}
.strategic_division .strategic_box .on_hvr .p {
  font-size: 14px;
  line-height: 1.2rem;
  color: #fff;
}
.strategic_division .strategic_box .on_hvr .more_link .arrow {
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.strategic_division .strategic_box .bg {
  opacity: 0;
  filter: blur(10px);
  transition: all 0.3s linear;
  clip-path: polygon(100% 0, 100% 86%, 78% 100%, 0 100%, 0 0);
}
.strategic_division .strategic_box::before, .strategic_division .strategic_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);
  z-index: 1;
  clip-path: polygon(100% 0, 100% 86%, 78% 100%, 0 100%, 0 0);
  transition: all 0.3s linear;
  background-color: transparent;
  opacity: 0;
}
.strategic_division .strategic_box::before {
  background-image: linear-gradient(to bottom, #00adee, #6163aa);
  mix-blend-mode: overlay;
}
.strategic_division .strategic_box::after {
  background-image: linear-gradient(to bottom, transparent, #000);
  z-index: 2;
}
.strategic_division .strategic_box:hover .nesmaLogo {
  opacity: 0;
  transform: translateY(-10px);
}
.strategic_division .strategic_box:hover .on_hvr {
  opacity: 1;
}
.strategic_division .strategic_box:hover .on_hvr * {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.strategic_division .strategic_box:hover .bg {
  opacity: 1;
  filter: blur(0px);
}
.strategic_division .strategic_box:hover::before {
  opacity: 0.7;
}
.strategic_division .strategic_box:hover::after {
  opacity: 1;
}

.key_proj .img_box {
  position: relative;
  height: 400px;
}
.key_proj .img_box .secImg {
  height: 100%;
  clip-path: polygon(100% 0, 100% 85%, 85% 100%, 0 100%, 0 0);
}
.key_proj .img_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 bottom, #00adee, #6163aa);
  opacity: 0.2;
  z-index: 1;
  clip-path: polygon(100% 0, 100% 85%, 85% 100%, 0 100%, 0 0);
}
.key_proj .txt_box .p {
  color: #808184;
  line-height: 1.7rem;
  font-size: 22px;
}
.key_proj .pattern {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}

.blog_sec .blog_card {
  position: relative;
}
.blog_sec .blog_card .img_box {
  position: relative;
  height: 585px;
  clip-path: polygon(100% 0, 100% 87%, 82% 100%, 0 100%, 0 0);
  overflow: hidden;
}
.blog_sec .blog_card .card-body .date {
  color: #0db5db;
  font-family: "bukra_bold";
}
.blog_sec .blog_card .card-body .title {
  font-weight: 500;
  font-size: 26px;
  color: #fff;
  margin-top: 15px;
  height: 94px;
  overflow: hidden;
}
.blog_sec .blog_card .card-body .butn {
  margin-top: 30px;
}
.blog_sec .swiper-pagination {
  position: relative;
}
.blog_sec .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 100px;
  height: 3px;
  background-image: linear-gradient(to right, #ddd, #ddd);
  transition: all 0.3s linear;
  border-radius: 15px;
  margin: 0 5px;
  transition: all 0.3s linear;
}
.blog_sec .swiper-pagination .swiper-pagination-bullet-active {
  background-image: linear-gradient(to right, #2cb6db, #6163aa);
}
.blog_sec .swiper-button-next,
.blog_sec .swiper-button-prev {
  width: 65px;
  height: 30px;
  top: 37%;
  background-image: unset;
  margin: 0;
  background-color: transparent !important;
  border-radius: 0 !important;
}
.blog_sec .swiper-button-next::before,
.blog_sec .swiper-button-prev::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/icons/swiper_arrow2.png) no-repeat center;
  background-size: contain !important;
  display: block;
  transition: all 0.3s linear;
}
.blog_sec .swiper-button-prev::before {
  transform: rotateY(180deg);
}
.blog_sec::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);
  height: 50%;
  top: unset;
  clip-path: polygon(100% 0, 100% 90%, 95% 100%, 0 100%, 0 0);
  background-image: linear-gradient(25deg, #1986a4, #6163aa);
}

.shaping_sec {
  overflow: unset;
}
.shaping_sec .pattern {
  position: absolute;
  bottom: -44%;
  right: 0;
  -o-object-fit: contain;
     object-fit: contain;
  width: 68%;
  z-index: 1;
}

.partners_sec {
  background-image: linear-gradient(to bottom, #f0f1f1, rgba(79, 125, 189, 0.0588235294));
  padding-top: 150px;
}
.partners_sec .partnerLogo {
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  max-width: 85%;
}
.partners_sec .swiper-button-next,
.partners_sec .swiper-button-prev {
  width: 65px;
  height: 30px;
  top: unset;
  bottom: 90px;
  background-image: unset;
  margin: 0;
  background-color: transparent !important;
  border-radius: 0 !important;
}
.partners_sec .swiper-button-next::before,
.partners_sec .swiper-button-prev::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/icons/swiper_arrow2.png) no-repeat center;
  background-size: contain !important;
  display: block;
  transition: all 0.3s linear;
}
.partners_sec .swiper-button-prev::before {
  transform: rotateY(180deg);
}

/**********************************************
    Start Edit pg-header
**********************************************/
.pg_header {
  background-color: #f0f1f1;
  padding: 15px 0;
}
.pg_header .bread .item {
  color: #828181;
  font-weight: bold;
}
.pg_header .bread .item::after {
  content: "";
  width: 30px;
  height: 14px;
  background: url(../images/icons/swiper_arrow2.png) no-repeat center;
  background-size: contain;
  margin: 0 10px;
  margin-inline-end: 20px;
  display: inline-block;
  pointer-events: none;
}
.pg_header .bread .item.active {
  background: linear-gradient(to right, #2cb6db, #6163aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pg_header .bread .item.active::after {
  display: none;
}

/**********************************************
    Start Edit scope_work Page 
**********************************************/
.scope_work_pg {
  background-image: linear-gradient(to bottom, #fff, rgba(79, 125, 189, 0.0588235294));
}
.scope_work_pg .item {
  position: relative;
  min-height: 650px;
  padding: 70px 7vw;
  display: flex;
  align-items: end;
  clip-path: polygon(100% 0, 100% 85%, 90% 100%, 0 100%, 0 0);
  overflow: hidden;
  margin-bottom: 50px;
}
.scope_work_pg .item .data_box {
  position: relative;
  z-index: 5;
}
.scope_work_pg .item .data_box .logo_box {
  background-color: #ffffff;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(100% 0, 100% 85%, 90% 100%, 0 100%, 0 0);
}
.scope_work_pg .item .data_box .logo_box .nesmaLogo {
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.scope_work_pg .item .data_box .txt_box .p {
  font-size: 28px;
  color: #fff;
  line-height: 2rem;
}
.scope_work_pg .item::before, .scope_work_pg .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);
  z-index: 1;
  transition: all 0.3s linear;
  background-color: transparent;
  opacity: 0;
}
.scope_work_pg .item::before {
  background-image: linear-gradient(to right, #00adee, #6163aa);
  mix-blend-mode: overlay;
  opacity: 0.7;
}
.scope_work_pg .item::after {
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.368627451));
  z-index: 2;
  opacity: 1;
}

/**********************************************
    Start Edit shaping Page 
**********************************************/
.shaping_pg {
  background-image: linear-gradient(to bottom, #fff, rgba(79, 125, 189, 0.0588235294));
}
.shaping_pg .sec_head .title {
  font-size: 70px;
}
.shaping_pg .sec_head .p {
  color: #272727;
  font-size: 34px;
  line-height: 2.7rem;
}
.shaping_pg .item {
  position: relative;
  margin-bottom: 50px;
  height: calc(100% - 50px);
}
.shaping_pg .item .shap_card {
  margin-bottom: 35px;
  position: relative;
  clip-path: polygon(100% 0, 100% 85%, 90% 100%, 0 100%, 0 0);
  border: 1px solid var(--primary);
  overflow: auto;
  height: 100%;
}
.shaping_pg .item .shap_card .img_box {
  height: 370px;
  position: relative;
  clip-path: polygon(100% 0, 100% 76%, 86% 100%, 0 100%, 0 0);
  overflow: hidden;
}
.shaping_pg .item .shap_card .img_box .date {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  background: linear-gradient(to right, rgba(80, 183, 211, 0.881), #6163aa, transparent);
  font-size: 20px;
  font-weight: bold;
  height: 55px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shaping_pg .item .shap_card .img_box .categ {
  width: 50%;
  max-width: 250px;
  background: linear-gradient(to right, rgb(80, 183, 211), #6163aa);
  position: absolute;
  bottom: 0;
  right: 55px;
  font-size: 20px;
  font-weight: bold;
  height: 55px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shaping_pg .item .shap_card .card-body {
  padding: 1.5rem 2.5rem;
  padding-bottom: 70px;
}
.shaping_pg .item .shap_card .card-body .title {
  background: linear-gradient(to left, #1d8ba9, #6163aa, #6163aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 27px;
  font-weight: bold;
}
.shaping_pg .item .shap_card .card-body .p {
  color: #6d6e71;
  font-size: 24px;
  width: 70%;
  line-height: 2.3rem;
  height: 145px;
  overflow: hidden;
}
.shaping_pg .item .shap_card .card-body .logo {
  position: absolute;
  bottom: 80px;
  right: 40px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.shaping_pg .item .line {
  width: 1px;
  height: 118px;
  background-color: var(--primary);
  position: absolute;
  bottom: -7px;
  right: 30px;
  transform: rotate(31.4deg);
}

.txt_linear {
  background: linear-gradient(to left, #329fbd, #6163aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/**********************************************
    Start Edit about Pages
**********************************************/
.about_comp {
  background-image: linear-gradient(to bottom, #fff, rgba(79, 125, 189, 0.0588235294));
}
.about_comp .main_box .img_box {
  position: relative;
  height: 570px;
}
.about_comp .main_box .img_box .secImg {
  height: 100%;
  clip-path: polygon(100% 0, 100% 85%, 85% 100%, 0 100%, 0 0);
}
.about_comp .main_box .img_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 bottom, #00adee, #6163aa);
  opacity: 0.2;
  z-index: 1;
  clip-path: polygon(100% 0, 100% 85%, 85% 100%, 0 100%, 0 0);
}
.about_comp .main_box .txt_box .p {
  color: #808184;
  line-height: 2.4rem;
  font-size: 26px;
}
.about_comp .journy_box {
  padding: 70px 0;
}
.about_comp .journy_box .sec_title {
  font-size: 55px;
}
.about_comp .journy_box .item {
  background-image: linear-gradient(to bottom, #fff, rgba(79, 125, 189, 0.0588235294));
  position: relative;
  padding: 65px 4vw;
  border-bottom: 1px solid var(--primary);
}
.about_comp .journy_box .item .year {
  font-size: 60px;
}
.about_comp .journy_box .item .p {
  color: #6d6e71;
  font-size: 22px;
  line-height: 2.2rem;
}
.about_comp .journy_box .item:last-child::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 20px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  display: block;
  background: url(../images/icons/triangle.svg) no-repeat center;
  background-size: contain;
}
.about_comp .historical_box {
  padding: 40px 0;
}
.about_comp .historical_box .hist_title {
  background: linear-gradient(to left, #329fbd, #6163aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  font-size: 40px;
  line-height: 2.8rem;
  text-align: center;
}
.about_comp .historical_box .has_line::after {
  margin-bottom: 0;
}
.about_comp .historical_box .inner_box {
  position: relative;
  padding: 18px;
}
.about_comp .historical_box .inner_box .item {
  text-align: center;
  position: relative;
}
.about_comp .historical_box .inner_box .item .year {
  background: linear-gradient(to left, #1d8ba9, #6163aa, #6163aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 90px;
  font-weight: bold;
  font-family: "bukra_bold";
}
.about_comp .historical_box .inner_box .item .p {
  color: #272727;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  height: 105px;
  overflow: hidden;
}
.about_comp .historical_box .inner_box .item .line {
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  width: 120px;
  height: 3px;
  background: rgba(187, 189, 191, 0.7921568627);
  transition: all 0.3s linear;
}
.about_comp .historical_box .inner_box .item:hover .line {
  background: linear-gradient(to right, #1d8ba9, #6163aa, #6163aa);
}
.about_comp .historical_box .inner_box .swiper-slide:nth-child(even) {
  margin-top: 242px;
}
.about_comp .historical_box .inner_box .swiper-slide:nth-child(even) .item .line {
  margin-top: 0;
  margin-bottom: 20px;
}
.about_comp .historical_box .inner_box .swiper-button-next,
.about_comp .historical_box .inner_box .swiper-button-prev {
  width: 65px;
  height: 30px;
  background-image: unset;
  margin: 0;
  background-color: transparent !important;
  border-radius: 0 !important;
}
.about_comp .historical_box .inner_box .swiper-button-next::before,
.about_comp .historical_box .inner_box .swiper-button-prev::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/icons/swiper_arrow2.png) no-repeat center;
  background-size: contain !important;
  display: block;
  transition: all 0.3s linear;
}
.about_comp .historical_box .inner_box .swiper-button-prev {
  left: 0;
}
.about_comp .historical_box .inner_box .swiper-button-prev::before {
  transform: rotateY(180deg);
}
.about_comp .historical_box .inner_box .swiper-button-next {
  right: 0;
}
.about_comp .historical_box .inner_box::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/historical_border.svg) no-repeat center;
  background-size: cover;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

/**********************************************
    Start Edit governance Page 
**********************************************/
.governance_pg .governance_txt .has_line {
  font-size: 60px !important;
}
.governance_pg .governance_txt .p {
  color: #272727;
  font-size: 37px;
  line-height: 2.5rem;
}
.governance_pg .chairman_box {
  padding: 70px 0;
}
.governance_pg .chairman_box .img_box {
  height: 630px;
  position: relative;
  z-index: 5;
}
.governance_pg .chairman_box .img_box .secImg {
  clip-path: polygon(100% 0, 100% 90%, 85% 100%, 0 100%, 0 0);
}
.governance_pg .chairman_box .img_box .chairman_data {
  position: absolute;
  bottom: -10px;
  inset-inline-start: -20px;
  background-color: #fff;
  padding: 15px 30px;
  width: 70%;
  clip-path: polygon(100% 0, 100% 60%, 85% 100%, 0 100%, 0 0);
}
.governance_pg .chairman_box .txt_box .title {
  font-size: 50px !important;
}
.governance_pg .chairman_box .txt_box .p {
  font-size: 25px;
  color: #272727;
  line-height: 2.3rem;
}
.governance_pg .board_members {
  padding: 70px 0;
}
.governance_pg .board_members .txt_box .name {
  font-size: 40px;
}
.governance_pg .board_members .txt_box .job_title {
  background: linear-gradient(to right, #5dcdec, #7f83cb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.governance_pg .board_members .txt_box .p {
  color: #fff;
  font-size: 24px;
  line-height: 2rem;
}
.governance_pg .board_members .secImg {
  height: 440px;
}
.governance_pg::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);
  clip-path: polygon(100% 0, 100% 90%, 90% 100%, 0 100%, 0 0);
  background: linear-gradient(45deg, #6163aa, #329fbd);
  height: 50%;
  top: unset;
}
.governance_pg .pattern1 {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}
.governance_pg .pattern2 {
  position: absolute;
  bottom: 2.5%;
  right: 0;
  width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit Media screens 
**********************************************/
@media screen and (max-width: 991px) {
  .order_md_1 {
    order: -1;
  }
  .navs-container .navbar.home_nav {
    position: relative;
    background-image: linear-gradient(25deg, #4f7cbd, #6163aa);
  }
  .header .item {
    min-height: 85vh;
  }
  .header .search_box {
    top: 50px;
  }
  .header .act_butns .swiper-pagination .swiper-pagination-bullet,
  .blog_sec .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
  }
  .header .item .txt_box .title {
    font-size: 40px;
  }
  .header .act_butns .swiper-button-next,
  .header .act_butns .swiper-button-prev {
    width: 60px;
    height: 30px;
  }
  .header .item .txt_box {
    margin-inline: auto;
  }
  .service_partner .item {
    width: 100%;
    text-align: center;
    margin: 0 auto 30px auto !important;
  }
  .key_proj .pattern {
    height: 59%;
  }
  .blog_sec .swiper-pagination {
    order: 2;
    width: 100%;
  }
  .blog_sec .sec_head .all_news_butn {
    width: 150px;
  }
  .shaping_sec .pattern {
    bottom: -20%;
  }
  .partners_sec .partnerLogo {
    max-width: 65%;
  }
  .about_comp .main_box .img_box {
    height: 300px;
  }
  .about_comp .historical_box .hist_title {
    font-size: 22px;
    line-height: 2rem;
  }
  .about_comp .historical_box .inner_box {
    border: 2px solid var(--primary);
  }
  .about_comp .historical_box .inner_box::before {
    display: none;
  }
  .about_comp .historical_box .inner_box .swiper-slide:nth-child(even) {
    margin-top: 0px;
  }
  .about_comp .historical_box .inner_box .item .line {
    display: none;
  }
  .pg_header .bread .item::after {
    width: 20px;
    height: 10px;
  }
  .pg_header .bread .item {
    font-size: 13px;
  }
  .scope_work_pg .item .data_box .txt_box .p {
    font-size: 20px;
    line-height: 1.7rem;
  }
  .scope_work_pg .item .data_box .logo_box {
    height: 150px;
    padding-inline: 5px;
    margin-bottom: 15px;
  }
  .shaping_pg .sec_head .title {
    font-size: 42px;
  }
  .shaping_pg .sec_head .p {
    font-size: 20px;
    line-height: 1.7rem;
  }
  .shaping_pg .item .shap_card .img_box .date {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    padding-inline: 1rem;
  }
  .shaping_pg .item .shap_card .img_box .categ {
    width: -moz-fit-content;
    width: fit-content;
    right: 30px;
    font-size: 13px;
    padding-inline: 1rem;
  }
  .shaping_pg .item .shap_card .img_box {
    height: 300px;
  }
  .shaping_pg .item .shap_card .card-body {
    padding: 1.5rem 1.5rem;
  }
  .shaping_pg .item .shap_card .card-body .title {
    font-size: 18px;
  }
  .shaping_pg .item .shap_card .card-body .logo {
    bottom: 30px;
    right: 40px;
    height: 50px;
  }
  .shaping_pg .item .shap_card .card-body .p {
    font-size: 18px;
    width: 70%;
    line-height: 1.73rem;
  }
  .shaping_pg .item .line {
    height: 91px;
    bottom: -3px;
    right: 17.5px;
    transform: rotate(23deg);
  }
  .governance_pg .governance_txt .p,
  .governance_pg .chairman_box .txt_box .p,
  .governance_pg .board_members .txt_box .p {
    font-size: 20px;
    line-height: 1.7rem;
  }
  .governance_pg .chairman_box .img_box {
    margin-bottom: 35px;
  }
  .governance_pg .chairman_box .img_box .chairman_data {
    width: 80%;
  }
  .governance_pg .chairman_box .txt_box .title {
    font-size: 30px !important;
  }
  .governance_pg .board_members .secImg {
    margin-bottom: 20px;
  }
  .governance_pg .board_members .txt_box .text-end {
    text-align: start !important;
  }
  .governance_pg .pattern1,
  .governance_pg .pattern2 {
    display: none;
  }
  .governance_pg::before {
    clip-path: polygon(100% 0, 100% 97%, 90% 100%, 0 100%, 0 0);
    height: 56%;
  }
}
/**********************************************
    Start Edit EN direction 
**********************************************/
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}/*# sourceMappingURL=style.css.map */