@charset "UTF-8";
:root {
  --mainColor: #154371;
  --mainColor10: #e8f2fb;
  --mainColor30: #bbd7f2;
  --secondColor: #670e36;
  --secondColor10: #fce6f0;
  --secondColor30: #f5b5d2;
  --whiteColor: #ffffff;
  --darkColor: #1f1f1f;
  --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: IBMPlexSansArabic;
  font-display: swap;
  src: url(../webfonts/IBMPlexSansArabic-Regular.ttf);
}
* {
  font-family: "IBMPlexSansArabic", Sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  direction: ltr;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
  height: 6px;
  border-radius: 0px !important;
}

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

::-webkit-scrollbar-thumb {
  background-color: #424242;
  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;
  line-height: 1.5;
}

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

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

.select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  min-height: 54px;
  background-color: #fdfdfd;
  border-radius: 4px;
  padding: 0 10px;
}

.select2 {
  min-width: 100px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 1px;
  left: unset;
  top: 50%;
  transform: translateY(-50%);
}

span.select2.select2-container.select2-container--default {
  width: 100% !important;
}

.select2-results__option--selectable {
  border-radius: 0px;
  margin-bottom: 2px;
  padding: 12px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--mainColor) !important;
  color: var(--whiteColor) !important;
}

.select2-dropdown {
  border-radius: 4px;
  box-shadow: var(--BigShadow) !important;
  border-color: transparent;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0px;
}

.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;
}

.dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding-right: 24px;
}
.dropdown .dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  border: none;
  vertical-align: middle;
  font-size: 12px;
  position: absolute;
  right: 8px;
  top: 55%;
  transform: translateY(-50%);
  color: var(--grayColor);
}
.dropdown .dropdown-toggle i {
  font-size: 14px;
  color: var(--mainColor);
}
.dropdown .dropdown-item {
  border-radius: 8px;
  padding: 8px 12px;
}
.dropdown .dropdown-item.active, .dropdown .dropdown-item:active {
  background-color: var(--mainColor);
}
.dropdown .dropdown-menu {
  animation: fadeIn 0.3s;
  background-color: var(--whiteColor);
  border: none;
  padding: 8px;
  border: 2px solid var(--mainColor30);
  z-index: 1022;
  flex-direction: column;
  gap: 4px;
  width: auto;
  min-width: 100px;
  transform: unset !important;
}
.dropdown .dropdown-menu .dropdown-item {
  font-size: 13px;
}
.dropdown .dropdown-menu.show {
  top: calc(100% + 10px) !important;
  display: flex;
  left: unset;
  right: 0;
}
.dropdown .dropdown-menu::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--whiteColor);
  position: absolute;
  top: -8px;
  right: 24px;
  transform: rotate(45deg);
  border-radius: 2px;
  z-index: -2;
  border: 2px solid var(--mainColor30);
}
.dropdown .dropdown-menu::after {
  content: "";
  width: calc(100% - 4px);
  height: 24px;
  background-color: var(--whiteColor);
  position: absolute;
  top: 0;
  z-index: -1;
  right: 2px;
  border-radius: 4px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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 {
  display: flex;
  min-height: calc(100vh - 80px);
  flex-direction: column;
}

.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%);
}

.preloader {
  background-color: var(--secondColor);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1111;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preloader .preloaderImg {
  background-color: #8a2150;
  width: 80px;
  height: 80px;
  -webkit-mask-image: url("../img/fav.svg");
          mask-image: url("../img/fav.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.preloader .preloaderImg::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 90px;
  height: 90px;
  z-index: 2;
  background-color: var(--whiteColor);
  transform: translate(50%, -50%);
  animation: slide-up 1.5s forwards;
}
@keyframes slide-up {
  from {
    transform: translate(50%, 50%);
  }
  to {
    transform: translate(50%, -50%);
  }
}

.animatedLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mainColor);
  transition: var(--transition);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  background: none;
  isolation: isolate;
}
.animatedLink i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: width 0.3s ease-in-out;
}
.animatedLink i span {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: -1;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid var(--mainColor);
  border-radius: 100px;
  transition: var(--transition);
}
.animatedLink:hover {
  padding: 0 20px;
  color: var(--whiteColor);
}
.animatedLink:hover i {
  width: 20px;
}
.animatedLink:hover i span {
  width: 100%;
  border: 1px solid var(--secondColor);
  background-color: var(--secondColor);
}
.animatedLink.white {
  color: var(--whiteColor);
}
.animatedLink.white i span {
  border: 1px solid var(--whiteColor);
}
.animatedLink.white:hover i span {
  border: 1px solid var(--secondColor);
  background-color: var(--secondColor);
}

