@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.swiper-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  flex-direction: column;
  height: 80vh;
  padding: 0 0 8rem;
  overflow: hidden;
}
@media only screen and (max-width: 540px) {
  .swiper-wrap {
    height: 55vh;
    padding: 0 0 3rem;
  }
}
.swiper-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.28) 51%, rgba(0, 0, 0, 0.1) 100%);
}
.swiper-wrap img, .swiper-wrap video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.swiper-wrap ul {
  display: flex;
  justify-content: center;
  gap: 65px;
  margin: 40px 0 60px;
}
.swiper-wrap ul li {
  color: var(--litewhite);
  font-size: 14px;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
}
.swiper-wrap ul li::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: 0.3s ease;
}
.swiper-wrap ul li.active {
  color: var(--white);
}
.swiper-wrap ul li.active::after {
  width: 100%;
}
.swiper-wrap .heading {
  text-align: center;
  z-index: 2;
}
@media only screen and (max-width: 540px) {
  .swiper-wrap .heading {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
  }
}
@media only screen and (max-width: 420px) {
  .swiper-wrap .heading {
    width: 96%;
  }
}
.swiper-wrap .heading h2 {
  color: var(--white);
  font-size: 48px;
  text-transform: uppercase;
  margin: 10px 0 30px;
  transform: scale(1.4);
  font-family: "Optima";
}
@media only screen and (max-width: 1280px) {
  .swiper-wrap .heading h2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 991px) {
  .swiper-wrap .heading h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .swiper-wrap .heading h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .swiper-wrap .heading h2 {
    font-size: 24px;
    margin: 10px 0 20px;
  }
}
@media only screen and (max-width: 420px) {
  .swiper-wrap .heading h2 {
    font-size: 18px;
  }
}
.swiper-wrap .heading h2 span {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}
@media only screen and (max-width: 540px) {
  .swiper-wrap .heading h2 span {
    font-size: 14px;
  }
}
.swiper-wrap .heading p {
  color: var(--litewhite);
  width: 100%;
  max-width: 524px;
  margin: 0 auto;
}
@media only screen and (max-width: 540px) {
  .swiper-wrap .heading p {
    font-size: 14px;
  }
}

.project-secA {
  padding: 5rem 0 0 !important;
}
@media only screen and (max-width: 540px) {
  .project-secA {
    padding: 3rem 0 0 !important;
  }
}
.project-secA .heading-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 0 50px;
}
@media only screen and (max-width: 768px) {
  .project-secA .heading-wrap {
    width: 85%;
    margin: 0 auto;
    flex-direction: column;
    gap: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .project-secA .heading-wrap {
    width: 100%;
  }
}
@media only screen and (max-width: 420px) {
  .project-secA .heading-wrap {
    gap: 20px;
  }
}
.project-secA .heading-wrap .heading {
  width: 50%;
}
@media only screen and (max-width: 991px) {
  .project-secA .heading-wrap .heading {
    width: 60%;
  }
}
@media only screen and (max-width: 768px) {
  .project-secA .heading-wrap .heading {
    width: 100%;
    text-align: center;
  }
}
.project-secA .heading-wrap .heading h3 {
  margin-bottom: 14px;
  text-transform: uppercase;
}
.project-secA .tab-parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  z-index: 2;
}
.project-secA .tab-parent .tab-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 420px) {
  .project-secA .tab-parent .tab-nav {
    gap: 15px;
  }
}
.project-secA .tab-parent .tab-nav li {
  position: relative;
  font-size: 1rem;
  color: var(--text);
  transition: color 0.3s ease;
  cursor: pointer;
}
@media only screen and (max-width: 420px) {
  .project-secA .tab-parent .tab-nav li {
    font-size: 13px;
  }
}
.project-secA .tab-parent .tab-nav li:not(:first-child):not(.dropdown .dropdown-item)::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: all 0.4s ease-in-out;
}
.project-secA .tab-parent .tab-nav li:not(:first-child):not(.dropdown):hover::before, .project-secA .tab-parent .tab-nav li:not(:first-child):not(.dropdown).active::before {
  width: 100%;
}
.project-secA .tab-parent .tab-nav li:hover, .project-secA .tab-parent .tab-nav li.active {
  color: var(--secondary);
}
.project-secA .dropdown {
  position: relative;
  display: inline-block;
}
.project-secA .dropdown-toggle {
  background: transparent;
  border: none;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 540px) {
  .project-secA .dropdown-toggle {
    gap: 12px;
  }
}
.project-secA .dropdown-toggle:hover {
  color: var(--secondary);
}
.project-secA .dropdown-toggle svg {
  transition: transform 0.3s ease;
}
.project-secA .dropdown-toggle.active {
  color: var(--secondary);
}
.project-secA .dropdown-toggle.active svg {
  stroke: var(--secondary);
}
.project-secA .dropdown-menu {
  position: absolute;
  top: 150%;
  left: 0;
  width: 200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 8px 12px;
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10000 !important;
}
.project-secA .dropdown-menu.open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.project-secA .dropdown-menu.open .dropdown-item {
  animation: fadeInUp 0.3s ease forwards;
  border: none !important;
}
.project-secA .dropdown-menu.open .dropdown-item:nth-child(1) {
  animation-delay: 0.05s;
}
.project-secA .dropdown-menu.open .dropdown-item:nth-child(2) {
  animation-delay: 0.1s;
}
.project-secA .dropdown-menu.open .dropdown-item:nth-child(3) {
  animation-delay: 0.15s;
}
.project-secA .dropdown-menu.open .dropdown-item:nth-child(4) {
  animation-delay: 0.2s;
}
.project-secA .dropdown-item {
  padding: 4px 15px;
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  border: none !important;
  z-index: 999999 !important;
}
.project-secA .dropdown-item:hover {
  color: var(--secondary);
}
.project-secA .dropdown-item:hover::before {
  width: 0 !important;
}
.project-secA .dropdown .dropdown-toggle {
  padding-bottom: 10px;
  border-bottom: 1px solid #a9a9a9;
}
.project-secA .dropdown.active {
  color: var(--secondary);
}
.project-secA .dropdown.active .dropdown-toggle {
  border-bottom: 2px solid var(--secondary);
}
.project-secA .dropdown.active .dropdown-toggle svg {
  transform: rotate(180deg);
}

