* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: capitalize;
  font-family: "Tajawal", sans-serif;
  list-style: none;

}

:root {
  --main-color: #0f0f0f;
  --gray-01-color: #636363;
  --gray-02-color: #6363633d;
  --gray-03-color: #262626;
  --gray-04-color: #c0c0c0;
  --gray-05-color: rgba(255, 255, 255, 0.2);
  --white-01-color: #ffffff;
  --white-02-color: #ebebeb;
  --cyan-01-color: #0bc9d1;
  --dark-01-lavender: #7632a3;
  --blue-01-color: #22006b;
  --orange-01-color: #ffa033;
  --dark-01-color: #151515;
  --dark-02-color: #2e2e2e;
  --dark-03-color: rgba(0 0 0 /63%);
  --overlay-bg: rgba(0 0 0 / 25%);
  --overlay-01-bg: rgba(0 0 0 / 60%);
  --border-01: 1px solid #636363;
  --border-02: 1px solid #262626;
  --border-03: 1px solid #ffffff;
  --trans-dur: 0.3s;
  --gradient: linear-gradient(90deg, #7632a3 1.56%, #0bc9d1 94.18%);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

body {
  background: var(--main-color);
  min-height: 100vh;
  overflow: hidden;
  padding: 0 !important;
}
html {
  overflow-x: hidden;
}

/* =========================================
START SWIPER ARROW AND DOTS
===========================================*/
.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #dfe9f1;
  background: transparent;
  border: 1px solid rgba(162, 175, 200, 0.31);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  --webkit-backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 15px;
  font-weight: bold;
}
.arrow-buttons {
  position: absolute;
  width: 22%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 46px;
  z-index: 1;
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  border: var(--border-01);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  --webkit-backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.05);
  margin: 0 5px;
  width: 12px;
  height: 12px;
  display: inline-block;
}
.swiper-pagination-bullet-active {
  border-color: var(--cyan-01-color) !important;
  background-color: var(--cyan-01-color) !important;
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  bottom: 15px;
  top: initial;
  left: 50%;
  transform: translateX(-50%);
}
/* =========================================
END SWIPER ARROW AND DOTS
===========================================*/
/* ======================
START SECTION SLIDER BANNER
============================*/

.banner-main-area {
  position: relative;
}

.section-padding {
  padding: 80px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
}

.banner-one {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.bg-image {
  opacity: 0.8;
  transition: opacity 1s ease-in-out;
}

.swiper-slide-active .bg-image {
  opacity: 1;
}

.banner-main-area .info-banner {
  padding: 70px 0;
}

/*============================
START BUTTON 
==============================*/
.btn-main {
  background: linear-gradient(
    111deg,
    var(--cyan-01-color),
    var(--dark-01-lavender),
    var(--dark-01-lavender),
    var(--cyan-01-color),
    var(--cyan-01-color),
    var(--dark-01-lavender)
  );
  background-size: 400%;
  z-index: 1;
  border: none;
  padding: 12px 25px;
  color: var(--white-01-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
}
.btn-main:hover {
  animation: animate 8s linear infinite;
  color: var(--white-01-color);
}
@keyframes animate {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 400%;
  }
}
.btn-main:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  background: linear-gradient(
    45deg,
    var(--dark-01-lavender),
    var(--cyan-01-color),
    var(--main-color)
  );
  background-size: 400%;
  opacity: 0;
  transition: 0.5%;
}
.btn-main:hover:before {
  filter: blur(20px);
  opacity: 1;
  animation: animate 8s linear infinite;
}

.btn-transparent-bg {
  background: transparent;
  border: var(--border-01);
  border-bottom: 2px solid var(--white-01-color);
}
.btn-transparent-bg:hover {
  background: linear-gradient(
    90deg,
    var(--cyan-01-color) -4.41%,
    var(--dark-01-lavender) 104.46%
  );
  border-color: var(--dark-01-lavender);
}
.btn-padding {
  padding: 12px 45px;
}

/* ==========================
END BUTTON 
============================== */

/* START TITLE SECTION */

.center-section-info {
  justify-content: center !important;
  text-align: center;
}

.title-section .text-section {
  font-size: 20px;
  font-weight: 400;
  color: var(--gray-04-color);
}
.title-section .title-info {
  font-size: 35px;
  color: var(--white-01-color);
  font-weight: bold;
  padding: 10px 0 0 0;
  line-height: 1.8;
}

.left-info-section .num-text {
  padding-bottom: 10px;
}

/* END TITLE SECTION */
/* =========================================
END MAIN CLASSES
=======================================*/
/* ===========================================
START LOADER WEBISTE
=============================================*/
.loader-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark-01-color);
  bottom: 0;
  z-index: 1000;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-wrapper.hidden {
  animation: hidden 1s;
  animation-fill-mode: forwards;
}

