@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.home-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .home-banner {
    height: 70vh;
  }
}
@media only screen and (max-width: 991px) {
  .home-banner {
    height: 60vh;
  }
}
.home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(218deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.2)), linear-gradient(267deg, rgba(0, 0, 0, 0.25) 23.08%, rgba(0, 0, 0, 0.582) 79.33%), linear-gradient(360deg, rgba(0, 0, 0, 0) 54.81%, rgba(0, 0, 0, 0.3) 100%);
}
.home-banner img, .home-banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.home-banner .bg-wrapper {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 93%;
}
@media only screen and (max-width: 540px) {
  .home-banner .bg-wrapper {
    top: inherit;
  }
}
.home-banner .bg-wrapper .heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 100%;
}
@media only screen and (max-width: 540px) {
  .home-banner .bg-wrapper .heading {
    flex-direction: column;
    align-items: center;
  }
}
.home-banner .bg-wrapper .heading .left-content h3 {
  color: var(--white);
  font-family: "Optima";
}
.home-banner .bg-wrapper .heading .left-content ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
@media only screen and (max-width: 991px) {
  .home-banner .bg-wrapper .heading .left-content ul {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 991px) {
  .home-banner .bg-wrapper .heading .left-content ul li {
    font-size: 14px;
  }
}
.home-banner .bg-wrapper .heading .left-content ul .border {
  width: 2px;
  height: 15px;
  background: var(--text);
}
.home-banner .bg-wrapper .heading .right-content .bottom-btn {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 25px;
}
@media only screen and (max-width: 768px) {
  .home-banner .bg-wrapper .heading .right-content .bottom-btn {
    justify-content: center;
  }
}
@media only screen and (max-width: 420px) {
  .home-banner .bg-wrapper .heading .right-content .bottom-btn {
    gap: 18px;
  }
}
.home-banner .bg-wrapper .heading .right-content .bottom-btn .brochure-btn {
  background: white;
  color: black;
  padding: 6px 23px;
  font-family: "Circular Pro Book";
  font-weight: 450;
  font-size: 16px;
  text-align: center;
  border-radius: 25px;
  transition: 0.7s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--white);
}
.home-banner .bg-wrapper .heading .right-content .bottom-btn .brochure-btn::before {
  content: "";
  position: absolute;
  bottom: -110%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  transition: 0.7s ease;
}
.home-banner .bg-wrapper .heading .right-content .bottom-btn .brochure-btn:hover {
  color: var(--white);
}
.home-banner .bg-wrapper .heading .right-content .bottom-btn .brochure-btn:hover::before {
  bottom: 0;
  z-index: -1;
}
.home-banner .bg-wrapper .heading .right-content .bottom-btn .wts {
  border: 1px solid white;
  color: white;
  padding: 6px 23px;
  font-family: "Circular Pro Book";
  font-weight: 450;
  font-size: 16px;
  text-align: center;
  border-radius: 25px;
  position: relative;
  transition: 0.5s ease;
  overflow: hidden;
}
.home-banner .bg-wrapper .heading .right-content .bottom-btn .wts::before {
  content: "";
  position: absolute;
  background: white;
  width: 100%;
  height: 100%;
  bottom: -100%;
  left: 0;
  transition: 0.5s ease;
  z-index: -1;
}
.home-banner .bg-wrapper .heading .right-content .bottom-btn .wts:hover {
  color: black;
}
.home-banner .bg-wrapper .heading .right-content .bottom-btn .wts:hover::before {
  bottom: 0;
}

