.full-banner {
  --banner-min-height: 600px;
  --ban-info-max-width: 550px;
  --banner-title-font-size: 48px;
  --banner-title-margin-bottom: 20px;
  position: relative;
}
.full-banner::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0px;
  background: #000;
  position: absolute;
  z-index: 1;
  opacity: 0.5;
}
.full-banner .container {
  min-height: var(--banner-min-height);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.full-banner .breadcrumb {
  margin-bottom: 15px;
}
.full-banner .breadcrumb a {
  color: #fff;
  text-decoration: underline;
}
.full-banner .breadcrumb .separator {
  margin: 0 5px;
}
.full-banner .banner-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.full-banner .ban-info {
  max-width: var(--ban-info-max-width);
  position: relative;
  z-index: 5;
  color: #fff;
}
.full-banner h1 {
  font-size: var(--banner-title-font-size);
  line-height: 1.2;
  margin-bottom: var(--banner-title-margin-bottom);
}
.full-banner .sub-head {
  font-weight: 500;
}
.full-banner .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 1280px) {
  .full-banner {
    --banner-min-height: 500px;
    --ban-info-max-width: 450px;
    --banner-title-font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .full-banner {
    --banner-min-height: 500px;
    --ban-info-max-width: 450px;
    --banner-title-font-size: 36px;
    --banner-title-margin-bottom: 15px;
  }
}
@media (max-width: 640px) {
  .full-banner {
    --banner-min-height: 500px;
    --ban-info-max-width: 100%;
    --banner-title-font-size: 30px;
    --banner-title-margin-bottom: 10px;
  }
}
.col3-section .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.col3-section ul {
  list-style: none;
  padding: 0px;
  gap: 20px;
  display: grid;
  margin: 25px 0px 0px;
}
.col3-section ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 500;
}
.col3-section ul li::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-image: url("../../img/check-circle-brown.svg");
  background-size: cover;
}

@media (max-width: 1024px) {
  .col3-section .wrapper {
    grid-template-columns: 1fr;
  }
}
.card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 47px 35px;
  background-color: var(--colorBrownLight);
  padding: 40px 30px;
  border-radius: 16px;
}
.card-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
}
.card-list li .logo {
  height: 60px;
}
.card-list li .logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.card-list li h3 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 5px;
}
.card-list li p {
  font-size: 15px;
}

@media (max-width: 1280px) {
  .card-list {
    gap: 37px 0px;
  }
  .card-list li {
    max-width: 195px;
  }
  .card-list .logo img {
    max-height: 45px;
  }
}
@media (max-width: 1024px) {
  .card-list {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 37px 40px;
  }
  .card-list li {
    max-width: none;
  }
  .card-list .logo img {
    max-height: 40px;
  }
}
@media (max-width: 640px) {
  .card-list {
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    gap: 30px 0px;
  }
  .card-list .logo {
    height: 40px;
  }
}
.image-content-section {
  --sec_info_h2_margin_bottom: 22px;
  --wfull_h4_p_font_size: 15px;
  --play-icon_size: 85px;
  --grid-gap: 30px;
  --wrapper-padding: 30px 40px;
  --wrapper-border-radius: 12px;
  --wrapper-template-columns: 420px 1fr;
}
.image-content-section .wrapper {
  display: grid;
  grid-template-columns: var(--wrapper-template-columns);
  gap: var(--grid-gap);
  align-items: center;
  background-color: #27221c;
  border-radius: var(--wrapper-border-radius);
  padding: var(--wrapper-padding);
  color: #fff;
}
.image-content-section .right-wrap {
  position: relative;
}

@media (max-width: 1280px) {
  .image-content-section {
    --wrapper-template-columns: 340px 1fr;
  }
}
@media (max-width: 1024px) {
  .image-content-section {
    --sec_info_h2_margin_bottom: 20px;
    --wfull_h4_p_font_size: 14px;
    --wrapper-template-columns: 1fr;
    --wrapper-padding: 25px 30px;
  }
}
@media (max-width: 640px) {
  .image-content-section {
    --wfull_h4_p_font_size: 15px;
    --play-icon_size: 65px;
  }
}
.preview-sec {
  --gallery-slider-width: 906px;
  --sec-info-margin: 87px;
  --gallery-slider-scale-inactive: 0.74;
  --sec-title-margin: 27px;
  --gallery-slider-gap: 20px;
  margin: 0px;
  overflow: hidden;
}
.preview-sec .container {
  position: relative;
  overflow: hidden;
}

