/* === -- 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 {
  width: 60px;
  height: 60px;
  font-size: 18px;
  color: #000;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white-color);
}

.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 {
  width: 22%;
  position: absolute;
  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 .side-content {
  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;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out .4s;
  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 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  inset: 0;
  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: 610px;
  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;
  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 .4s;
  overflow: hidden;
}

.projects .img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all ease .4s;
}
   
.projects .img .overlay {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  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);
   padding: 15px 80px 35px 25px; 
  position: absolute;
  bottom: -50px;
  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 .4s;
}

.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,
.sector-projects .item {
  position: relative;
  border-radius: 16px;
  border: 1px solid;
  margin: 10px 0;
  transition: all ease-in-out .4s;
}
.sector-projects .item {
    padding: 8px;
    border-color: #f5f5f530;
}
.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 {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  background: #f9f9f9c2;
  margin-bottom: 7px;
  padding: 1px 20px 1px 20px;
}

.partners-wrap .item > a span:nth-of-type(2) {
  color: #818181;
  text-align: center;
  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 img {
  height: 215px;
} 

.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);
}

.sector-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.projects-wrap .item .img,
.sector-projects .item .img {
  overflow: hidden;
  border-radius: 16px;
}

.projects-wrap .item img,
.sector-projects .item img {
  border-radius: 16px;
  overflow: hidden;
}

.sector-projects .project-name h5 a {
    color: var(--white-color);
}

.projects-wrap .item:hover .img img {
  transform: scale(1.1) rotate(2deg);
}

.projects-wrap .cntnt,
.sector-projects .cntnt {
  padding: 20px;
}

.projects-wrap .project-loc,
.sector-projects .project-loc {
  width: 48%;
  padding: 5px 10px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  border-radius: 16px;
  background-color: #f5f5f5;
}

.sector-projects .project-loc {
    color: var(--white-color);
    margin-left: -5px;
    background-color: #f5f5f530;
}

.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,
.sector-projects .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 {
  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 {
  font-size: 18px;
  font-weight: 500;
  color: var(--white-color);
}

.ceo-prnt p.desc {
  width: 85%;
  margin-top: 15px;
}

.ceo-prnt a.social {
  width: 45px;
  height: 45px;
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255, 255, 255);
  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 {
  display: flex;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
}

.cmpny-nums video {
  border-radius: 16px;
  transition: all ease .4s;
}

.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 {
  font-size: 90px;
  font-weight: 900;
  color: var(--white-color);
  position: relative;
  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 {
  color: #818181;
  font-size: 24px;
  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 .4s;
  overflow: hidden;
  transform: scale(.95);
}

.clients-wrap .item a {
  width: 100%;
  height: 100%;
  display: block;
}

.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 {
  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 {
  width: 532px;
  position: absolute;
  top: -50%;
  inset-inline-end: -6%;
  opacity:50%;
}

.call-to-action h2 {
  color: var(--white-color);
}

.call-to-action p {
  margin-top: 20px;
}

/* About Page */
.page-banner .caption {
  position: relative; 
  color: var(--white-color);
  padding: 160px 0 30px 0; 
}

.page-banner h1 {
  width: 60%;
  line-height: 1;
}

.page-banner .text {
  padding: 20px 10px 10px 0;
}

.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%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--gray-color);
  border-radius: 20px; 
}

.vision-mission .item .cont {
  padding: 15px; 
}

.vision-mission .item .cont .icon {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%; 
}

.vision-mission .icon img {
  width: 48px;
}