.project-dtl-A {
  background: var(--primary);
  padding: 90px 0;
  /* ===========================
  * RESPONSIVE BREAKPOINTS
  * =========================== */
}
@media only screen and (max-width: 1366px) {
  .project-dtl-A {
    padding: 90px 0 50px;
  }
}
.project-dtl-A .grid {
  display: flex;
  justify-content: space-between;
  gap: 8rem;
  flex-wrap: wrap;
}
.project-dtl-A .grid .item-content {
  flex: 1 1 45%;
  max-width: 750px;
}
.project-dtl-A .grid .item-content h5 {
  color: var(--black);
  font-family: "Optima";
}
.project-dtl-A .grid .item-content p {
  margin: 12px 0 13px;
  color: var(--text);
}
.project-dtl-A .grid .item-content button {
  color: var(--black);
  font-family: "lato";
  text-transform: capitalize;
  display: flex;
  align-items: center;
  font-weight: 600;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .project-dtl-A .grid .item-content button {
    justify-content: center;
    width: 100%;
  }
}
.project-dtl-A .grid .item-content button svg {
  width: 20px;
  height: 20px;
}
.project-dtl-A .grid .item-content .sort-dtl {
  padding-top: 6rem;
  display: flex;
  gap: 5rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1366px) {
  .project-dtl-A .grid .item-content .sort-dtl {
    padding-top: 4rem;
  }
}
.project-dtl-A .grid .item-content .sort-dtl li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.project-dtl-A .grid .item-content .sort-dtl li:not(:first-child) {
  border-left: 1px solid var(--litewhite);
  padding-left: 4rem;
}
@media only screen and (max-width: 1366px) {
  .project-dtl-A .grid .item-content .sort-dtl li:not(:first-child) {
    padding-left: 2rem;
  }
}
.project-dtl-A .grid .item-content .sort-dtl li p {
  color: var(--text);
  font-size: 16px;
  margin: 20px 0 5px;
  font-weight: 600;
}
.project-dtl-A .grid .item-content .sort-dtl li span {
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
}
.project-dtl-A .grid .item-content .sort-dtl li svg {
  width: 25px;
}
.project-dtl-A .grid .item-img {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.project-dtl-A .grid .item-img img {
  width: 100%;
  max-width: 600px;
  height: auto;
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
.project-dtl-A .grid .item-img:hover img {
  transform: scale(1);
}
@media only screen and (max-width: 1560px) {
  .project-dtl-A .grid {
    gap: 3rem;
  }
  .project-dtl-A .grid .item-content .sort-dtl {
    gap: 2rem;
  }
}
@media only screen and (max-width: 1024px) {
  .project-dtl-A .grid .item-content .sort-dtl {
    gap: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .project-dtl-A .grid {
    gap: 4rem;
  }
  .project-dtl-A .grid .item-content,
  .project-dtl-A .grid .item-img {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .project-dtl-A .grid .item-content {
    order: 2;
    text-align: center;
  }
  .project-dtl-A .grid .item-content .sort-dtl {
    justify-content: center;
    gap: 5rem;
    padding-top: 4rem;
  }
  .project-dtl-A .grid .item-content .sort-dtl li:not(:first-child) {
    border-left: none;
    padding-left: 0;
  }
  .project-dtl-A .grid .item-img {
    order: 1;
  }
}
@media only screen and (max-width: 767px) {
  .project-dtl-A {
    padding: 60px 0;
  }
  .project-dtl-A .grid {
    gap: 3rem;
  }
  .project-dtl-A .grid .item-content p {
    margin: 15px 0 25px;
  }
  .project-dtl-A .grid .item-content .sort-dtl {
    gap: 2rem;
  }
  .project-dtl-A .grid .item-content .sort-dtl li p {
    font-size: 15px;
  }
  .project-dtl-A .grid .item-content .sort-dtl li span {
    font-size: 13px;
  }
  .project-dtl-A .grid .item-content .sort-dtl li svg {
    width: 22px;
  }
}
@media only screen and (max-width: 520px) {
  .project-dtl-A {
    padding: 50px 0 0;
  }
  .project-dtl-A .grid {
    gap: 2.5rem;
  }
  .project-dtl-A .grid .item-content h5 {
    font-size: 20px;
  }
  .project-dtl-A .grid .item-content p {
    font-size: 14px;
  }
  .project-dtl-A .grid .item-content button {
    font-size: 14px;
    gap: 8px;
  }
  .project-dtl-A .grid .item-content button svg {
    width: 16px;
    height: 16px;
  }
  .project-dtl-A .grid .item-content .sort-dtl {
    padding-top: 3rem;
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
  }
  .project-dtl-A .grid .item-content .sort-dtl li {
    border-left: none;
    padding-left: 0;
  }
  .project-dtl-A .grid .item-content .sort-dtl li p {
    font-size: 14px;
  }
  .project-dtl-A .grid .item-content .sort-dtl li span {
    font-size: 13px;
  }
  .project-dtl-A .grid .item-content .sort-dtl li svg {
    width: 20px;
  }
  .project-dtl-A .grid .item-img img {
    max-width: 100%;
    border-radius: 8px;
  }
}

.project-dtl-B {
  background: var(--primary);
  padding: 70px 0;
}
@media only screen and (max-width: 540px) {
  .project-dtl-B {
    padding: 50px 0 60px;
  }
}
.project-dtl-B .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .project-dtl-B .heading {
    justify-content: center;
  }
}
.project-dtl-B .heading h5 {
  color: var(--secondary);
  font-size: 36px;
  margin: 0;
  flex-shrink: 0;
  font-family: "Optima";
}
.project-dtl-B .heading .header-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1 1 auto;
}
@media only screen and (max-width: 675px) {
  .project-dtl-B .heading .header-wrapper {
    display: none;
  }
}
.project-dtl-B .heading .header-wrapper .swiper-group {
  display: flex;
  gap: 10px;
}
.project-dtl-B .heading .header-wrapper .swiper-group button {
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--black);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: all 0.3s ease;
}
.project-dtl-B .heading .header-wrapper .swiper-group button:hover {
  background: var(--gradient-a);
}
.project-dtl-B .heading .header-wrapper .swiper-group button:hover svg path {
  fill: var(--primary);
}
.project-dtl-B .heading .header-wrapper .swiper-group button svg {
  width: 20px;
  height: 20px;
}
.project-dtl-B .heading .header-wrapper .swiper-group button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.project-dtl-B .heading .header-wrapper .swiper-group .awards-next {
  transform: rotate(270deg);
}
.project-dtl-B .heading .header-wrapper .swiper-group .awards-prev {
  transform: rotate(90deg);
}
.project-dtl-B .heading .header-wrapper .progress-line-wrapper {
  flex: 1;
  min-width: 200px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}
.project-dtl-B .heading .header-wrapper .progress-line-wrapper .progress-fill {
  height: 100%;
  width: 0;
  background: var(--gradient-d);
  transition: width 0.3s ease;
}

.amenities-swiper {
  width: 100%;
  padding: 2rem 0;
}
@media only screen and (max-width: 1280px) {
  .amenities-swiper {
    padding: 0;
  }
}
.amenities-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.amenities-swiper .swiper-slide.amenity-card {
  position: relative;
  border: 1px solid #8f8f8f;
  padding: 3rem 2rem;
  text-align: center;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.amenities-swiper .swiper-slide.amenity-card .bg-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 1;
}
.amenities-swiper .swiper-slide.amenity-card .bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.amenities-swiper .swiper-slide.amenity-card .bg-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.67) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 2;
}
.amenities-swiper .swiper-slide.amenity-card .icon {
  position: relative;
  z-index: 3;
}
.amenities-swiper .swiper-slide.amenity-card .icon img {
  width: 48px;
  height: 48px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.45s ease;
}
.amenities-swiper .swiper-slide.amenity-card h6 {
  position: relative;
  z-index: 3;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.45s ease, color 0.45s ease;
}
.amenities-swiper .swiper-slide.amenity-card:hover {
  cursor: pointer;
}
.amenities-swiper .swiper-slide.amenity-card:hover .bg-img {
  opacity: 1;
}
.amenities-swiper .swiper-slide.amenity-card:hover .bg-img::before {
  opacity: 1;
}
.amenities-swiper .swiper-slide.amenity-card:hover .icon img {
  transform: translateY(-12px);
  filter: brightness(0) invert(1);
}
.amenities-swiper .swiper-slide.amenity-card:hover h6 {
  transform: translateY(5px);
  opacity: 1;
  color: #fff;
}

