@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";
}

.h-100 {
  height: 100%;
}

/**********************************************
   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;
  font-family: "corbel_bold";
}
.butn.primary_linear {
  background-image: linear-gradient(to right, #00b5dc, #6064ac, #9296d7, #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;
}

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

.no_before::before {
  display: none !important;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar {
  padding: 1.3rem 1rem;
  background-image: linear-gradient(25deg, #7187c5, #5269b1);
  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;
  right: 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: 100vh;
  padding-top: 150px;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
}
.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.svg) 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;
}
.header .txt_box {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  z-index: 10;
}
.header .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 .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);
}

.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 {
  height: 55px;
  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 {
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 15px;
}
.strategic_division .strategic_box .on_hvr .p {
  font-size: 14px;
  line-height: 1.4rem;
  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.active .nesmaLogo {
  opacity: 0;
  transform: translateY(-10px);
}
.strategic_division .strategic_box.active .on_hvr {
  opacity: 1;
}
.strategic_division .strategic_box.active .on_hvr * {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.strategic_division .strategic_box.active .bg {
  opacity: 1;
  filter: blur(0px);
}
.strategic_division .strategic_box.active::before {
  opacity: 0.7;
}
.strategic_division .strategic_box.active::after {
  opacity: 1;
}

.key_proj {
  overflow: unset;
}
.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: -8%;
  width: 46%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  z-index: 2;
}

.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: #3ddef7;
  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.svg) 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);
  z-index: 2;
}

.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.svg) 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: #adadad;
  font-weight: 500;
  font-size: 18px;
}
.pg_header .bread .item::after {
  content: "";
  width: 30px;
  height: 14px;
  background: url(../images/icons/swiper_arrow2.svg) 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;
  font-weight: bold;
}
.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: 200px;
  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: 55px;
  -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: 65px;
}
.shaping_pg .sec_head .p {
  color: #272727;
  font-size: 34px;
  line-height: 1.1;
}
.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);
  overflow: auto;
  height: 100%;
  background-color: #F9FBFD;
}
.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), rgba(97, 100, 170, 0.8078431373), transparent);
  font-size: 20px;
  font-weight: bold;
  height: 55px;
  color: #fff;
  display: flex;
  align-items: center;
  padding-inline-start: 3vw;
  font-family: "bukra_regular";
}
.shaping_pg .item .shap_card .img_box .categ {
  font-family: "bukra_regular";
  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 right, #00b4dc, #3096ca, #5b6ab0);
  -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: 1.2;
  height: 145px;
  overflow: hidden;
}
.shaping_pg .item .shap_card .card-body .logo {
  position: absolute;
  bottom: 90px;
  right: 45px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
.shaping_pg .item::before {
  content: "";
  clip-path: polygon(100% 0, 100% 85%, 90% 100%, 0 100%, 0 0);
  background-image: linear-gradient(to right, #2bb6db, #6063a8);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
}

/**********************************************
    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 .has_line {
  font-size: 55px !important;
}
.about_comp .main_box .txt_box .p {
  color: #272727;
  line-height: 1.4;
  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: 45px 2vw;
  border-bottom: 1px solid var(--primary);
}
.about_comp .journy_box .item .year {
  font-size: 70px;
}
.about_comp .journy_box .item .p {
  color: #6d6e71;
  font-size: 22px;
  line-height: 1.3;
}
.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: 0 0 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: 38px;
  line-height: 2.8rem;
  text-align: center;
}
.about_comp .historical_box .has_line::after {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.about_comp .historical_box .inner_box {
  position: relative;
  margin-top: -2px;
}
.about_comp .historical_box .inner_box .inner {
  position: relative;
  background-color: #F7F9FC;
  clip-path: polygon(100% 0, 100% 80%, 95% 100%, 0 100%, 0 0);
  padding: 25px 3vw;
}
.about_comp .historical_box .inner_box .inner .item {
  text-align: center;
  position: relative;
}
.about_comp .historical_box .inner_box .inner .item .year {
  background: linear-gradient(to left, #1d8ba9, #6163aa, #6163aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 80px;
  font-weight: bold;
  font-family: "bukra_bold";
  margin-bottom: 0;
}
.about_comp .historical_box .inner_box .inner .item .p {
  color: #4f4f50;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  height: 105px;
  overflow: hidden;
  -webkit-text-stroke: 0.4px #4f4f50;
}
.about_comp .historical_box .inner_box .inner .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 .inner .item:hover .line {
  background: linear-gradient(to right, #1d8ba9, #6163aa, #6163aa);
}
.about_comp .historical_box .inner_box .inner .swiper-slide:nth-child(even) {
  margin-top: 242px;
}
.about_comp .historical_box .inner_box .inner .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.svg) no-repeat center;
  background-size: contain !important;
  display: block;
  transition: all 0.3s linear;
}
.about_comp .historical_box .inner_box .swiper-button-prev::before {
  transform: rotateY(180deg);
}
.about_comp .historical_box .inner_box::before {
  content: "";
  clip-path: polygon(100% 0, 100% 80%, 95% 100%, 0 100%, 0 0);
  background-image: linear-gradient(to right, #2bb6db, #6063a8);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  position: absolute;
  top: -2px;
  left: -2px;
}

.colorBlue1 {
  color: #585ca9;
}

.colorBlue2 {
  color: #00b9d4;
}

.colorBlue3 {
  color: #4a7bbe;
}

/**********************************************
    Start Edit governance Page 
**********************************************/
.governance_pg {
  clip-path: polygon(100% 0, 100% 95%, 90% 100%, 0 100%, 0 0);
}
.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: 10px 30px;
  width: 70%;
  clip-path: polygon(100% 0, 100% 60%, 85% 100%, 0 100%, 0 0);
}
.governance_pg .chairman_box .img_box .chairman_data .name {
  font-family: "corbel_bold";
}
.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: 2rem;
}
.governance_pg .board_members {
  position: relative;
  padding-bottom: 70px;
}
.governance_pg .board_members::before {
  content: "";
  width: 100%;
  height: calc(100% + 163px);
  position: absolute;
  top: -163px;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  clip-path: polygon(100% 0, 100% 94%, 94% 100%, 0 100%, 0 0);
  background: linear-gradient(45deg, #4f7ebe, #02aad6);
}
.governance_pg .board_members .item {
  margin-top: 30px;
}
.governance_pg .board_members .txt_box {
  padding-inline-start: 3vw;
}
.governance_pg .board_members .txt_box .p {
  margin-bottom: 30px;
}
.governance_pg .board_members .txt_box .name {
  font-size: 40px;
}
.governance_pg .board_members .txt_box .job_title {
  background: linear-gradient(to right, #7bc0ef, #0ad5f5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.governance_pg .board_members .txt_box .p {
  color: #fff;
  font-size: 20px;
  text-align: justify;
}
.governance_pg .board_members .secImg {
  height: 440px;
}
.governance_pg .board_members .item:nth-of-type(even) .row {
  flex-direction: row-reverse;
}
.governance_pg .board_members .item:nth-of-type(even) .txt_box {
  text-align: end;
  padding-inline-start: 0;
  padding-inline-end: 3vw;
}
.governance_pg .board_members .pattern1 {
  position: absolute;
  top: 200px;
  left: 0;
  width: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}
.governance_pg .board_members .pattern2 {
  position: absolute;
  bottom: 100px;
  right: 0;
  width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    Start Edit pillars Page 
**********************************************/
.pillars_pg .pillars_txt .title {
  font-size: 60px;
}
.pillars_pg .pillars_txt .subtitle {
  font-size: 50px;
  background: linear-gradient(to left, #1bb5dc, #595ba8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pillars_pg .pillars_txt .p {
  font-size: 33px;
  color: #272727;
  line-height: 1;
}
.pillars_pg .item_row {
  background-color: #f0f1f1;
}
.pillars_pg .item_row .txt_box .icon {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-inline-start: auto;
  margin-bottom: 25px;
}
.pillars_pg .item_row .txt_box .p {
  color: #272727;
  font-size: 33px;
  line-height: 1.4;
}
.pillars_pg .item_row .img_box {
  height: 600px;
  position: relative;
  clip-path: polygon(100% 0, 100% 100%, 10% 100%, 0 90%, 0 0);
}
.pillars_pg .item_row .img_box .img_title {
  position: absolute;
  font-size: 80px;
  color: #fff;
  bottom: 70px;
  width: 100%;
  padding-inline-end: 12vw;
  z-index: 8;
}
.pillars_pg .item_row .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);
  z-index: 1;
  transition: all 0.3s linear;
  background-color: transparent;
  opacity: 0;
}
.pillars_pg .item_row .img_box::before {
  background-image: linear-gradient(to right, #5f63a8, #4f7cbd);
  mix-blend-mode: overlay;
  opacity: 1;
}
.pillars_pg .item_row.last_child .img_box {
  clip-path: polygon(100% 0, 100% 88%, 90% 100%, 0 100%, 0 0);
  overflow: hidden;
}
.pillars_pg .item_row.last_child .img_box .img_title {
  padding-inline-start: 12vw;
}
.pillars_pg .values_box {
  background-image: linear-gradient(to bottom, #fff, #fff, rgba(79, 125, 189, 0.0588235294));
  padding: 70px 0;
}
.pillars_pg .values_box .sec_head {
  width: -moz-fit-content;
  width: fit-content;
}
.pillars_pg .values_box .sec_head .icon {
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 15px;
}
.pillars_pg .values_box .sec_head .title {
  font-size: 50px !important;
}
.pillars_pg .values_box .value_item {
  margin-bottom: 20px;
  height: calc(100% - 20px);
  position: relative;
}
.pillars_pg .values_box .value_item .inner {
  min-height: 320px;
  background-color: #FCFCFE;
  height: 100%;
  position: relative;
  padding: 50px 35px;
  clip-path: polygon(100% 0, 100% 80%, 85% 100%, 0 100%, 0 0);
}
.pillars_pg .values_box .value_item .inner .p {
  font-size: 22px;
  color: #272727;
  line-height: 1.5;
}
.pillars_pg .values_box .value_item::before {
  content: "";
  clip-path: polygon(100% 0, 100% 80%, 85% 100%, 0 100%, 0 0);
  background-image: linear-gradient(to right, #2bb6db, #6063a8);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
}

.badge {
  padding-inline: 1.5rem;
  min-width: 160px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(100% 0, 100% 55%, 90% 100%, 0 100%, 0 0);
  border-radius: 0;
  font-size: 22px;
  width: -moz-fit-content;
  width: fit-content;
}
.badge.badge_gradient {
  background-image: linear-gradient(to right, #2bb6db, #6063a8);
}

/**********************************************
    Start Edit ceo Page 
**********************************************/
.ceo_pg {
  background-image: linear-gradient(to bottom, #fff, rgba(79, 125, 189, 0.0588235294));
}
.ceo_pg .txt_box .title {
  font-size: 50px;
}
.ceo_pg .txt_box .p {
  font-size: 27px;
  line-height: 1.2;
  color: #272727;
}
.ceo_pg .img_box {
  height: 100%;
  position: relative;
  z-index: 5;
}
.ceo_pg .img_box .secImg {
  clip-path: polygon(100% 0, 100% 90%, 85% 100%, 0 100%, 0 0);
}
.ceo_pg .img_box .chairman_data {
  position: absolute;
  bottom: -1px;
  inset-inline-start: 0px;
  background-color: #fff;
  padding: 15px 30px;
  width: 60%;
  clip-path: polygon(100% 0, 100% 60%, 85% 100%, 0 100%, 0 0);
}
.ceo_pg .img_box .chairman_data .name {
  font-size: 40px;
}
.ceo_pg .img_box .chairman_data .job_title {
  font-size: 22px;
}

/**********************************************
    Start Edit Technical Systems Page 
**********************************************/
.tech_system_pg {
  background-image: linear-gradient(to bottom, #fff, rgba(79, 125, 189, 0.0588235294));
}
.tech_system_pg .txt_box .p {
  font-size: 24px;
  color: #272727;
}
.tech_system_pg .txt_box .lineared {
  font-size: 20px;
  background: linear-gradient(to right, #329fbd, #6163aa);
}
.tech_system_pg .txt_box .badge {
  height: 50px;
  white-space: normal;
}
.tech_system_pg .tech_box {
  position: relative;
  margin-bottom: 30px;
  height: calc(100% - 30px);
}
.tech_system_pg .tech_box .inner {
  padding: 45px 35px;
  position: relative;
  background-color: #F7F9FC;
  clip-path: polygon(100% 0, 100% 80%, 90% 100%, 0 100%, 0 0);
  height: 100%;
}
.tech_system_pg .tech_box .inner .icon_box {
  text-align: center;
}
.tech_system_pg .tech_box .inner .icon_box .icon {
  display: block;
  margin: auto;
  width: 90px;
  height: 110px;
  -o-object-fit: contain;
     object-fit: contain;
}
.tech_system_pg .tech_box .inner .icon_box .badge {
  margin-top: 15px !important;
  font-size: 15px;
  margin: auto;
  min-height: 35px;
  height: auto;
  padding-block: 0.5rem;
  max-width: 175px;
  white-space: inherit;
  padding-inline: 1.2rem;
}
.tech_system_pg .tech_box .inner .txt_inner {
  padding-inline-start: 1vw;
}
.tech_system_pg .tech_box .inner .txt_inner .p {
  font-size: 19px;
  color: #6d6e71;
}
.tech_system_pg .tech_box::before {
  content: "";
  clip-path: polygon(100% 0, 100% 80%, 90% 100%, 0 100%, 0 0);
  background-image: linear-gradient(to right, #2bb6db, #6063a8);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
}

.landscaping_pg .tech_box .inner {
  padding: 45px 45px;
}
.landscaping_pg .tech_box .inner .txt_inner .badge_box {
  height: 40px;
  margin-bottom: 15px;
}
.landscaping_pg .tech_box .inner .txt_inner .badge_box .badge {
  height: 40px;
  white-space: inherit;
  max-height: auto;
  font-size: 15px;
  clip-path: polygon(100% 0, 100% 55%, 95% 100%, 0 100%, 0 0);
  text-align: start !important;
  width: 100%;
  justify-content: flex-start;
}
.landscaping_pg .landscaping_txt .lg_title {
  font-size: 65px;
  background: linear-gradient(to right, #329fbd, #6163aa);
}
.landscaping_pg .landscaping_txt .p {
  line-height: 1.4;
  font-size: 25px;
}
.landscaping_pg .landscaping_txt .lineared {
  font-size: 23px;
}
.landscaping_pg .pattern {
  position: absolute;
  right: 0;
  bottom: 8%;
  width: 60%;
}

.catering_pg .tech_box .inner {
  background-color: #F8FAFC;
}

.ul li {
  position: relative;
  padding-inline-start: 25px;
  color: #6d6e71;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 15px;
}
.ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/icons/list.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 10px;
  inset-inline-start: 0;
}

/**********************************************
    Start Edit key_projects Page 
**********************************************/
.key_projects_pg {
  background-image: linear-gradient(to bottom, #fff, rgba(79, 125, 189, 0.0588235294));
}
.key_projects_pg .sec_head .title {
  font-size: 60px;
}
.key_projects_pg .sec_head .p {
  font-size: 25px;
  line-height: 1.3;
  color: #272727;
}
.key_projects_pg .item {
  margin-bottom: 50px;
}
.key_projects_pg .item .proj_box_lg {
  position: relative;
  min-height: 470px;
  padding: 40px 7vw;
  display: flex;
  align-items: end;
  clip-path: polygon(100% 0, 100% 85%, 90% 100%, 0 100%, 0 0);
  overflow: hidden;
}
.key_projects_pg .item .proj_box_lg .txt_box {
  position: relative;
  z-index: 5;
}
.key_projects_pg .item .proj_box_lg .txt_box .title {
  font-size: 37px;
  margin-bottom: 10px !important;
}
.key_projects_pg .item .proj_box_lg .txt_box .p {
  font-size: 25px;
  color: #fff;
  line-height: 1.1;
}
.key_projects_pg .item .proj_box_lg::before, .key_projects_pg .item .proj_box_lg::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;
}
.key_projects_pg .item .proj_box_lg::before {
  background-image: linear-gradient(to right, #00adee, #6163aa);
  mix-blend-mode: overlay;
  opacity: 0.7;
}
.key_projects_pg .item .proj_box_lg::after {
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5725490196));
  z-index: 2;
  opacity: 1;
}
.key_projects_pg .item .proj_box_sm {
  clip-path: polygon(100% 0, 100% 84%, 57% 100%, 0 100%, 0 0);
  padding: 0;
}
.key_projects_pg .item .proj_box_sm .txt_box {
  position: absolute;
  width: 100%;
  bottom: 20px;
  text-align: center;
  padding: 40px 0vw;
  font-size: 30px;
}
.key_projects_pg .item .proj_box_sm::before {
  background-image: linear-gradient(to bottom, #00adee, #6163aa);
}
.key_projects_pg .item .nesmaLogo {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.key_projects_pg .item:last-child .proj_box_lg {
  padding: 40px 2vw;
}
.key_projects_pg .item:last-child .proj_box_lg .txt_box {
  position: relative;
  z-index: 5;
}
.key_projects_pg .item:last-child .proj_box_lg .txt_box .title {
  font-size: 35px;
}

/**********************************************
    Start Edit blog Page 
**********************************************/
.blog_pg {
  background-image: linear-gradient(to bottom, #fff, rgba(79, 125, 189, 0.0588235294));
}
.blog_pg .blog_card {
  background-image: linear-gradient(to bottom, #fff, #fff, rgba(79, 125, 189, 0.0784313725));
  margin-bottom: 35px;
  height: calc(100% - 35px);
}
.blog_pg .blog_card .img_box {
  position: relative;
}
.blog_pg .blog_card .img_box .butn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 555;
}
.blog_pg .blog_card .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);
  opacity: 0;
  background-color: rgba(18, 56, 100, 0.3);
  transition: all 0.3s linear;
  z-index: 1;
}
.blog_pg .blog_card .card-body {
  padding: 1.7rem 1.5rem;
}
.blog_pg .blog_card .card-body .title {
  color: #272727;
  font-weight: bold;
}
.blog_pg .blog_card::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);
  opacity: 0;
  transition: all 0.3s linear;
  background-color: rgba(18, 56, 100, 0.07);
}
.blog_pg .blog_card:hover .img_box::before {
  opacity: 1;
}
.blog_pg .blog_card:hover .img_box .butn {
  transform: translate(-50%, -50%) scale(1);
}
.blog_pg .blog_card:hover::before {
  opacity: 1;
}
.blog_pg::before {
  display: none;
}

.blog_det_pg {
  background-image: linear-gradient(to bottom, #fff, rgba(79, 125, 189, 0.0588235294));
}
.blog_det_pg .pg_title {
  font-size: 45px !important;
  border-color: rgba(79, 124, 188, 0.4823529412) !important;
}
.blog_det_pg .img_box {
  clip-path: polygon(100% 0, 100% 85%, 85% 100%, 0 100%, 0 0);
  overflow: hidden;
  height: 800px;
}
.blog_det_pg .card-body {
  padding: 1.7rem 1.5rem;
}
.blog_det_pg .card-body .date {
  font-size: 20px;
  font-weight: bold;
  color: #0db5db;
}
.blog_det_pg .card-body .p {
  font-size: 35px;
  line-height: 1.3;
  color: #272727;
}

/**********************************************
    Start Edit spacemaker Page 
**********************************************/
.spacemaker_pg {
  background-image: linear-gradient(to bottom, #fff, rgba(79, 125, 189, 0.0588235294));
  padding-top: 0;
}
.spacemaker_pg .sec_head_box {
  position: relative;
  text-align: center;
  overflow: hidden;
  margin-bottom: 70px;
  padding: 70px 0 30px 0;
}
.spacemaker_pg .sec_head_box .logo {
  min-width: 250px;
  width: 45%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 25px auto;
}
.spacemaker_pg .sec_head_box .p {
  font-size: 32px;
  color: #272727;
  line-height: 1.4;
}
.spacemaker_pg .sec_head_box .pattern {
  position: absolute;
  top: -40%;
  right: 0%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 40%;
}
.spacemaker_pg .item {
  background-color: #f0f1f1;
  clip-path: polygon(100% 0, 100% 85%, 92% 100%, 0 100%, 0 0);
  margin-bottom: 70px;
}
.spacemaker_pg .item .img_box {
  position: relative;
  overflow: hidden;
  clip-path: polygon(100% 0, 100% 87%, 88% 100%, 0 100%, 0 0);
}
.spacemaker_pg .item .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);
  z-index: 1;
  transition: all 0.3s linear;
  background-color: transparent;
  background-image: linear-gradient(to right, #00adee, #6163aa);
  mix-blend-mode: overlay;
  opacity: 0.7;
}
.spacemaker_pg .item .txt_box .logo {
  width: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  margin-bottom: 25px;
}
.spacemaker_pg .item .txt_box .title {
  font-size: 50px !important;
}
.spacemaker_pg .item .txt_box .p {
  font-size: 27px;
  color: #272727;
  line-height: 1.2;
}
.spacemaker_pg .item .txt_box .inner_padding {
  padding: 25px 0;
  padding-inline: 2vw;
}

/**********************************************
    Start Edit gallery Page 
**********************************************/
.gallery_pg {
  background-image: linear-gradient(to bottom, #fff, rgba(79, 125, 189, 0.0588235294));
}
.gallery_pg .pg_title {
  font-size: 65px;
}
.gallery_pg .gallery_card {
  position: relative;
  margin-bottom: 30px;
  height: calc(100% - 30px);
}
.gallery_pg .gallery_card .inner {
  padding: 50px 35px;
  position: relative;
  background-color: #F9FAFC;
  clip-path: polygon(100% 0, 100% 70%, 90% 100%, 0 100%, 0 0);
  height: 100%;
}
.gallery_pg .gallery_card .inner .icon {
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery_pg .gallery_card .inner .label {
  font-size: 50px;
  color: var(--primary);
  margin-bottom: 0;
}
.gallery_pg .gallery_card::before {
  content: "";
  clip-path: polygon(100% 0, 100% 70%, 90% 100%, 0 100%, 0 0);
  background-image: linear-gradient(to right, #2bb6db, #6063a8);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
}

/**********************************************
    Start Edit contact Page 
**********************************************/
.contact_pg .has_line::after {
  width: 100px;
}
.contact_pg .txt_contact_head .p {
  font-size: 30px;
  color: #272727;
  line-height: 1.2;
}
.contact_pg .txt_contact_head .social_links .link {
  display: block;
  font-size: 60px;
  position: relative;
}
.contact_pg .txt_contact_head .social_links .link a {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline-start: auto;
  background: linear-gradient(to left, #5f63a8, #76a1dd, #6299e7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
.contact_pg .txt_contact_head .social_links .link::after {
  content: "";
  width: 100%;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  background: url(../images/contact_line.png) no-repeat left;
  display: block;
  margin: 10px 0;
  position: absolute;
  bottom: -20px;
  right: 0;
  left: 0;
}
.contact_pg .txt_contact_head .social_links .link:last-child::after {
  display: none;
}
.contact_pg .career_box {
  padding: 70px 0;
}
.contact_pg .career_box .txt_box .subtitle {
  font-size: 32px;
}
.contact_pg .career_box .txt_box .p {
  font-size: 30px;
  line-height: 1.3;
  color: #272727;
}
.contact_pg .career_box .txt_box .butn {
  width: 190px;
}
.contact_pg .career_box .careerImg {
  clip-path: polygon(100% 0, 100% 85%, 95% 100%, 0 100%, 0 0);
}
.contact_pg .whistleblowing_box {
  padding: 70px 0;
}
.contact_pg .whistleblowing_box .p {
  font-size: 30px;
  line-height: 1.3;
  color: #272727;
}
.contact_pg .form_outer {
  padding: 70px 0;
  background-color: #eeefef;
}
.contact_pg .form_outer form .form-group {
  position: relative;
  margin-bottom: 22px;
}
.contact_pg .form_outer form .form-group .form-control {
  border: none !important;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%, 0 65%);
  padding-inline-start: 3rem;
  font-size: 17px;
}
.contact_pg .form_outer form .form-group .form-control::-moz-placeholder {
  color: #58595b;
}
.contact_pg .form_outer form .form-group .form-control::placeholder {
  color: #58595b;
}
.contact_pg .form_outer form .form-group textarea {
  padding-top: 15px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%, 0 80%) !important;
}
.contact_pg .form_outer form .form_select {
  position: relative;
}
.contact_pg .form_outer form .form_select::before {
  content: "";
  width: 13px;
  height: 11px;
  background: url(../images/icons/select_arrow.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 25px;
  inset-inline-start: 23px;
  display: block;
  z-index: 1;
  pointer-events: none;
}
.contact_pg .form_outer form .uploading_file {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.contact_pg .form_outer form .uploading_file .box_upload {
  width: 200px !important;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.contact_pg .form_outer form .uploading_file .box_upload * {
  cursor: pointer;
}
.contact_pg .form_outer form .uploading_file .box_upload .inner {
  width: 100%;
  background-color: #fff;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(100% 0, 100% 50%, 90% 100%, 0 100%, 0 0);
}
.contact_pg .form_outer form .uploading_file .box_upload .inner .txt {
  color: #58595b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-inline: 15px;
}
.contact_pg .form_outer form .uploading_file .box_upload #formFile {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.contact_pg .form_outer form .uploading_file .box_upload::before {
  content: "";
  clip-path: polygon(100% 0, 100% 50%, 90% 100%, 0 100%, 0 0);
  background-image: linear-gradient(to right, #2bb6db, #6063a8);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
}
.contact_pg .form_outer form .uploading_file .dataType {
  font-size: 14px;
  color: #58595b;
  margin-top: 10px;
  text-align: center;
  padding-inline-end: 1.5vw;
}
.contact_pg .form_outer form .butn {
  height: 60px;
}

/**********************************************
    Start Edit Media screens 
**********************************************/
@media screen and (min-width: 1800px) {
  .shaping_sec .pattern {
    width: 60vw;
  }
  .governance_pg .pattern1 {
    max-width: 66%;
  }
  .landscaping_pg .pattern {
    max-width: 52vw;
  }
  .pillars_pg .item_row.last_child .pe-lg-5 {
    padding-right: 2.9% !important;
  }
}
@media screen and (min-width: 1600px) {
  .partners_sec .swiper-button-next,
  .partners_sec .swiper-container-rtl .swiper-button-prev {
    right: 5vw;
  }
  .partners_sec .swiper-button-prev,
  .partners_sec .swiper-container-rtl .swiper-button-next {
    left: 5vw;
  }
}
@media screen and (max-width: 991px) {
  .section {
    padding: 50px 0;
  }
  .pg_header {
    padding: 15px 0;
  }
  .header {
    padding: 0 !important;
  }
  .about_comp .main_box .txt_box .has_line,
  .about_comp .journy_box .sec_title,
  .about_comp .journy_box .item .year,
  .contact_pg .txt_contact_head .social_links .link,
  .gallery_pg .pg_title,
  .pillars_pg .pillars_txt .title,
  .pillars_pg .pillars_txt .subtitle {
    font-size: 35px !important;
  }
  .about_comp .main_box .txt_box .p,
  .about_comp .journy_box .item .p,
  .blog_det_pg .card-body .p,
  .key_projects_pg .sec_head .p,
  .key_projects_pg .item .proj_box_lg .txt_box .p,
  .pillars_pg .pillars_txt .p,
  .pillars_pg .item_row .txt_box .p,
  .pillars_pg .values_box .value_item .inner .p,
  .ul li {
    font-size: 20px;
  }
  .pillars_pg .item_row .img_box {
    height: 300px;
  }
  .pillars_pg .item_row .txt_box {
    padding: 25px 15px;
  }
  .blog_det_pg .pg_title {
    font-size: 30px !important;
  }
  .blog_det_pg .img_box {
    height: 300px;
  }
  .blog_det_pg .card-body {
    padding: 0rem 1rem;
  }
  .gallery_pg .gallery_card .inner {
    text-align: center;
  }
  .gallery_pg .gallery_card .inner .icon {
    margin-bottom: 15px;
  }
  .governance_pg .board_members .txt_box .job_title {
    margin-inline-start: unset !important;
  }
  .governance_pg {
    clip-path: polygon(100% 0, 100% 98%, 90% 100%, 0 100%, 0 0);
  }
  .landscaping_pg .landscaping_txt .lg_title {
    margin-bottom: 0 !important;
  }
  .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 {
    overflow: hidden;
  }
  .key_proj .pattern {
    height: 59%;
  }
  .blog_sec .blog_card .img_box {
    height: 385px;
  }
  .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 .inner .swiper-slide:nth-child(even) {
    margin-top: 0;
  }
  .about_comp .historical_box .inner_box .swiper-button-next,
  .about_comp .historical_box .inner_box .swiper-button-prev {
    width: 35px;
    top: 100%;
  }
  .pg_header .bread .item::after {
    width: 20px;
    height: 10px;
  }
  .pg_header .bread .item {
    font-size: 12px;
  }
  .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,
  .spacemaker_pg .item .txt_box .p {
    font-size: 20px;
    line-height: 1.7rem;
  }
  .governance_pg .chairman_box .img_box {
    margin-bottom: 35px;
    height: 430px;
    margin-top: 15px;
  }
  .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%;
  }
  .ceo_pg .img_box .chairman_data {
    padding: 15px 15px;
    width: 90%;
  }
  .ceo_pg .img_box .chairman_data .name {
    font-size: 33px;
  }
  .ceo_pg .txt_box .title {
    font-size: 40px;
  }
  .ceo_pg .txt_box .p {
    font-size: 17px;
  }
  .tech_system_pg .tech_box .inner {
    padding: 45px 15px;
  }
  .tech_system_pg .txt_box .p {
    font-size: 17px;
    padding-top: 25px;
  }
  .tech_system_pg .txt_box .lineared {
    margin: 15px 0 !important;
  }
  .tech_system_pg .txt_box .badge {
    margin-bottom: 25px;
    margin-top: 10px !important;
  }
  .tech_system_pg .secImg {
    margin-bottom: 25px;
  }
  .tech_system_pg .tech_box .inner .icon_box .badge {
    margin-bottom: 15px;
  }
  .tech_system_pg .tech_box .inner .txt_inner .p {
    font-size: 17px;
  }
  .tech_system_pg .tech_box .inner .icon_box .icon {
    margin-bottom: 15px;
  }
  .landscaping_pg .landscaping_txt .lg_title {
    font-size: 33px;
  }
  .landscaping_pg .pattern {
    bottom: 0;
  }
  .key_projects_pg .item .proj_box_lg {
    margin-bottom: 35px;
  }
  .contact_pg .txt_contact_head .p {
    font-size: 17px;
  }
  .contact_pg .map_box iframe {
    height: 300px !important;
    margin-top: 15px;
  }
  .contact_pg .career_box .txt_box .p,
  .contact_pg .whistleblowing_box .p,
  .spacemaker_pg .sec_head_box .p {
    font-size: 20px;
  }
  .contact_pg .career_box .careerImg {
    margin-top: 25px;
  }
  .contact_pg .form_outer form .butn {
    margin-top: 25px;
  }
  .contact_pg .form_outer .img_box {
    margin-top: 25px;
  }
  .spacemaker_pg .item .txt_box {
    padding: 35px 0;
  }
  .contact_pg .form_outer form .uploading_file,
  .contact_pg .form_outer form .butn {
    margin-inline: auto;
  }
  .spacemaker_pg .item .img_box {
    clip-path: polygon(100% 0, 100% 100%, 100% 100%, 0 100%, 0 0);
  }
  .key_projects_pg .item .proj_box_lg .txt_box {
    padding-inline-start: 15px;
  }
  .key_projects_pg .item .proj_box_sm .txt_box {
    padding-inline-start: 0px;
  }
  .spacemaker_pg .item .txt_box .inner_padding {
    padding-inline-start: 30px;
  }
}
/**********************************************
    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 */