.vision-mission .cont .icon.invert img {
   filter: invert(1); 
   -webkit-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 {
  width: 300px; 
  height: 260px;
  border-radius: 8px;
  position: relative; 
  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.5s;
  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 {
  padding: 45px;
  position: absolute;
  right: -15px;
  bottom: -30px;
  opacity: 0.07;
}

.prtnrs-wrap .icon-side img {
  width: 130px;
}

.cntrls-prnt {
  display: flex; 
  justify-content: space-between;
}

.drp-slct {
  display: flex;
  flex-basis: 17%;
  align-items: center;
  position: relative;
}

.drp-slct select {
  width: 100%;
  font-size: 18px;
  position: relative;
  color: var(--dark-text);
  -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;
  transition: all ease .4s;
  border: 1px solid var(--p-light) !important;
  background-color: transparent;
}

.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 {
  object-fit: cover;
  border-radius: 16px;
}

.services-prnts .srvc-card {
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  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 {
  display: block;
  font-weight: 500;
  color: var(--main-color);
  text-decoration: underline;
}

.services-prnts .vctr img {
  width: 70px;
}

.services-prnts .btn-wrap {
  width: 225px;
  position: absolute;
  text-align: center;
  left: 50%;
  bottom: 0;
  padding: 25px 35px 19px;
  transform: translateX(-50%);
  border-radius: 20px 20px 0 0;
  background-color: var(--white-color);
}

.services-prnts .btn-wrap:before {
  width: 40px;
  height: 40px;
  position: absolute;
  content: "";
  bottom: 0;
  right: 100%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: 20px 20px 0 var(--white-color);
}

.services-prnts .btn-wrap:after {
  width: 40px;
  height: 40px;
  position: absolute;
  content: "";
  bottom: 0;
  left: 100%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: -20px 20px 0 var(--white-color);
}

.services-prnts .btn-wrap > a {
  font-size: 23px;
  perspective: 1000px;
}

.services-prnts .btn-wrap > a:before {
  width: 100%;
  height: 2px;
  position: absolute;
  content: "";
  bottom: 0px;
  inset-inline-start: 0;
  background-color: #8b8b8b;
  transition: all ease-in-out .4s;
}

.services-prnts .btn-wrap > a span {
  padding: 0;
  position: relative;
  display: inline-block;
  transition: transform .5s;
  transform-origin: 50% 0;
  transform-style: preserve-3d;
}

.services-prnts .btn-wrap > a > span:before {
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  content: attr(data-text);
  top: 100%;
  left: 0;
  transition: color .5s;
  transform: rotateX(-90deg);
  transform-origin: 50% 0;
}

.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;
  opacity: 66%;
  border-radius: 50px;
  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 {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  border: solid 1px var(--gray-color);
}

.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 {
  padding: 0 15px;
  color: var(--dark-text);
}

.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 .4s; 
}

.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 {
  padding: 20px;
  flex-basis: 43%;
  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 .4s;
  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 {
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  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 {
  width: 90%;
  height: 90%;
  display: block;
  position: absolute;
  content: '';
  left: 0;
  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,
footer .social-icons a img {
  color: var(--white-color);
  display: block;
  position: absolute;
  transition: all ease .3s;
  z-index: 2;
}

footer .social-icons a img {
  width: 45%;
  fill: var(--white-color);
}

footer .social-icons a i:first-child,
footer .social-icons a img:first-child {
  top: 50%;
  transform: translateY(-50%);
}

footer .social-icons a i:last-child,
footer .social-icons a img: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,
footer .social-icons a:hover img:first-child {
  top: -40%; 
}

footer .social-icons a:hover i:last-child,
footer .social-icons a:hover img:last-child {
  top: 50%;
  transition-delay: .2s;
  transform: translateY(-50%);
}

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 { 
  font-size: 18px;
  font-weight: 500;
  color: var(--dark-text);
  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;
  gap: 20px;
  padding: 40px 0 40px 40px;
  border-top: 1px solid rgb(0 0 0 / 8%);
  margin-top: 30px;
}

footer .quick-links li a {
  font-size: 17px;
  position: relative;
}

footer .quick-links li a:after {
  height: 100%;
  width: 1px;
  position: absolute;
  content: '';
  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;
}


/* Responsive  */
@media(min-width: 1200px) and (max-width: 1366) {
    
    .navbar-expand-lg .navbar-nav {
      width: 100%;
      flex-direction: row !important;
    }
}

@media(min-width: 1200px) {
   
    .mega-menu-wrapper {
      box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
    }
    
    .value-header .navbar-nav .nav-item:hover .mega-menu-wrapper {
        opacity: 1;
        visibility: visible;
    }
    
    .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;
   }
  
   .page-banner .text > p {
     width: 75%;
   }

}

@media(min-width: 576px) {
    
    .value-header {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    
    .value-header > .container {
        margin: 0;
    }
}

@media(max-width: 1199px) {
   
    video {
        width: 100%;
    }
    
    .value-header .navbar-nav .nav-link > .lnk-aftr {
        display: none;
    }

   .value-header .collapse.navbar-collapse {
        position: absolute;
        top: 80px;
        margin-bottom: 20px;
        border-radius: 24px;
        padding: 10px 10px 10px;
        background-color: var(--white-color);
        display: none;
        box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
        -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 {
        color: var(--blue-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .value-header .navbar-nav .nav-link:focus {
       color: var(--white-color);
    }

   .mega-menu-wrapper {
       width: 85%;
       top: 85px;
       opacity: 1;
       visibility: visible;
       margin: 10px auto;
       transition: none;
       position: static;
       background-color: #f9f9f9;
       inset: 0;
       display: none;
    }

   .mega-menu-wrapper .img {
       display: none;
    }

   .mob-menu {
      position: absolute;
      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 {*/
  /*  width: 100%;*/
  /*  flex-direction: column !important;*/
  /*}*/

  .navbar-expand-lg .navbar-collapse {
    display: none;
  }
  
} 

@media(min-width: 820px) and (max-width: 1199px) {
    .mob-menu {
        top: 12px;
    }
    
    .lang {
        top : 15px;
    }
}

@media(min-width: 576px) and (max-width: 1199px) {
    
    .value-header .collapse.navbar-collapse {
        width: 90%;
    }
    
    .mob-menu {
      width: 40px;
      height: 40px;
      /*top: 10px;*/
      right: 25px;
    }
    
    .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: 75px;
    }
    
    .header-search {
       width: 40px;
       height: 40px;
    }
    
    .header-search > a img {
        width: 20px;
    }

   .search-form {
     width: 40%;
     right: -65px;
    }

   .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(3, 1fr);
   }
  
   .partners-wrap {
      gap: 0 15px;
    }
   
    .partners-wrap .item {
       padding: 15px 40px;
    }

    .services-prnts .srvc-card .content {
      padding: 0 60px;
    }
  
    .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: 820px) {
    .page-banner .mimg {
        height: 230px;
    }
}

@media(max-width: 575px) {

  .value-header > .container {
    width: 85%;
    margin: 0 auto;
  }
  
  .value-header .collapse.navbar-collapse {
    width: 100%;
    left: 0;
    top: 66px;
  }

   .value-header .logo img {
     width: 35%;
   }


   .header-search > a > img {
      width: 20px;
   }

   .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;
    }

    .prjct-det .pg-hed-cntnt {
      bottom: 20px;
    }
  
    .prjct-det .pg-hed-cntnt .breadcrumbs {
      padding: 0 20px;
      margin-bottom: 10px;
      margin-left: -15px;
    }
  
   .prjct-det .pg-hed-cntnt h2 {
      font-size: 15px;
      margin-top: 13px;
    }
  
   .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;
    }
  
    .slider-wz-thums .swiper-slide {
      width: 100% !important;
    }

    .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(max-width: 575px) {
    
    .value-header .logo {
      margin-left: -28px;
    }
    
    .lang {
      right: 102px;
      top: 8px;
    }
    
    .header-search {
        width: 35px;
        height: 35px;
        position:absolute;
        top: 12px;
        right: 66px;
   }
   
    .mob-menu {
     width: 35px;
     height: 35px;
     right: 62px;

    }
    
}


@media(min-width: 520px) and (max-width: 575px) {
    
    /*.value-header .logo {*/
    /* margin-left: -28px;*/
    /*}*/
    
    /*.lang {*/
    /*  right: 102px*/
    /*}*/

   .header-search {
    /*width: 35px;*/
    /*height: 35px;*/
    /*position:absolute;*/
    top: 12px;
    right: 66px;
   }

   .value-header.nav-scroll .header-search {
     top: 26px;
    }
    
     .mob-menu {
     /*width: 35px;*/
     /*height: 35px;*/
     /*right: 62px;*/
     top: 12px;
    }

}

@media(max-width: 519px) {
    
    .value-header .logo {
     margin-top: 10px;
    }
    
     .lang {
      /*right: 102px;*/
      top: 14px;
    }

   .header-search {
    /*width: 35px;*/
    /*height: 35px;*/
    /*position:absolute;*/
    top: 13px;
    right: 50px;
   }

   .value-header.nav-scroll .header-search {
     top: 28px;
    }
    
    .mob-menu {
     /*width: 35px;*/
     /*height: 35px;*/
     /*right: 62px;*/
     top: 13px;
    }

}