.project-dtl-C {
  background: var(--primary);
  padding: 0 0 90px;
}
@media only screen and (max-width: 1280px) {
  .project-dtl-C {
    padding: 0 0 30px;
  }
}
.project-dtl-C .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 4rem;
}
@media only screen and (max-width: 991px) {
  .project-dtl-C .grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 540px) {
  .project-dtl-C .grid {
    gap: 2rem;
  }
}
.project-dtl-C .grid .item-img {
  overflow: hidden;
  border-radius: 10px;
}
.project-dtl-C .grid .item-img img {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.project-dtl-C .grid .item-img:hover img {
  transform: scale(1);
}
@media only screen and (max-width: 991px) {
  .project-dtl-C .grid .item-content {
    text-align: center;
  }
}
.project-dtl-C .grid .item-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.project-dtl-C .grid .item-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 7px;
  color: var(--text);
  line-height: 1.3;
  font-size: 15px;
  text-align: left;
}
.project-dtl-C .grid .item-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gradient-d);
  border-radius: 50%;
}
.project-dtl-C .grid .item-content h5 {
  color: var(--secondary);
  font-family: "Optima";
}
.project-dtl-C .grid .item-content p {
  color: var(--text);
  margin: 20px 0 25px;
}
.project-dtl-C .grid .item-content .btn {
  background: var(--gradient-c);
  color: white;
  padding: 10px 30px;
  font-family: "Circular Pro Book";
  font-weight: 450;
  font-size: 16px;
  border: none;
  text-align: center;
  border-radius: 25px;
  transition: color 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 40px;
}
@media only screen and (max-width: 540px) {
  .project-dtl-C .grid .item-content .btn {
    margin-top: 4px;
  }
}
.project-dtl-C .grid .item-content .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-d);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
  border-radius: inherit;
}
.project-dtl-C .grid .item-content .btn:hover::before {
  opacity: 1;
}
.project-dtl-C .grid .item-content .btn:hover::before ~ .item-img img {
  transform: scale(1);
}

