@import url("https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@300;400;500;600;700&display=swap");
:root {
  --mainColor: #b49b62;
  --mainColor20: #ed1b2433;
  --mainColor05: #ed1b240d;
  --whiteColor: #ffffff;
  --darkColor: #2c4b68;
  --lightGrayColor: #d6d6d6;
  --grayColor: #777;
  --transition: 0.3s ease-in-out;
  --shadow: 0px 2px 4px #c1c1c1;
  --BigShadow: 0 16px 32px 0 #071c1f1a;
}

@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url(../webfonts/Roboto-Regular.ttf);
}
@font-face {
  font-family: RobotoBlack;
  font-display: swap;
  src: url(../webfonts/Roboto-Black.ttf);
}
* {
  font-family: "Noto Kufi Arabic", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  direction: rtl;
  outline: none;
  scroll-behavior: smooth;
}

@keyframes upDownAnimation {
  0%, 100% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(4px);
  }
}
::-webkit-scrollbar {
  width: 4px;
  border-radius: 0px !important;
}

::-webkit-scrollbar-track {
  border-radius: 0px !important;
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background-color: #bebebe;
  outline: none;
  border-radius: 20px !important;
}

:target {
  scroll-margin-top: 50px;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: none;
  color: var(--mainColor);
}

button {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.row {
  margin: 0px;
}

body {
  overflow-x: hidden;
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

@media (max-width: 767px) {
  .container,
  .container-fluid {
    padding: 0px 8px;
  }
}
video,
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.btn {
  font-size: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.btn i {
  font-size: 16px;
}

.btn:focus {
  box-shadow: none;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  border-color: transparent;
}

input {
  accent-color: var(--mainColor) !important;
}

.odometer-inside {
  direction: ltr !important;
}

.fancybox__container {
  z-index: 1999;
}

::-moz-placeholder {
  font-size: 12px;
  color: #bababa !important;
  font-weight: normal !important;
}

::placeholder {
  font-size: 12px;
  color: #bababa !important;
  font-weight: normal !important;
}

::-moz-selection {
  background-color: var(--mainColor);
}

::selection {
  background-color: var(--mainColor);
}

[type=email],
[type=number],
[type=tel],
[type=url] {
  direction: ltr;
}

.fancybox__track,
.fancybox__content,
.carousel__track {
  direction: ltr !important;
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}
.navbar-toggler .navbar-toggler-icon {
  width: 30px;
  height: 30px;
}

button {
  border: none;
  background-color: transparent;
}

.form-control {
  min-height: 54px;
}
.form-control:focus {
  box-shadow: none;
}

.tooltip {
  --bs-tooltip-bg: var(--textlightGrayr);
}
.tooltip .tooltip-inner {
  font-size: 10px;
  padding: 8px 16px !important;
}

content {
  min-height: calc(100dvh - 313px);
  display: flex;
  flex-direction: column;
}

.preloader {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preloader .preloaderImg {
  width: 200px;
  height: 200px;
  -webkit-mask-image: url("../img/logoV.png");
          mask-image: url("../img/logoV.png");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: relative;
}
.preloader .preloaderImg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 200px;
  z-index: 2;
  background-color: var(--mainColor);
  transform: translateY(100%);
  animation: slide-up 1.5s forwards;
}
.preloader .preloaderImg::before {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  background-image: url("../img/logoV.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(1) opacity(0.5);
}
@keyframes slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}

.lazyDiv {
  position: relative;
  overflow: hidden;
}
.lazyDiv::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: var(--whiteColor);
  transition: transform 1.2s 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(0%);
}
.lazyDiv.oppositeDir::after {
  right: unset;
  left: 0;
}
.lazyDiv .lazy {
  position: relative;
  z-index: 1;
  width: 100%;
}
.lazyDiv.loaded::after {
  transform: translateX(100%);
}
.lazyDiv.loaded.oppositeDir::after {
  transform: translateX(-100%);
}
.lazyDiv.loaded.down::after {
  transform: translateY(100%);
}
.lazyDiv.loaded.up::after {
  transform: translateY(-100%);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 16px;
  z-index: 999;
}
header .navbar {
  width: min(100% - 32px, 1320px);
  margin: auto;
  padding: 10px 24px;
  justify-content: space-between;
  border: 1px solid #e8e8e8;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.8078431373);
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0.602187px 0.602187px -1.25px, rgba(0, 0, 0, 0.043) 0px 2.28853px 2.28853px -2.5px, rgba(0, 0, 0, 0.016) 0px 10px 10px -3.75px;
  opacity: 1;
}
header .navbar .navbar-brand img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .navbar .navbar-collapse {
  flex-grow: unset;
}
@media screen and (max-width: 768px) {
  header .navbar .navbar-nav {
    padding: 16px 0;
  }
}
header .navbar .navbar-nav .nav-link {
  text-transform: capitalize;
  color: var(--darkColor);
  font-size: 16px;
  padding: 8px;
  position: relative;
}
header .navbar .navbar-nav .nav-link::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--mainColor);
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--transition);
}
header .navbar .navbar-nav .nav-link.active::after, header .navbar .navbar-nav .nav-link:hover::after {
  width: 80%;
}
@media (max-width: 576px) {
  header .navbar .navbar-nav .nav-link.active::after, header .navbar .navbar-nav .nav-link:hover::after {
    width: 100%;
  }
}
/* Banner Section Styles */
.bannerSection {
    position: relative;
    background: url('../img/x.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    margin-bottom: 50px;
    z-index: 1;
}

.bannerSection .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.bannerSection .bannerContent {
    position: relative;
    z-index: 1;
    color: #fff;
}

.bannerSection .title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.bannerSection .description {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
}

.hearoSection {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100dvh;
}
.hearoSection .videoDiv {
  position: absolute;
  z-index: 0;
  height: 100dvh;
  overflow: hidden;
  width: 100%;
}
.hearoSection .videoDiv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(44, 75, 104, 0.7);
}
.hearoSection .videoDiv video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.4);
}
.hearoSection .inner {
  position: relative;
  z-index: 2;
  width: min(100% - 16px, 700px);
  height: 100%;
  margin: auto;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.hearoSection .inner .title {
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  font-size: 46px;
  line-height: 58px;
  margin-top: 70px;
}
@media (max-width: 576px) {
  .hearoSection .inner .title {
    font-size: 30px;
    line-height: 48px;
  }
}
.hearoSection .inner .title span {
  display: inline-flex;
  flex-direction: column;
  color: var(--mainColor);
  text-shadow: -2px 2px 0px var(--whiteColor);
}
.hearoSection .inner .hint {
  color: var(--whiteColor);
  font-size: 12px;
  line-height: 24px;
}
.hearoSection .inner .link {
  background: var(--mainColor);
  color: var(--whiteColor);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hearoSection .inner .link i {
  animation: upDownAnimation 4s ease-in-out infinite;
}
.hearoSection .inner .link::after {
  content: "";
  background: var(--whiteColor);
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: all 0.5s;
}
.hearoSection .inner .link:hover {
  color: black;
}
.hearoSection .inner .link:hover:after {
  transform: skewX(-45deg) scale(1, 1);
  transition: all 0.5s;
}

.aboutTitle {
  font-weight: bold;
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: column;
  color: var(--darkColor);
  font-size: 32px;
  line-height: 1.6;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 576px) {
  .aboutTitle {
    font-size: 28px;
  }
}

.aboutPage {
  padding: 64px 0;
  background-color: var(--whiteColor);
  position: relative;
  z-index: 2;
  top: 0;
}
.aboutPage p {
  color: #323639 !important;
}
.aboutPage .row:nth-child(2n) {
  flex-direction: row-reverse;
}
.aboutPage .info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 16px;
}
@media (max-width: 768px) {
  .aboutPage .info {
    padding: 48px 16px;
  }
}
.aboutPage .info .des {
  color: var(--darkColor);
}
.aboutPage .info ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.aboutPage .info ul li {
  padding: 4px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aboutPage .info ul li::before {
  content: "";
  background-image: url(../img/icons/check.svg);
  width: 16px;
  height: 16px;
  background-size: contain;
}
.aboutPage .lazyImg {
  position: relative;
  height: 100%;
}
.aboutPage .lazyImg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  border: 10px solid var(--lightGrayColor);
  width: 100%;
  height: 90%;
  transform: translateY(-50%);
}
.aboutPage .lazyImg .lazyDiv {
  height: 100%;
  margin: auto;
}
.aboutPage .lazyImg .lazyDiv .simpleParallax {
  height: 100%;
}
.aboutPage .lazyImg .lazyDiv img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: 85%;
}
.aboutPage .statistic {
  padding: 8px 0;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
.aboutPage .statistic .counterUp {
  font-weight: bold;
  font-size: 100px;
  background: rgba(167, 169, 172, 0.062745098);
  background-size: contain;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-stroke: 1px #a7a9ac;
  font-family: "Manrope Alt", Sans-serif;
}
@media (max-width: 768px) {
  .aboutPage .statistic .counterUp {
    font-size: 70px;
  }
}
.aboutPage .statistic h6 {
  font-weight: bold;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  max-height: 100px;
  white-space: nowrap;
  text-align: center;
}

.socialMedia {
  display: flex;
  justify-content: end;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: auto;
  padding: 8px;
}
.socialMedia a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grayColor);
  color: var(--grayColor);
  border-radius: 100px;
  transition: var(--transition);
}
.socialMedia a img {
  transition: var(--transition);
  filter: contrast(0.4);
}
.socialMedia a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border: 1px solid var(--mainColor);
  transform: translateY(-4px);
  box-shadow: 0px 4px rgba(0, 0, 0, 0.1882352941);
}
.socialMedia a:hover img {
  filter: contrast(1) brightness(0) invert(1);
}