@keyframes hidden {
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
.ip {
  width: 8em;
  height: 8em;
}
.ip__track {
  transition: stroke var(--trans-dur);
}
.ip__worm1,
.ip__worm2 {
  animation: worm1 2s linear infinite;
}
.ip__worm2 {
  animation-name: worm2;
}

/* Animation */
@keyframes worm1 {
  from {
    stroke-dashoffset: 0;
  }
  50% {
    animation-timing-function: steps(1);
    stroke-dashoffset: -358;
  }
  50.01% {
    animation-timing-function: linear;
    stroke-dashoffset: 358;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes worm2 {
  from {
    stroke-dashoffset: 358;
  }
  50% {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -358;
  }
}

/* ===========================================
END LOADER WEBISTE
=============================================*/
/* ===================================
START BUTTON SCROLL
======================================*/
#scrollToTopBtn {
  position: fixed;
  width: 40px;
  height: 40px;
  background: var(--orange-01-color);
  color: var(--dark-01-color);
  border: 1px solid var(--orange-01-color);
  cursor: pointer;
  bottom: 30px;
  z-index: 93;
  border-radius: 8px;
  right: -60px;
  transition: all 0.5s;
}
#scrollToTopBtn.active-btn {
  right: 30px;
}
/* ===================================
END BUTTON SCROLL
======================================*/
/* =======================================
START MENU BAR 
==========================================*/
/* 
#inputTime::before {
  content: '\f017 حدد موعد';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #9d9d9d;
  right: 5px;
  position: absolute;
  z-index: 10;
} */
.menu-bar {
  background: var(--dark-01-color);
  position: fixed;
  top: -120%;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  z-index: 100;
  overflow-y: auto;
  transition: top 0.4s ease-in-out;
}
.menu-bar.active-menu {
  top: 0;
}
.menu-bar :is(.all-menu-bar, .top-head-menu) {
  padding: 15px 120px;
}
.menu-bar .icon-close {
  transition: all 0.5s;
}
.menu-bar .icon-close:hover {
  color: var(--cyan-01-color);
  cursor: pointer;
}
.menu-bar .all-menu-bar {
  padding: 50px 120px;
}
.menu-bar .all-menu-bar .nav-item-menu .nav-link-menu {
  font-size: 33px;
  font-weight: 700;
  padding: 26px 0;
  border-width: 2px;
  text-decoration: none;
  transition: all 0.5s;
}

.menu-bar .all-menu-bar .nav-item-menu .nav-link-menu svg path {
  transition: all 0.5s;
}
.menu-bar .all-menu-bar .nav-item-menu .nav-link-menu:hover,
.menu-bar .all-menu-bar .nav-item-menu .nav-link-menu:hover svg path {
  color: var(--cyan-01-color);
  fill: var(--cyan-01-color);
}

/* =======================================
END MENU BAR 
==========================================*/

/* ======================================
START FORM SERVICES
=========================================*/
.modal-all::-webkit-scrollbar {
  width: 0px;
}

.modal-all::-webkit-scrollbar-track {
  width: 0px;
}
.modal-all .icon-close {
  width: 30px;
  height: 30px;
  border: var(--border-01);
  border-color: var(--gray-01-color);
  border-radius: 50%;
  color: var(--gray-01-color);
  font-weight: 700;
  transition: all 0.5s;
  cursor: pointer;
}
.modal-all {
  --bs-modal-width: 5;
}
.modal-all .modal-content {
  background: var(--dark-02-color);
  width: 600px;
  margin: auto;
}
.modal-all .modal-content .form-inputs .form-one :is(textarea, input) {
  background: var(--gray-03-color);
  border: none;
  padding: 10px;
  color: var(--white-01-color);
}

.modal-all .head-form {
  border-bottom: var(--border-01);
  padding-bottom: 15px;
}

.modal-all .modal-header {
  border: none;
}

.form-services-modal .selector-item {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-services-modal .selector-item-radio {
  appearance: none;
  display: none;
}
.form-services-modal .selector-item-label {
  position: relative;
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  color: var(--gray-01-color);
  transition-duration: 0.5s;
  transition-property: transform, box-shadow;
  transform: none;
  cursor: pointer;
}
.form-services-modal .selector-item-radio:checked + .selector-item-label {
  background-color: var(--dark-01-color);
  color: var(--white-01-color);
  border: var(--border-01);
  transform: translateY(-2px);
}
.date-form .form-one {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--gray-03-color);
  border: none;
  color: var(--white-01-color);
  border-radius: 8px;
  padding-right: 15px;
}
.form-one input {
  text-align: right;
}
.form-one input::placeholder {
  color: var(--gray-01-color);
  font-weight: 700;
}
.date-form .form-one input:focus {
  box-shadow: none;
}
.input-group-text {
  color: var(--gray-01-color);
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.datepicker.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 20px;
  --bs-dropdown-padding-y: 20px;

  --bs-dropdown-color: var(--white-01-color);
  --bs-dropdown-bg: var(--dark-01-color);
}
.datepicker-dropdown.datepicker-orient-top:after {
  border-top-color: var(--dark-01-color);
}
.datepicker-dropdown:after {
  border-bottom-color: var(--dark-01-color);
}

.datepicker .datepicker-switch:hover,
.datepicker .next:hover,
.datepicker .prev:hover,
.datepicker tfoot tr th:hover,
.datepicker table tr td.day.focused,
.datepicker table tr td.day:hover,
.datepicker table tr td span.focused,
.datepicker table tr td span:hover {
  background: var(--gray-03-color);
}
.datepicker td,
.datepicker th {
  padding: 10px;
}
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(48%) sepia(13%) saturate(307%) hue-rotate(10deg)
    brightness(95%) contrast(80%);
}
input[type="time"] {
  position: relative;
}

