@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.solution_sec {
  padding: 70px 0;
}
@media only screen and (max-width: 1024px) {
  .solution_sec {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .solution_sec {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 540px) {
  .solution_sec {
    padding: 30px 0;
  }
}
.solution_sec .heading {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .solution_sec .heading {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 540px) {
  .solution_sec .heading {
    margin-bottom: 30px;
  }
}
.solution_sec .solution_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px 20px;
}
@media only screen and (max-width: 991px) {
  .solution_sec .solution_wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px 16px;
  }
}
@media only screen and (max-width: 540px) {
  .solution_sec .solution_wrapper {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }
}

.solution-secA {
  padding: 30px 0 60px;
}
@media only screen and (max-width: 768px) {
  .solution-secA {
    padding: 25px 0 50px;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA {
    padding: 20px 0 40px;
  }
}
.solution-secA .breadcrumps {
  margin-bottom: 30px;
}
@media only screen and (max-width: 540px) {
  .solution-secA .breadcrumps {
    margin-bottom: 20px;
  }
}
.solution-secA .project-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 1024px) {
  .solution-secA .project-title {
    gap: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .solution-secA .project-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-title {
    gap: 10px;
  }
}
.solution-secA .project-title .share_pop {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-title .share_pop {
    gap: 10px;
  }
}
.solution-secA .project-title .share_pop .share-icon {
  position: relative;
  cursor: pointer;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-title .share_pop .share-icon {
    width: 38px;
    height: 38px;
  }
}
.solution-secA .project-title .share_pop .share-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-title .share_pop .share-icon svg {
    width: 16px;
    height: 16px;
  }
}
.solution-secA .project-title .share_pop .share-icon:hover {
  background: var(--primary);
}
.solution-secA .project-title .share_pop .share-icon:hover svg {
  color: var(--white);
}
.solution-secA .project-title .share_pop .share-icon .media {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  display: flex;
  gap: 10px;
  background: var(--white);
  padding: 8px 10px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.9);
  transition: 0.25s ease;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-title .share_pop .share-icon .media {
    gap: 8px;
    padding: 6px 8px;
  }
}
.solution-secA .project-title .share_pop .share-icon .media a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-light);
  transition: 0.3s;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-title .share_pop .share-icon .media a {
    width: 30px;
    height: 30px;
  }
}
.solution-secA .project-title .share_pop .share-icon .media a svg {
  width: 16px;
  height: 16px;
  color: var(--black);
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-title .share_pop .share-icon .media a svg {
    width: 14px;
    height: 14px;
  }
}
.solution-secA .project-title .share_pop .share-icon .media a:hover {
  background: var(--primary);
}
.solution-secA .project-title .share_pop .share-icon .media a:hover svg {
  color: var(--white);
}
.solution-secA .project-title .share_pop .share-icon.is-open .media {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.solution-secA .project-title .share_pop .btn {
  white-space: nowrap;
}
@media only screen and (max-width: 1280px) {
  .solution-secA .project-title .colA {
    max-width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .solution-secA .project-title .colA {
    max-width: 100%;
    width: 100%;
  }
}
.solution-secA .project-title .colA h1 {
  font-size: 24px;
}
@media only screen and (max-width: 1024px) {
  .solution-secA .project-title .colA h1 {
    font-size: 22px;
    margin-bottom: 3px;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-title .colA h1 {
    font-size: 20px;
  }
}
.solution-secA .project-title .colA .loc {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-top: 5px;
  color: var(--text);
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-title .colA .loc {
    gap: 6px;
    flex-wrap: wrap;
  }
}
.solution-secA .project-title .colA .loc a {
  color: var(--primary);
}
.solution-secA .project-title .colA .loc a:hover {
  text-decoration: underline;
}
.solution-secA nav {
  border-bottom: 1px solid rgba(211, 211, 211, 0.7098039216);
  position: sticky;
  background: var(--white);
  top: var(--headerheight);
  margin: 30px 0 20px;
  z-index: 4;
}
@media only screen and (max-width: 1024px) {
  .solution-secA nav {
    top: var(--headerheight);
  }
}
@media only screen and (max-width: 768px) {
  .solution-secA nav {
    top: var(--headerheight);
    margin: 30px 0 0;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA nav {
    margin: 20px 0 0;
  }
}
.solution-secA nav .tab-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .solution-secA nav .tab-nav {
    overflow-x: auto;
    gap: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .solution-secA nav .tab-nav::-webkit-scrollbar {
    display: none;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA nav .tab-nav {
    gap: 15px;
  }
}
.solution-secA nav .tab-nav li {
  position: relative;
  font-size: 14px;
  line-height: 1.2;
  color: var(--text);
  transition: 0.5s ease;
  padding: 10px 0;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .solution-secA nav .tab-nav li {
    white-space: nowrap;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA nav .tab-nav li {
    font-size: 14px;
    padding: 8px 0;
  }
}
.solution-secA nav .tab-nav li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  background: var(--primary);
  transition: 0.5s ease;
  width: 0;
}
.solution-secA nav .tab-nav li.active {
  font-weight: 500;
  color: var(--primary);
}
.solution-secA nav .tab-nav li.active::before {
  width: 100%;
}
.solution-secA .project-detail-wrap {
  margin-top: 25px;
  display: flex;
  --gap: 30px;
  gap: var(--gap);
}
@media only screen and (max-width: 1024px) {
  .solution-secA .project-detail-wrap {
    --gap: 15px;
    gap: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .solution-secA .project-detail-wrap {
    flex-direction: column;
    --gap: 0px;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .solution-secA .project-detail-wrap.description {
    margin-top: 0;
  }
}
.solution-secA .project-detail-wrap.no-highlights .colA {
  flex: 0 1 100%;
  width: 100%;
  max-width: 100%;
}
.solution-secA .project-detail-wrap.no-highlights .colB {
  display: none;
}
.solution-secA .project-detail-wrap .colA {
  flex: 0 1 calc(70% - var(--gap));
  width: 100%;
  max-width: calc(70% - var(--gap));
}
@media only screen and (max-width: 991px) {
  .solution-secA .project-detail-wrap .colA {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.solution-secA .project-detail-wrap .colA .image-wrapper {
  display: grid;
  grid-template-columns: 7fr 3fr;
  grid-gap: 10px;
  height: 100%;
}
@media only screen and (max-width: 675px) {
  .solution-secA .project-detail-wrap .colA .image-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA .image-wrapper {
    grid-gap: 7px;
  }
}
.solution-secA .project-detail-wrap .colA .image-wrapper figure, .solution-secA .project-detail-wrap .colA .image-wrapper .figure {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.solution-secA .project-detail-wrap .colA .image-wrapper figure:first-child, .solution-secA .project-detail-wrap .colA .image-wrapper .figure:first-child {
  grid-row: span 2;
}
.solution-secA .project-detail-wrap .colA .image-wrapper figure img, .solution-secA .project-detail-wrap .colA .image-wrapper .figure img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .solution-secA .project-detail-wrap .colA .image-wrapper figure img, .solution-secA .project-detail-wrap .colA .image-wrapper .figure img {
    border-radius: 5px;
  }
}
.solution-secA .project-detail-wrap .colA .image-wrapper figure .play-btn, .solution-secA .project-detail-wrap .colA .image-wrapper .figure .play-btn {
  position: absolute;
  top: 8%;
  left: 5%;
  z-index: 2;
  --bordercolor: var(--primary);
  --playbtncolor: var(--primary);
  --btnsize: 46px;
  background: var(--white);
}
@media only screen and (max-width: 768px) {
  .solution-secA .project-detail-wrap .colA .image-wrapper figure .play-btn, .solution-secA .project-detail-wrap .colA .image-wrapper .figure .play-btn {
    --btnsize: 36px;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA .image-wrapper figure .play-btn, .solution-secA .project-detail-wrap .colA .image-wrapper .figure .play-btn {
    --btnsize: 30px;
  }
}
.solution-secA .project-detail-wrap .colA .image-wrapper figure .count, .solution-secA .project-detail-wrap .colA .image-wrapper .figure .count {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5019607843);
  color: var(--white);
  font-size: 14px;
  border-radius: 10px;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA .image-wrapper figure .count, .solution-secA .project-detail-wrap .colA .image-wrapper .figure .count {
    font-size: 12px;
    border-radius: 5px;
  }
}
.solution-secA .project-detail-wrap .colA .image-wrapper figure .count span, .solution-secA .project-detail-wrap .colA .image-wrapper .figure .count span {
  display: block;
  font-size: 32px;
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  .solution-secA .project-detail-wrap .colA .image-wrapper figure .count span, .solution-secA .project-detail-wrap .colA .image-wrapper .figure .count span {
    font-size: 28px;
  }
}
@media only screen and (max-width: 768px) {
  .solution-secA .project-detail-wrap .colA .image-wrapper figure .count span, .solution-secA .project-detail-wrap .colA .image-wrapper .figure .count span {
    font-size: 24px;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA .image-wrapper figure .count span, .solution-secA .project-detail-wrap .colA .image-wrapper .figure .count span {
    font-size: 20px;
    line-height: 1;
  }
}
.solution-secA .project-detail-wrap .colA section {
  padding: 20px 0;
}
@media only screen and (max-width: 768px) {
  .solution-secA .project-detail-wrap .colA section {
    padding: 15px 0;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA section {
    padding: 15px 0;
  }
}
.solution-secA .project-detail-wrap .colA section h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .solution-secA .project-detail-wrap .colA section h3 {
    margin-bottom: 15px;
    text-align: center;
  }
}
.solution-secA .project-detail-wrap .colA section h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.solution-secA .project-detail-wrap .colA section .content {
  margin: 10px 0 20px;
}
@media only screen and (max-width: 768px) {
  .solution-secA .project-detail-wrap .colA section .content {
    text-align: center;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA section .content {
    margin: 8px 0 15px;
  }
}
.solution-secA .project-detail-wrap .colA section .content h1 {
  font-size: 28px;
  font-weight: 600;
  margin: 10px 0;
}
.solution-secA .project-detail-wrap .colA section .content h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0;
}
.solution-secA .project-detail-wrap .colA section .content h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 10px 0;
}
.solution-secA .project-detail-wrap .colA section .content h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 8px 0;
}
.solution-secA .project-detail-wrap .colA section .content h5 {
  font-size: 18px;
  font-weight: 500;
  margin: 8px 0;
}
.solution-secA .project-detail-wrap .colA section .content h6 {
  font-size: 16px;
  font-weight: 500;
  margin: 6px 0;
}
.solution-secA .project-detail-wrap .colA section .content p {
  font-size: 14px;
  padding-bottom: 10px;
  line-height: 1.5;
  color: var(--text);
}
.solution-secA .project-detail-wrap .colA section .content strong {
  font-weight: 600;
  color: var(--text);
}
.solution-secA .project-detail-wrap .colA section .content ul {
  margin-bottom: 10px;
  padding-left: 18px;
}
@media only screen and (max-width: 675px) {
  .solution-secA .project-detail-wrap .colA section .content ul {
    padding-left: 10px;
  }
}
.solution-secA .project-detail-wrap .colA section .content ul li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}
@media only screen and (max-width: 675px) {
  .solution-secA .project-detail-wrap .colA section .content ul li {
    padding-left: 20px;
  }
}
.solution-secA .project-detail-wrap .colA section .content ul li:not(:last-child) {
  margin-bottom: 3px;
}
.solution-secA .project-detail-wrap .colA section .content ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--text);
}
@media only screen and (max-width: 520px) {
  .solution-secA .project-detail-wrap .colA section .content ul li::before {
    width: 6px;
  }
}
.solution-secA .project-detail-wrap .colA section .content p, .solution-secA .project-detail-wrap .colA section .content li {
  text-align: start;
  hyphens: none;
  font-size: 14px;
}
.solution-secA .project-detail-wrap .colA section.overview_sec.pt-5 {
  padding-top: 30px;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA section.overview_sec.pt-5 {
    padding-top: 20px;
  }
}
.solution-secA .project-detail-wrap .colA section.overview_sec h6 {
  font-weight: 600;
  font-size: 20px;
}
.solution-secA .project-detail-wrap .colA section.overview_sec h2 {
  font-size: 24px;
  font-weight: 600;
}
.solution-secA .project-detail-wrap .colA section.Storage_sec .doctor_wrapper {
  position: relative;
}
.solution-secA .project-detail-wrap .colA section.Storage_sec .doctor_wrapper .topPro_slider {
  max-width: 97%;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA section.Storage_sec .doctor_wrapper .topPro_slider {
    max-width: 100%;
  }
}
.solution-secA .project-detail-wrap .colA section.Storage_sec .doctor_wrapper .topPro_slider .card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  position: relative;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA section.Storage_sec .doctor_wrapper .topPro_slider .card {
    padding: 8px;
  }
}
.solution-secA .project-detail-wrap .colA section.Storage_sec .doctor_wrapper .topPro_slider .card::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.66) 0%, rgba(255, 255, 255, 0) 79%);
  z-index: 1;
}
.solution-secA .project-detail-wrap .colA section.Storage_sec .doctor_wrapper .topPro_slider .card .card-img {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.solution-secA .project-detail-wrap .colA section.Storage_sec .doctor_wrapper .topPro_slider .card .card-img img {
  width: 100%;
  display: block;
}
.solution-secA .project-detail-wrap .colA section.Storage_sec .doctor_wrapper .topPro_slider .card .card-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  z-index: 2;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA section.Storage_sec .doctor_wrapper .topPro_slider .card .card-content {
    padding: 5px;
  }
}
.solution-secA .project-detail-wrap .colA section.Storage_sec .doctor_wrapper .topPro_slider .card .card-content h6, .solution-secA .project-detail-wrap .colA section.Storage_sec .doctor_wrapper .topPro_slider .card .card-content p {
  color: var(--white);
}
.solution-secA .project-detail-wrap .colA section.Storage_sec .doctor_wrapper .topPro_slider .card .card-content p {
  font-size: 20px;
  font-weight: 600;
}
.solution-secA .project-detail-wrap .colA section.facilities_sec .facilities-content {
  width: 100%;
}
.solution-secA .project-detail-wrap .colA section.facilities_sec .facilities-content .col {
  border: 1px solid #e7e7e7;
  transition: 0.5s ease;
  border-radius: 5px;
  --paddingtb: 8px;
  --paddinglr: 12px;
  --icon: 12px;
}
@media only screen and (max-width: 1024px) {
  .solution-secA .project-detail-wrap .colA section.facilities_sec .facilities-content .col {
    --paddingtb: 15px;
    --paddinglr: 15px;
  }
}
@media only screen and (max-width: 675px) {
  .solution-secA .project-detail-wrap .colA section.facilities_sec .facilities-content .col {
    --paddingtb: 8px;
    --paddinglr: 15px;
  }
}
.solution-secA .project-detail-wrap .colA section.facilities_sec .facilities-content .col:not(:last-child) {
  margin-bottom: 12px;
}
@media only screen and (max-width: 675px) {
  .solution-secA .project-detail-wrap .colA section.facilities_sec .facilities-content .col:not(:last-child) {
    margin-bottom: 8px;
  }
}
.solution-secA .project-detail-wrap .colA section.facilities_sec .facilities-content .col.active {
  border-color: var(--text);
}
.solution-secA .project-detail-wrap .colA section.facilities_sec .facilities-content .col.active .title p {
  color: var(--black);
}
.solution-secA .project-detail-wrap .colA section.facilities_sec .facilities-content .col.active .title::before {
  background-image: var(--black);
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  background-size: 100% 100%;
  background-position: 100% 50%;
  background-size: contain;
}
.solution-secA .project-detail-wrap .colA section.facilities_sec .facilities-content .col .title {
  position: relative;
  cursor: pointer;
  padding: var(--paddingtb) var(--paddinglr);
}
.solution-secA .project-detail-wrap .colA section.facilities_sec .facilities-content .col .title::before {
  content: "";
  position: absolute;
  height: var(--icon);
  width: var(--icon);
  left: calc(100% - (var(--icon) + var(--paddinglr)));
  top: 50%;
  translate: 0 -50%;
  --gray: url(../../icon/arrow-down-gray.svg);
  --black: url(../../icon/arrow-down-black.svg);
  background-image: var(--gray);
  background-repeat: no-repeat;
  transition: 0.5s ease;
  transform-origin: center;
  background-size: 100% 100%;
  background-position: 100% 50%;
  background-size: contain;
}
.solution-secA .project-detail-wrap .colA section.facilities_sec .facilities-content .col .title p {
  transition: 0.5s ease;
  padding-right: 40px;
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA section.facilities_sec .facilities-content .col .title p {
    font-size: 14px;
  }
}
.solution-secA .project-detail-wrap .colA section.facilities_sec .facilities-content .col article .content {
  padding: 0 var(--paddinglr) var(--paddingtb);
  -moz-column-count: 3;
       column-count: 3;
}
@media only screen and (max-width: 768px) {
  .solution-secA .project-detail-wrap .colA section.facilities_sec .facilities-content .col article .content {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA section.facilities_sec .facilities-content .col article .content {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.solution-secA .project-detail-wrap .colA section.facilities_sec .facilities-content .col article .content ul li::before {
  background: url(/assets/icons/tick.svg) no-repeat;
  width: 15px;
  height: 15px;
  background-size: 100%;
  top: 4px;
  border-radius: unset;
  filter: brightness(0);
}
.solution-secA .project-detail-wrap .colA section.address .map {
  line-height: 0;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA section.address .map {
    margin-top: 10px;
  }
}
.solution-secA .project-detail-wrap .colA section.address .map iframe {
  filter: grayscale(1);
  width: 100%;
  border-radius: 10px;
  transition: 0.5s ease;
}
.solution-secA .project-detail-wrap .colA section.address .map iframe:hover {
  filter: grayscale(0);
}
@media only screen and (max-width: 768px) {
  .solution-secA .project-detail-wrap .colA section.address .map iframe {
    height: 350px;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA section.address .map iframe {
    height: 280px;
    border-radius: 5px;
  }
}
.solution-secA .project-detail-wrap .colA section.nearby_loc .nearby_wrapper {
  position: relative;
}
.solution-secA .project-detail-wrap .colA section.nearby_loc .nearby_wrapper .nearby_slider {
  max-width: 97%;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA section.nearby_loc .nearby_wrapper .nearby_slider {
    max-width: 100%;
  }
}
.solution-secA .project-detail-wrap .colA section.nearby_loc .nearby_wrapper .nearby_slider .nearby_col {
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 15px 10px;
  border-radius: 10px;
  background: var(--gray);
  line-height: 1.2;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA section.nearby_loc .nearby_wrapper .nearby_slider .nearby_col {
    padding: 12px 8px;
    border-radius: 8px;
  }
}
.solution-secA .project-detail-wrap .colA section.nearby_loc .nearby_wrapper .nearby_slider .nearby_col .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA section.nearby_loc .nearby_wrapper .nearby_slider .nearby_col .icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
  }
}
.solution-secA .project-detail-wrap .colA section.nearby_loc .nearby_wrapper .nearby_slider .nearby_col .icon svg, .solution-secA .project-detail-wrap .colA section.nearby_loc .nearby_wrapper .nearby_slider .nearby_col .icon img {
  width: 100%;
  height: 100%;
}
.solution-secA .project-detail-wrap .colA section.nearby_loc .nearby_wrapper .nearby_slider .nearby_col .icon svg path, .solution-secA .project-detail-wrap .colA section.nearby_loc .nearby_wrapper .nearby_slider .nearby_col .icon img path {
  fill: var(--primary);
}
.solution-secA .project-detail-wrap .colA section.nearby_loc .nearby_wrapper .nearby_slider .nearby_col h6 {
  line-height: 1.2;
  margin-bottom: 10px;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colA section.nearby_loc .nearby_wrapper .nearby_slider .nearby_col h6 {
    margin-bottom: 3px;
  }
}
.solution-secA .project-detail-wrap .colA section.nearby_loc .nearby_wrapper .nearby_slider .nearby_col p {
  font-size: 14px;
  color: var(--text);
}
.solution-secA .project-detail-wrap .colA section.nearby_loc .nearby_wrapper .nearby_slider .nearby_col p strong {
  font-weight: 500;
}
.solution-secA .project-detail-wrap .colB {
  flex: 1;
  width: 100%;
  max-width: 30%;
}
@media only screen and (max-width: 991px) {
  .solution-secA .project-detail-wrap .colB {
    max-width: 100%;
  }
}
.solution-secA .project-detail-wrap .colB .property_highlights {
  background: #EFEFEF;
  border-radius: 10px;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .solution-secA .project-detail-wrap .colB .property_highlights {
    height: auto;
  }
}
.solution-secA .project-detail-wrap .colB .property_highlights .highlights_details {
  padding: 25px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1294117647);
}
@media only screen and (max-width: 1024px) {
  .solution-secA .project-detail-wrap .colB .property_highlights .highlights_details {
    padding: 15px 10px;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colB .property_highlights .highlights_details {
    padding: 12px 10px;
  }
}
.solution-secA .project-detail-wrap .colB .property_highlights .highlights_details h5 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .solution-secA .project-detail-wrap .colB .property_highlights .highlights_details h5 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.solution-secA .project-detail-wrap .colB .property_highlights .highlights_details .high_col {
  display: flex;
  gap: 10px;
}
.solution-secA .project-detail-wrap .colB .property_highlights .highlights_details .high_col:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colB .property_highlights .highlights_details .high_col:not(:last-child) {
    margin-bottom: 10px;
  }
}
.solution-secA .project-detail-wrap .colB .property_highlights .highlights_details .high_col .icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.solution-secA .project-detail-wrap .colB .property_highlights .highlights_details .high_col .icon svg, .solution-secA .project-detail-wrap .colB .property_highlights .highlights_details .high_col .icon img {
  width: 100%;
  height: 100%;
}
.solution-secA .project-detail-wrap .colB .property_highlights .highlights_details .high_col .icon svg path, .solution-secA .project-detail-wrap .colB .property_highlights .highlights_details .high_col .icon img path {
  fill: var(--primary);
}
.solution-secA .project-detail-wrap .colB .property_highlights .highlights_details .high_col .desc h6 {
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
}
.solution-secA .project-detail-wrap .colB .property_highlights .highlights_details .high_col .desc p {
  font-size: 14px;
  color: var(--text);
}
.solution-secA .project-detail-wrap .colB .property_highlights .highlights_details .high_col .desc .accre_wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
  margin-top: 5px;
}
@media only screen and (max-width: 1024px) {
  .solution-secA .project-detail-wrap .colB .property_highlights .highlights_details .high_col .desc .accre_wrap {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 8px;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colB .property_highlights .highlights_details .high_col .desc .accre_wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}
.solution-secA .project-detail-wrap .colB .property_highlights .highlights_details .high_col .desc .accre_wrap figure {
  text-align: center;
  line-height: 1.2;
}
.solution-secA .project-detail-wrap .colB .property_highlights .highlights_details .high_col .desc .accre_wrap figure img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 1;
}
.solution-secA .project-detail-wrap .colB .property_highlights .highlights_details .high_col .desc .accre_wrap figure p {
  line-height: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.solution-secA .project-detail-wrap .colB .property_highlights .view_all {
  width: 100%;
  margin-top: 20px;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colB .property_highlights .view_all {
    margin-top: 15px;
  }
}
.solution-secA .project-detail-wrap .colB .property_highlights .view_all img {
  transform: rotate(90deg);
  transition: 0.5s ease;
}
.solution-secA .project-detail-wrap .colB .property_highlights .view_all:hover img {
  transform: rotate(0deg);
}
.solution-secA .project-detail-wrap .colB .property_highlights .highlights_action {
  padding: 20px;
}
@media only screen and (max-width: 1024px) {
  .solution-secA .project-detail-wrap .colB .property_highlights .highlights_action {
    padding: 15px 10px;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colB .property_highlights .highlights_action {
    padding: 12px 10px;
  }
}
.solution-secA .project-detail-wrap .colB .property_highlights .highlights_action h5 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .solution-secA .project-detail-wrap .colB .property_highlights .highlights_action h5 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.solution-secA .project-detail-wrap .colB .property_highlights .highlights_action .btn {
  width: 100%;
}
.solution-secA .project-detail-wrap .colB .contact-form {
  margin-top: 30px;
  border: 1px solid #E0E0E0;
  box-shadow: 1px 1px 8.7px 0 rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px;
  position: sticky;
  top: calc(var(--headerheight) + 40px);
}
@media only screen and (max-width: 1024px) {
  .solution-secA .project-detail-wrap .colB .contact-form {
    top: calc(var(--headerheight) + 20px);
  }
}
@media only screen and (max-width: 991px) {
  .solution-secA .project-detail-wrap .colB .contact-form {
    position: relative;
    top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .solution-secA .project-detail-wrap .colB .contact-form {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colB .contact-form {
    margin-top: 10px;
    border-radius: 8px;
  }
}
.solution-secA .project-detail-wrap .colB .contact-form .title {
  background: #EFEFEF;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colB .contact-form .title {
    padding: 10px 15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
}
.solution-secA .project-detail-wrap .colB .contact-form .form {
  padding: 20px 20px 30px;
  --gaptb: 20px;
  --textareaheight: 80px;
}
@media only screen and (max-width: 768px) {
  .solution-secA .project-detail-wrap .colB .contact-form .form {
    padding: 15px 15px 25px;
  }
}
@media only screen and (max-width: 540px) {
  .solution-secA .project-detail-wrap .colB .contact-form .form {
    padding: 15px 15px 20px;
    --gaptb: 15px;
  }
}

.solutionD-secB {
  padding: 30px 0 60px;
}
@media only screen and (max-width: 768px) {
  .solutionD-secB {
    padding: 25px 0 50px;
  }
}
@media only screen and (max-width: 540px) {
  .solutionD-secB {
    padding: 20px 0 40px;
  }
}
.solutionD-secB .heading {
  max-width: 600px;
  margin: 0 auto 3rem;
}
@media only screen and (max-width: 768px) {
  .solutionD-secB .heading {
    max-width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .solutionD-secB .heading {
    margin: 0 auto 2rem;
  }
}
.solutionD-secB .more_solution_wrapper {
  position: relative;
}
.solutionD-secB .more_solution_wrapper .swiper-nav {
  width: 102%;
  max-width: 102%;
}
@media only screen and (max-width: 540px) {
  .solutionD-secB .more_solution_wrapper .swiper-nav {
    width: 100%;
    max-width: 100%;
  }
}
.solutionD-secB .more_solution_wrapper .common-slider1 {
  padding: 0 10px;
}
@media only screen and (max-width: 540px) {
  .solutionD-secB .more_solution_wrapper .common-slider1 {
    padding: 0;
  }
}

.amenities,
.Social_sec {
  padding: 40px 0;
}
@media only screen and (max-width: 768px) {
  .amenities,
  .Social_sec {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 540px) {
  .amenities,
  .Social_sec {
    padding: 20px 0;
  }
}
.amenities h3,
.Social_sec h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 540px) {
  .amenities h3,
  .Social_sec h3 {
    margin-bottom: 15px;
  }
}
.amenities .amenities-grid,
.Social_sec .amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media only screen and (max-width: 991px) {
  .amenities .amenities-grid,
  .Social_sec .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .amenities .amenities-grid,
  .Social_sec .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  .amenities .amenities-grid,
  .Social_sec .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 380px) {
  .amenities .amenities-grid,
  .Social_sec .amenities-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.amenities .amenities-grid .amenity,
.Social_sec .amenities-grid .amenity {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .amenities .amenities-grid .amenity,
  .Social_sec .amenities-grid .amenity {
    padding: 12px 14px;
    gap: 10px;
  }
}
@media only screen and (max-width: 540px) {
  .amenities .amenities-grid .amenity,
  .Social_sec .amenities-grid .amenity {
    padding: 10px 12px;
    gap: 8px;
    border-radius: 8px;
  }
}
.amenities .amenities-grid .amenity img,
.Social_sec .amenities-grid .amenity img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 540px) {
  .amenities .amenities-grid .amenity img,
  .Social_sec .amenities-grid .amenity img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
}
.amenities .amenities-grid .amenity span,
.Social_sec .amenities-grid .amenity span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.amenities .amenities-grid .amenity:hover,
.Social_sec .amenities-grid .amenity:hover {
  transform: translateY(-1px);
}

.connectivity_sec h5 {
  text-transform: capitalize;
  margin-bottom: 14px;
  font-size: 20px;
}
.connectivity_sec ul {
  margin-bottom: 14px;
  padding-left: 18px;
}
@media only screen and (max-width: 675px) {
  .connectivity_sec ul {
    padding-left: 10px;
  }
}
.connectivity_sec ul li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}
@media only screen and (max-width: 675px) {
  .connectivity_sec ul li {
    padding-left: 20px;
  }
}
.connectivity_sec ul li:not(:last-child) {
  margin-bottom: 3px;
}
.connectivity_sec ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
}
.connectivity_sec p {
  font-size: 14px;
  text-align: start;
  line-height: 1.5;
}
.connectivity_sec .connectivity_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
@media only screen and (max-width: 675px) {
  .connectivity_sec .connectivity_wrap {
    grid-template-columns: 1fr;
  }
}
.connectivity_sec .connectivity_wrap .connectivity {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.connectivity_sec .connectivity_wrap .connectivity .icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.connectivity_sec .connectivity_wrap .connectivity .icon img, .connectivity_sec .connectivity_wrap .connectivity .icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.connectivity_sec .connectivity_wrap .connectivity .connectivity-content {
  margin: 0;
}
.connectivity_sec .connectivity_wrap .connectivity .connectivity-content h6 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  margin-top: 0;
  color: var(--black);
}
.connectivity_sec .connectivity_wrap .connectivity .connectivity-content p {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text);
  margin: 0;
}
.connectivity_sec .connectivity_wrap .connectivity .connectivity-content p img, .connectivity_sec .connectivity_wrap .connectivity .connectivity-content p svg {
  width: 14px;
  height: 14px;
}

.highlights_sec h5 {
  text-transform: capitalize;
  margin-bottom: 14px;
  font-size: 20px;
}
.highlights_sec ul {
  margin-bottom: 14px;
  padding-left: 18px;
}
@media only screen and (max-width: 675px) {
  .highlights_sec ul {
    padding-left: 10px;
  }
}
.highlights_sec ul li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}
@media only screen and (max-width: 675px) {
  .highlights_sec ul li {
    padding-left: 20px;
  }
}
.highlights_sec ul li:not(:last-child) {
  margin-bottom: 3px;
}
.highlights_sec ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
}
.highlights_sec p {
  font-size: 14px;
  text-align: start;
  line-height: 1.5;
}
.highlights_sec .highlights_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 16px 0;
}
@media only screen and (max-width: 675px) {
  .highlights_sec .highlights_wrap {
    grid-template-columns: 1fr;
  }
}
.highlights_sec .highlights_wrap .highlights {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.highlights_sec .highlights_wrap .highlights .icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlights_sec .highlights_wrap .highlights .icon img, .highlights_sec .highlights_wrap .highlights .icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.highlights_sec .highlights_wrap .highlights .highlights-content {
  margin: 0;
}
.highlights_sec .highlights_wrap .highlights .highlights-content h6 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  margin-top: 0;
  color: var(--black);
}
.highlights_sec .highlights_wrap .highlights .highlights-content p {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text);
  margin: 0;
}
.highlights_sec .highlights_wrap .highlights .highlights-content p img, .highlights_sec .highlights_wrap .highlights .highlights-content p svg {
  width: 14px;
  height: 14px;
}