header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1024;
  padding: 8px;
  transition: 0.3s ease-in-out;
  background-color: transparent;
}
header nav {
  width: min(100% - 20px, 1320px);
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 16px 0;
  gap: 8px;
}
header nav .logo {
  margin: auto 0;
  display: flex;
}
header nav .logo img {
  height: 60px;
  transition: var(--transition);
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  filter: brightness(0) invert(1);
}
@media (max-width: 576px) {
  header nav .logo img {
    height: 50px;
  }
}
header nav .navMenu {
  display: flex;
  width: 100%;
  justify-content: end;
  gap: 6px;
  transition: var(--transition);
  align-items: center;
}
header nav .navMenu .navLink {
  position: relative;
  isolation: isolate;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  color: var(--whiteColor);
  border-radius: 16px;
  min-width: 72px;
  justify-content: center;
  text-transform: capitalize;
  font-weight: bold;
}
header nav .navMenu .navLink::after {
  content: "";
  width: 0px;
  height: 2px;
  background-color: gold;
  position: absolute;
  bottom: 25%;
  left: 25%;
  z-index: -1;
  transition: var(--transition);
  transform: skewX(0deg);
}
header nav .navMenu .navLink.active::after, header nav .navMenu .navLink:hover::after {
  width: 50%;
  animation: skew 0.4s 0.2s forwards;
}
@keyframes skew {
  20% {
    transform: skewX(0deg);
  }
  100% {
    transform: skewX(60deg);
  }
}
header nav .navMenu .animatedLink {
  color: var(--whiteColor);
  font-weight: bold;
}
header nav .navMenu .animatedLink i span {
  border-color: var(--whiteColor);
}
header nav .navMenu .animatedLink:hover {
  color: var(--whiteColor);
  font-weight: bold;
}
header nav .navMenu .animatedLink:hover i span {
  border-color: var(--secondColor);
}
@media (max-width: 992px) {
  header nav .navMenu {
    position: fixed;
    z-index: -1;
    right: -100%;
    bottom: 0px;
    width: 100%;
    height: 100vh;
    padding: 60px 0;
    flex-direction: column;
    justify-content: center;
    background-color: var(--secondColor);
    align-items: center;
  }
  header nav .navMenu .navLink {
    text-align: center;
    justify-content: center;
    font-weight: normal;
  }
}
header nav .navMenu.active {
  right: 0;
}
header nav .navBtn {
  margin: auto 0;
  position: relative;
  min-width: 24px;
  height: 24px;
  padding: 5px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}
header nav .navBtn span {
  position: absolute;
  right: 0;
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--whiteColor);
  margin: 4px 0;
  transition: var(--transition);
}
header nav .navBtn span:first-child {
  top: 0;
}
header nav .navBtn span:nth-child(2) {
  width: 10px;
  top: 7px;
}
header nav .navBtn span:nth-child(3) {
  width: 16px;
  bottom: 0;
}
header nav .navBtn:not(.active):hover span:first-child {
  width: 16px;
}
header nav .navBtn:not(.active):hover span:nth-child(2) {
  width: 20px;
}
header nav .navBtn.active span:first-child {
  transform: rotate(45deg);
  top: 8px;
  width: 20px;
}
header nav .navBtn.active span:nth-child(2) {
  width: 0;
  opacity: 0;
}
header nav .navBtn.active span:last-child {
  transform: rotate(-45deg);
  top: 8px;
  width: 20px;
}
@media (min-width: 992px) {
  header nav .navBtn {
    display: none;
  }
}

.headerAnimate {
  box-shadow: var(--BigShadow);
  padding: 0px;
  background: var(--whiteColor);
}
@media (max-width: 992px) {
  .headerAnimate nav .navMenu {
    background-color: var(--whiteColor);
  }
}
.headerAnimate nav .navMenu .navLink {
  color: var(--darkColor);
}
.headerAnimate nav .navMenu .animatedLink {
  color: var(--darkColor);
  font-weight: bold;
}
.headerAnimate nav .navMenu .animatedLink i span {
  border-color: var(--darkColor);
}
.headerAnimate nav .navBtn span {
  background-color: var(--secondColor);
}
.headerAnimate .logo img {
  height: 50px;
  filter: none;
}
@media (max-width: 576px) {
  .headerAnimate .logo img {
    height: 40px;
  }
}