.partners {
  background-color: var(--mainColor);
  position: relative;
  z-index: 2;
  padding: 100px 0 20px;
  background-image: linear-gradient(60deg, rgba(167, 169, 172, 0.1764705882), rgba(167, 169, 172, 0.3960784314));
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
.partners .sectionTitle {
  flex-direction: column;
  padding-bottom: 10px;
}
.partners .top {
  margin-bottom: 40px;
  text-align: center;
}
.partners .top .title {
  font-weight: bold;
  color: var(--whiteColor);
  margin-bottom: 16px;
  font-size: 36px !important;
}
@media (max-width: 768px) {
  .partners .top .title {
    font-size: 24px !important;
  }
}
.partners .top .hint {
  color: var(--whiteColor);
  width: min(100% - 40px, 800px);
  margin: auto;
}
.partners .referenceLogo {
  height: 150px;
  padding: 10px 20px;
  position: relative;
}
.partners .referenceLogo::after {
  content: "";
  display: flex;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background-color: var(--whiteColor);
  transition: var(--transition);
  z-index: -1;
}
.partners .referenceLogo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.partners .referenceLogo:hover::after {
  content: "";
  height: 100%;
}
.partners .referenceLogo:hover img {
  filter: none;
}
.partners .swiperControl {
  position: relative;
  padding-top: 60px;
}
.partners .swiperControl .swiper-pagination {
  justify-content: center;
}

.swiperControl {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.swiperControl .swiperBtns {
  display: flex;
  gap: 8px;
}
.swiperControl .swiperBtns .swiper-button-next,
.swiperControl .swiperBtns .swiper-button-prev {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
  margin: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  width: 40px;
  height: 40px;
  border: 1px solid var(--whiteColor);
  border-radius: 100%;
  transition: var(--transition);
  opacity: 0.8;
}
.swiperControl .swiperBtns .swiper-button-next::after,
.swiperControl .swiperBtns .swiper-button-prev::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-image: url("../img/icons/left.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: var(--transition);
  filter: invert(1);
}
@media (max-width: 768px) {
  .swiperControl .swiperBtns .swiper-button-next::after,
  .swiperControl .swiperBtns .swiper-button-prev::after {
    font-size: 24px;
  }
}
.swiperControl .swiperBtns .swiper-button-next:hover,
.swiperControl .swiperBtns .swiper-button-prev:hover {
  opacity: 1;
  background-color: white;
  color: var(--mainColor);
}
.swiperControl .swiperBtns .swiper-button-next:hover::after,
.swiperControl .swiperBtns .swiper-button-prev:hover::after {
  filter: invert(0);
}
.swiperControl .swiperBtns .swiper-button-next.swiper-button-disabled,
.swiperControl .swiperBtns .swiper-button-prev.swiper-button-disabled {
  opacity: 0.2;
}
.swiperControl .swiperBtns .swiper-button-next {
  left: unset;
}
.swiperControl .swiperBtns .swiper-button-next::after {
  transform: scaleX(-1);
}
.swiperControl .swiper-pagination {
  position: relative;
  min-height: 16px;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
  margin: unset;
  display: flex;
  justify-content: end;
  align-items: center;
}
.swiperControl .swiper-pagination .swiper-pagination-bullet {
  background-color: white;
  transition: var(--transition);
  border-radius: 16px;
}
.swiperControl .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
}

footer {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  color: var(--darkColor);
}
footer .logo {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
footer .logo img {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  max-height: 142px;
}
footer .title {
  font-weight: bold;
}
footer .part {
  display: flex;
  gap: 12px;
  align-items: center;
}
footer .part img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  max-height: 40px;
  filter: brightness(0) invert(1);
}
footer .link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
footer .link path,
footer .link svg {
  fill: var(--darkColor);
}
footer .link:last-child {
  margin-bottom: 0;
}
footer .link .icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--mainColor);
}
footer .link .icon svg {
  width: 20px;
  height: 20px;
}
footer .link p {
  display: flex;
  flex-direction: column;
  gap: 0px;
  color: var(--darkColor);
  transition: var(--transition);
}
footer .link p span {
  color: #323639;
}
footer .link:hover p {
  color: var(--mainColor);
}
footer .socialMedia a img {
  filter: brightness(0) invert(1) contrast(0.8);
}
footer .border-top {
  --bs-border-color: #4e4e4e;
}