.core_infra h5 {
  text-transform: capitalize;
  margin-bottom: 14px;
  font-size: 20px;
}
.core_infra ul {
  margin-bottom: 14px;
  padding-left: 18px;
}
@media only screen and (max-width: 675px) {
  .core_infra ul {
    padding-left: 10px;
  }
}
.core_infra ul li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}
@media only screen and (max-width: 675px) {
  .core_infra ul li {
    padding-left: 20px;
  }
}
.core_infra ul li:not(:last-child) {
  margin-bottom: 3px;
}
.core_infra ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
}
.core_infra p {
  font-size: 14px;
  text-align: start;
  line-height: 1.5;
}
.core_infra .core_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}
@media only screen and (max-width: 675px) {
  .core_infra .core_wrap {
    grid-template-columns: 1fr;
  }
}
.core_infra .core_wrap .connectivity {
  display: flex;
  align-items: center;
  gap: 12px;
}
.core_infra .core_wrap .connectivity .icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.core_infra .core_wrap .connectivity .icon img, .core_infra .core_wrap .connectivity .icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.core_infra .core_wrap .connectivity .connectivity-content {
  margin: 0;
}
.core_infra .core_wrap .connectivity .connectivity-content h6 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  margin-top: 0;
  color: var(--black);
}

header.header-fixed {
  box-shadow: none;
}/*# sourceMappingURL=listing-detail.css.map */