.form-one .time-picker.open {
  background: var(--dark-02-color) !important;
  color: var(--white-01-color) !important;
  border: var(--border-01) !important;
  border-radius: 8px !important;
  margin-top: 15px;
}
.form-one .time-picker #submitTime,
.form-one .time-picker .label a {
  border: var(--border-01) !important;
  border-radius: 8px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}
.form-one .time-picker .set-time {
  gap: 10px;
}

.form-one .time-picker .label .set,
.form-one .time-picker .label a {
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  border-radius: 6px;
}
.form-one .time-picker .label {
  display: flex;
  width: 100% !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.form-one #timePicker::placeholder {
  font-size: 18px;
  display: flex;
  gap: 15px;
}
.form-one .time-picker .label a,
#submitTime {
  transition: all 0.5s;
}
.form-one .time-picker .label a:hover,
.time-picker .label a:active,
#submitTime:hover {
  background: var(--cyan-01-color) !important;
  border-color: var(--cyan-01-color) !important;
}
/* ======================================
END FORM SERVICES
=========================================*/
/* ====================================
START HEADER
=====================================*/
.header-info .all-navbar {
  background: linear-gradient(to left, #6363635c, #63636300);
  transition: all 0.5s ease-in-out;
}

.demo-1 {
  width: 100%;
  height: 100vh;
  position: relative;
}
.demo-1 svg {
  height: 100vh;
}
.demo-1 .parallax > use {
  animation: waveAnimateB 14s linear infinite;
}
.demo-1 .parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
  fill-opacity: 0.2;
}
.demo-1 .parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 12s;
  fill-opacity: 1;
}

@keyframes waveAnimateB {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

.header-info .all-navbar .logo img {
  width: 164.503px;
  height: 58.498px;
}
.header-info .all-navbar.active-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 95;
  background: linear-gradient(to left, #636363b3, #636363d1);
  border-bottom: var(--border-01);
  background: var(--dark-01-color);
  animation: slideDown 0.5s ease; /* Animation for smooth appearance */
}

/* Keyframes for the animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header-info .content-info .title {
  /* font-size: 50px;
  width: 415px; */
  font-size: 40px;
  width: 550px;
  font-weight: bold;
  line-height: 1.5;
}
.header-info .content-info .title span {
  font-weight: lighter;
}
.slider-rate {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

/* ==================================
END HEADER
===================================*/
/* ===============================
START SECTION MAIN PTOJECTS
====================================*/
.all-projects-filter {
  overflow: hidden;
}

.slick-slide {
  margin: 0 10px;
}

[dir="rtl"] .marquee-rtl-01 .slick-slide {
  float: left;
}
.project-one .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-01-bg);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.project-one:hover .overlay-content {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 768px) {
  .header-info .content-info .title {
    width: 95%;
    font-size: 35px;
  }
  .main-projects .main-filter {
    width: 100%;
    overflow-x: scroll;
  }
}

@media screen and (max-width: 480px) {
  .header-info .content-info .title {
    /* font-size: 40px; */
    font-size: 28px;
    width: 100%;
    text-align: center;
  }
  .header-info .content-info {
    height: 80vh !important;
  }
  .header-info .content-info .buttons-info {
    justify-content: center;
  }
}
/* ===============================
END SECTION MAIN PTOJECTS
====================================*/

/* ================================
START SECTION SERVICES
=================================== */
.all-services .item-service:nth-child(1) {
  overflow: hidden;
}
.all-services .item-service:nth-child(1) .image {
  transform: translateY(25px);
}

/* ================================
END SECTION SERVICES
=================================== */

/* ================================
START SECTION ABOUT
=================================== */
.about .shape01 {
  z-index: 1;
}

.swiper-card-about {
  height: auto !important;
  overflow: hidden;
  position: relative;
}
.swiper-card-about .swiper-wrapper {
  height: 400px !important;
}
.swiper-card-about :is(.swiper-slide, .card) {
  height: 100% !important;
}

.swiper-card-about .swiper-slide .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.about-images-team {
  position: relative;
  min-height: 570px;
}