.Products {
  padding: 140px 0 70px;
}
.Products .inner {
  display: flex;
  gap: 24px;
}
@media (max-width: 1200px) {
  .Products .inner {
    flex-direction: column;
  }
}
.Products .inner .nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-wrap: wrap;
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 8px;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 100px;
}
@media (max-width: 1200px) {
  .Products .inner .nav {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-bottom: 12px;
    position: relative;
    top: unset;
  }
}
.Products .inner .nav .nav-link {
  border-radius: 8px;
  padding: 12px 24px;
  padding-left: 12px;
  color: var(--darkColor);
  text-transform: capitalize;
  position: relative;
  isolation: isolate;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 4px;
  min-width: 200px;
  background-color: #eee;
}
@media (max-width: 1200px) {
  .Products .inner .nav .nav-link {
    flex: 1;
    white-space: nowrap;
    align-items: center;
    padding-left: 24px;
  }
}
.Products .inner .nav .nav-link::after {
  content: "";
  background-color: var(--mainColor);
  z-index: -2;
  width: 16px;
  height: 16px;
  position: absolute;
  left: -16px;
  bottom: 50%;
  transform: translate(100%, 50%) rotate(45deg) scale(0.1);
  display: flex;
  transition: var(--transition);
  border-radius: 4px;
  opacity: 0;
}
@media (max-width: 1200px) {
  .Products .inner .nav .nav-link::after {
    right: 50%;
    bottom: 0%;
    transform: translate(100%, 50%) rotate(45deg) scale(0.1);
  }
}
.Products .inner .nav .nav-link.active {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.Products .inner .nav .nav-link.active::after {
  transform: translate(50%, 50%) rotate(45deg);
  opacity: 1;
}
.Products .inner .tab-content {
  flex: 1;
  padding: 12px;
}
.Products .inner .tab-content .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
}
.Products .inner .tab-content .gallery a {
  flex: 1 250px;
  display: flex;
  height: 300px;
  border-radius: 4px;
}
.Products .inner .tab-content .gallery a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.Products .inner .tab-content .gallery a:nth-child(4n) {
  min-width: 40vw;
}
@media (max-width: 768px) {
  .Products .inner .tab-content .gallery a {
    height: 200px;
    min-width: 30vw;
  }
  .Products .inner .tab-content .gallery a:nth-child(4n) {
    min-width: 60vw;
  }
}
@media (max-width: 768px) {
  .Products .inner .tab-content .gallery {
    gap: 4px;
  }
}
.Products .inner .tab-content .Various {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-top: 20px;
}
.Products .inner .tab-content .Various a {
  flex: 1 100px;
  display: flex;
  height: 100px;
  border-radius: 2px;
  max-width: 150px;
}
.Products .inner .tab-content .Various a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}
.Products .inner .tab-content .table {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin: 20px 0;
}
.Products .inner .tab-content .table thead {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.Products .inner .tab-content .table > :not(caption) > * > * {
  padding: 12px;
}

.projectsSlider {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
}
.projectsSlider .projectsSliderContainer {
  width: 100%;
  height: 100%;
}
.projectsSlider .projectsSliderContainer .swiper-slide {
  position: relative;
  display: flex;
  align-items: end;
  width: 100%;
  background-color: var(--darkColor);
}
@media (max-width: 1200px) {
  .projectsSlider .projectsSliderContainer .swiper-slide {
    padding-bottom: 80px;
  }
}
.projectsSlider .projectsSliderContainer .swiper-slide video {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 50vh;
  z-index: 1;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.35);
}
.projectsSlider .projectsSliderContainer .swiper-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.projectsSlider .projectsSliderContainer .swiper-slide::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(31, 31, 31, 0), rgba(31, 31, 31, 0.5568627451) 75%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: 0.3s ease-in-out;
}
.projectsSlider .projectsSliderContainer .swiper-slide .info {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px;
  padding-bottom: 60px;
}
@media (max-width: 1200px) {
  .projectsSlider .projectsSliderContainer .swiper-slide .info {
    padding: 12px;
  }
}
.projectsSlider .projectsSliderContainer .swiper-slide .info .sliderTitle {
  color: var(--whiteColor);
  font-weight: bold;
  font-size: 45px !important;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .projectsSlider .projectsSliderContainer .swiper-slide .info .sliderTitle {
    font-size: 32px !important;
  }
}
.projectsSlider .projectsSliderContainer .swiper-slide .info .hint {
  color: var(--whiteColor);
}
@media (max-width: 768px) {
  .projectsSlider .projectsSliderContainer .swiper-slide .info .hint {
    font-size: 12px !important;
  }
}
.projectsSlider .projectsSliderContainer .swiper-slide .info .link {
  margin-top: 10px;
  text-transform: uppercase;
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
  align-items: baseline;
  color: var(--lightGrayColor);
}
.projectsSlider .projectsSliderContainer .swiper-slide .info .link:hover {
  color: var(--whiteColor);
}
.projectsSlider .swiperControl {
  padding: 0 20px 10px;
}
.projectsSlider .swiper-slide-active .sliderTitle {
  animation: fadeInUp 1s 0s both;
}
.projectsSlider .swiper-slide-active .hint {
  animation: fadeInUp 1s 0.75s both;
}
.projectsSlider .swiper-slide-active a {
  animation: fadeInUp 1s 1.5s both;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.projects {
  padding: 140px 0 70px;
}
.projects .project {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  margin-bottom: 20px;
}
.projects .project img {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.projects .project .data {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.projects .project .title {
  color: var(--darkColor);
  transition: var(--transition);
  font-weight: bold;
}
.projects .project .description {
  color: var(--grayColor);
}
.projects .project:hover {
  transform: translateY(-5px);
}
.projects .project:hover .title {
  color: var(--mainColor);
}

.projectDetails {
  padding: 140px 0 70px;
}
.projectDetails .project {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  padding-bottom: 48px;
}
.projectDetails .project img {
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.projectDetails .project .title {
  color: var(--darkColor);
  transition: var(--transition);
  font-weight: bold;
}
.projectDetails .project .description {
  color: #777;
}
.projectDetails .Moreprojects {
  display: flex;
  flex-direction: column;
  padding: 16px;
  height: 100%;
  gap: 32px;
}
.projectDetails .Moreprojects .headTitle {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 30px;
  position: relative;
}
.projectDetails .Moreprojects .headTitle::after {
  content: "";
  width: 30%;
  background-color: var(--mainColor);
  height: 2px;
  display: flex;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .projectDetails .Moreprojects .headTitle {
    font-size: 22px;
  }
}
.projectDetails .Moreprojects .project {
  display: flex;
  gap: 12px;
  height: -moz-fit-content;
  height: fit-content;
  flex-direction: row;
  padding-bottom: 0px;
  align-items: center;
  padding: 0;
}
.projectDetails .Moreprojects .project .data {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.projectDetails .Moreprojects .project img {
  width: 100px;
  height: 100px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.contactUs {
    background-color: var(--whiteColor);
    padding: 160px 0 0;
    position: relative;
    z-index: 3;
}
.contactUs .title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 50px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .contactUs .title {
    font-size: 40px;
  }
}
.contactUs .info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.contactUs .info .link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.contactUs .info .link path,
.contactUs .info .link svg {
  fill: var(--darkColor);
}
.contactUs .info .link:last-child {
  margin-bottom: 0;
}
.contactUs .info .link .icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--darkColor);
}
.contactUs .info .link .icon svg {
  width: 20px;
  height: 20px;
}
.contactUs .info .link p {
  display: flex;
  flex-direction: column;
  gap: 0px;
  color: var(--darkColor);
  transition: var(--transition);
}
.contactUs .info .link p span {
  color: var(--grayColor);
}
.contactUs .info .link:hover p {
  color: var(--mainColor);
}
.contactUs form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: end;
}
.contactUs form .form-control {
  border: none;
  background: #eee;
  border-radius: 0;
  color: var(--darkColor);
  min-height: 64px;
  padding: 16px;
  direction: rtl;
}
.contactUs form .btn {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 16px 32px;
  background-color: var(--darkColor);
  color: var(--whiteColor);
  border-radius: 0;
  transition: var(--transition);
  font-size: 16px;
  text-transform: capitalize;
}
.contactUs form .btn:hover {
  background: var(--mainColor);
  gap: 16px;
}
.contactUs .map {
background-color: var(--whiteColor);
  width: 100%;
  height: 400px;
  padding-top: 40px;
}
.contactUs .map iframe {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */
