@keyframes drop {
  0% {
    top: -100%;
  }
  25%, 75% {
    top: 50%;
  }
  100% {
    top: -100%;
  }
}

body {
  font-family: 'Cairo';
}

html {
  scroll-behavior: smooth;
  scroll-padding: 102.5px;
}

.navbar {
  padding: 30px 0;
  z-index: 10;
  background: #fff;
  position: sticky;
  top: 0;
}

.navbar .navbar-nav {
  gap: 2rem;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: #01183F;
  font-weight: 500;
}

.navbar .navbar-nav .nav-item .nav-link.active {
  color: #FF7A00;
}

.hero-bg {
  overflow: clip;
  background: #01183F;
}

.hero-bg .hero {
  width: 100%;
  height: 85vh;
  z-index: 3;
  background-size: cover;
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
  position: relative;
}

.hero-bg .hero video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

.hero-bg .hero .hero-gradient {
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(115, 115, 115, 0) 90%);
  width: 100%;
  height: 85vh;
  z-index: 3;
}

.hero-bg .hero .content {
  animation: drop 12s ease-in-out infinite;
  position: absolute;
  top: 50%;
  z-index: 3;
  left: 0;
  right: 0;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-50%);
}

.hero-bg .hero .content .title {
  color: #FF7A00;
  text-align: right;
  font-size: 90px;
  font-style: normal;
  font-weight: 900;
  line-height: 110.538px;
  /* 122.82% */
}

.hero-bg .hero .content .subtitle {
  color: #FFF;
  text-align: right;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 76.482px;
  /* 127.471% */
}

.hero-bg .hero svg {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  bottom: 3rem;
  margin: auto;
  z-index: 4;
}

.projects {
  background-color: #01183F;
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
  padding: 60px 0;
  position: relative;
}

.projects .title {
  color: #FCFCFC;
  text-align: right;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.projects .subtitle {
  color: #FF7A00;
  text-align: right;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.projects .projects-swiper {
  padding: 50px 0;
}

.projects .projects-swiper .swiper-slide .project {
  position: relative;
  overflow: hidden;
}

.projects .projects-swiper .swiper-slide .project .image-container {
  cursor: pointer;
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: inherit;
}

.projects .projects-swiper .swiper-slide .project img {
  width: 100%;
  display: block;
  border-radius: inherit;
}

.projects .projects-swiper .swiper-slide .project .gradient-overlay {
  content: '';
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-radius: inherit;
  pointer-events: none;
}

.projects .projects-swiper .swiper-slide .project p {
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  /* 25.2px */
  text-align: center;
}

.projects .projects-swiper .swiper-slide .project .dot {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  border-radius: 100%;
  background: #FFF600;
  z-index: 1;
  display: block;
}

.projects .projects-swiper .swiper-slide .project .dot:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  box-shadow: 0 0 10px 2px #fff600;
}

.projects .projects-swiper .swiper-slide .project .dot:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: 1s;
  box-shadow: 0 0 10px 2px #fff600;
}

.projects .projects-swiper .swiper-slide:first-child .image-container {
  border-radius: 0 0 50px 0;
  overflow: hidden;
}

.projects .projects-swiper .swiper-slide:nth-child(5) .image-container {
  border-radius: 0 0 0 50px;
  overflow: hidden;
}

.projects-desc-bg {
  background: #01183F;
}

.projects-desc-bg .projects-desc {
  background: #fff;
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
  padding: 60px 0;
  position: relative;
}

.projects-desc-bg .projects-desc .projects-desc-swiper {
  padding: 2rem;
}

.projects-desc-bg .projects-desc .projects-desc-swiper .swiper-slide .project {
  width: 92%;
  margin: auto;
}

.projects-desc-bg .projects-desc .projects-desc-swiper .swiper-slide .project img {
  border-radius: 20px;
}

.projects-desc-bg .projects-desc .projects-desc-swiper .swiper-button-next,
.projects-desc-bg .projects-desc .projects-desc-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
}

.videos {
  background-color: #01183F;
  clip-path: polygon(0% -2%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
  padding: 60px 0 100px 0;
  position: relative;
}

.videos .title {
  color: #FCFCFC;
  text-align: center;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 45.6px;
  /* 101.333% */
}

.videos .title span {
  color: #FF7A00;
}

.videos .subtitle {
  color: #FCFCFC;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 96% */
  margin-bottom: 50px;
}

.videos .swiper-slide {
  text-align: center;
}

.videos .video {
  margin: auto;
}

.videos .video p {
  color: #fff;
}

.videos .swiper-button-next,
.videos .swiper-button-prev {
  width: 50px;
  height: 50px;
}

.state {
  position: relative;
  background-color: #fff;
  padding: 60px 0;
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
}

.state img {
  width: 90%;
}

.services {
  padding-block: 2rem;
  background: url("/assets/img/landing/global_projects/footer.webp") no-repeat center;
  background-size: cover;
}

.services .title {
  color: #FEFBF3;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 48px */
}

.services .services-wrapper {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.services .services-wrapper .service img {
  max-width: 100%;
  width: 160px;
}

.services .services-wrapper .service p {
  color: #FEFBF3;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 20px */
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.services .contact-section .contain {
  max-width: 780px;
  margin: auto;
}

.services .contact-section .form-group {
  margin-bottom: 1rem;
}

.services .contact-section .form-group .form-control {
  height: 46px;
}

.services .contact-section .form-group .form-control.error {
  border-color: #dc3545;
}

.services .contact-section .form-group textarea.form-control {
  height: 100%;
}

.services .contact-section .intl-tel-input {
  width: 100%;
}

.services .contact-section .intl-tel-input.separate-dial-code .selected-dial-code {
  padding-inline-start: 28px;
  padding-inline-end: 0;
}

.services .contact-section .intl-tel-input .selected-flag {
  padding: 0px 16px 0 0px;
}

.services .contact-section .intl-tel-input .selected-flag .iti-arrow {
  left: 6px;
}

.services .contact-section .btn-send {
  width: 100%;
  padding: 1rem;
  border-radius: 5.46px;
  background: #FFF600;
  color: #333;
  font-weight: 700;
}

.fixed-bottom {
  position: fixed;
  bottom: 20px;
  right: 10px;
}

.fixed-bottom .whatsapp-btn {
  background-color: #25D366;
  padding: 12px;
  margin: 12px;
  border-radius: 999px;
  width: 80px;
  height: 60px;
}

.fixed-bottom .whatsapp-btn svg {
  margin-bottom: 4px;
  fill: #fff;
}

.copyright {
  padding: 2rem 0;
  text-align: center;
  background: #01183F;
}

.copyright p {
  color: #FEFBF3;
  text-align: center;
  font-size: 26.667px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 120% */
}

/************ sidebar ****************/
.open-side-contact-form {
  position: fixed;
  display: none;
  padding: 8px;
  inset-inline-start: 0;
  top: 300px;
  border: none;
  border-radius: 4px 0px 0px 4px;
  gap: 12px;
  color: #fff;
  z-index: 10;
  background: #38AF2E;
}

.open-side-contact-form img {
  animation: wobble-ltr 2s ease infinite;
  transform: rotate(180deg);
}

.open-side-contact-form:lang(ar) {
  left: initial;
  right: 0;
  border-radius: 4px 0 0 4px;
}

.open-side-contact-form:lang(ar) img {
  animation: wobble-rtl 2s ease infinite;
}

.open-side-contact-form .form-title {
  font-weight: 500;
}

.open-side-contact-form .text-yellow {
  color: yellow;
}

.open-side-contact-form span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 14px;
  direction: rtl;
}

.open-side-contact-form span:lang(ar) {
  font-weight: 600;
  direction: rtl;
}

.open-side-contact-form span:lang(ru) {
  font-weight: 600;
}

.open-side-contact-form:focus {
  outline: none;
}

.open-side-contact-form:hover {
  background-color: #011435;
}

.side-contact-form-wrapper {
  position: fixed;
  z-index: 11;
  top: 50%;
  display: none;
}

.side-contact-form-wrapper:lang(ar), .side-contact-form-wrapper:lang(en) {
  display: flex;
}

.side-contact-form-wrapper:lang(ar) {
  right: 0 !important;
}

.side-contact-form-wrapper .intl-tel-input.separate-dial-code .selected-dial-code {
  padding-left: 23px !important;
}

.side-contact-form-wrapper .intl-tel-input.separate-dial-code .selected-dial-code:lang(ar) {
  text-align: left !important;
  padding-right: 10px;
}

.side-contact-form-wrapper .hide-contact-form {
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out .2s;
}

.side-contact-form-wrapper .hide-contact-form:lang(en) {
  left: -400px !important;
}

.side-contact-form-wrapper .hide-contact-form:lang(ru) {
  left: -600px !important;
}

.side-contact-form-wrapper .hide-contact-form:lang(ar) {
  right: -600px !important;
}

.side-contact-form-wrapper .side-contact-form {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -180px;
  background-color: white;
  padding: 32px;
  border-radius: 4px;
  transition: all ease-in-out .2s;
  z-index: 15;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0 1px 3px -1px;
}

.side-contact-form-wrapper .side-contact-form:lang(ar) {
  left: initial;
  right: 0;
}

.side-contact-form-wrapper .side-contact-form .close-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  transition: all ease-in-out .1s;
}

.side-contact-form-wrapper .side-contact-form .close-icon:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.side-contact-form-wrapper .side-contact-form .form-title {
  color: #01183F;
  font-size: 20px;
  font-weight: 700;
}

.side-contact-form-wrapper .side-contact-form .form-description {
  color: #2E2E2E;
  margin-top: 12px;
  margin-bottom: 20px;
}

.side-contact-form-wrapper .side-contact-form .custom-input,
.side-contact-form-wrapper .side-contact-form textarea {
  width: 400px;
  height: 48px;
  border: 1px solid #C4C4C4;
  border-radius: 4px;
  margin-bottom: 12px;
  padding: 0 15px;
}

.side-contact-form-wrapper .side-contact-form .custom-input:focus,
.side-contact-form-wrapper .side-contact-form textarea:focus {
  outline: 1px solid #b7b7b7;
}

.side-contact-form-wrapper .side-contact-form .custom-input:lang(ar),
.side-contact-form-wrapper .side-contact-form textarea:lang(ar) {
  text-align: right;
}

.side-contact-form-wrapper .side-contact-form .side-phone-number:lang(ar) {
  padding-right: 15px !important;
}

.side-contact-form-wrapper .side-contact-form .flag-container {
  left: 0;
}

.side-contact-form-wrapper .side-contact-form .flag-container:lang(ar) {
  direction: ltr;
}

.side-contact-form-wrapper .side-contact-form textarea {
  color: black;
  margin-top: 12px;
  resize: none;
  height: 100px;
  padding-top: 10px;
}

.side-contact-form-wrapper .side-contact-form .submit-form {
  display: block;
  font-weight: 600;
  font-size: 16px;
  background-color: #01183F;
  padding: 12px 0;
  border-radius: 6px;
  border: none;
  outline: none;
  margin: auto;
  color: white;
}

.side-contact-form-wrapper .side-contact-form .submit-form:hover {
  background-color: #010e26;
}

.side-contact-form-wrapper .side-contact-form .submit-form:focus {
  outline: none;
}

.error {
  color: #dc3545;
}

.custom-input.error {
  border-color: #dc3545 !important;
}

.intl-tel-input.separate-dial-code .selected-flag {
  height: 46px;
}

@media (max-width: 996px) {
  .open-side-contact-form {
    position: fixed;
    padding: 8px;
    left: 0;
    top: 300px;
    border: none;
    border-radius: 0 4px 4px 0;
    gap: 12px;
    color: white;
    z-index: 10;
  }
  .open-side-contact-form img {
    animation: wobble-ltr 2s ease infinite;
  }
  .open-side-contact-form:lang(ar) {
    left: initial;
    right: 0;
    border-radius: 4px 0 0 4px;
  }
  .open-side-contact-form:lang(ar) img {
    animation: wobble-rtl 2s ease infinite;
  }
  .open-side-contact-form .form-title {
    font-weight: 500;
  }
  .open-side-contact-form span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 20px;
  }
  .open-side-contact-form span:lang(ru) {
    font-weight: 600;
  }
  .open-side-contact-form:focus {
    outline: none;
  }
  .open-side-contact-form:hover {
    background-color: #011435;
  }
  .side-contact-form-wrapper {
    position: fixed;
    z-index: 11;
    top: 60%;
  }
  .side-contact-form-wrapper:lang(ar) {
    right: 0 !important;
  }
  .side-contact-form-wrapper .intl-tel-input.separate-dial-code .selected-dial-code {
    padding-left: 23px !important;
    color: black;
  }
  .side-contact-form-wrapper .intl-tel-input.separate-dial-code .selected-dial-code:lang(ar) {
    text-align: left !important;
    padding-right: 10px;
  }
  .side-contact-form-wrapper .side-contact-form {
    width: 360px;
  }
  .side-contact-form-wrapper .side-contact-form:lang(ar) {
    left: initial;
    right: 0;
  }
  .side-contact-form-wrapper .side-contact-form .close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    transition: all ease-in-out .1s;
  }
  .side-contact-form-wrapper .side-contact-form .close-icon:hover {
    transform: scale(1.1);
    cursor: pointer;
  }
  .side-contact-form-wrapper .side-contact-form .form-title {
    color: #01183F;
    font-size: 20px;
    font-weight: 700;
  }
  .side-contact-form-wrapper .side-contact-form .form-description {
    color: #2E2E2E;
    margin-top: 12px;
    margin-bottom: 20px;
  }
  .side-contact-form-wrapper .side-contact-form .custom-input,
  .side-contact-form-wrapper .side-contact-form textarea {
    width: 340px;
    height: 48px;
    border: 1px solid #C4C4C4;
    border-radius: 4px;
    margin-bottom: 12px;
    padding: 0 15px;
  }
  .side-contact-form-wrapper .side-contact-form .custom-input::-moz-placeholder, .side-contact-form-wrapper .side-contact-form textarea::-moz-placeholder {
    color: lightgray;
  }
  .side-contact-form-wrapper .side-contact-form .custom-input::placeholder,
  .side-contact-form-wrapper .side-contact-form textarea::placeholder {
    color: lightgray;
  }
  .side-contact-form-wrapper .side-contact-form .custom-input:focus,
  .side-contact-form-wrapper .side-contact-form textarea:focus {
    outline: 1px solid #b7b7b7;
  }
  .side-contact-form-wrapper .side-contact-form .custom-input:lang(ar),
  .side-contact-form-wrapper .side-contact-form textarea:lang(ar) {
    text-align: right;
  }
  .side-contact-form-wrapper .side-contact-form .side-phone-number:lang(ar) {
    padding-right: 15px !important;
  }
  .side-contact-form-wrapper .side-contact-form .flag-container:lang(ar) {
    direction: ltr;
  }
  .side-contact-form-wrapper .side-contact-form textarea {
    color: black;
    margin-top: 12px;
    resize: none;
    height: 100px;
    padding-top: 10px;
  }
  .side-contact-form-wrapper .side-contact-form .submit-form {
    display: block;
    font-weight: 600;
    font-size: 16px;
    background-color: #01183F;
    padding: 12px 0;
    border-radius: 6px;
    border: none;
    outline: none;
    margin: auto;
    color: white;
  }
  .side-contact-form-wrapper .side-contact-form .submit-form:hover {
    background-color: #010e26;
  }
  .side-contact-form-wrapper .side-contact-form .submit-form:focus {
    outline: none;
  }
}

@keyframes wobble-ltr {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%);
  }
  30% {
    transform: translateX(20%);
  }
  45% {
    transform: translateX(-15%);
  }
  60% {
    transform: translateX(10%);
  }
  75% {
    transform: translateX(-5%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes wobble-rtl {
  0% {
    transform: translateX(0%) rotate(180deg);
  }
  15% {
    transform: translateX(-25%) rotate(180deg);
  }
  30% {
    transform: translateX(20%) rotate(180deg);
  }
  45% {
    transform: translateX(-15%) rotate(180deg);
  }
  60% {
    transform: translateX(10%) rotate(180deg);
  }
  75% {
    transform: translateX(-5%) rotate(180deg);
  }
  100% {
    transform: translateX(0%) rotate(180deg);
  }
}

/************ sidebar ****************/
.section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.section:nth-child(odd) {
  background: #01183F;
  color: white;
  clip-path: polygon(0% 20%, 50% 35%, 100% 20%, 100% 75%, 50% 90%, 0% 75%);
}

.section:nth-child(even) {
  background: white;
  color: #0b1540;
  clip-path: polygon(0% 20%, 50% 35%, 100% 20%, 100% 75%, 50% 90%, 0% 75%);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  to {
    transform: scale(2.3);
    opacity: 0;
  }
}

@media (max-width: 786px) {
  .navbar-brand {
    margin: auto;
  }
  .navbar-toggler {
    display: none;
  }
  .hero-bg .hero {
    clip-path: polygon(0% 0%, 100% 0%, 100% 87%, 50% 94%, 0% 87%);
    margin-top: 0.5px;
  }
  .hero-bg .hero .content {
    top: 20%;
  }
  .hero-bg .hero .content .title {
    font-size: 2.5rem;
    padding: 0;
    margin: 0;
  }
  .hero-bg .hero .content .subtitle {
    font-size: 2rem;
    padding: 0;
    margin: 0;
  }
  .projects {
    clip-path: polygon(0% -2%, 100% 0%, 100% 87%, 50% 94%, 0% 87%);
  }
  .projects .title {
    font-size: 36px;
  }
  .projects .subtitle {
    font-size: 18px;
  }
  .projects .projects-swiper .swiper-slide .project p {
    font-size: 16px;
  }
  .projects-desc-bg .projects-desc {
    clip-path: polygon(0% -2%, 100% 0%, 100% 87%, 50% 94%, 0% 87%);
  }
  .projects-desc-bg .projects-desc .projects-desc-swiper .swiper-slide .project img {
    width: 100%;
    height: 280px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .projects-desc-bg .projects-desc .projects-desc-swiper .swiper-button-next,
  .projects-desc-bg .projects-desc .projects-desc-swiper .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
  .videos {
    clip-path: polygon(0% -3%, 100% 0%, 100% 87%, 50% 94%, 0% 87%);
  }
  .videos .title {
    font-size: 40px;
  }
  .videos .subtitle {
    font-size: 20px;
  }
  .videos .swiper-button-next,
  .videos .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
  .services {
    background-size: cover;
  }
  .services .title {
    font-size: 2rem;
  }
  .services .services-wrapper {
    flex-wrap: wrap;
  }
  .services .services-wrapper .service p {
    font-size: 1rem;
  }
  .services .contact-section .contain {
    max-width: 90%;
  }
  .copyright p {
    font-size: 1rem;
  }
}