@media (max-width: 1500px) {
  .about-images-team {
    min-height: 540px;
  }
}
.about-images-team li {
  position: absolute;
  transition: all 1000ms ease-out 0s;
}

.about-images-team li img {
  max-width: 118px;
  border-radius: 50%;
}
.about-images-team li .image-team {
  position: relative;
}
.about-images-team li .image-team::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 95px;
  height: 95px;
  background: #ffffff3d;
  opacity: 0.5;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
}
.about-images-team li .image-team::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 112px;
  height: 112px;
  background: #ffffff3d;
  opacity: 0.4;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
}

.about-images-team li:nth-child(1) {
  left: 20%;
  top: 0;
  transform: translate(170%, 240%);
}

.about-images-team li:nth-child(2) {
  right: 15%;
  top: 11px;
  transform: translate(-100%, 170%);
}

.about-images-team li:nth-child(3) {
  left: -10%;
  top: 39%;
  transform: translate(240%, -5%);
}
@media screen and (max-width: 991px) {
  .about-images-team li:nth-child(3) {
    left: 0;
  }
}

.about-images-team li:nth-child(4) {
  right: 32%;
  top: 40%;
  text-align: center;
}
.about-images-team li:nth-child(4) .title-info {
  font-size: 20px;
}

.about-images-team li:nth-child(5) {
  right: 0;
  right: 6%;

  bottom: 45%;

  transform: translate(-540%, -40%);
}

.about-images-team li:nth-child(6) {
  left: 18%;
  bottom: 5%;

  transform: translate(300%, -380%);
}

.about-images-team li:nth-child(7) {
  right: 14%;
  bottom: 0;
  transform: translate(-50%, -120%);
}

@media (max-width: 768px) {
  .about-images-team li:nth-child(5) {
    right: -6%;
  }
  .about-images-team li:nth-child(4) {
    right: 18%;
  }
  .about-images-team li img {
    width: 60px;
    height: 60px;
  }
  .about-images-team li .image-team::before {
    width: 80px;
    height: 80px;
  }
  .about-images-team li .image-team::after {
    width: 95px;
    height: 95px;
  }
}

.about-images-team li.now-in-view {
  transform: translate(0, 0);
}
@media screen and (max-width: 450px) {
  .about-images-team li:nth-child(4) {
    right: 50%;
    transform: translateX(50%);
    width: 100%;
    top: 44%;
  }
  .about-images-team li:nth-child(4) .title-info {
    font-size: 16px;
  }
  .about-images-team li:nth-child(5) {
    bottom: 68%;
    right: 38%;
  }
  .about-images-team li:nth-child(3) {
    left: 42%;
    top: 68%;
  }
  .about-images-team li:nth-child(6) {
    bottom: 0;
  }
}

/* ================================
END SECTION ABOUT
=================================== */
/* ====================================
START SECTION RATES CLIENT
=======================================*/
.rates-clients .all-rates {
  position: relative;
}
.rates-clients .all-rates::after,
.rates-clients .all-rates::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--dark-01-color);
  left: 0;
}

.rates-clients .all-rates::after {
  top: -40px;
}
.rates-clients .all-rates::before {
  bottom: -40px;
}
/* ====================================
END SECTION RATES CLIENT
=======================================*/
/* ==============================
START SECTION INQUIRE
=================================*/
.inquire .all-inquire .info-inquire .btn {
  padding: 13px 35px;
}

.image-one-slide {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--dark-01-color);
}

.image-one-slide img {
  width: 534px;
  height: 303px;
  border-radius: 20px;
  object-fit: cover;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.image-one-slide img {
  transform: scale(1.1);
}
/* ==============================
END SECTION INQUIRE
=================================*/
/* ===============================
START SECTION COUNTER
==============================*/
.counter-section .counter-one {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid var(--dark-02-color);
  margin-left: -16px;
  transition: all 0.5s;
}
.counter-section .counter-one:hover {
  border-color: var(--dark-01-lavender);
  cursor: pointer;
}
.counter-section .counter-one {
  font-size: 44px;
}

.counter-section .counter-one .text-counter {
  font-size: 24px !important ;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
    90deg,
    var(--cyan-01-color) -4.41%,
    var(--dark-01-lavender) 104.46%
  );
}

/* ===============================
END SECTION COUNTER
==============================*/
/* =============================
START SECTION TEAM INFO
================================*/
.card-main-one {
  padding: 15px !important;
}
.card-main-one .image-card-team {
  margin-bottom: 20px !important;
}
.card-main-one .image-card-team img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.card-main-one .card-body {
  display: block !important;
}

.team-info .content-team-info .title {
  font-size: 35px;
}
/* .team-info .arrow-buttons{
  width: 100%;
} */

/* =============================
END SECTION TEAM INFO
================================*/