.project-dtl-D {
  background: var(--primary);
  overflow-y: hidden;
}
.project-dtl-D .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .project-dtl-D .heading {
    justify-content: center;
  }
}
@media only screen and (max-width: 540px) {
  .project-dtl-D .heading {
    margin-bottom: 2rem;
  }
}
.project-dtl-D .heading h5 {
  color: var(--secondary);
  font-size: 36px;
  margin: 0;
  flex-shrink: 0;
  font-family: "Optima";
}
.project-dtl-D .heading .header-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1 1 auto;
}
@media only screen and (max-width: 675px) {
  .project-dtl-D .heading .header-wrapper {
    display: none;
  }
}
.project-dtl-D .heading .header-wrapper .swiper-group {
  display: flex;
  gap: 10px;
}
.project-dtl-D .heading .header-wrapper .swiper-group button {
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--black);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: all 0.3s ease;
}
.project-dtl-D .heading .header-wrapper .swiper-group button:hover {
  background: var(--gradient-a);
}
.project-dtl-D .heading .header-wrapper .swiper-group button:hover svg path {
  fill: var(--primary);
}
.project-dtl-D .heading .header-wrapper .swiper-group button svg {
  width: 20px;
  height: 20px;
}
.project-dtl-D .heading .header-wrapper .swiper-group button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.project-dtl-D .heading .header-wrapper .swiper-group .floor-next {
  transform: rotate(270deg);
}
.project-dtl-D .heading .header-wrapper .swiper-group .floor-prev {
  transform: rotate(90deg);
}
.project-dtl-D .heading .header-wrapper .progress-line-wrapper {
  flex: 1;
  min-width: 200px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}