.gallery-slider {
  overflow: visible;
  max-width: var(--gallery-slider-width);
  margin: 0 auto;
}
.gallery-slider .swiper-wrapper {
  align-items: center;
}
.gallery-slider .swiper-slide {
  width: var(--gallery-slider-width);
  transform: scale(var(--gallery-slider-scale-inactive));
  transform-origin: center center;
  -webkit-transition: transform 0.5s ease, opacity 0.5s ease;
  -moz-transition: transform 0.5s ease, opacity 0.5s ease;
  -ms-transition: transform 0.5s ease, opacity 0.5s ease;
  -o-transform: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0.7;
}
.gallery-slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0px 4px 6.2px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 20px;
}
.gallery-slider .swiper-slide.swiper-slide-prev {
  transform-origin: right center;
}
.gallery-slider .swiper-slide.swiper-slide-next {
  transform-origin: left center;
}
.gallery-slider .swiper-slide.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}

@media (max-width: 1024px) {
  .preview-sec {
    --gallery-section-padding: 80px 0px;
    --gallery-slider-width: 541px;
    --sec-info-margin: 49px;
    --sec-title-margin: 20px;
    --gallery-slider-gap: 15px;
  }
}
@media (max-width: 640px) {
  .preview-sec {
    --gallery-section-padding: 70px 0px;
    --gallery-slider-width: 295px;
    --gallery-slider-gap: 10px;
  }
}
.project-plan-sec {
  --sec-padding: 80px 0px;
  --wrapper-template-columns: repeat(2, 1fr);
  --wrapper-gap: 50px 30px;
  background-color: var(--colorBrownLight);
  padding: var(--sec-padding);
}
.project-plan-sec .wrapper {
  display: grid;
  grid-template-columns: var(--wrapper-template-columns);
  gap: var(--wrapper-gap);
}
.project-plan-sec .card.plan {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
}
.project-plan-sec .card.plan .color-brown {
  font-weight: 600;
}
.project-plan-sec .card.plan .img-wrap {
  margin: 20px 0px;
}
.project-plan-sec .card h3 {
  margin: 10px 0px;
}
.project-plan-sec .card:nth-child(4) {
  grid-column: 1/-1;
}
.project-plan-sec .note {
  margin-top: 20px;
  font-size: 12px;
}
.project-plan-sec .table-wrap {
  overflow-x: auto;
}
.project-plan-sec table {
  border-collapse: collapse;
  width: 100%;
}
.project-plan-sec table td, .project-plan-sec table th {
  border: 1px solid var(--colorBrown);
  padding: 10px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
}
.project-plan-sec table thead {
  background-color: var(--colorBrownDark);
}
.project-plan-sec table thead th {
  color: #fff;
  text-align: left;
}

@media (max-width: 1280px) {
  .project-plan-sec {
    --wrapper-template-columns: repeat(2, 1fr);
    --wrapper-gap: 20px;
  }
}
@media (max-width: 1024px) {
  .project-plan-sec {
    --sec-padding: 60px 0px;
    --wrapper-gap: 30px;
    --wrapper-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 640px) {
  .project-plan-sec table td, .project-plan-sec table th {
    font-size: 10px;
    padding: 8px;
  }
  .project-plan-sec .card h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .project-plan-sec .card .note {
    font-size: 10px;
  }
  .card-grid .card::before {
    display: none !important;
  }
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 47px 40px;
}
.card-grid .card {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.card-grid .card::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--colorBrown);
  position: absolute;
  top: 0;
  left: -20px;
}
.card-grid .card:first-child::before {
  display: none;
}
.card-grid .card .logo img {
  height: 100%;
  object-fit: contain;
}
.card-grid .card h3 {
  font-size: 18px;
  line-height: 1.2;
}
.card-grid .card p {
  font-size: 14px;
}

@media (max-width: 1280px) {
  .card-grid {
    gap: 37px 0px;
  }
}
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 37px 40px;
  }
  .card-grid .card {
    max-width: none;
  }
  .card-grid .card:nth-child(3)::before {
    display: none;
  }
}
@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    gap: 50px 0px;
  }
}
.interested-form-sec .wrapper {
  display: grid;
  background-color: var(--colorBrownDark);
  padding: 30px 30px;
  grid-template-columns: 1fr 1fr;
  color: #fff;
  gap: 30px;
  border-radius: 10px;
}
.interested-form-sec .wrapper .form-wrap {
  text-align: center;
}

@media (max-width: 1024px) {
  .interested-form-sec .wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .interested-form-sec .wrapper {
    padding: 30px 20px;
  }
}
.info-card-sec {
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.card-list li h3 {
  font-size: var(--fontSizeH3);
}

@media (max-width: 640px) {
  .info-card-sec {
    margin-top: 60px;
  }
}

/*# sourceMappingURL=project-page.css.map */