/* ===================================
START SETION SEPS PROJECTS
======================================*/
.project-steps .filter-content .filter-links {
  background: var(--dark-01-color);
  padding: 20px 0;
}
.project-steps .filter-content .link-one-filter {
  color: var(--gray-05-color);
  font-weight: 700;
  position: relative;
  cursor: pointer;
  width: 100%;
}
.project-steps .filter-content .link-one-filter.active-link-filter {
  color: var(--white-01-color) !important;
}
.project-steps .filter-content .link-one-filter.active-link-filter::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  /* background-color: var(--white-01-color); */
  background-color: transparent;

  top: -23px;
  right: -10px;
}
.project-steps .filter-content .link-one-filter:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--gray-05-color);
  top: 0;
  left: 0%;
}
.project-steps .content-filter-one .title {
  color: var(--gray-01-color);
}

.all-content-filter .content-filter-one {
  display: none;
}

.all-content-filter .content-filter-one.active {
  display: block;
}

.line {
  width: 100%;
  height: 4px;
  background: var(--gradient);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  animation: anim 17.5s linear infinite;
  /* -webkit-animation: anim 10s linear infinite;
  -webkit-transform-origin: right; */
  transform-origin: right;
}

@-webkit-keyframes anim {
  0% {
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
  }
}

@keyframes anim {
  0% {
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
  }
}

