/**************Single Css**************/
.portfolio-cat-list {

	padding:0px;
}

.portfolio-content-arch .portf-category {
  color: #b7ff05;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid #b7ff05;
  padding: 6px 16px;
  margin-right: 10px;
  overflow: hidden;
  z-index: 0;
  position: relative;
}
.portf-category::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  height: 106%;
  background-color: #b7ff05;
  border-radius: 100px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
  z-index: -1;
}
.portf-category.hovered {
  color: #1a1a1a;
}

.portf-category.hovered::before {
  transform: translate(-50%, -50%) scale(1);
}
/**************Work Css**************/
.portfolio-archive{
	margin-bottom:80px;
}
.portfolio-page-title{
	margin:30px 0px;
}
.portfolio-item {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.4s ease;
	margin: 30px 0px;
}

.portfolio-item .portfolio-thumbnail img {
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-thumbnail img {
  transform: scale(1.05);
}
.portfolio-filters li a,
.portfolio-filters li {
  cursor: pointer;
  transition: color 0.3s ease;
}

.portfolio-filters li:hover,
.portfolio-filters li a:hover {
  color: #00ff94 !important;
}
/******cta********/
.cta-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.cta-box {
  position: relative;
  text-align: center;
  margin: 0 auto;
}

.circle-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  color: #212529;
  background-color: #b7ff05;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  z-index: 1;
  will-change: transform;
}

.cta-text-wrapper {
  position: relative;
  z-index: 2;
  mix-blend-mode: difference;
}

.cta-heading {
  color: #b7ff05;
  margin: 15px 0;
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 100px;
  padding: 18px 40px;
  color: #1a1a1a;
  background-color: #b7ff05;
  border: 3px solid #b7ff05;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.cta-button:hover {
  color: #b7ff05;
  background-color: transparent;
  border: 3px solid #b7ff05;
}
@media (max-width: 768px) {
	.portf-meta{
		display: grid;
    gap: 10px;
	}
}