@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.project-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .project-banner {
    height: 80vh;
  }
}
@media only screen and (max-width: 991px) {
  .project-banner {
    height: 80vh;
  }
}
@media only screen and (max-width: 540px) {
  .project-banner {
    height: 90vh;
  }
}
.project-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
}
@media only screen and (max-width: 540px) {
  .project-banner::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  }
}
.project-banner .video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media only screen and (max-width: 540px) {
  .project-banner .video-background .container {
    padding: 0;
  }
}
.project-banner .video-background .container .bg-wrapper {
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 20%;
  text-align: center;
  left: 0;
}
@media only screen and (max-width: 1024px) {
  .project-banner .video-background .container .bg-wrapper {
    bottom: 10%;
  }
}
@media only screen and (max-width: 540px) {
  .project-banner .video-background .container .bg-wrapper {
    bottom: 10%;
    margin-left: 0;
  }
}
.project-banner .video-background .container .bg-wrapper h1 {
  font-family: Kugile;
  font-weight: 400;
  font-size: 60px;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 540px) {
  .project-banner .video-background .container .bg-wrapper h1 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 1px;
  }
}
.project-banner .video-background .container .bg-wrapper form {
  max-width: 880px;
  margin: auto;
  padding: 70px 0 0 0;
}
@media only screen and (max-width: 1024px) {
  .project-banner .video-background .container .bg-wrapper form {
    max-width: 60%;
  }
}
@media only screen and (max-width: 540px) {
  .project-banner .video-background .container .bg-wrapper form {
    max-width: 80%;
    padding: 30px 0 0 0;
  }
}
.project-banner .video-background .container .bg-wrapper form .form-grid {
  --item: 4;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .project-banner .video-background .container .bg-wrapper form .form-grid {
    --item: 2;
  }
}
@media only screen and (max-width: 540px) {
  .project-banner .video-background .container .bg-wrapper form .form-grid {
    --item: 1;
    --gaptb: 22px;
  }
}
.project-banner .video-background .container .bg-wrapper form .form-grid .form-group::before, .project-banner .video-background .container .bg-wrapper form .form-grid .form-group::after {
  background: var(--white);
}
.project-banner .video-background .container .bg-wrapper form .form-grid .form-group label {
  color: var(--white);
  font-family: Poppins;
  font-weight: 500;
}
.project-banner .video-background .container .bg-wrapper form .form-grid .form-group input {
  color: var(--white);
  font-family: Poppins;
  font-weight: 300;
}
.project-banner .video-background .container .bg-wrapper form .form-grid .right-btn {
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .project-banner .video-background .container .bg-wrapper form .form-grid .right-btn {
    grid-column: span var(--item);
  }
}
@media only screen and (max-width: 540px) {
  .project-banner .video-background .container .bg-wrapper form .form-grid .right-btn {
    margin-top: 20px;
  }
}
.project-banner .video-background .container .bg-wrapper form .form-grid .right-btn button {
  border-radius: 25px;
  padding: 6px 33px;
  background: var(--white);
  color: var(--black);
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  position: relative;
  transition: 0.7s ease;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--white);
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media only screen and (max-width: 1024px) {
  .project-banner .video-background .container .bg-wrapper form .form-grid .right-btn button {
    padding: 6px 60px;
  }
}
.project-banner .video-background .container .bg-wrapper form .form-grid .right-btn button::before {
  content: "";
  position: absolute;
  bottom: -110%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  transition: 0.7s ease;
}
.project-banner .video-background .container .bg-wrapper form .form-grid .right-btn button:hover {
  color: var(--white);
}
.project-banner .video-background .container .bg-wrapper form .form-grid .right-btn button:hover::before {
  bottom: 0;
  z-index: -1;
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select {
  max-width: 100%;
  cursor: pointer;
  display: block;
  font-family: inherit;
  height: var(--inputsize);
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  padding: 0 var(--paddingleftright);
  --arrow: 15px;
  --arrowspace: 8px;
  --iconpath: url(../../icon/location-primary.svg);
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select.has-icon {
  --iconsize: 12px;
  --iconurl: var(--iconpath);
  --iconspace: 8px;
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select.has-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--bgcolor);
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select.has-icon::after {
  left: var(--paddingleftright, 0px);
  width: var(--iconsize);
  background-image: var(--iconurl);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 50%;
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select.has-icon .current {
  padding-left: calc(var(--iconsize) + var(--iconspace));
  padding-right: calc(var(--arrow) + var(--iconsize) + var(--arrowspace) + var(--iconspace));
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select::before {
  content: "";
  position: absolute;
  top: 0;
  right: var(--paddingleftright, 0);
  bottom: 0;
  width: var(--arrow);
  background-image: url(../../icon/arrow-down-white.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select .current {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: var(--inputsize);
  color: var(--white);
  font-size: var(--labelfontbefore);
  font-weight: var(--font);
  padding-right: calc(var(--arrow) + var(--arrowspace));
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  padding-bottom: 10px;
  text-align: left;
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select .current::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--white);
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select .current.selected {
  color: var(--color);
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select .list {
  text-align: left;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  transform-origin: 50% 0;
  z-index: 4;
  max-height: 180px;
  overflow-y: auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  pointer-events: none;
  transition: 0.5s ease;
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select .list::-webkit-scrollbar {
  width: 4px;
  background: none;
  height: 4px;
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select .list::-webkit-scrollbar-track {
  box-shadow: none;
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select .list::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 5px;
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select .list li:first-child {
  display: none;
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select .list li {
  display: block;
  line-height: 1.2;
  padding: 8px 16px;
  white-space: normal;
  font-size: 13px;
  color: var(--black);
  font-family: "Poppins";
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select .list li.selected {
  background: var(--black);
  color: var(--white);
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select .list li.selected:hover {
  background: var(--black);
  color: var(--white);
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select .list li:hover {
  background: #e2e2e2;
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select.open .list {
  max-height: 120px;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select.open .list::-webkit-scrollbar {
  width: 4px;
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select.open .list::-webkit-scrollbar-track {
  box-shadow: unset;
  background: #fff;
}
.project-banner .video-background .container .bg-wrapper form .form-grid .custom-select.open .list::-webkit-scrollbar-thumb {
  background-color: var(--black) !important;
}

.projects-secA {
  padding: 50px 0;
}
.projects-secA .container {
  max-width: 1080px;
}
.projects-secA .load-more {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
  margin-top: 40px;
}
.projects-secA .load-more figure img {
  transition: 0.3s ease;
}
.projects-secA .load-more:hover img {
  rotate: 360deg;
}
.projects-secA .load-more p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
}
.projects-secA .grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 20px;
}
@media only screen and (max-width: 1024px) {
  .projects-secA .grid-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  .projects-secA .grid-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.projects-secA .grid-box .col:hover {
  position: relative;
}
.projects-secA .grid-box .col:hover::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
  z-index: 1;
}
.projects-secA .grid-box .col:hover:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.projects-secA .grid-box .col:hover figure img {
  scale: 1.1;
}
.projects-secA .grid-box .col figure {
  height: 404px;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
}
.projects-secA .grid-box .col figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.projects-secA .grid-box .col figure .figinfo {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
}
.projects-secA .grid-box .col figure .figinfo p {
  background: #D8AF56;
  border-radius: 5px;
  color: white;
  font-weight: 600;
  padding: 15px;
  font-size: 14px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.projects-secA .grid-box .col figcaption {
  padding: 15px 0 10px 0;
}
.projects-secA .grid-box .col figcaption h4 {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 24px;
  color: var(--black);
}
.projects-secA .grid-box .col figcaption p {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 14px;
  color: var(--text);
}
.projects-secA .grid-box .col figcaption .flex-box {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}
.projects-secA .grid-box .col figcaption .flex-box .col {
  display: flex;
  align-items: center;
  gap: 8px;
}
.projects-secA .grid-box .col figcaption .flex-box .col img {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
.projects-secA .grid-box .col figcaption .flex-box .col span {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
}

.project-detail-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .project-detail-banner {
    height: 80vh;
  }
}
@media only screen and (max-width: 991px) {
  .project-detail-banner {
    height: 80vh;
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-banner {
    height: 80vh;
  }
}
.project-detail-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 23.08%, rgba(0, 0, 0, 0.65) 79.33%), linear-gradient(360deg, rgba(0, 0, 0, 0) 55.77%, rgba(0, 0, 0, 0.65) 100%);
}
@media only screen and (max-width: 768px) {
  .project-detail-banner::before {
    background: linear-gradient(198deg, rgba(0, 0, 0, 0) 23.08%, rgba(0, 0, 0, 0.65) 79.33%), linear-gradient(8deg, rgba(0, 0, 0, 0) 55.77%, rgba(0, 0, 0, 0.65) 100%);
  }
}
.project-detail-banner .bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media only screen and (max-width: 540px) {
  .project-detail-banner .bg .container {
    padding: 0;
  }
}
.project-detail-banner .bg .container .bg-wrapper {
  position: absolute;
  width: 90%;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media only screen and (max-width: 991px) {
  .project-detail-banner .bg .container .bg-wrapper {
    bottom: 10%;
    width: 100%;
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: start;
    align-items: center;
    gap: 60px;
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-banner .bg .container .bg-wrapper {
    bottom: 10%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .project-detail-banner .bg .container .bg-wrapper .left-content {
    text-align: center;
  }
}
.project-detail-banner .bg .container .bg-wrapper .left-content h2 {
  font-family: "Optima";
  font-weight: 400;
  font-size: 48px;
  color: var(--white);
  margin-bottom: 15px;
}
@media only screen and (max-width: 540px) {
  .project-detail-banner .bg .container .bg-wrapper .left-content h2 {
    font-size: 30px;
  }
}
.project-detail-banner .bg .container .bg-wrapper .left-content p {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  max-width: 60%;
  line-height: 1.5;
}
@media only screen and (max-width: 1024px) {
  .project-detail-banner .bg .container .bg-wrapper .left-content p {
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .project-detail-banner .bg .container .bg-wrapper .left-content p {
    max-width: 50%;
    margin: auto;
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-banner .bg .container .bg-wrapper .left-content p {
    font-size: 14px;
    max-width: 95%;
    margin: auto;
  }
}
.project-detail-banner .bg .container .bg-wrapper .left-content .grid-box {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .project-detail-banner .bg .container .bg-wrapper .left-content .grid-box {
    justify-content: center;
    margin-top: 10px;
  }
}
.project-detail-banner .bg .container .bg-wrapper .left-content .grid-box .col {
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 164px;
  height: 125px;
}
.project-detail-banner .bg .container .bg-wrapper .left-content .grid-box .col figure {
  width: 24px;
}
.project-detail-banner .bg .container .bg-wrapper .left-content .grid-box .col figure img {
  width: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: static;
}
.project-detail-banner .bg .container .bg-wrapper .left-content .grid-box .col h6 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  text-transform: uppercase;
}
.project-detail-banner .bg .container .bg-wrapper .left-content .grid-box .col p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: var(--white);
}
.project-detail-banner .bg .container .bg-wrapper .right-content {
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 768px) {
  .project-detail-banner .bg .container .bg-wrapper .right-content {
    display: none;
  }
}
.project-detail-banner .bg .container .bg-wrapper .right-content .grid-box {
  display: flex;
  gap: 20px;
}
.project-detail-banner .bg .container .bg-wrapper .right-content .grid-box .col:first-child a {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid var(--white);
  color: white;
  padding: 7px 25px;
  text-align: center;
  border-radius: 25px;
  position: relative;
  transition: 0.5s ease;
  background: transparent;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.project-detail-banner .bg .container .bg-wrapper .right-content .grid-box .col:first-child a span {
  white-space: nowrap;
}
.project-detail-banner .bg .container .bg-wrapper .right-content .grid-box .col:first-child a::before {
  content: "";
  position: absolute;
  bottom: -110%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  transition: 0.5s ease;
}
.project-detail-banner .bg .container .bg-wrapper .right-content .grid-box .col:first-child a:hover {
  color: var(--black);
}
.project-detail-banner .bg .container .bg-wrapper .right-content .grid-box .col:first-child a:hover::before {
  bottom: 0;
  z-index: -1;
}
.project-detail-banner .bg .container .bg-wrapper .right-content .grid-box .col:last-child a {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid var(--white);
  color: var(--black);
  padding: 7px 25px;
  text-align: center;
  border-radius: 25px;
  position: relative;
  background: var(--white);
  display: inline-block;
  transition: 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.project-detail-banner .bg .container .bg-wrapper .right-content .grid-box .col:last-child a span {
  white-space: nowrap;
}
.project-detail-banner .bg .container .bg-wrapper .right-content .grid-box .col:last-child a::before {
  content: "";
  position: absolute;
  bottom: -110%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #D8AF56;
  transition: 0.5s ease;
}
.project-detail-banner .bg .container .bg-wrapper .right-content .grid-box .col:last-child a:hover {
  color: var(--white);
  border: 1px solid #D8AF56;
}
.project-detail-banner .bg .container .bg-wrapper .right-content .grid-box .col:last-child a:hover::before {
  bottom: 0;
  z-index: -1;
}

.project-detail-secA {
  padding: 50px 0;
  background: #F5F5F5;
  overflow: hidden;
}
.project-detail-secA .flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .project-detail-secA .flex-box {
    gap: 70px;
  }
}
@media only screen and (max-width: 768px) {
  .project-detail-secA .flex-box {
    flex-direction: column;
    gap: 40px;
  }
}
.project-detail-secA .flex-box .col:first-child {
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 768px) {
  .project-detail-secA .flex-box .col:first-child {
    max-width: 80%;
    text-align: center;
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-secA .flex-box .col:first-child {
    max-width: 100%;
  }
}
.project-detail-secA .flex-box .col:first-child h2 {
  font-family: Optima;
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
  color: var(--black);
  margin-bottom: 20px;
}
@media only screen and (max-width: 540px) {
  .project-detail-secA .flex-box .col:first-child h2 {
    font-size: 35px;
  }
}
.project-detail-secA .flex-box .col:first-child p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
  padding-bottom: 40px;
}
.project-detail-secA .flex-box .col:first-child a {
  border: 1px solid black;
  color: white;
  padding: 7px 25px;
  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;
  background: black;
  display: inline-block;
  transition: 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--black);
  margin-top: 20px;
}
.project-detail-secA .flex-box .col:first-child a::before {
  content: "";
  position: absolute;
  bottom: -110%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #D8AF56;
  transition: 0.5s ease;
}
.project-detail-secA .flex-box .col:first-child a:hover {
  color: var(--white);
  border: 1px solid #D8AF56;
}
.project-detail-secA .flex-box .col:first-child a:hover::before {
  bottom: 0;
  z-index: -1;
}
.project-detail-secA .flex-box .col:last-child {
  max-width: 50%;
}
@media only screen and (max-width: 768px) {
  .project-detail-secA .flex-box .col:last-child {
    max-width: 100%;
  }
}
.project-detail-secA .flex-box .col:last-child figure {
  height: 472px;
  width: 518px;
  line-height: 0;
}
@media only screen and (max-width: 1024px) {
  .project-detail-secA .flex-box .col:last-child figure {
    width: 100%;
    height: 100%;
  }
}
.project-detail-secA .flex-box .col:last-child figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-detail-secB {
  padding: 50px 0 0 0;
}
@media only screen and (max-width: 540px) {
  .project-detail-secB {
    padding: 50px 0;
  }
}
.project-detail-secB .swiper .heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media only screen and (max-width: 540px) {
  .project-detail-secB .swiper .heading {
    justify-content: center;
  }
}
.project-detail-secB .swiper .heading h2 {
  font-family: Optima;
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
  color: var(--black);
}
@media only screen and (max-width: 540px) {
  .project-detail-secB .swiper .heading h2 {
    font-size: 35px;
  }
}
.project-detail-secB .swiper .heading .swiper-nav {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 540px) {
  .project-detail-secB .swiper .heading .swiper-nav {
    display: none;
  }
}
.project-detail-secB .swiper .heading .swiper-nav button {
  transition: 0.5s ease;
}
.project-detail-secB .swiper .heading .swiper-nav .swiper-button-disabled {
  opacity: 0.5;
  cursor: no-drop;
}
.project-detail-secB .swiper .swiper-wrapper {
  padding: 30px 0;
}
@media only screen and (max-width: 540px) {
  .project-detail-secB .swiper .swiper-wrapper {
    padding: 30px 0 0 0;
  }
}
.project-detail-secB .swiper .swiper-wrapper .swiper-slide:hover figure img {
  scale: 1.1;
}
.project-detail-secB .swiper .swiper-wrapper .swiper-slide figure {
  width: 100%;
  height: 253px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.project-detail-secB .swiper .swiper-wrapper .swiper-slide figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}
.project-detail-secB .swiper .swiper-wrapper .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.project-detail-secB .swiper .swiper-wrapper .swiper-slide figure figcaption {
  position: absolute;
  bottom: 0%;
  left: 0%;
  padding: 0px 40px 45px 33px;
  z-index: 2;
}
.project-detail-secB .swiper .swiper-wrapper .swiper-slide figure figcaption h4 {
  font-family: "Circular Pro Book";
  font-weight: 450;
  font-size: 20px;
  line-height: 20px;
  color: var(--white);
}

.project-detail-secC {
  padding: 50px 0 20px 0;
}
@media only screen and (max-width: 540px) {
  .project-detail-secC {
    padding: 0;
  }
}
.project-detail-secC .swiper .heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media only screen and (max-width: 540px) {
  .project-detail-secC .swiper .heading {
    justify-content: center;
  }
}
.project-detail-secC .swiper .heading h2 {
  font-family: Optima;
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
  color: var(--black);
}
@media only screen and (max-width: 540px) {
  .project-detail-secC .swiper .heading h2 {
    font-size: 35px;
  }
}
.project-detail-secC .swiper .heading .swiper-nav {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 540px) {
  .project-detail-secC .swiper .heading .swiper-nav {
    display: none;
  }
}
.project-detail-secC .swiper .heading .swiper-nav button {
  transition: 0.5s ease;
}
.project-detail-secC .swiper .heading .swiper-nav .swiper-button-disabled {
  opacity: 0.5;
  cursor: no-drop;
}
.project-detail-secC .swiper .swiper-wrapper {
  padding: 50px 0 0 0;
}
@media only screen and (max-width: 540px) {
  .project-detail-secC .swiper .swiper-wrapper {
    padding: 30px 0 0 0;
  }
}
.project-detail-secC .swiper .swiper-wrapper .swiper-slide .figure {
  width: 100%;
  position: relative;
  overflow: hidden;
  line-height: 0;
  cursor: pointer;
  height: 532px;
}
.project-detail-secC .swiper .swiper-wrapper .swiper-slide .figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}

.project-detail-secD {
  padding: 50px 0;
}
.project-detail-secD .swiper .heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media only screen and (max-width: 540px) {
  .project-detail-secD .swiper .heading {
    justify-content: center;
  }
}
.project-detail-secD .swiper .heading h2 {
  font-family: Optima;
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
  color: var(--black);
}
@media only screen and (max-width: 540px) {
  .project-detail-secD .swiper .heading h2 {
    font-size: 35px;
  }
}
.project-detail-secD .swiper .heading .swiper-nav {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 540px) {
  .project-detail-secD .swiper .heading .swiper-nav {
    display: none;
  }
}
.project-detail-secD .swiper .heading .swiper-nav button {
  transition: 0.5s ease;
}
.project-detail-secD .swiper .heading .swiper-nav .swiper-button-disabled {
  opacity: 0.5;
  cursor: no-drop;
}
.project-detail-secD .swiper .swiper-wrapper {
  padding: 30px 0;
}
@media only screen and (max-width: 540px) {
  .project-detail-secD .swiper .swiper-wrapper {
    padding: 30px 0 0 0;
  }
}
.project-detail-secD .swiper .swiper-wrapper .swiper-slide:hover figure img {
  scale: 1.1;
}
.project-detail-secD .swiper .swiper-wrapper .swiper-slide figure {
  width: 100%;
  height: 247px;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #DEDEDE;
}
.project-detail-secD .swiper .swiper-wrapper .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s ease;
}
.project-detail-secD .swiper .swiper-wrapper .swiper-slide figure figcaption {
  position: absolute;
  bottom: 0%;
  left: 0%;
  padding: 0px 40px 45px 33px;
  z-index: 2;
}
.project-detail-secD .swiper .swiper-wrapper .swiper-slide figure figcaption h4 {
  font-family: "Circular Pro Book";
  font-weight: 450;
  font-size: 20px;
  line-height: 20px;
  color: var(--white);
}

.project-detail-secE {
  overflow: hidden;
  line-height: 0;
}
.project-detail-secE .heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 50px;
}
@media only screen and (max-width: 540px) {
  .project-detail-secE .heading {
    justify-content: center;
    padding-bottom: 30px;
  }
}
.project-detail-secE .heading h2 {
  font-family: Optima;
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
  color: var(--black);
}
@media only screen and (max-width: 540px) {
  .project-detail-secE .heading h2 {
    font-size: 35px;
  }
}
.project-detail-secE iframe {
  width: 100%;
  margin-bottom: 0;
  height: 583px;
}
@media only screen and (max-width: 991px) {
  .project-detail-secE iframe {
    height: 50vh;
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-secE iframe {
    height: 60vh;
  }
}

.project-detail-secF {
  padding: 70px 0 50px 0;
}
.project-detail-secF .swiper .heading {
  position: relative;
}
.project-detail-secF .swiper .heading h2 {
  font-family: Kugile;
  font-weight: 400;
  font-size: 48px;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 540px) {
  .project-detail-secF .swiper .heading h2 {
    font-size: 28px;
  }
}
.project-detail-secF .swiper .heading .swiper-nav {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 540px) {
  .project-detail-secF .swiper .heading .swiper-nav {
    display: none;
  }
}
.project-detail-secF .swiper .heading .swiper-nav button {
  transition: 0.5s ease;
}
.project-detail-secF .swiper .heading .swiper-nav .swiper-button-disabled {
  opacity: 0.5;
  cursor: no-drop;
}
.project-detail-secF .swiper .swiper-wrapper {
  padding: 30px 0;
}
.project-detail-secF .swiper .swiper-wrapper .swiper-slide:hover figure img {
  scale: 1.1;
  z-index: -1;
}
.project-detail-secF .swiper .swiper-wrapper .swiper-slide figure {
  position: relative;
  line-height: 0;
  overflow: hidden;
  width: 100%;
  height: 404px;
  border-radius: 10px;
}
@media only screen and (max-width: 540px) {
  .project-detail-secF .swiper .swiper-wrapper .swiper-slide figure {
    height: 314px;
  }
}
.project-detail-secF .swiper .swiper-wrapper .swiper-slide figure::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24.52%, rgba(0, 0, 0, 0.75) 87.02%);
  z-index: 1;
}
.project-detail-secF .swiper .swiper-wrapper .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.project-detail-secF .swiper .swiper-wrapper .swiper-slide figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 10px 50px 30px;
  z-index: 2;
}
.project-detail-secF .swiper .swiper-wrapper .swiper-slide figure figcaption h5 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 24px;
  color: var(--white);
  padding-bottom: 20px;
}
.project-detail-secF .swiper .swiper-wrapper .swiper-slide figure figcaption p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
}/*# sourceMappingURL=projects.css.map */