/* ===================================
END SETION SEPS PROJECTS
======================================*/
/* ==================================
START SECTION BANNER VIDEO
======================================*/
.banner-vid .content-banner-info {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.banner-vid .image-shape {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 38%;
}
.banner-vid .image-shape img {
  width: 100%;
  object-fit: cover;
}
.banner-vid .all-content-banner {
  border-radius: 20px;
  border: 0.46px solid var(--Linear, #22a8c7);
  background: var(--foundation-grey-darker, #0f0f0f);
  position: relative;
  overflow: hidden;
  height: 500px;
}
.banner-vid .all-content-banner .info {
  width: 65%;
  margin-right: auto;
  margin-top: 80px;
}
.banner-vid .all-content-banner .info .title {
  width: 400px;
}
.banner-vid .all-content-banner .info :is(.text-head-1, .text) {
  width: 500px;
  padding: 10px 0;
}
.banner-vid .shape-banner1 {
  border-radius: 1596.154px;
  background: linear-gradient(180deg, #0bc9d1 -4.41%, #7632a3 104.46%);
  width: 800px;
  height: 300px;
  flex-shrink: 0;
  filter: blur(67.99248504638672px);
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.4;
}

.banner-vid .shape-banner2 {
  border-radius: 1212.513px;
  background: linear-gradient(180deg, #131818 -4.41%, #7632a3 104.46%);
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.2;
  filter: blur(56.155357360839844px);
  width: 200px;
  height: 300px;
}

/* ==================================
END SECTION BANNER VIDEO
======================================*/

/* ==================================
START SECTION TEAM SYN
======================================*/
.team-syn .all-team-syn .team-one-syn {
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}
.team-syn .all-team-syn .team-one-syn .content-info {
  padding: 15px 0;
  bottom: 0px;
  position: absolute;
}
.team-syn .all-team-syn .team-one-syn .image-team img {
  height: 320px !important;
}
.team-syn
  .all-team-syn
  .team-one-syn
  .content-info
  .social-links
  .link-social-one {
  background: var(--dark-01-color);
  color: var(--white-01-color);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

.team-syn
  .all-team-syn
  .team-one-syn
  .content-info
  .social-links
  .link-social-one:hover {
  background: var(--cyan-01-color);
}

.team-syn .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 350px;
}
.team-syn .all-team-syn .swiper-team-syn {
  width: 90%;
  padding: 50px 15px;
}
.team-syn .all-team-syn .swiper-team-syn .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-syn
  .all-team-syn
  .swiper-team-syn
  .swiper-pagination
  .swiper-pagination-bullet {
  opacity: 1;
  background: var(--gray-02-color);
  width: 12px;
  height: 12px;
}
.team-syn .team-one-syn .image-team img {
  border-radius: 16px;
  border: var(--border-01);
}

.team-syn .all-team-syn .btn-transparent-bg {
  border-bottom: var(--border-01);
}

.team-syn .all-team-syn .team-one-syn .content-info :is(.info, .social-links) {
  position: relative;
  transition: all 1s;
}
.team-syn .all-team-syn .team-one-syn .content-info .info {
  left: 100%;
}

.team-syn .all-team-syn .team-one-syn .content-info .social-links {
  right: 100%;
}

.team-syn .all-team-syn .team-one-syn:hover .content-info .social-links {
  right: 0;
}
.team-syn .all-team-syn .team-one-syn:hover .info {
  left: 0;
}
/* ==================================
END SECTION TEAM SYN
======================================*/

/* =======================================
START SECTION FOOTER 
=========================================*/
.footer .image-footer-bg img {
  height: 400px !important;
  width: 100%;
  object-fit: cover;
}
.footer .image-footer-bg::after {
  border-radius: 0;
}
.footer .left-footer .info-contect-one {
  position: relative;
}
.footer .left-footer .info-contect-one::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--gray-01-color);
  top: 0;
  right: 41px;
}

/* =======================================
END SECTION FOOTER 
=========================================*/

/* =======================================================================================
START PAGE ABOUT
============================================================================================*/
/* ======================================
START HEADER ABOUT
========================================*/

.header-info-bg .all-navbar {
  background: transparent;
  border-bottom: var(--border-01);
}
.header-info-bg .content-info {
  /* background: var(--dark-03-color); */
  height: 670px;
}

.header-info-bg .content-info .image-slide {
  background-size: cover;
  mask: url(/assets/images/main/about-image.png);
  -webkit-mask: url(/assets/images/main/about-image.png);
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mix-blend-mode: screen;
  height: 555px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.header-info-bg .content-info .image-slide video {
  height: 100%;
}
@media screen and (min-width: 1400px) {
  .header-info-bg .content-info {
    height: 800px;
  }
  .header-info-bg .content-info .image-slide {
    height: 655px;
  }
}
@media screen and (max-width: 1199px) {
  .header-info-bg .content-info .image-slide {
    height: 455px;
  }
}
@media screen and (max-width: 991px) {
  .header-info-bg .content-info .image-slide {
    height: 100%;
  }
  .header-info-bg .content-info .image-slide video {
    height: 325px;
  }
  .header-info-bg .content-info {
    height: 500px !important;
  }
}
@media screen and (max-width: 768px) {
  .header-info-bg .content-info .image-slide {
    display: none;
  }
}

/* ========================================
END HEADER ABOUT
=========================================*/
/* ====================================
START SECTION PRINCIPLES
=======================================*/
.principles-section
  .all-principles
  .list-filter-principles
  .link-one-filter
  .icon-arrow-filter,
.principles-section .all-principles .content-principles .principle-one {
  display: none;
}
.principles-section .all-principles .list-filter-principles .link-one-filter {
  cursor: pointer;
}

.principles-section .all-principles .content-principles .principle-one.active {
  display: block;
}
.principles-section .all-principles .list-filter-principles .link-one-filter {
  position: relative;
  transition: all 0.5s;
}
.principles-section
  .all-principles
  .list-filter-principles
  .link-one-filter.active {
  transform: translateX(-50px);
}
.principles-section
  .all-principles
  .list-filter-principles
  .link-one-filter.active::after {
  content: "\f177";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--white-01-color);
  right: -35px;
  position: absolute;
  z-index: 10;
}

/* ====================================
END SECTION PRINCIPLES
=======================================*/
/* ====================================
START SECTION CARDS BOXES
=============================================*/
.cards-boxes .all-boxes .box-one {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.cards-boxes .all-boxes .box-one .icon-box .icon-01 {
  width: 40px;
  height: 40px;
  background: var(--dark-02-color);
  border-radius: 8px;
  display: block;
  margin-top: 15px;
  margin-bottom: -24px;
}
.cards-boxes .all-boxes::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--dark-02-color);
  top: 28%;
  transform: translateY(-50%);
  z-index: -1;
}

.cards-boxes .all-boxes .icon-01.active,
.cards-boxes .all-boxes .box-one:hover .icon-01 {
  background: var(--gradient) !important;
}

/* #cards-boxes div:nth-child(1) > div > .icon-box > .icon-01 {
  transition: all 0.5s;
}
#cards-boxes div:nth-child(1) > div > .icon-box > .icon-01,
#cards-boxes div:nth-child(1) > div > .box-one:hover > .icon-box > .icon-01 {
  background: var(--gradient);
} */
.cards-boxes .all-boxes .box-one .icon-box {
  overflow-y: hidden;
}
.cards-boxes .all-boxes .box-one .icon-box .num-box {
  color: var(--dark-02-color);
  font-size: 45px;
  transform: translateY(28px);
}
.cards-boxes .all-boxes .box-one .info-box {
  padding: 15px 0;
}
/* ====================================
END SECTION CARDS BOXES
=============================================*/
/* ===========================================
START SECTION TEAMM SYN 
============================================*/

#team-syn-about .all-team-syn .team-one-syn .content-info {
  position: absolute;
  bottom: 10px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  border: none;
  padding: 15px 0;
  transition: bottom 0.5s ease-in-out;
}
#team-syn-about .all-team-syn .team-one-syn .info {
  left: 0 !important;
}

#team-syn-about .all-team-syn .team-one-syn .content-info :is(.social-links) {
  transition: all 0.7s;
}
#team-syn-about .all-team-syn .team-one-syn .link-social-one {
  transition: all 0.5s;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: rgb(53 46 255 / 25%) 0px 0px 62px 9px,
    rgb(255, 255, 255) 0px 0px 27px 0px inset;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  z-index: 1;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  overflow: hidden;
  transition: 0.5s;
  backdrop-filter: blur(15px);
  position: relative;
}
#team-syn-about .all-team-syn .team-one-syn .link-social-one::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(45deg) translateX(0);
  transition: 0.5s;
}
#team-syn-about .all-team-syn .team-one-syn .link-social-one:hover::before {
  transform: skewX(45deg) translateX(200%);
}