.mainSlider {
  position: relative;
  overflow: hidden;
}
.mainSlider .mainSliderContainer {
  width: 100%;
  height: 100%;
  padding-bottom: 0px;
}
.mainSlider .mainSliderContainer .swiper-slide {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  height: 100vh;
  min-height: 500px;
  isolation: isolate;
  padding-left: 10vw;
}
.mainSlider .mainSliderContainer .swiper-slide::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(103, 14, 54, 0.4549019608);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: 0.3s ease-in-out;
}
.mainSlider .mainSliderContainer .swiper-slide .info {
  width: min(100% - 40px, 600px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mainSlider .mainSliderContainer .swiper-slide .info .sliderTitle {
  color: #fff;
  font-weight: bold;
  font-size: 45px !important;
}
@media (max-width: 768px) {
  .mainSlider .mainSliderContainer .swiper-slide .info .sliderTitle {
    font-size: 32px !important;
  }
}
.mainSlider .mainSliderContainer .swiper-slide .info .hint {
  color: #fff;
}
.mainSlider .mainSliderContainer .swiper-slide .info a {
  margin-top: 30px;
}
.mainSlider .swiper-slide-active .sliderTitle {
  animation: fadeInUp 1s 0.75s both;
}
.mainSlider .swiper-slide-active .hint {
  animation: fadeInUp 1s 0s both;
}
.mainSlider .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);
  }
}
.mainSlider .swiperControl {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.mainSlider .swiperControl .swiperBtns {
  display: flex;
  gap: 8px;
}
.mainSlider .swiperControl .swiperBtns .swiper-button-next,
.mainSlider .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;
}
.mainSlider .swiperControl .swiperBtns .swiper-button-next::after,
.mainSlider .swiperControl .swiperBtns .swiper-button-prev::after {
  font-size: 32px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 200;
}
@media (max-width: 768px) {
  .mainSlider .swiperControl .swiperBtns .swiper-button-next::after,
  .mainSlider .swiperControl .swiperBtns .swiper-button-prev::after {
    font-size: 24px;
  }
}
.mainSlider .swiperControl .swiperBtns .swiper-button-next:hover,
.mainSlider .swiperControl .swiperBtns .swiper-button-prev:hover {
  opacity: 1;
  background-color: white;
  color: var(--secondColor);
}
.mainSlider .swiperControl .swiperBtns .swiper-button-next {
  left: unset;
}
.mainSlider .swiperControl .swiperBtns .swiper-button-next::after {
  content: "\f105" !important;
}
.mainSlider .swiperControl .swiperBtns .swiper-button-prev::after {
  content: "\f105" !important;
  transform: scaleX(-1);
}
.mainSlider .swiperControl .swiper-pagination {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
  margin: unset;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mainSlider .swiperControl .swiper-pagination .swiper-pagination-bullet {
  background-color: white;
  transition: var(--transition);
  border-radius: 16px;
}
.mainSlider .swiperControl .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
}

.sectionTitle {
  text-transform: uppercase;
  color: var(--secondColor);
  margin-bottom: -8px;
  font-style: italic;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(100% - 100px, 500px);
}
.sectionTitle::after {
  content: "";
  flex: 1;
  height: 2px;
  display: flex;
  background-color: gold;
  transition: var(--transition);
  transform: skewX(60deg);
}

.title {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.title .hint {
  text-transform: uppercase;
  color: var(--secondColor);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 40px;
  isolation: isolate;
  font-style: italic;
  font-weight: bold;
}
.title .hint::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: gold;
  transform: translateY(-50%);
  z-index: -2;
  transform: skewX(60deg);
}
.title .hint::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% - 60px);
  height: 100%;
  background-color: white;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.title h1 {
  font-weight: bold;
  text-transform: capitalize;
}

.aboutUS {
  padding: 60px 0;
}
.aboutUS .aboutImg {
  position: relative;
}
.aboutUS .aboutImg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  border: 10px solid gold;
  width: 100%;
  height: 80%;
  transform: translateY(-50%);
}
.aboutUS .aboutImg .lazyDiv {
  width: min(100% - 40px);
  margin: auto;
}
.aboutUS .info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aboutUS .info h1 {
  font-weight: bold;
}
.aboutUS .info p {
  color: var(--grayColor);
  width: calc(100% - 24px);
}
.aboutUS img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 450px;
}

