/* === -- Styles -- == */
@charset "UTF-8";

/* Common Style  */
:root {
  --dark-text: #232323;
  --p-light: #dfdfdf;
  --bg-color: #EEEEEE;
  --theme-color: #fff;
  --main-color: #CD2028; 
  --blue-color: #1f1f44;
  --green-color: #067440;
  --white-color: #fff;
  --gray-color: #efefef;
}

html {
  overflow-x: hidden;
}

body {
    background-image: url('../assets/imgs/bg-main.webp');
    background-attachment: fixed;
    background-size: cover;
    -webkit-user-drag: none;
    font-family: "Tajawal", sans-serif;
}

.tajawal-extralight {
  font-family: "Tajawal", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.tajawal-light {
  font-family: "Tajawal", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.tajawal-regular {
  font-family: "Tajawal", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.tajawal-medium {
  font-family: "Tajawal", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.tajawal-bold {
  font-family: "Tajawal", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.tajawal-extrabold {
  font-family: "Tajawal", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.tajawal-black {
  font-family: "Tajawal", sans-serif;
  font-weight: 900;
  font-style: normal;
}

ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

img, a {
  transition: all ease .5s;
  object-fit: cover;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0px;
}

h1 {
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
}

h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2px; 
}

h4 {
  font-size: 32px !important;
  letter-spacing: normal !important;
}

p {
  color: #232323;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  font-family: "Tajawal", sans-serif;
}

.p-light {
  color:var(--p-light)
}

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-head > div:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.section-head h2 {
  color: var(--dark-text)
}

.overlay {
  transition: all ease .5s;
}

.item-radius {
  border-radius: 16px;
}

.round-section {
  background-color: var(--white-color);
  border-radius: 24px;
  margin-left: 10px;
  margin-right: 10px;
}

/* Value Button */
.value-btn {
  display: flex;
  width: -moz-fit-content;
  width: fit-content
}

.value-btn > *:nth-child(1) {
  transform: scale3d(0.5, 0.5, 1);
  margin-inline-end: -60px
}

.value-btn > *:nth-child(2) {
  transform: scale3d(1, 1, 1)
}

.value-btn > *:nth-child(3) {
  transform: scale3d(1, 1, 1);
  margin-inline-start: 0
}

.value-btn:hover > *:nth-child(1) {
  transform: scale3d(1, 1, 1);
  margin-inline-end: 0
}

.value-btn:hover > *:nth-child(2) {
  transform: scale3d(1, 1, 1)
}

.value-btn:hover> *:nth-child(3) {
  transform: scale3d(0.5, 0.5, 1);
  margin-inline-start: -60px
}

.value-btn .val-btn-circle {
  background-color: var(--white-color);
  width: 60px;
  height: 60px;
  font-size: 18px;
  color: #000;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.value-btn.value-btn-color .val-btn-circle {
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.value-btn .val-btn-primary {
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  background-color: var(--white-color);
  color:#232323;
  padding: 0 35px;
  border-radius: 40px;
  line-height: 4;
  z-index: 999;
}

.value-btn.value-btn-color .val-btn-primary {
  padding: 0 35px;
  color: var(--white-color);
  background-color: var(--main-color); 
}

.value-btn i {
  transform: rotate(-45deg)
}

.value-btn.value-btn-color .val-btn-primary:hover {
  background-color: var(--main-color);
  color: #fff;
  border-color: var(--main-color)
}

.value-btn .val-btn-circle:hover {
  transform: scale(1.1)
}

/* Arrow Link */
.item-lnk {
  width: 50px;
  height: 50px;
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
}

.item-lnk i {
  transform: rotate(325deg);
  transition: all ease .5s;
}

.item-lnk:hover {
  color: var(--white-color);
  transform: scale(1.1);
}

.item-lnk:hover i {
  transform: rotate(695deg); 
} 

/* Breadcrumd */
.breadcrumbs {
  width: fit-content;
  color: var(--white-color);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  padding: 5px 20px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumbs li, .breadcrumbs li a {
  font-size: 14px;
}

.breadcrumbs li:last-child {
  opacity: 0.65;
}

.breadcrumbs li i {
  font-size: 9px;
}

/* Search Form */
.search-form {
  position: absolute;
  width: 22%;
  top: 122%;
  left: auto;
  right: -50px;
  padding: 3px;
  background: transparent;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .5);
  z-index: 3000;
  display: none;
}

.value-header.nav-scroll .search-form {
  border-color: #d9d9e31f;
}

.value-header.nav-scroll .search-form input {
  color: var(--white-color);
  background-color: #1f1f44f5;
}

.value-header.nav-scroll .search-form input::placeholder {
  color: var(--white-color);
}

.value-header.nav-scroll .search-form button {
  background-color: #dcdce31c;
  border-color: #dcdce31c;
}

.search-form input {
  width: 100%;
  color: var(--dark-text);
  background-color: #ffffffc2;
  padding: 10px 20px;
  outline: none;
  border: none;
  border-radius: 50px;
}

.search-form input::placeholder {
  color: var(--dark-text);
}

.search-form button {
  width: 35px;
  height: 35px;
  position: absolute;
  right: 10px;
  top: 8px;
  background: var(--blue-color);
  border: 1px solid var(--blue-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-form button img {
  width: 60%;
  transform: rotate(90deg);
}

/* Header */
.value-header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50px;
  padding: 0;
  margin: 0;
  background: transparent;
  z-index: 9999999; 
}

.value-header > .container {
  position: relative;
  padding: 5px 50px;
  border-radius: 30px;
  background: linear-gradient(45deg, #ffffffd6, #1f1f44d4);
}

.value-header .navbar-collapse { 
  justify-content: flex-end;
}

.value-header.nav-scroll {
  padding: 0;
  position: fixed;
  top: -80px;
  padding: 15px 0;
  -webkit-transition: -webkit-transform .8s;
  transition: -webkit-transform .8s;
  -o-transition: transform .8s;
  transition: transform .8s;
  transition: transform .8s, -webkit-transform .8s;
  -webkit-transform: translateY(80px);
  -ms-transform: translateY(80px);
  transform: translateY(80px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px); 
}

/* Logo */
.value-header .logo {
  padding: 7px 0;
}

.value-header .logo img {
  width: 70%;
}

ul.navbar-nav {
  margin-right: 80px;
}

.value-header .navbar-nav .nav-link {
  padding: 7px 20px;
  border-radius: 30px;
  font-size: 18px;
  color: #fff; 
  transition: all ease .4s;
}

.value-header .navbar-nav .nav-link:hover {
  background: var(--main-color);  
}

.value-header .topnav .butn {
  padding: 7px 20px;
  background: #fff;
  color: #1d1d1d;
  margin-right: 15px; 
}

/* Mega Menu */
.mega-menu-wrapper {
  color: #232323;
  padding: 30px;
  border-radius: 16px;
  position: absolute;
  left: 0;
  top: calc(100% + 25px);
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
  filter: blur(100%);
  background-color: var(--white-color); 
  -webkit-backdrop-filter: blur(30px) brightness(105%);
  backdrop-filter: blur(30px) brightness(105%); 
  opacity: 0; 
  visibility: hidden;
}

.mega-menu-wrapper.show-mega-menu {
  opacity: 1; 
  visibility: visible;
}

/*.value-header .nav-item:hover .mega-menu-wrapper {*/
/*  top: calc(100% + 15px);*/
/*  opacity: 1;*/
/*  visibility: visible;*/
/*}*/

.mega-menu-wrapper .side-content {
  /*padding: 0;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mega-menu-wrapper .side-content p {
  width: 80%;
  font-size: 15px;
  color: #646161; 
  margin: 10px 0 0 4px;
}

.mega-menu-wrapper .mga-side-lnks {
  margin: 20px 0 0 -5px;
}

.mega-menu-wrapper .mga-side-lnks li {
  padding-left: 15px;
  transition: all ease .4s;
}

.mega-menu-wrapper .mga-side-lnks li a {
  position: relative;
  font-size: 18px;
}

.mega-menu-wrapper .mga-side-lnks li i {
  font-size: 11px;
  display: inline-flex;
  margin-right: 4px;
}

.mega-menu-wrapper .mga-side-lnks li:hover {
  color: var(--main-color);
  padding-left: 20px;
}

.mega-menu-wrapper .img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: all ease .4s;
}

.mega-menu-wrapper .img img {
  border-radius: 8px;
}

.mega-menu-wrapper .img:hover img {
  overflow: hidden;
  border-radius: 8px;
  transform: scale(1.1) rotate(.5deg);
}

.mega-menu-wrapper .img .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .44);
}

.mega-menu-wrapper .img .content {
  color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 20px;
  bottom: 30px;
}

.mega-menu-wrapper .img .content i {
  display: inline-flex;
}

.mega-menu-wrapper .img .content h5,
.mega-menu-wrapper .img .content i {
  transition: all ease .3s;
}

.mega-menu-wrapper .img .content h5:hover,
.mega-menu-wrapper .img .content h5:hover + i {
  color: var(--main-color);
}

/* Header Search */
.header-search {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 12.5%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out .5s;
  background-color: var(--blue-color);
  z-index: 99999999;
}

.header-search > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.header-search > a img {
  width: 25px;
  transform: rotate(90deg);
}

.header-search:hover {
  transform: scale(1.2);
}

.header-search a.chng-color {
  background-color: var(--main-color);
}

/* Language */
.lang {
  width: fit-content;
  color: var(--white-color);
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 50px;
  position: absolute;
  right: 15px;
  z-index: 99999999;
  background-color: var(--blue-color);
  transition: all ease-in-out .4s; 
}

.lang:hover {
  background-color: var(--main-color);
}

/* Hero Section */
.hero-sec {
  height: 100vh;
  padding: 20px;
  position: relative;
  background-color: var(--white-color);
}

.hero-sec .swiper-container {
  overflow: visible;
}

.hero-sec .swiper-container,
.hero-sec .swiper-slide,
.hero-sec .item {
  height: 100%;
}

.hero-sec .swiper-slide, 
.hero-sec .item, 
.hero-sec .overlay, 
.hero-sec img {
  border-radius: 24px;
}

.hero-sec .item img {
  height: 100%;
  max-height: 100%;
  object-fit: cover;
}

.hero-sec .overlay {
  display: flex;
  align-items: center;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
}

.hero-sec h1 {
  color: var(--white-color);
  font-size: 70px;
}

.hero-sec p {
  Width:60%;
  color: #e5e5e5;
  font-size: 32px;
  margin-top: 30px;
}

.hero-sec .swiper-pagination {
  width: auto;
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
}

.hero-sec .swiper-pagination-bullet {
  width: 15px;
  height: 2px;
  opacity: .5;
  background-color: var(--white-color);
}

.hero-sec .swiper-pagination-bullet-active {
  width: 35px;
  background: var(--main-color); 
}

.hero-sec .swiper-button-next, 
.hero-sec .swiper-button-prev {
  color: var(--white-color);
  font-size: 20px;
  top: auto;
  bottom: 20px;
}

.hero-sec .swiper-button-prev {
  left: 30px;
}

.hero-sec .swiper-button-next {
  right: 30px;
}

.hero-sec .swiper-btn:after {
  font-size: 12px;
}

.hero-sec .swiper-btn span {
  font-size: 14px;
  position: absolute;
  text-transform: uppercase;
}

.hero-sec .swiper-button-prev span {
  left: 30px;
}

.hero-sec .swiper-button-next span {
  right: 30px;
}

/* About */
.about .container-fluid {
  padding-left: 3%;
  padding-right: 3%;
}

.about .details {
  padding: 50px 40px;
  border-radius: 16px;
  background-color: #efefef;
}

.about .details h3 {
  color: var(--dark-text);
  font-size: 40px !important;
  font-weight: 900;
  letter-spacing: -1px !important;
}

.about .details p {
  margin-top: 20px
}

.about .value-btn.value-btn-color {
  margin-top: 30px;
}

.about img {
  height: 430px;
  border-radius: 16px;
  object-fit: cover;
}

/* Services */
.services .service-item {
  position: relative;
  margin-top: 30px;
}

.services .img img {
  aspect-ratio: 3/1;
  object-fit: cover;
}

.services .service-title {
  width: 100%;
  height: 100%;
  padding: 60px 30px;
  position: absolute;
  top: 0;
  /*border-radius: 16px 0 0 16px;*/
  background: linear-gradient(to right, #ffffff 15%, #ffffff00 65%, #e2e2e200 20%);
  background-size: 100% 100%;
}

.services .service-title .text {
  width: 45%;
}

.services .text h4 {
  font-size: 45px !important;
}

.services .text p {
  width: 85%;
  margin-top: 10px; 
}

.services .item-lnk {
  margin-top: 40px;
}

/* Projects */
.projects {
  position: relative;
}

.projects h2 {
  color: var(--white-color);
}

.projects p {
  color: var(--p-light);
}

.projects .swiper-container {
  margin-top: 60px;
  padding: 20px 40px 30px 40px;
}

.projects .item,
.projects .img, 
.projects .img img {
  border-radius: 16px;
}

.projects .item {
  position: relative;
  border-radius: 16px;
  transition: all ease .5s;
  overflow: hidden;
}

.projects .img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all ease .5s;
}
   
.projects .img .overlay {
  border-radius: 16px;
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, .44);
}

.projects .item:hover {
  transform: scale(1.06) ;
}

.projects .item:hover img {
  border-radius: 16px;
  transform: scale(1.1) rotate(2deg);
}

.projects .item:hover .overlay {
  background-color: rgba(0, 0, 0, .5)
}

.projects .item .content {
  color: var(--white-color);
  position: absolute;
  bottom: -50px;
  padding: 15px 80px 35px 25px; 
  transition: all ease .5s;
  overflow: hidden;
}

.projects .item h4 {
  line-height: 1.2;
  transition: all ease .5s;
}

.projects .item .item-lnk {
  position: relative;
  bottom: -35px;
}

.projects .item .item-lnk:hover {
  transform: translateY(-5px);
}

.projects .item:hover .content {
  bottom: 30px;
}

.projects .swiper-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 16%;
  right: 360px;
  color: var(--white-color);
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
  transition: all ease .5s;
}

.projects .swiper-btn:after {
  display: none;
}

.projects .swiper-button-prev {
  left: auto;
  right: 300px;
}

.projects .swiper-btn:hover {
  transform: scale(1.1);
}

/* Partners */
.partners-wrap,
.projects-wrap {
  margin-top: 70px;
  display: grid;
  gap: 30px;
}

.sectors-wrap {
  display: grid;
  gap: 30px;
}

.partners-wrap,
.sectors-wrap {
  grid-template-columns: repeat(5, 1fr);
}

.projects-wrap {
  grid-template-columns: repeat(3, 1fr);
}

.partners-wrap .item,
.projects-wrap .item,
.sectors-wrap .item {
  position: relative;
  border-radius: 16px;
  border: 1px solid;
  margin: 10px 0;
  transition: all ease-in-out .5s;
}

.partners-wrap .item {
  padding: 15px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #e5e5e5;
}

.projects-wrap .item,
.sectors-wrap .item {
  padding: 8px;
}

.sector-name {
  width: 80%;
}

.sector-name a:hover {
  color: var(--main-color);
}

.partners-wrap .item > a {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.partners-wrap .item > a span:first-of-type {
    text-align: center;
  font-weight: 600;
  background: #f9f9f9c2;
  border-radius: 8px;
  padding: 1px 20px 1px 20px;
  font-size: 14px;
  margin-bottom: 7px;
}

.partners-wrap .item > a span:nth-of-type(2) {
  text-align: center;
  color: #818181;
  display: block;
  margin-top: 10px;
}

.partners-wrap .item:hover {
  transform: scale(1.1);
  border-color: transparent;
  background-color: #f9f9f9c2;
}

/* Sectors Page */
.sectors-wrap .item {
    margin: 0;
}

.sectors-wrap .item .img {
  border-radius: 16px;
  overflow: hidden;
}

.sectors-wrap .item img {
  border-radius: 16px;
  aspect-ratio: 1 / 1;
}

.sectors-wrap .cntnt {
  padding: 20px 5px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.sectors-wrap .item-lnk {
  width: 30px;
  height: 30px;
}

.sectors-wrap .item-lnk i {
  font-size: 12px;
}

.sectors-wrap .item:hover .img img {
  transform: scale(1.1) rotate(2deg);
}

/* Sector Details Page */
.sector-details h2,
.services-details h2 {
  color: var(--white-color);
}

.sector-details p,
.services-details p {
  width: 80%;
  color: var(--white-color);
  margin-top: 15px;
}

/* Slider with Thums */
.slider-wz-thums .mySwiper2 {
  height: 80%;
  width: 100%;
} 

.slider-wz-thums .swiper-slide {
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.slider-wz-thums .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.slider-wz-thums .thumbs-slider {
  height: 20%;
  padding: 15px 0;
  box-sizing: border-box;
}

.slider-wz-thums .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
} 

.slider-wz-thums .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.slider-wz-thums .swiper-button-next {
  right: 30px;
}

.slider-wz-thums .swiper-button-prev {
  left: 30px;
}

.slider-wz-thums .swiper-button-next,
.slider-wz-thums .swiper-button-prev {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--main-color);
}

.slider-wz-thums .swiper-button-next:after,
.slider-wz-thums .swiper-button-prev:after {
  font-size: 16px;
}

/* Projects */
.projects-wrap .egypt .item {
  border-bottom: 8px solid var(--blue-color);
}

.projects-wrap .ksa .item {
  border-bottom: 8px solid var(--green-color);
}

.projects-wrap .item .img {
  overflow: hidden;
  border-radius: 16px;
}

.projects-wrap .item img {
  border-radius: 16px;
  overflow: hidden;
}

.projects-wrap .item:hover .img img {
  transform: scale(1.1) rotate(2deg);
}

.projects-wrap .cntnt {
  padding: 20px;
}

.projects-wrap .project-loc {
  width: 48%;
  padding: 5px 10px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  border-radius: 16px;
  background-color: #f5f5f5;
}

.projects-wrap .project-loc span {
  font-size: 18px;
  display: inline-block;
}

.projects-wrap .project-loc span:last-child {
  padding: 5px 0 0 5px;
}

.projects-wrap .project-loc svg {
  width: 18px;
  margin-left: 6px;
}

.projects-wrap .project-name {
  margin-bottom: 4px; 
}

.projects-wrap .project-name h5 {
  color: var(--blue-color);
}

.projects-wrap .project-name h5:hover {
  color: var(--main-color);
}

/* Ceo Message */
.ceo-msg h2 {
  color: var(--white-color);
}

.ceo-msg .section-head p {
  color: var(--gray-color);
}

.ceo-prnt {
  padding: 30px; 
  margin: 1%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 24px;
  border: 2px solid #ffffff5c;
  gap: 5px;
  overflow: hidden;
}

.ceo-prnt .content {
  /*flex-basis: 50%;*/
  width: 100%;
  color:#fff;
  margin-top: 30px;
}

.ceo-prnt .ceo-name {
  display: flex; 
  justify-content: space-between;
}

.ceo-prnt p {
  font-size: 16px;
  color: #e5e5e5;
  margin: 2px 0;
}

.ceo-prnt p.name {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
}

.ceo-prnt p.desc {
  width: 85%;
  margin-top: 15px;
}

.ceo-prnt a.social {
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255, 255, 255);
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.ceo-prnt a.social:hover {
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.ceo-prnt img {
  border-radius: 16px;
}


/* Company Numbers  */
.cmpny-nums h2 {
  color: var(--white-color);
}

.cmpny-nums .video-parent {
  border-radius: 16px;
  overflow: hidden;
}

.cmpny-nums video {
  border-radius: 16px;
  transition: all ease .5s;
}

.cmpny-nums .item {
  position: relative;
  text-align: center;
  border-right: 1px dashed rgb(255 255 255 / 9%);
}

.cmpny-nums .row-mt-xl > .col-xl-3:last-child .item {
  border: none;
}

.cmpny-nums .num {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cmpny-nums .item h5 {
  position: relative;
  color: var(--white-color);
  font-size: 90px;
  font-weight: 900;
  opacity: 0;
}

.cmpny-nums .item h5:after {
  width: 50px;
  height: 1px;
  display: block;
  position: absolute;
  content: '';
  left: 36%;
  bottom: -12px;
  background-color: rgb(255 255 255 / 10%);
}

.cmpny-nums .num > span {
  color: var(--white-color);
  font-size: 80px;
  font-weight: 900;
  margin-top: 10px;
}

.cmpny-nums .num-title p {
  font-size: 24px;
  color: #818181;
  font-weight: 400;
  margin-top: 35px;
}

/* Clients */
.clients-wrap {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.clients-wrap .item {
  position: relative;
  padding: 50px;
  border-radius: 16px;
  background-color: #f1f1f1; /***/
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out .5s;
  overflow: hidden;
  transform: scale(.95);
}

.clients-wrap .item a {
  display: block;
  width: 100%;
  height: 100%;
}

.clients-wrap .item a img {
  width: 50%;
  position: absolute;
}

.clients-wrap .item img:first-child {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.clients-wrap .item  img.hover_img {
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}

.clients-wrap .item:hover {
  cursor: pointer;
  transform: scale(1);
}

.clients-wrap .item:hover img:first-child {
  top: -40px;
  opacity: 0;
}

.clients-wrap .item:hover img.hover_img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition-delay: .1s;
  opacity: 1;
}


/* Call To Action */
.call-to-action {
  position: relative;
  overflow: hidden;
}

.call-to-action .sec-bg {
  position: absolute;
  inset-inline-end: -6%;
  top: -50%;
  width: 532px;
  opacity:50%;
}

.call-to-action h2 {
  color: var(--white-color);
}

.call-to-action p {
  margin-top: 20px;
}

/* About Page */
.page-banner .caption {
  color: var(--white-color);
  padding: 160px 0 30px 0; /****/
  position: relative; 
  /*display: flex;*/
  /*align-items: center;*/
}

.page-banner h1 {
  width: 60%;
  line-height: 1;
}

.page-banner .text {
  padding: 20px 10px 10px 0;
  /*width:80%;*/
}

.page-banner p {
  color: var(--p-light);
}

.page-banner .mimg {
  height: 600px;
  position: relative;
  overflow: hidden;
}

/* Who We Are */
.who-are {
  color: var(--white-color);
}

.who-are p {
  color: var(--white-color);
  font-size: 1.75rem;
}

.who-are .info .item {
  padding: 30px;
  border-radius: 16px;
  background-color: #1f1f4430;
}

/* Vision & Mission */
.vision-mission .item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--gray-color);
  padding: 15px;
  border-radius: 20px; 
}

.vision-mission .item .cont {
  padding: 15px; 
}

.vision-mission .item .cont .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%; 
}

.vision-mission .icon img {
  width: 48px;
}

.vision-mission .cont .icon.invert img {
  -webkit-filter: invert(1);
  filter: invert(1); 
}

.vision-mission .item .cont .text {
  margin-top: 30px;
  margin-bottom: 20px; 
}

.vision-mission .item .cont .text p {
  font-weight: 500;
  line-height: 1.5; 
}

.vision-mission .img {
    border-radius: 16px;
  overflow: hidden;
}

.vision-mission .img:hover img {
   transform: scale(1.1) rotate(2deg);
}

/* Chairman */
.chairman .chrm-msg {
  margin: 10px 0;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 2px solid #ffffff5c;
  border-radius: 24px;
}

.chairman h2 {
  font-size: 50px;
  margin-bottom: 10px;
}

.chairman .chairman-desc {
  color: var(--white-color);
  flex-basis: 55%;
}

.chairman .chrm-msg p {
  color: var(--gray-color);
}

.chairman  .chrm-msg .img-prnt {
  display: flex;
}

.chairman  .chrm-msg:first-child .img-prnt {
  justify-content: flex-end;
}

.chairman  .chrm-msg:last-child .img-prnt {
  justify-content: flex-start;
}

.chairman .chrm-msg img {
  width: 80%;
  border-radius: 16px;
}

.chairman .chrm-msg .chr-sig {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chairman .sig-img {
  display: flex;
  justify-content: flex-end;
}

.chairman .sig-img img {
  width: 50%;
}

/* Clnts & Prtnrs */
.clnts-prtnrs .clnts-wrap, 
.clnts-prtnrs .prtnrs-wrap {
  padding: 30px;
  border-radius: 20px;
  background-color: #efefef;
}

.clnts-prtnrs .prtnrs-wrap {
  width: 64%;
  margin: 0 30px 0 0;
}

.clnts-prtnrs .rght {
  position: relative;
}

.clnts-prtnrs .rght img {
  border-radius: 8px;
  position: relative; 
  width: 300px; 
  height: 260px; 
  object-fit: cover;
}

.clnts-prtnrs .rght img:hover {
  opacity: .88;
}

.clnts-prtnrs .icon-box {
  width: 140px;
  height: 110px;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.clnts-prtnrs p {
  color: var(--light-gray);
  margin-top: 15px;
}

.prtnrs-wrap {
  position: relative;
}

.prtnrs-wrap p {
  width: 95%;
}

.clnts-prtnrs .icon-side {
  position: absolute;
  right: -15px;
  bottom: -30px;
  padding: 45px;
  opacity: 0.07;
}

.prtnrs-wrap .icon-side img {
  width: 130px;
}

.cntrls-prnt {
  display: flex; 
  justify-content: space-between;
}

.drp-slct {
  flex-basis: 17%;
  display: flex;
  align-items: center;
  position: relative;
}

.drp-slct select {
  width: 100%;
  font-size: 18px;
  position: relative;
  color: var(--dark-text);
  /* -webkit-padding-end: 20px;
  -webkit-padding-start: 2px; */
  -webkit-user-select: none;
  border-radius: 40px;
  padding: 10px 0 10px 20px;
  border: 1px solid #efebeb;
  -webkit-appearance: none;
  appearance: none;
  background-color: #f9f3f3bf;
  background-image: url('/assets/imgs/select-icon.svg');
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 15px;
}

.cntrl-btn button {
  color: var(--dark-text);
  font-size: 17px;
  font-weight: 300;
  padding: 9px 30px;
  text-transform: capitalize;
  text-shadow: none;
  border-radius: 50px;
  border: 1px solid var(--p-light) !important;
  background-color: transparent;
  transition: all ease .6s;
}

.cntrl-btn button.active {
  color: var(--white-color);
  border: 1px solid transparent !important;
  background-color: var(--main-color);
}

.cntrl-btn button:hover {
  color: var(--main-color);
  border-color: var(--main-color) !important;
  background-color: transparent;
}

.partners-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 30px;
}

/* Services Page */
.services-prnts .img {
  position: relative;
  border-radius: 16px;
  margin-top: 20px;
}

.services-prnts .img img {
  border-radius: 16px;
  object-fit: cover;
}

.services-prnts .srvc-card {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #f5f5f5;
}

.services-prnts .srvc-card:last-child {
    border: none;
}

.services-prnts .srvc-card h4 {
  font-size: 25px !important;
  margin-bottom: 10px;
}

.services-prnts .srvc-card p {
  font-size: 17px;
}

.services-prnts .srv-lnk {
  margin-top: 15px;
}

.services-prnts .srv-lnk a {
  color: var(--main-color);
  display: block;
  font-weight: 500;
  text-decoration: underline;
}

.services-prnts .vctr img {
  width: 70px;
}

.services-prnts .btn-wrap {
  width: 225px;
  background-color: var(--white-color);
  position: absolute;
  left: 50%;
  bottom: 0;
  padding: 25px 35px 19px;
  border-radius: 20px 20px 0 0;
  transform: translateX(-50%);
  text-align: center;
}

.services-prnts .btn-wrap:before {
  content: "";
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 100%;
  box-shadow: 20px 20px 0 var(--white-color);
}

.services-prnts .btn-wrap:after {
  content: "";
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 100%;
  box-shadow: -20px 20px 0 var(--white-color);
}

.services-prnts .btn-wrap > a {
  font-size: 23px;
  perspective: 1000px;
}

.services-prnts .btn-wrap > a:before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background-color: #8b8b8b;
  transition: .3s;
}

.services-prnts .btn-wrap > a span {
  position: relative;
  display: inline-block;
  padding: 0;
  transition: transform .5s;
  transform-origin: 50% 0;
  transform-style: preserve-3d;
}

.services-prnts .btn-wrap > a > span:before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  content: attr(data-text);
  transition: color .5s;
  transform: rotateX(-90deg);
  transform-origin: 50% 0;
  text-align: center;
}

.services-prnts .btn-wrap > a:hover > span {
  transform: rotateX(90deg) translateY(-12px);
}

.services-prnts .btn-wrap > a:hover:before {
  width: 0;
}

/* Project Details */
.inner-main.egy .prjct-det .fit-img > img {
  border-radius: 24px;
  border: 3px solid var(--blue-color);
}

.inner-main .prjct-det .fit-img {
  border-radius: 24px;
}

.inner-main.ksa .prjct-det .fit-img > img {
  border-radius: 24px;
  border: 3px solid var(--green-color);
}

.prjct-det .pg-hed-cntnt h2 {
    margin-left: 5px;
}

.inner-main.egy .slider-wz-thums .swiper-button-next,
.inner-main.egy .slider-wz-thums .swiper-button-prev {
  background-color: var(--blue-color);
}

.inner-main.ksa .slider-wz-thums .swiper-button-next,
.inner-main.ksa .slider-wz-thums .swiper-button-prev {
  background-color: var(--green-color);
}

.prjct-det {
  margin-top: 160px
}

.prjct-det .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background-image: linear-gradient(200deg, #1f1f4459, #1f1f44d2);
}

.prjct-det .pg-hed-cntnt {
  position: absolute;
  bottom: 40px;
  left: 5%;
}

.prjct-det .pg-hed-logo {
  position: absolute;
  top: 40px;
  right: 40px;
  padding: 10px;
  border-radius: 50px;
  opacity: 66%;
  background-color: var(--white-color);
}

.pg-hed-cntnt .breadcrumbs {
  margin-bottom: 15px;
}

.pg-hed-cntnt h2 {
  margin-top: 20px;
  color: var(--white-color);
}

/* Team Page */
.our-team .item {
  padding-top: 30px;
}

.our-team .item .img {
border: solid 1px var(--gray-color);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px; 
}

.our-team .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.our-team .item .img:hover img {
  transform: scale(1.1) rotate(2deg);
}

.our-team .item .cont {
  color: var(--dark-text);
  padding: 0 15px;
}

.our-team .item .cont h5 {
  font-weight: 600;
  margin-bottom: 5px; 
}

.our-team .item .cont span {
  font-size: 18px;
  font-weight: 400;
}

.our-team .item .cont a {
  color: var(--dark-text);
  padding: 5px 25px;
  border-radius: 30px;
  border: 1px solid var(--dark-text);
  transition: all ease-in-out .5s; 
}

.our-team .item .cont a:hover {
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

/* Contact Page */
.form-wrap {
  margin-top: 50px;
}

.form-wrap form input,
.form-wrap textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 35px;
  background-color: rgba(0, 0, 0, .05);
  border: 1px solid rgba(0, 0, 0, .05);
}

.form-wrap textarea {
  height: 150px;
  resize: none;
}

.form-wrap .rc-anchor-container {
    border-radius: 15px;
}

/* Map */
.map {
  padding: 50px 0;
}

.map-wrap {
  display: flex;
} 

.map-wrap iframe {
  height: auto;
  flex-basis: 57%;
  filter: grayscale(1);
  border-radius: 0 16px 16px 0;
}

.map-wrap  .cmpny-info {
  flex-basis: 43%;
  padding: 20px;
  border-radius: 16px 0 0 16px;
  background-color: var(--white-color);
}

.map-wrap  .cmpny-info p {
  margin-bottom: 10px;
}

.map-wrap  .cmpny-info span:first-child {
  display: block;
  font-weight: 700;
  margin-bottom: -2px;
}

.map-wrap:hover iframe {
  filter: none;
} 

.form-btn {
  margin-top: 20px;
}

.form-btn button {
  color: var(--white-color);
  transition: all ease .5s;
  padding: 12px 53px;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 50px;
}

.form-btn button:hover {
  color: var(--main-color);
  background-color: transparent;
}

/* Search Page */
.search-result-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;

}

.search-result-wrapper .result-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.search-result-wrapper .result-item .img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, .1);
}

.search-result-wrapper .result-item .res-url {
  color: var(--main-color);
}

.search-result-wrapper .result-item p {
  font-size: 17px;
}

/* Footer */
footer,
.sub-footer {
  background-color: var(--white-color);
  border-top: 1px solid rgb(0 0 0 / 8%);
}

footer h6 {
  font-size: 24px;
}

footer .top-p {
  padding-left: 20px;
  margin-top: 25px;
  font-size: 16px;
}

footer .social-label {
  font-size: 20px; 
  margin-top: 15px;
}

footer .social-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 15px;
  margin-top: 7px;
}

footer .social-icons a {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 50%;
  overflow: hidden;
}

footer .social-icons a:before {
  display: block;
  position: absolute;
  content: '';
  left: 0;
  width: 90%;
  height: 90%;
  border-radius: 50%;
}

footer .social-icons a:before {
  top: 50%;
  left: 2px;
  transition: all ease .2s;
  transform: translateY(-50%);
  background-color: var(--blue-color);
}

footer .social-icons a i {
  color: #fff;
  display: block;
  position: absolute;
  transition: all ease .3s;
  z-index: 2;
}

footer .social-icons a i:first-child {
  top: 50%;
  transform: translateY(-50%);
}

footer .social-icons a i:last-child {
  top: 120%;
  transition: all ease .3s;
}

footer .social-icons a:hover {
  transform: scale(1.1);
}

footer .social-icons a:hover:before {
  background-color: var(--main-color);
}

footer .social-icons a:hover i:first-child {
  top: -40%; 
}

footer .social-icons a:hover i:last-child {
  top: 50%;
  transform: translateY(-50%);
  transition-delay: .2s;
}

footer ul.footer-lnks i {
  font-size: 12px;
}

footer ul.footer-lnks {
  margin-top: 20px;
}

footer ul.footer-lnks:last-child {
  padding-left: 5px;
}

footer ul.footer-lnks li {
  padding-bottom: 7px;
  transition: all ease .4s;
}

footer ul.footer-lnks li >  a {
  font-size: 18px;
  margin-left: 6px;
}

footer ul.footer-lnks li:hover {
  color: var(--main-color);
  padding-left: 5px;
}

footer ul.footer-img {
  margin-top: 20px;
}

footer ul.footer-img li {
  margin-bottom: 15px;
}

footer ul.footer-img li a {
  display: flex;
  align-items: center;
  gap: 15px;
}

footer ul.footer-img li a img { 
  border-radius: 8px;
  aspect-ratio: 3 / 2;
}

footer ul.footer-img li a p { 
  color: var(--dark-text);
  font-size: 18px;
  font-weight: 500;
  transition: all ease .5s;
}

footer ul.footer-img li:hover img {
  transform: scale(1.05);
}

footer ul.footer-img li:hover p {
  color: var(--main-color);
}

footer .quick-links {
  display: flex;
  justify-content:center;
  border-top: 1px solid rgb(0 0 0 / 8%);
  padding: 40px 0 40px 40px;
  gap: 20px;
  margin-top: 30px;
}

footer .quick-links li a {
  font-size: 17px;
  position: relative;
}

footer .quick-links li a:after {
  position: absolute;
  content: '';
  height: 100%;
  width: 1px;
  background: #d9d9d970;
  left: -12px;
}

footer .quick-links li:first-child a:after {
  display: none;
}

footer .quick-links li a:hover {
  color: var(--main-color);
}

footer .sub-footer p {
  color: var(--dark-text);
  font-weight: 500;
}

footer .sub-footer p a:hover {
  color: var(--main-color);
}

.sub-footer img {
  width: 50%;
}

footer .cpy-val-img {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

footer .cpy-val-img img { 
  width: 16%;
}

footer .footer-logo img {
  width: 50%;
}

footer .coreations-logo img {
  width: 45px;
}


/* Sector Projects */
.sector-projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.sector-projects .item {
    padding: 8px;
    position: relative;
    border-radius: 16px;
    border: 1px solid #ffffff57;
    margin: 10px 0;
    transition: all ease-in-out .5s;
    overflow: hidden;
}

.sector-projects .item img {
    border-radius: 16px;
    transition: all ease-in-out .5s;
}

.sector-projects .item .img {
    border-radius: 16px;
    overflow: hidden;
}

.sector-projects .cntnt {
    padding: 20px; 
    
}

.sector-projects .project-name h5 > a,
.sector-projects .project-loc {
    color: var(--white-color);
}

.sector-projects .project-loc {
    margin: 5px 0 5px;
}

.sector-projects .cntnt p {
    margin-top: 6px;
}

.sector-projects .item:hover .img img {
    transform: scale(1.1) rotate(2deg);
}


/* Responsive  */
@media(min-width: 1200px) {
    
    .value-header .collapse.navbar-collapse > ul > li > i.li-aftr {
        display: none;
    }

   .value-header .value-nav-menu {
     display: flex !important;
     flex-basis: auto
    }

   .show-xs-dvc {
     display: none !important;
   }

   .mob-menu {
    display: none;
   }

  .value-header .nav-item .lnk-aftr {
    display: inline-flex;
    font-size: 9px;
    margin-left: 1px;
    transition: all ease .3s;
   }

   .value-header .nav-item > a:hover .lnk-aftr {
    transform: rotate(360deg);
   }

   .srvce-mob-list {
    display: none;
   }

  .row-mt-xl {
    margin-top: 90px;
  }

}

@media(max-width: 1199px) {
    
    video {
        width: 100%;
    }
    
    .value-header .navbar-nav .nav-link > .lnk-aftr {
        display: none;
    }

   .value-header .collapse.navbar-collapse {
        position: absolute;
        margin-bottom: 20px;
        background-color: var(--white-color);
        border-radius: 24px;
        padding: 10px 10px 10px;
        top: 80px;
        display: none;
        -webkit-backdrop-filter: blur(30px) brightness(105%);
        backdrop-filter: blur(30px) brightness(105%); 
    }
  
   .value-header .collapse.navbar-collapse > ul > li {
     border-bottom: 1px solid rgba(0, 0, 0, .01);
   }
   
   .value-header .collapse.navbar-collapse > ul > li:last-child {
     border: none;
    }

     .value-header ul.navbar-nav {
        margin-right: 0;
    }

    .value-header ul.navbar-nav > li {
        position: relative;
        transition: all ease .4s;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .value-header ul.navbar-nav > li:last-child {
        margin: 0;
        border: none;
    }

  .value-header ul.navbar-nav > li:hover {
    border-radius: 24px;
    background-color: rgba(255, 255, 255, .2);
  }
  
  .value-header ul.navbar-nav > li > i {
    position: absolute;
    right: 20px;
    top: 14px;
  }

  .value-header .navbar-nav .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--blue-color);
  }

  .value-header .navbar-nav .nav-link:focus {
    color: var(--white-color);
  }

  .mega-menu-wrapper {
    top: 85px;
    opacity: 1;
    visibility: visible;
    width: 85%;
    margin: 10px auto;
    transition: none;
    position: static;
    background-color: #f9f9f9;
    inset: 0;
    display: none;
  }

  .mega-menu-wrapper .img {
    display: none;
  }

  .mob-menu {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 94px;
    cursor: pointer;
    background-color: var(--blue-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mob-menu img {
    width: 66%;
  }

  .round-section {
    margin-right: 20px;
    margin-left: 20px;
  }

  .hero-sec h1 {
    margin: 0 auto;
    text-align: center;
  }

  .hero-sec p {
    margin: 30px auto 0;
    text-align: center;
  }

  .section-head {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-head p.ml-50 {
    margin-left: 0 !important;
  }

  .value-btn {
    margin-top: 30px;
  }

  .section-head > div:last-child {
    justify-content: flex-start;
  }

  .inner-main .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .page-banner {
    padding-left: 30px;
    padding-right: 30px;
  }

  .page-banner .caption {
    flex-direction: column;
  }

  .page-banner .text {
    padding: 10px;
  }

  .fit-img img {
    border-radius: 24px;
  }

  .sec-head {
    padding: 0 20px;
  }

  .sec-head.mb-50 {
    margin-bottom: 5px !important;
  }

  .ceo-msg .mt-70 {
    margin-top: 30px !important;
  }

  .vision-mission .item {
    height: auto;
    margin-top: 25px;
  }

  .chairman .chrm-msg {
    width: 93%;
    margin: 23px auto;
    flex-direction: column;
  }

  .chairman .chrm-msg:first-child .ceo-img-prnt {
    order: 1;
  }

  .chairman .chrm-msg .ceo-img-prnt img {
    width: 100%;
  }

  .chairman .chrm-msg:first-child .chairman-desc {
    order: 2;
  }

  .chairman h2 {
    font-size: 30px;
    letter-spacing: .01px;
  }

  .chairman .chairman-desc {
    padding: 25px 10px;
  }

  .chairman .chr-sig h4,
  .chairman .chr-sig h5 {
    font-size: 21px !important;
  }
  
  .who-are .info > .row {
      padding: 0 35px;
  }

  .hide-xs-dvc {
    display: none !important;
  }
  
  .sectors {
      margin-top: 50px;
  }

  .partners-wrap,
  .clients-wrap {
    margin-top: 35px;
  }

  .ceo-img-prnt img {
    width: 60%;
    display: block;
    margin: 0 auto;
  }

  .clnts-prtnrs .counter-dsc-md {
    padding-left: 30px;
    padding-right: 30px;
  }

  .clnts-prtnrs .prtnrs-wrap {
    width: 90%;
    margin: 30px;
    flex-direction: column;
  }

  .clnts-prtnrs .rght {
    margin: 30px auto 0 0;
  }

  .clnts-prtnrs .clnts-wrap {
    width: 90%;
    margin: auto;
  }

  .srvce-mob-list {
    margin-top: 20px;
  }

  .srvce-mob-list li a {
    font-size: 18px;
  }

  .srvce-mob-list i {
    font-size: 11px;
    margin-right: 4px;
  }
  
  .projects-parent {
     margin-top: 60px;
  }

  .projects-wrap .project-loc {
    width: 80%;
  }

  .map .map-wrap:last-child {
    margin-top: 30px;
  }

  /* About */
  .about .img {
    margin-top: 30px;
  }

  /* Services */
  .services-wrapper {
     margin-top: 60px;
  }
  
  .services .text p {
     display: none;
   }
  
    .services-prnts {
      margin-top: 30px !important;
    }
  
   .services-prnts .srvc-card {
      flex-direction: column;
      margin-top: 20px;
      padding-bottom: 40px;
   }
  
   .services-prnts .srvc-card:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
   }
  
   .services-prnts .srvc-card .content {
      text-align: center;
      padding: 0 60px;
    }
    
    .services-prnts .srv-lnk a {
       font-size: 19px;
    }
    
    .sectors-wrap {
      gap: 15px
    }
    
    .sectors-wrap .item .img {
      text-align: center;
      padding-top: 15px;
    }
   
  .sector-details,
  .services-details {
    margin-left: 20px;
    margin-right: 20px;
  }
 
  .video-parent {
    margin-left: 30px;
    margin-right: 20px;
  }

  .cmpny-nums .item {
    margin-top: 40px;
  }

  .services-prnts .vctr {
    margin: auto;
   }

  .form-wrap .sec-head,
  .form-wrap .full-width.md-mb80 {
    margin-bottom: 10px;
  }

  .call-to-action {
    padding-left: 20px;
    padding-right: 20px;
  }

  .call-to-action .sec-bg {
    display: none;
  }

  .search-result-wrapper {
    grid-template-columns: 1fr;
  }

  .search-result-wrapper .result-item {
    padding: 0 25px 25px 25px;
  }

  .search-result-wrapper .result-item:last-child {
    border: none;
    padding-bottom: 0;
  }

  footer h6 {
    margin: 25px 0 0 20px;
  }
  
  footer ul.footer-lnks {
    margin-left: 20px;
  }
  
  footer ul.footer-lnks:first-child {
    margin-top: 8px;
  }

  footer ul.footer-lnks:last-child {
    padding-left: 15px;
  }
  
  .form-wrap form input[type = "email"] {
      margin-top: 25px;
  }

}

@media(min-width: 1024px) and (max-width:1366px) {

  .value-header > .container {
    padding: 3px 50px !important;
  }
  
  .value-header .navbar-collapse {
    justify-content: flex-start;
  }

  .navbar-nav {
    flex-direction: column !important;
    width: 100%;
  }

  .navbar-expand-lg .navbar-collapse {
    display: none;
  }

  .header-search {
    right: 10.7%;
  }

} 

@media(min-width: 576px) and (max-width: 1199px) {
    
    .page-banner .text > p {
          width: 75%;
    }
    
    .value-header > .container {
        width: 88%;
        padding: 10px 50px;
    }

    .value-header .logo {
        position: relative;
        top: 2px;
    }
    
    .value-header .logo img {
        width: 20%;
    }
    
    .lang {
       top: 13px;
       right: 137px;
    }
    
    .header-search {
        width: 40px;
        height: 40px;
        top: 10px;
    }
    
    .header-search > a img {
        width: 20px;
    }

   .value-header.nav-scroll .header-search {
     top: 26px;
    }

   .search-form {
     width: 40%;
     right: 40px;
    }

  .hero-sec h1 {
    font-size: 48px !important;
    line-height: 1.2;
  }

  .hero-sec p {
    font-size: 24px;
    line-height: 1.2;
  }
  
  .page-banner h1 {
      width: 100%;
  }

  h2,
  .section-head h2 {
    font-size: 40px;
    margin-bottom: 10px;
    letter-spacing: .01px;
  }

  .section-head p {
    width: 90%;
   }

   .who-are p {
       font-size: 1.2rem;
       line-height: 1.6;
   }
    
  .video-parent  {
    width: 95%;
    margin: 0 auto;
  }

  .services .text h4 {
    font-size: 30px !important;
  }

  .services .item-lnk {
    margin-top: 20px;
  }
  
  .clients-wrap .item a img {
      width: 40%;
  }
  
  .cntrl-btn button {
      margin-bottom: 10px;
  }

  .projects-wrap,
  .sectors-wrap {
    grid-template-columns: repeat(2, 1fr)
  }
  
  .projects .swiper-btn {
      top: 11.5%;
  }

  .projects .swiper-button-prev {
      right: 15px;
  }
  
  .projects .swiper-button-next {
      right: 75px;
  }

  .ceo-prnt {
    margin: 10px;
    width: 45%;
  } 

  .partners-wrap,
  .clients-wrap {
    grid-template-columns: repeat(2, 1fr);

  }

   .services-prnts .srvc-card .content {
      padding: 0 60px;
    }
    
    .sector-projects {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
    }
  
  .drp-slct {
      flex-basis: 25%;
  }
  
  .form-wrap .text-u + p {
       width: 75%;
   }

  footer .footer-logo img {
    width: 35%;
  }

  footer .footer-logo + p {
    width: 75%;
  }

  footer ul.footer-img li a img {
    width: 90px;
  }

  footer ul.footer-img {
    padding-left: 20px;
  }

} 

@media(max-width: 575px) {

  .value-header > .container {
    width: 85%;
    margin: 0 auto;
  }
  
  .value-header .logo {
      margin-left: -28px;
  }

  .value-header .collapse.navbar-collapse {
    width: 100%;
    left: 0;
    top: 60px;
  }

  .value-header .logo img {
    width: 35%;
  }

  .lang {
    right: 99px
  }

  .header-search {
    width: 35px;
    height: 35px;
    top: 7px;
  }

  .value-header.nav-scroll  .header-search {
    top: 23px;
  }

  .header-search > a > img {
    width: 20px;
  }

  .mob-menu {
    width: 35px;
    height: 35px;
    right: 60px;
    top: 7px;
  }

  .search-form {
    width: 95%;
    right: 10px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
  }
  
  .mega-menu-wrapper {
     padding: 30px 6px 30px 6px;
  }
  
  .mega-menu-wrapper .side-content p {
      width: 100%;
  }
  
  .hero-sec p {
      width: 85%;
   }

  .page-banner h1 {
    font-size: 45px;
    margin-bottom: 15px;
  }

  .page-banner .caption {
    padding: 130px 0 30px 0;
  }

  .mega-menu-wrapper h4 {
    font-size: 25px !important;
  }

  .hero-sec h1 {
    font-size: 30px !important;
    line-height: 1.2;
  }

  .hero-sec p {
     font-size: 23px;
  }
  
  .hero-sec .swiper-pagination {
      bottom: 32px;
  }
  
  .page-banner h1 {
      width: 95%;
  }

   h2,
  .section-head h2 {
    font-size: 25px;
    margin-bottom: 10px;
    letter-spacing: .01px;
  }

  .about .details h3 {
    font-size: 30px !important;
  }

  .about .details p {
    margin-top: 10px;
  }
  
  .who-are p {
       font-size: 1.1rem;
       line-height: 1.6;
   }
  
  .cmpny-nums .item {
      border-right: none;
  }
  
  .services-wrapper h2 {
      padding: 0 15px;
  }

  .services .service-title .text {
    width: 100%;
  }

  .services .text h4 {
    margin-top: -35px;
    font-size: 20px !important;
  }

  .services .item-lnk {
    width: 35px;
    height: 35px;
    font-size: 15px;
    margin-top: 10px;
  }
  
  .services-prnts .srvc-card .content {
      padding: 0 15px;
    }

    .ceo-prnt {
    width: 90%
    }

  .ceo-prnt p.desc {
    width: 90%;
  }

  .projects .item h4 {
    font-size: 25px !important;
  }
  
  .partners-wrap, .projects-wrap {
    margin-top: 23px;
    gap: 10px;
  }
  
  .drp-slct {
     width: 75%;
     margin: 0 auto;
  }

  .cntrl-btn {
    display: block;
    text-align: center;
  }

  .cntrl-btn button {
    margin-top: 10px;
  }

  .projects .swiper-btn {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }

  .projects .swiper-btn {
    width: 35px;
    height: 35px;
    font-size: 13px;
    top: 10%;
    right: 66px;
  }

  .projects .swiper-button-prev {
    right: 23px;
  }

  .video-parent {
    width: 85%;
  }

  .projects-wrap,
  .sectors-wrap,
  .partners-wrap,
  .clients-wrap {
    grid-template-columns: 1fr
  }
  
  .clnts-prtnrs .sec-head {
      padding-left: 27px;
  }
 
  .clnts-prtnrs .prtnrs-wrap {
    margin: 30px auto;
  }

  .clnts-prtnrs .rght {
    display: block;
    margin: 20px 0 0 0;
  }

  .clnts-prtnrs .rght img {
    display: block;
    margin: 0 auto;
  }
  
  .projects-parent .cntrls-prnt {
      flex-direction: column;
      gap: 20px
   }

  .prjct-det .pg-hed-logo {
    top: 20px;
    right: auto;
    left: 20px;
  }
  
   .sector-projects {
      grid-template-columns: 1fr;
   }
    
  .clients-wrap .item {
      padding: 70px;
  }
  
  
  .form-wrap textarea {
      border-radius: 20px;
  }
  
  .map-wrap {
    flex-direction: column;
  }

  .map-wrap .cmpny-info {
    border-radius: 16px;
  }

  .map-wrap iframe {
      width: 100%;
    margin-top: 30px;
    border-radius: 16px;
  }

  .search-result-wrapper .result-item {
    flex-direction: column;
    align-items: center;
  }

  .search-result-wrapper .result-item .cntnt {
    text-align: center;
  }

  .call-to-action > .cntainer > .row > .col-xl-6:nth-child(2) {
    justify-content: flex-start !important;
  }

  footer ul.footer-img {
    padding-left: 20px;
  }

  footer .cpy-val-img {
    justify-content: center;
  }

  footer .quick-links {
    display: none;
  }

  footer .lft-cntnt {
    justify-content: center;
  }

  footer .cpy-val-img p {
    text-align: center;
  }

}

@media(min-width: 1200px) and (max-width: 1366px) {
    
    .navbar-nav {
        flex-direction: row !important;
    }
    
    .header-search {
        width: 40px;
        height: 40px;
        right: 9.7%;
    }
    
    .search-form {
        right: 100px;
    }
    
}

@media(min-width: 1400px) and (max-width: 1599px) {
    
    .value-header .navbar-collapse {
        justify-content: flex-start !important;
    }
    
    .value-header .header-search {
        width:45px;
        height: 45px;
        right: 13.5%;
    }
    
}