.project-dtl-D .heading .header-wrapper .progress-line-wrapper .progress-fill {
  height: 100%;
  width: 0;
  background: var(--gradient-d);
  transition: width 0.3s ease;
}
.project-dtl-D .floor-slider .swiper-wrapper .item {
  border-radius: 10px;
  border: 1px solid var(--text);
  overflow: hidden;
}
.project-dtl-D .floor-slider .swiper-wrapper .item .img {
  text-align: center;
  padding: 0;
  display: flex;
  border-radius: 10px;
  justify-content: center;
  width: 100%;
}
.project-dtl-D .floor-slider .swiper-wrapper .item .img img {
  width: 100%;
  height: 380px;
}
@media only screen and (max-width: 1580px) {
  .project-dtl-D .floor-slider .swiper-wrapper .item .img img {
    height: 230px;
  }
}
@media only screen and (max-width: 420px) {
  .project-dtl-D .floor-slider .swiper-wrapper .item .img img {
    height: 180px;
  }
}
.project-dtl-D .floor-slider .swiper-wrapper .item .item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(234, 234, 234);
  padding: 30px;
  border-radius: 0 0 10px 10px;
}
@media only screen and (max-width: 420px) {
  .project-dtl-D .floor-slider .swiper-wrapper .item .item-content {
    padding: 18px;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
}
.project-dtl-D .floor-slider .swiper-wrapper .item .item-content p {
  font-family: "lato";
  color: var(--black);
  font-weight: 600;
  font-size: 18px;
}
.project-dtl-D .floor-slider .swiper-wrapper .item .item-content .btn {
  background: var(--gradient-c);
  color: white;
  padding: 10px 30px;
  font-family: "lato";
  font-weight: 450;
  font-size: 16px;
  text-align: center;
  border-radius: 25px;
  transition: color 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
}
.project-dtl-D .floor-slider .swiper-wrapper .item .item-content .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-d);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
  border-radius: inherit;
}
.project-dtl-D .floor-slider .swiper-wrapper .item .item-content .btn:hover::before {
  opacity: 1;
}
.project-dtl-D .floor-slider .swiper-wrapper .item .item-content .btn:hover::before .item img {
  transform: scale(1.2);
}

.project-dtl-E {
  background: var(--primary);
  padding: 70px 0;
  overflow-y: hidden;
}
@media only screen and (max-width: 540px) {
  .project-dtl-E {
    padding: 58px 0;
  }
}
.project-dtl-E .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .project-dtl-E .heading {
    justify-content: center;
    margin-bottom: 2rem;
  }
}
.project-dtl-E .heading h5 {
  color: var(--secondary);
  font-size: 36px;
  margin: 0;
  font-family: "Optima";
  flex-shrink: 0;
}
.project-dtl-E .heading .header-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1 1 auto;
}
@media only screen and (max-width: 675px) {
  .project-dtl-E .heading .header-wrapper {
    display: none;
  }
}
.project-dtl-E .heading .header-wrapper .swiper-group {
  display: flex;
  gap: 10px;
}
.project-dtl-E .heading .header-wrapper .swiper-group button {
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--black);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: all 0.3s ease;
}
.project-dtl-E .heading .header-wrapper .swiper-group button:hover {
  background: var(--gradient-a);
}
.project-dtl-E .heading .header-wrapper .swiper-group button:hover svg path {
  fill: var(--primary);
}
.project-dtl-E .heading .header-wrapper .swiper-group button svg {
  width: 20px;
  height: 20px;
}
.project-dtl-E .heading .header-wrapper .swiper-group button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.project-dtl-E .heading .header-wrapper .swiper-group .gallery-next {
  transform: rotate(270deg);
}
.project-dtl-E .heading .header-wrapper .swiper-group .gallery-prev {
  transform: rotate(90deg);
}
.project-dtl-E .heading .header-wrapper .progress-line-wrapper {
  flex: 1;
  min-width: 200px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}
.project-dtl-E .heading .header-wrapper .progress-line-wrapper .progress-fill {
  height: 100%;
  width: 0;
  background: var(--gradient-d);
  transition: width 0.3s ease;
}
.project-dtl-E .gallery-slider .swiper-wrapper .item {
  overflow: hidden;
  border-radius: 10px;
}
.project-dtl-E .gallery-slider .swiper-wrapper .item img {
  width: 100%;
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  height: 450px;
}
@media only screen and (max-width: 1580px) {
  .project-dtl-E .gallery-slider .swiper-wrapper .item img {
    height: 350px;
  }
}
@media only screen and (max-width: 675px) {
  .project-dtl-E .gallery-slider .swiper-wrapper .item img {
    height: 200px;
  }
}
.project-dtl-E .gallery-slider .swiper-wrapper .item:hover img {
  transform: scale(1);
}

.project-dtl-f {
  background: var(--primary);
  padding: 0 0 0;
  overflow: hidden;
}
.project-dtl-f .heading {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 540px) {
  .project-dtl-f .heading {
    margin-bottom: 2rem;
  }
}
.project-dtl-f .heading h5 {
  color: var(--secondary);
  font-size: 36px;
  margin: 0;
  text-align: center;
  font-family: "Optima";
}
.project-dtl-f .location-slider {
  position: relative;
  overflow: visible;
}
.project-dtl-f .location-slider::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gradient-d);
  z-index: 0;
}
.project-dtl-f .location-slider .swiper-wrapper {
  position: relative;
}
.project-dtl-f .location-slider .swiper-slide {
  position: relative;
}
.project-dtl-f .location-slider .swiper-slide .item {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.project-dtl-f .location-slider .swiper-slide .item svg {
  width: 45px;
  height: 45px;
}
.project-dtl-f .location-slider .swiper-slide .item svg path[fill] {
  fill: var(--secondary);
  stroke: none;
}
.project-dtl-f .location-slider .swiper-slide .item svg path[stroke] {
  stroke: var(--secondary);
  fill: none;
}
.project-dtl-f .location-slider .swiper-slide .item .item-content {
  text-align: center;
}
.project-dtl-f .location-slider .swiper-slide .item .item-content p, .project-dtl-f .location-slider .swiper-slide .item .item-content span {
  font-size: 16px;
}
.project-dtl-f .location-slider .swiper-slide .item .item-content span {
  color: var(--black);
  margin: 0 0 35px;
  display: block;
}
.project-dtl-f .location-slider .swiper-slide .item .item-content p {
  margin: 10px 0 5px;
}
.project-dtl-f .location-slider .swiper-slide .item .item-content .dots {
  width: 15px;
  height: 15px;
  background: var(--gradient-a);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.project-dtl-f .bottom-btn {
  display: flex;
  justify-content: center;
  padding: 70px 0;
}
@media only screen and (max-width: 540px) {
  .project-dtl-f .bottom-btn {
    padding: 0;
    flex-direction: column;
  }
}
.project-dtl-f .bottom-btn .btn svg {
  width: 24px;
  height: 24px;
}
.project-dtl-f .bottom-btn .btn:hover {
  color: var(--white) !important;
}
.project-dtl-f .bottom-btn .btn:hover svg path {
  fill: var(--white);
}
.project-dtl-f .bottom-btn .btn-black {
  background: var(--gradient-c);
  color: white;
  padding: 8px 40px;
  font-family: "lato";
  font-weight: 450;
  font-size: 16px;
  border: none;
  text-align: center;
  border-radius: 25px;
  transition: color 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
}
.project-dtl-f .bottom-btn .btn-black::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-d);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
  border-radius: inherit;
}
.project-dtl-f .bottom-btn .btn-black:hover::before {
  opacity: 1;
}

.map-wrapper .map {
  padding: 0;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 510px;
  overflow: hidden;
}
@media only screen and (max-width: 1366px) {
  .map-wrapper .map {
    height: 390px;
  }
}
@media only screen and (max-width: 540px) {
  .map-wrapper .map {
    height: 218px;
    margin: 2rem 0 0;
  }
}
.map-wrapper .map iframe {
  width: 700px;
  height: 700px;
  overflow: hidden;
  border: none;
  display: block;
  border-radius: 50%;
  filter: grayscale(100%) contrast(110%) brightness(90%);
  transition: filter 0.3s ease;
  position: absolute;
  bottom: -45%;
}
@media only screen and (max-width: 1366px) {
  .map-wrapper .map iframe {
    width: 565px;
    height: 565px;
  }
}
@media only screen and (max-width: 540px) {
  .map-wrapper .map iframe {
    width: 300px;
    height: 300px;
  }
}
.map-wrapper .map iframe:hover {
  filter: grayscale(0%);
}
.map-wrapper .map img {
  position: absolute;
  top: 55%;
  left: 47%;
}
@media only screen and (max-width: 1366px) {
  .map-wrapper .map img {
    top: 42%;
    left: 45%;
  }
}
@media only screen and (max-width: 540px) {
  .map-wrapper .map img {
    width: 35px;
  }
}
.map-wrapper .map .place-card {
  display: none !important;
}

.calculator {
  padding: 60px 0;
  display: flex;
  align-items: center;
  background: rgba(7, 8, 35, 0.0509803922);
}
@media only screen and (max-width: 540px) {
  .calculator {
    padding: 45px 0;
  }
}

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .calculator-wrapper {
    gap: 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .calculator-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.calculator-wrapper .left-section {
  padding-right: 20px;
}
.calculator-wrapper .left-section .heading h5 {
  color: var(--secondary);
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 600;
  font-family: "Optima";
}
@media only screen and (max-width: 768px) {
  .calculator-wrapper .left-section .heading h5 {
    font-size: 26px;
  }
}
.calculator-wrapper .input-group {
  margin-bottom: 35px;
}

.input-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  color: var(--secondary);
  font-size: 16px;
  font-weight: 600;
}

.input-value {
  background: transparent;
  border: 1px solid rgba(7, 8, 35, 0.3803921569);
  padding: 8px 16px;
  border-radius: 4px;
  color: var(--secondary);
  font-size: 16px;
  width: 120px;
  text-align: center;
  font-weight: 700;
  font-family: "lato";
}

.slider-wrapper {
  position: relative;
}

input[type=range] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--gradient-d);
  outline: none;
  -webkit-appearance: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1C2189;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.emi-result {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
}

.emi-label {
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 540px) {
  .emi-label {
    font-size: 15px;
  }
}

.emi-value {
  color: var(--secondary);
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 540px) {
  .emi-value {
    font-size: 15px;
  }
}

.right-section {
  padding: 0 0 0 8rem;
  border-left: 1px solid rgba(15, 15, 15, 0.22);
}
@media only screen and (max-width: 991px) {
  .right-section {
    padding: 0 0 0 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .right-section {
    padding: 0;
    border: none;
  }
}

.chart-title {
  color: var(--secondary);
  font-size: 16px;
  text-align: center;
  font-weight: 600;
}

.chart-container {
  position: relative;
  display: flex;
  justify-content: center;
}
.chart-container canvas {
  width: 350px !important;
  height: 350px !important;
}
@media only screen and (max-width: 540px) {
  .chart-container canvas {
    width: 310px !important;
    height: 310px !important;
  }
}

.breakdown-list {
  list-style: none;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 12px;
}

.breakdown-label {
  color: rgba(0, 0, 0, 0.8);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.breakdown-value {
  color: var(--secondary);
  font-size: 16px;
  font-weight: 700;
}

.cta-button {
  width: 100% !important;
  padding: 14px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "lato";
  background: var(--gradient-c);
  color: white;
  font-weight: 450;
  transition: color 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-d);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
  border-radius: inherit;
}
.cta-button:hover::before {
  opacity: 1;
}

.more-projects {
  background: var(--primary);
  padding: 120px 0;
}
.more-projects .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.more-projects .heading h5 {
  color: var(--secondary);
  font-size: 36px;
  margin: 0 auto;
  font-family: "Zoom Pro Brutal";
  text-transform: uppercase;
}
.more-projects .heading .swiper-group {
  display: flex;
  gap: 10px;
}
.more-projects .heading .swiper-group button {
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: all 0.3s ease;
}
.more-projects .heading .swiper-group button:hover {
  background: var(--secondary);
}
.more-projects .heading .swiper-group button:hover svg path {
  fill: var(--primary);
}
.more-projects .heading .swiper-group button svg {
  width: 20px;
  height: 20px;
}
.more-projects .heading .swiper-group button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.more-projects .heading .swiper-group .more-next {
  transform: rotate(270deg);
}
.more-projects .heading .swiper-group .more-prev {
  transform: rotate(90deg);
}
.more-projects .more-project-slider .swiper-slide .card {
  position: relative;
}
.more-projects .more-project-slider .swiper-slide .card img {
  border-radius: 15px;
  width: 100%;
  display: block;
}
.more-projects .more-project-slider .swiper-slide .card .card-content {
  position: absolute;
  bottom: 35px;
  left: 25px;
}
.more-projects .more-project-slider .swiper-slide .card .card-content h6 {
  color: var(--white);
  text-align: left;
  font-family: lato;
}/*# sourceMappingURL=project-detail.css.map */