.tabs-wrap {
  opacity: 1;
  margin: 0 0 8rem;
  display: inline-block !important;
  width: 100%;
}
@media only screen and (max-width: 540px) {
  .tabs-wrap {
    margin: 0 0 3rem;
  }
}
.tabs-wrap .commonSlider {
  width: 100%;
  cursor: pointer;
}
.tabs-wrap .commonSlider .slider-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .tabs-wrap .commonSlider .slider-wrapper {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 420px) {
  .tabs-wrap .commonSlider .slider-wrapper {
    gap: 1rem;
  }
}
.tabs-wrap .commonSlider .slider-wrapper .slide {
  flex: 0 0 auto;
  width: auto;
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  display: block;
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0));
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card img {
  border-radius: 15px;
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
  height: 530px;
  -o-object-fit: fill;
     object-fit: fill;
}
@media only screen and (max-width: 1580px) {
  .tabs-wrap .commonSlider .slider-wrapper .slide .card img {
    height: 450px;
  }
}
@media only screen and (max-width: 540px) {
  .tabs-wrap .commonSlider .slider-wrapper .slide .card img {
    height: 285px;
  }
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 35px 30px;
  width: 100%;
  transition: padding 0.4s ease;
  z-index: 2;
}
@media only screen and (max-width: 540px) {
  .tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content {
    padding: 20px;
  }
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content h6 {
  color: var(--white);
  text-align: left;
  font-family: lato;
  transition: transform 0.4s ease;
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content p {
  color: var(--litewhite);
  transition: transform 0.4s ease;
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group {
  margin: 0;
  display: flex;
  justify-content: space-between;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 991px) {
  .tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group {
    max-height: 200px;
    margin-top: 10px;
    opacity: 1;
  }
}
@media only screen and (max-width: 675px) {
  .tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group {
    flex-direction: column-reverse;
    margin-top: 16px;
    gap: 12px;
  }
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group li .xplore-btn {
  color: var(--white);
  text-transform: uppercase;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: 0.3s ease;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  .tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group li .xplore-btn {
    gap: 10px;
  }
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group li .xplore-btn::before {
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 1.5px;
  content: "";
  background: var(--white);
  transition: width 0.3s ease;
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group li .xplore-btn svg {
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group li .xplore-btn svg path {
  fill: var(--white);
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group li .xplore-btn:hover {
  gap: 25px;
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group li .xplore-btn:hover svg {
  transform: rotate(180deg) translateX(-5px);
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group li:last-child {
  display: flex;
  gap: 20px;
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group li:last-child .content-left p:first-child,
.tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group li:last-child .content-right p:first-child {
  font-size: 14px;
  color: var(--litewhite);
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  .tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group li:last-child .content-left p:first-child,
  .tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group li:last-child .content-right p:first-child {
    font-size: 13px;
  }
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group li:last-child .content-left p:last-child,
.tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group li:last-child .content-right p:last-child {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  .tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group li:last-child .content-left p:last-child,
  .tabs-wrap .commonSlider .slider-wrapper .slide .card .card-content .xplore-group li:last-child .content-right p:last-child {
    font-size: 13px;
  }
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card:hover img {
  transform: scale(1.05);
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card:hover .card-content {
  padding: 50px 30px 35px;
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card:hover .card-content h6,
.tabs-wrap .commonSlider .slider-wrapper .slide .card:hover .card-content p {
  transform: translateY(-10px);
}
.tabs-wrap .commonSlider .slider-wrapper .slide .card:hover .card-content .xplore-group {
  padding: 24px 0 0;
  max-height: 200px;
  opacity: 1;
}
.tabs-wrap .commonSlider .leadMore {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5rem 0 0;
}
@media only screen and (max-width: 540px) {
  .tabs-wrap .commonSlider .leadMore {
    padding: 3rem 0 0;
  }
}
.tabs-wrap .commonSlider .leadMore img {
  width: 120px;
}
.tabs-wrap .commonSlider .leadMore span {
  color: var(--secondary);
  font-size: 16px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=projects.css.map */