#team-syn-about .all-team-syn .team-one-syn .link-social-one::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.5s;
  transition-delay: 0.5s;
  z-index: -1;
}
#team-syn-about .all-team-syn .team-one-syn .link-social-one:hover::after {
  top: 0;
  background: var(--cyan-01-color);
}
/* ===========================================
END SECTION TEAMM SYN 
============================================*/
/* =======================================================================================
END PAGE ABOUT
============================================================================================*/
/* ========================================================================================
START PAGE PROJECTS
============================================================================================*/
/* =================================
START HEADER INFO
==================================*/
.header-info .image-bg-shape {
  z-index: -1;
}

.scrolldown {
  --color: var(--white-01-color);
  --sizeX: 30px;
  --sizeY: 50px;
  position: relative;
  width: var(--sizeX);
  height: var(--sizeY);
  margin-left: var(sizeX / 2);
  border: calc(var(--sizeX) / 10) solid var(--color);
  border-radius: 50px;
  box-sizing: border-box;
  margin-bottom: 16px;
  cursor: pointer;
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--color);
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px 1px #2a547066;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }

  40% {
    opacity: 1;
    height: 10px;
  }

  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }

  100% {
    height: 3px;
    opacity: 0;
  }
}

.scrolldown .chevrons {
  padding: 6px 0 0 0;
  margin-left: -3px;
  margin-top: 48px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scrolldown .chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid var(--color);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  left: 10%;
}

.scrolldown .chevrondown:nth-child(odd) {
  animation: pulse54012 500ms ease infinite alternate;
}

.scrolldown .chevrondown:nth-child(even) {
  animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.5;
  }
}

/* SCREEN 480px */
@media screen and (max-width: 480px) {
  .header-info .content-info-projects .title {
    font-size: 28px !important;
  }
  .header-info .content-info-projects .main-content-info {
    gap: 30px !important;
  }
}

/* =====================================
END HEADER INFO
======================================*/
/* ======================================
START SECTION FILTER PROJECTS
======================================*/

.filter-projects .all-projects-filter {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.filter-projects .all-projects-filter .box-project-one .imgae-project img {
  height: 100%;
  max-height: 300px;
}
.filter-projects .filter-links-projects {
  border: var(--border-02);
  padding: 16px 100px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.filter-projects .filter-links-projects .list-filter-project {
  gap: 50px;
}

/* SCREEN 768PX */
@media screen and (max-width: 768px) {
  .filter-projects :is(.filter-links-projects, .list-filter-project) {
    width: 100%;
    justify-content: center;
  }
}

/* SCREEN 450PX */

@media screen and (max-width: 450px) {
  .filter-projects :is(.filter-links-projects, .list-filter-project) {
    justify-content: initial;
  }
  .filter-projects .filter-links-projects {
    border: none;
    border-bottom: var(--border-02) !important;
    padding: 16px 0;
    overflow: scroll hidden;
  }

  .filter-projects .filter-links-projects .list-filter-project {
    gap: 36px;
  }
}
.filter-projects .filter-links-projects .list-filter-project .nav-filter {
  position: relative;
  cursor: pointer;
}
.filter-projects
  .filter-links-projects
  .list-filter-project
  .nav-filter::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: var(--gray-01-color);
  bottom: -17px;
  right: 0;
  border-radius: 8px;
  transition: all 0.5s;
}
.filter-projects
  .filter-links-projects
  .list-filter-project
  .nav-filter.active::after {
  width: 100%;
}
.filter-projects
  .box-project-one
  :is(.title-info-pro, .icon-arrow path, .icon-arrow svg g, img) {
  transition: all 0.5s;
}
.filter-projects
  .box-project-one:hover
  :is(.title-info-pro, .icon-arrow svg g, .icon-arrow svg path) {
  fill: var(--cyan-01-color);
  color: var(--cyan-01-color);
  opacity: 1;
}
.filter-projects .box-project-one .image-project {
  border: var(--border-02);
  border-radius: 16px;
}
.filter-projects .box-project-one .image-project::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  border-radius: 16px;
}

.filter-projects .box-project-one:hover .image-project:before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.all-pagination .pagination .page-link {
  background: var(--dark-01-color);
  border: var(--border-01);
  border-color: var(--dark-02-color);
  color: var(--white-01-color);
  border-radius: 6px;
  padding: 8px 15px;
  transition: all 0.5s;
  cursor: pointer;
}
.all-pagination .pagination .page-link.active {
  background: var(--gray-03-color);
  border-color: var(--gray-03-color);
}
/* ====================================
END SECTION FILTER PROJECTS
========================================*/
/* ========================================================================================
END PAGE PROJECTS
============================================================================================*/
#card-team-swiper {
  display: none;
}