.projects {
  padding: 0 0 60px;
}
.projects .seeMore {
  font-weight: bold;
  color: var(--secondColor);
  display: flex;
  gap: 8px;
  align-items: center;
  text-transform: capitalize;
}
.projects .business {
  display: flex;
  flex-direction: column;
  color: var(--darkColor);
  background-color: var(--mainColor10);
  overflow: hidden;
  height: 100%;
  transition: 0.6s ease-in-out;
}
.projects .business .image {
  width: 100%;
  aspect-ratio: 0/0.5;
  overflow: hidden;
  position: relative;
}
.projects .business .image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(103, 14, 54, 0.062745098);
  z-index: 2;
  transition: 0.6s ease-in-out;
}
.projects .business .image .lazyDiv {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s ease-in-out;
}
.projects .business .image .lazyDiv img {
  width: 100%;
  height: 100%;
}
.projects .business .image span {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  color: var(--whiteColor);
  font-weight: bold;
  transition: 0.6s ease-in-out;
  text-transform: capitalize;
  font-size: 12px;
}
.projects .business .image span i {
  font-size: 40px;
}
.projects .business .name {
  padding: 16px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.projects .business .name h5 {
  font-weight: bold;
  text-align: center;
  transition: 0.6s ease-in-out;
}
@media (max-width: 768px) {
  .projects .business .name h5 {
    font-size: 16px;
  }
}
.projects .business .name .animatedLink {
  margin-top: auto;
}
.projects .business:hover .image .lazyDiv {
  transform: scale(1.2);
}
.projects .business:hover .image span {
  opacity: 1;
}
.projects .business:hover .name h5 {
  color: var(--whiteColor);
}
.projects .business.contracting:hover {
  background-color: #124170;
}
.projects .business.contracting:hover .image::after {
  background-color: rgba(18, 65, 112, 0.5098039216);
}
.projects .business.trading:hover {
  background-color: #660c35;
}
.projects .business.trading:hover .image::after {
  background-color: rgba(103, 14, 54, 0.4392156863);
}
.projects .nav {
  padding: 12px 0;
  gap: 48px;
}
.projects .nav button {
  color: #1f1f1f;
  font-size: 22px;
  font-weight: bold;
  padding: 8px 0;
  position: relative;
}
.projects .nav button::after {
  content: "";
  width: 0px;
  height: 2px;
  position: absolute;
  bottom: 6px;
  left: 0;
  z-index: -1;
  transition: var(--transition);
  transform: skewX(45deg);
}
.projects .nav .trading-btn.active {
  color: #670e36;
}
.projects .nav .trading-btn.active::after {
  width: 100%;
  background-color: #670e36;
}
.projects .nav .contracting-btn.active {
  color: #124170;
}
.projects .nav .contracting-btn.active::after {
  width: 100%;
  background-color: #124170;
}

.banner {
  background: linear-gradient(rgba(103, 14, 54, 0.9411764706), rgba(103, 14, 54, 0.9725490196)), url(../img/banner.svg);
  background-size: contain;
  background-repeat: repeat-x;
  padding: 200px 0 50px;
  position: relative;
  display: flex;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .banner {
    padding: 150px 0 30px;
  }
}
.banner .links a {
  padding: 4px;
  position: relative;
  color: var(--whiteColor);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: capitalize;
}
.banner .links a:last-child::after {
  display: none;
}
.banner .links a::after {
  content: " ↣ ";
}
.banner .links a.active {
  cursor: default;
  color: var(--lightGrayColor);
}
.banner h1 {
  font-weight: bold;
  color: var(--whiteColor);
  text-transform: capitalize;
}

.aboutPage {
  padding: 48px 0;
}
.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: "\f336";
  font-family: "Font Awesome 6 Pro";
  color: var(--secondColor);
}
.aboutPage .lazyImg {
  position: relative;
  height: 100%;
}
.aboutPage .lazyImg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  border: 10px solid gold;
  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 .socialMedia {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.aboutPage .socialMedia a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0px 4px var(--mainColor30);
}
.aboutPage .socialMedia a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  transform: translateY(4px);
  box-shadow: 0px 0px var(--mainColor30);
}
.aboutPage .statistic {
  padding: 24px 0;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
.aboutPage .statistic .counterUp {
  font-weight: bold;
  font-size: 100px;
  background: rgba(230, 100, 69, 0.062745098);
  background-size: contain;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-stroke: 1px #e66445;
  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;
  text-align: center;
}

.missionVision {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.168627451), rgba(0, 0, 0, 0.3176470588)), url(../img/about2.jpg);
  background-attachment: fixed;
  margin-top: 80px;
}
.missionVision .mission,
.missionVision .vision {
  background-color: rgba(108, 108, 108, 0.1882352941);
  padding: 32px 24px;
  height: 100%;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border-radius: 16px;
}
.missionVision .mission .sectionTitle,
.missionVision .vision .sectionTitle {
  color: var(--whiteColor);
}
.missionVision .mission ul,
.missionVision .vision ul {
  padding: 0;
  margin: 0;
  margin-top: 48px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.missionVision .mission ul li,
.missionVision .vision ul li {
  padding: 4px;
  position: relative;
  display: flex;
  gap: 8px;
  color: var(--lightGrayColor);
}
.missionVision .mission ul li::before,
.missionVision .vision ul li::before {
  content: "\f648";
  font-family: "Font Awesome 6 Pro";
  color: gold;
  margin-top: 2px;
  font-weight: 100;
}
.missionVision .vision ul li::before {
  content: "\e027";
}

.projectsPage .info {
  width: min(100% - 24px, 1000px);
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.projectsPage .info h1 {
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.projectsPage .info .hint {
  font-weight: bold;
  font-size: 16px;
}
.projectsPage .projectSlider84 .row:nth-child(even) {
  flex-direction: row-reverse;
}
.projectsPage h2 {
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 16px;
  font-size: 36px;
}
.projectsPage .txt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
.projectsPage .trad-card {
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  height: 100%;
}
.projectsPage .trad-card .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.projectsPage .trad-card .icon img {
  max-height: 60%;
}
.projectsPage .trad-card h4 {
  font-size: 18px;
  font-weight: bold;
}
.projectsPage .trad-card p {
  font-size: 14px;
  text-transform: lowercase;
  align-self: flex-start;
}
.projectsPage .trad-card .disked-ul {
  align-self: self-start;
  margin-top: 0;
}
.projectsPage .trad-card .disked-ul li {
  font-weight: bold;
  font-size: 14px;
}
.projectsPage .trad-card .lastp {
  align-self: flex-start;
}
.projectsPage .mechanincs {
  list-style: none;
  margin: 74px 0 0;
  padding: 0;
}
.projectsPage .mechanincs:nth-child(1) .icon i {
  color: #f42b03;
}
.projectsPage .mechanincs li {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 20px;
}
.projectsPage .mechanincs li .icon {
  background-color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  justify-content: center;
}
.projectsPage .mechanincs li h4 {
  font-weight: bold;
  text-transform: capitalize;
  font-size: 20px;
}
.projectsPage .disked-ul {
  padding: 0;
  margin: 0;
  margin-top: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.projectsPage .disked-ul li {
  position: relative;
  display: flex;
  gap: 8px;
  line-height: 1.3;
}
.projectsPage .disked-ul li::before {
  content: "\f648";
  font-family: "Font Awesome 6 Pro";
  color: var(--secondColor);
  margin-top: 2px;
  font-weight: 300;
}
.projectsPage .gallery {
  padding-bottom: 50px;
}
.projectsPage .gallery .inner {
  width: min(100% - 30px, 1320px);
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.projectsPage .gallery .inner a {
  flex: 1;
  display: flex;
  height: 400px;
  min-width: 20vw;
}
.projectsPage .gallery .inner a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projectsPage .gallery .inner a:nth-child(4n) {
  min-width: 40vw;
}
@media (max-width: 768px) {
  .projectsPage .gallery .inner a {
    height: 200px;
    min-width: 30vw;
  }
  .projectsPage .gallery .inner a:nth-child(4n) {
    min-width: 60vw;
  }
}
@media (max-width: 768px) {
  .projectsPage .gallery .inner {
    gap: 4px;
  }
}
.projectsPage .swiper {
  width: 100%;
  max-height: 400px;
  margin-left: auto;
  margin-right: auto;
}
.projectsPage .swiper-slide {
  background-size: cover;
  background-position: center;
}
.projectsPage .projectSlider2 {
  height: 100%;
  width: 100%;
}
.projectsPage .projectSlider {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
.projectsPage .projectSlider .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}
.projectsPage .projectSlider .swiper-slide-thumb-active {
  opacity: 1;
}
.projectsPage .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.projectsPage .swiperControl {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.projectsPage .swiperControl .swiperBtns {
  display: flex;
  gap: 8px;
}
.projectsPage .swiperControl .swiperBtns .swiper-button-next,
.projectsPage .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;
}
.projectsPage .swiperControl .swiperBtns .swiper-button-next::after,
.projectsPage .swiperControl .swiperBtns .swiper-button-prev::after {
  font-size: 32px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 200;
}
@media (max-width: 768px) {
  .projectsPage .swiperControl .swiperBtns .swiper-button-next::after,
  .projectsPage .swiperControl .swiperBtns .swiper-button-prev::after {
    font-size: 24px;
  }
}
.projectsPage .swiperControl .swiperBtns .swiper-button-next:hover,
.projectsPage .swiperControl .swiperBtns .swiper-button-prev:hover {
  opacity: 1;
  background-color: white;
  color: var(--secondColor);
}
.projectsPage .swiperControl .swiperBtns .swiper-button-next {
  left: unset;
}
.projectsPage .swiperControl .swiperBtns .swiper-button-next::after {
  content: "\f105" !important;
}
.projectsPage .swiperControl .swiperBtns .swiper-button-prev::after {
  content: "\f105" !important;
  transform: scaleX(-1);
}
.projectsPage .swiperControl .swiper-pagination {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
  margin: unset;
  display: flex;
  justify-content: center;
  align-items: center;
}
.projectsPage .swiperControl .swiper-pagination .swiper-pagination-bullet {
  background-color: white;
  transition: var(--transition);
  border-radius: 16px;
}
.projectsPage .swiperControl .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
}

.equipments {
  padding: 48px 0;
}
.equipments .row {
  background-color: #f7f7f7;
}
.equipments .row:nth-child(2n) {
  flex-direction: row-reverse;
  background-color: var(--mainColor10);
}
.equipments .images {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.equipments .images a {
  height: 100%;
  display: flex;
}
.equipments .images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.equipments .images .more img {
  display: none;
}
.equipments .images span {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 20px 20px 30px;
  background-color: rgba(103, 14, 54, 0.8117647059);
  color: white;
  text-transform: capitalize;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.2901960784);
  font-size: 12px;
  border-radius: 0 0 100px 100px;
  z-index: 2;
}
.equipments .images span i {
  font-size: 20px;
  font-weight: 100;
  transition: var(--transition);
}
.equipments .images:hover span {
  padding: 50px 20px 60px;
}
.equipments .info {
  padding: 48px;
  display: flex;
  gap: 16px;
  flex-direction: column;
}
@media (max-width: 768px) {
  .equipments .info {
    padding: 16px 16px 72px;
  }
}
.equipments .info .name {
  font-weight: bold;
}
.equipments .info ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.equipments .info ul li {
  padding: 2px;
  position: relative;
  display: flex;
  gap: 8px;
}
.equipments .info ul li::before {
  content: "\e426";
  font-family: "Font Awesome 6 Pro";
  color: green;
  margin-top: 5px;
  font-size: 12px;
}
.equipments .info .des {
  color: gray;
}

.contactUs {
  padding: 50px 0;
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contactUs {
    padding-top: 0;
  }
}
.contactUs .contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 768px) {
  .contactUs .contact {
    gap: 32px;
    margin-bottom: 30px;
  }
}
.contactUs .contact .col {
  flex: 1;
  display: flex;
  position: relative;
  gap: 16px;
  padding: 48px 24px;
  border-radius: 16px;
  background-color: var(--whiteColor);
  box-shadow: var(--BigShadow);
}
.contactUs .contact .col::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 100%;
  top: 10px;
  right: 50%;
  transform: translateX(50%);
  border-radius: 12px;
  background-color: var(--mainColor30);
  z-index: -1;
}
.contactUs .contact .col::after {
  position: absolute;
  content: "";
  width: 80%;
  height: 100%;
  top: 20px;
  right: 50%;
  transform: translateX(50%);
  border-radius: 12px;
  background-color: var(--mainColor10);
  z-index: -2;
}
.contactUs .contact .col .icon {
  min-width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mainColor10);
  border-radius: 100px;
  margin: auto 0;
  isolation: isolate;
  position: relative;
}
.contactUs .contact .col .icon svg path {
  transition: var(--transition);
}
.contactUs .contact .col .icon::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  top: 50%;
  right: 50%;
  transform: translateX(50%) translateY(-50%);
  border-radius: 100px;
  background-color: var(--mainColor);
  z-index: -1;
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.contactUs .contact .col .data {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contactUs .contact .col .data h4 {
  font-weight: bold;
  margin-bottom: 10px;
}
.contactUs .contact .col .data a {
  color: var(--textColor);
  min-width: 100px;
}
.contactUs .contact .col .data .info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.contactUs .contact .col .data .info a {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 8px;
}
.contactUs .contact .col .data .info svg {
  width: 20px;
  height: 20px;
}
.contactUs .contact .col:hover .icon svg path {
  fill: #fff;
}
.contactUs .contact .col:hover .icon::after {
  width: 100%;
  height: 100%;
}
.contactUs .contactForm {
  display: flex;
  gap: 32px;
  margin-bottom: 50px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .contactUs .contactForm {
    flex-direction: column-reverse;
    align-items: center;
    gap: 16px;
  }
}
.contactUs .contactForm form {
  flex: 1;
  background-color: var(--whiteColor);
  padding: 48px 32px;
  border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: var(--BigShadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  width: 100%;
}
.contactUs .contactForm form .inputFeild {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contactUs .contactForm form .inputFeild label {
  color: var(--blackColor);
}
.contactUs .contactForm form .inputFeild textarea,
.contactUs .contactForm form .inputFeild input {
  min-height: 48px;
  box-shadow: none !important;
  color: var(--textColor);
  padding: 8px 12px;
  border: 1px solid #eee !important;
}
.contactUs .contactForm form .col {
  flex: 1;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.contactUs .contactForm form .col .inputFeild {
  flex: 1;
}
.contactUs .contactForm form .btn {
  justify-content: center;
}
.contactUs .contactForm .worldMap {
  width: 500px;
  height: 500px;
  position: relative;
}
.contactUs .contactForm .worldMap .earth {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 80%;
  height: 80%;
  margin: -40%;
  background: #fff url(../img/map.webp) 0 50% repeat-x;
  background-size: auto 90%;
  box-shadow: rgba(0, 0, 0, 0.0509803922) 0 50px 60px;
  border-radius: 100%;
  overflow: hidden;
  animation: map linear 90s infinite;
}
.contactUs .contactForm .worldMap .orbic {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.contactUs .contactForm .worldMap .orbic svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.contactUs .contactForm .worldMap #orbic_path {
  fill: none;
  stroke: rgba(0, 0, 0, 0.1);
  stroke-linecap: round;
  stroke-width: 4px;
  stroke-dasharray: 1 9;
  animation: orbic linear 2s infinite;
}
.contactUs .contactForm .worldMap #orbic_dots use {
  fill: #fff;
  stroke: rgba(30, 144, 255, 0.25);
  stroke-width: 4;
  animation: dots ease 1s infinite alternate;
}
.contactUs .contactForm .worldMap #orbic_dot1 {
  transform: translate(50.4%, 29.6%);
}
.contactUs .contactForm .worldMap #orbic_dot2 {
  transform: translate(5%, 62.8%);
  animation-delay: 0.2s !important;
}
.contactUs .contactForm .worldMap #orbic_dot3 {
  transform: translate(97%, 41%);
  animation-delay: 0.3s !important;
}
.contactUs .contactForm .worldMap #orbic_dot4 {
  transform: translate(50%, 70.2%);
  animation-delay: 0.5s !important;
}
.contactUs .contactForm .worldMap #orbic_dot5 {
  transform: translate(31.5%, 51.5%);
  animation-delay: 0.7s !important;
}
.contactUs .contactForm .worldMap #orbic_user1 {
  transform: translate(1%, 40%) scale(0.666667);
}
.contactUs .contactForm .worldMap #orbic_user2 {
  transform: translate(18%, 64%) scale(0.666667);
}
.contactUs .contactForm .worldMap #orbic_user3 {
  transform: translate(39.5%, 31%) scale(0.666667);
}
.contactUs .contactForm .worldMap #orbic_user4 {
  transform: translate(69%, 22%) scale(0.666667);
}
.contactUs .contactForm .worldMap #orbic_user5 {
  transform: translate(75%, 53%) scale(0.666667);
}
@keyframes map {
  100% {
    background-position: 220% 50%;
  }
}
@keyframes orbic {
  100% {
    stroke-dashoffset: 10;
  }
}
@keyframes dots {
  100%, 80% {
    stroke: #1e90ff;
  }
}
@media only screen and (max-width: 992px) {
  .contactUs .contactForm .worldMap {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 768px) {
  .contactUs .contactForm .worldMap {
    width: 100%;
    position: relative;
  }
  .contactUs .contactForm .worldMap .earth {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: transparent;
    background-size: 100% auto;
    box-shadow: none;
    border-radius: 0;
    animation: none;
  }
}
@media (max-width: 476px) {
  .contactUs .contactForm .worldMap {
    height: 240px;
  }
}
.contactUs .map {
  padding: 0px;
  border-radius: 24px;
  margin-top: 80px;
  width: 100%;
  height: 400px;
  border: 6px solid var(--whiteColor);
  box-shadow: var(--BigShadow);
}
@media (max-width: 476px) {
  .contactUs .map {
    margin-top: 24px;
  }
}

.partners {
  padding: 100px 0;
  background-color: var(--mainColor10);
}
.partners .title .hint::after {
  background: var(--mainColor10);
}
.partners .text {
  width: min(100% - 40px, 600px);
  margin: auto;
}

.partnersSlider .swiper-slide {
  width: auto;
}
.partnersSlider .referenceLogo {
  height: 100px;
  padding: 16px;
}
.partnersSlider .referenceLogo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contactSection {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: relative;
  min-height: 500px;
  background-image: linear-gradient(rgba(103, 14, 54, 0.5647058824), rgba(103, 14, 54, 0.4274509804)), url(../img/about2.jpg);
  background-attachment: fixed;
  gap: 24px;
}
.contactSection h1 {
  color: var(--whiteColor);
  font-weight: bold;
}

footer {
  padding: 20px 0;
  background-color: var(--mainColor);
}
footer .container {
  color: var(--whiteColor);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 400px) {
  footer .container {
    justify-content: center;
  }
}
footer .container .logo {
  height: 40px;
  filter: brightness(0) invert(1);
}
footer .container .socialMedia {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
footer .container .socialMedia a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0px 4px rgba(0, 0, 0, 0.3176470588);
}
footer .container .socialMedia a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  transform: translateY(4px);
  box-shadow: none;
}
footer .container .company {
  color: var(--secondColor10);
}

