
.home-project-head h2 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: rgb(253 253 225);
}
.home-project {
  background: #000;
}
.home-project-head {
  padding-bottom: 80px;
}

.home-project-wapper {
  border-radius: 20px;
  position: relative;
  border: 5px solid rgb(253 253 225);
}
.home-project-content h3 {
  color: rgb(253 253 225);
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font-01);
}
.home-project-content p {
  color: rgb(253 253 225);
  font-size: 18px;
  margin: 0;
}
.home-project-content {
  position: absolute;
  bottom: 70px;
  left: 40px;
  z-index: 2;
  width: calc(100% - 120px);
}
.home-project-wapper figure {
  position: relative;
  border-radius: 20px;
  margin: 0;
} 
.home-project-wapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(180deg,rgba(0,0,0,0) 35.42%,#000 100%);
  border-radius: 20px;
}
.project-btn {
  position: absolute;
  bottom: 70px;
  right: 40px;
  z-index: 2;
}
.project-btn:hover svg path {
  stroke: #06b453;
}
.home-project-wapper figure img {
  width: 100%;
  border-radius: 20px;
}

@media(max-width:1400px){
  .home-project-content h3 {
  font-size: 24px;
}
.home-project-content p {
  font-size: 16px;
}
.home-project-content {
  bottom: 30px;
  left: 20px;
}
}
@media(max-width:991px){
  .home-project-head {
  padding-bottom: 40px;
}
.home-project-head h2 svg {
  width: 50px;
}
}
@media(max-width:576px){
  .home-project-content h3 {
  font-size: 20px;
}
.home-project-content p {
  font-size: 14px;
}
.home-project-content {
  bottom: 20px;
  left: 20px;
}

}