.cards-teams .all-cards-teams {
  --cards-text-color: var(--white-01-color);
  --cards-closed-size: 4rem;
  --animation-speed-normal: 0.5s;
  --animation-speed-fast: 0.25s;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.cards-teams .card-one {
  width: 100%;
  height: var(--cards-closed-size);
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
  z-index: 1;
  transition: all var(--animation-speed-normal) ease-in-out;
  cursor: pointer;
}

.cards-teams .card-one[active] {
  height: 56vw;
}
.cards-teams .card-one:nth-child(1),
.cards-teams .card-one:nth-child(7) {
  height: 230px;
}
.cards-teams .card-one:nth-child(2),
.cards-teams .card-one:nth-child(6) {
  height: 280px;
}
.cards-teams .card-one:nth-child(3),
.cards-teams .card-one:nth-child(5) {
  height: 320px;
}

.cards-teams .card-one .card-image {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;
  filter: brightness(0.675) saturate(75%);
  transition: filter var(--animation-speed-fast) ease-in-out;
}

.cards-teams .card-one:hover .card-image {
  filter: brightness(0.875) saturate(100%);
}

.cards-teams .card-one .card-infos {
  position: absolute;
  bottom: 16px;
  left: 0;
  z-index: 2;
  height: var(--cards-closed-size);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.125rem;
  width: 100%;
  padding: 0.25rem 1rem;
}

.cards-teams .card-one .card-name {
  margin: 0;
  color: var(--cards-text-color);
  transform: translateY(0.65rem);
  transition: all var(--animation-speed-normal) ease-in-out;
  font-size: 1.5rem;
}

.cards-teams .card-one[active] .card-name {
  transform: translateY(0);
}

.cards-teams .card-one .card-author {
  margin: 0;
  color: var(--cards-text-color);
  text-decoration: none;
  transform: translateY(0.65rem);
  opacity: 0;
  transition: opacity var(--animation-speed-fast) ease-in-out,
    transform var(--animation-speed-normal) ease-in-out;
}

.cards-teams .card-one[active] .card-author {
  transform: translateY(0);
  opacity: 1;
}

.cards-teams .card-one[active] .card-author:hover {
  opacity: 0.75;
}

.cards-teams .card-one .social-links {
  position: absolute;
  z-index: 1;
  bottom: 30px;
  left: -150%;
  transition: left 0.5s;
}
.cards-teams .card-one[active] .social-links {
  left: 30px;
}
.cards-teams .social-links .link-social-one {
  background: var(--dark-01-color);
  color: var(--white-01-color);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 640px) {
  .cards-teams .all-cards-teams {
    /* max-width: 640px; */
    width: 100%;
    margin: 0 auto;
    flex-direction: row;
    justify-content: center;
  }

  .cards-teams .card-one {
    width: var(--cards-closed-size);
    height: 20rem;
    flex: 0 0 var(--cards-closed-size);
  }

  .cards-teams .card-one[active] {
    width: 100%;
    height: 26rem;
    /* flex: 0 0 calc(640px - 19rem); */
    flex: 0 0 calc(100% - 46rem);
  }

  .cards-teams .card-one .card-name {
    position: relative;
    right: -50%;
    transform: rotate(-90deg) translate(1rem, 50%);
    width: max-content;
    height: 100%;
  }
  .cards-teams .card-one[active] .card-name {
    right: 0%;
    transform: rotate(0) translate(0);
  }
}
@media screen and (max-width: 1200px) {
  #card-team-swiper {
    display: block;
  }
  #cards-teams-expanding {
    display: none;
  }
}

/* 
@media screen and (max-width: 650px) {
  .cards-teams .card-one,
  .cards-teams .card-one[active] {
    height: 50vh;
  }
} */

.time-picker {
  display: flex;
  justify-content: center;
  flex-direction: column;
  transition: all 0.4s ease;
  height: 0;
  overflow: hidden;
}
.time-picker .set-time {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.time-picker .label {
  width: 60px;
  margin: 0 5px;
  text-align: center;
  line-height: 34px;
  display: inline-style;
}
.time-picker .label a {
  display: block;
  border: 1px solid #dddddd;
  cursor: pointer;
  font-size: 28px;
  font-weight: bold;
  border-radius: 3px;
}
.time-picker .label a:hover,
.time-picker .label a:active {
  background-color: red;
  color: #ffffff;
}
.time-picker .label .set {
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  line-height: 34px;
  font-size: 20px;
  font-weight: bold;
  border: transparent;
}
.time-picker #submitTime {
  text-align: center;
  line-height: 34px;
  border: 1px solid #dddddd;
  width: 128px;
  margin: auto;
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
}

.time-picker.open {
  border: 1px solid #dddddd;
  padding: 15px;
  transition: all 0.5s ease;
  height: auto;
  background-color: #fcfcfc;
}
