:root {
  --bodyFont: "Inter", sans-serif;
  --titleFont: "Inter", sans-serif;
  --primaryColor: #69BB16;
  --secondaryColor: #153505;
  --bodyColor: #666666;
  --whiteColor: #FFFFFF;
  --blackColor: #000000;
  --titleColor: #153505;
  --borderColor: #E5E5E5;
  --inputbgColor: #F6F6F6;
  --softbgColor: #F2F6EE;
  --transition: 0.4s all ease;
}

.row.gutter-250px {
  --bs-gutter-x: 250px;
}
@media (max-width: 1199px) {
  .row.gutter-250px {
    --bs-gutter-x: 150px;
  }
}
@media (max-width: 991px) {
  .row.gutter-250px {
    --bs-gutter-x: 100px;
  }
}
@media (max-width: 767px) {
  .row.gutter-250px {
    --bs-gutter-x: 24px;
  }
}

.row.gutter-120px {
  --bs-gutter-x: 120px;
}
@media (max-width: 1199px) {
  .row.gutter-120px {
    --bs-gutter-x: 90px;
  }
}
@media (max-width: 991px) {
  .row.gutter-120px {
    --bs-gutter-x: 50px;
  }
}
@media (max-width: 767px) {
  .row.gutter-120px {
    --bs-gutter-x: 24px;
  }
}

.row.gutter-80px {
  --bs-gutter-x: 80px;
}
@media (max-width: 1199px) {
  .row.gutter-80px {
    --bs-gutter-x: 60px;
  }
}
@media (max-width: 991px) {
  .row.gutter-80px {
    --bs-gutter-x: 40px;
  }
}
@media (max-width: 767px) {
  .row.gutter-80px {
    --bs-gutter-x: 24px;
  }
}

/********** Project Cards Start **********/
.tp-project-listing-wrapper.project-cards-listing .project-item-wrapper {
  position: sticky;
  top: 90px;
}

.tp-portfolio-item {
  margin-bottom: 24px;
}
.tp-portfolio-item .tp-portfolio-thumb {
  position: relative;
  overflow: hidden;
}
.tp-portfolio-item .tp-portfolio-thumb img {
  width: 100%;
  height: auto;
  min-height: 260px;
  object-fit: cover;
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
  transition: transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.g-0 .tp-portfolio-item {
  margin-bottom: 0;
}

.text-position-inside .tp-portfolio-item-content-holder {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  height: 100%;
  align-items: end;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  z-index: 3;
}
.text-position-inside .tp-portfolio-item-content-holder .tp-portfolio-item-content-holder-inn {
  padding: 0 40px 30px 40px;
  transition: all 0.5s linear 0s;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
}
.text-position-inside .tp-portfolio-item-content-holder .tp-portfolio-item-content-holder-inn .tp-portfolio-item-content-icon {
  width: 44px;
  height: 44px;
  line-height: 44px;
  background-color: var(--primaryColor);
  text-align: center;
  border-radius: 4px;
  color: #fff;
}
.text-position-inside .tp-portfolio-item:hover .tp-portfolio-item-content-holder {
  opacity: 1;
  visibility: visible;
  padding: 0;
}

.zoomin .tp-portfolio-item .tp-portfolio-thumb img {
  transform: scale(1);
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
.zoomin:hover .tp-portfolio-item .tp-portfolio-thumb img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.zoomout .tp-portfolio-item .tp-portfolio-thumb {
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  clip-path: inset(0 0 0 0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.zoomout:hover .tp-portfolio-item .tp-portfolio-thumb {
  clip-path: inset(12px 12px 12px 12px);
}

.slightmove .tp-portfolio-item .tp-portfolio-thumb img {
  transform: scale(1.03);
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
.slightmove:hover .tp-portfolio-item .tp-portfolio-thumb img {
  -webkit-transform: scale(1.03) translateX(1.05%);
  -ms-transform: scale(1.03) translateX(1.05%);
  transform: scale(1.03) translateX(1.05%);
}

.overlay .tp-portfolio-item .tp-portfolio-thumb .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primaryColor); /* Overlay color */
  transform: scaleX(1);
  transform-origin: left;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.overlay:hover .tp-portfolio-item .tp-portfolio-thumb .overlay {
  animation: overlayReveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  visibility: visible;
  opacity: 0.5;
}

@keyframes overlayReveal {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
/** Reveal Overlay (Scroll-Triggered) **/

/*# sourceMappingURL=portfoliopro.css.map */