.clients {
  padding: 100px 0;
}
.clients .top {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.clients .top .hint {
  color: var(--textColor);
  width: min(100% - 40px, 600px);
}
.clients .sideImg {
  width: 100%;
  height: 100%;
  padding: 0 32px;
}
.clients .sideImg .simpleParallax {
  height: 100%;
}
.clients .sideImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.clients .client {
  padding: 24px;
  position: relative;
  border: 1px solid var(--mainColor30);
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
}
.clients .client img {
  width: 100%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .clients .client img {
    height: 110px;
  }
}
.clients .client span {
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(21, 67, 113, 0.8078431373), #154371);
  position: absolute;
  right: 0;
  bottom: -100%;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--whiteColor);
  transition: 0.3s ease-in-out;
}
.clients .client span .name {
  transform: translateY(50px);
  transition: 0.6s ease-in-out;
  padding: 24px;
}
.clients .client:hover span {
  bottom: 0;
}
.clients .client:hover span .name {
  transform: translateY(0px);
}
.clients .ourInvestorsSlider .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.clients .ourInvestorsSlider .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: relative;
  left: unset;
  bottom: unset;
  z-index: unset;
  height: 6px;
  width: 100%;
  flex: 1;
  margin-top: 30px;
  background-color: #eee;
}
.clients .ourInvestorsSlider .swiper-scrollbar.swiper-scrollbar-horizontal .swiper-scrollbar-drag {
  background-color: #cecece;
  cursor: pointer;
}

.privacy {
  padding: 48px 24px 64px;
}
.privacy .container {
  width: min(100% - 24px, 1000px);
}
.privacy h1,
.privacy h3,
.privacy h4,
.privacy h5,
.privacy h6,
.privacy h2 {
  font-weight: bold;
  text-transform: capitalize;
  margin: 24px 0 12px;
}
.privacy p {
  color: var(--grayColor);
}

.projectSlider84 .row:nth-child(even) {
  flex-direction: row-reverse;
}/*# sourceMappingURL=styleEN.css.map */