.heading-container {
  display: flex;
  align-items: center;
  width: 100%;
  
}
.heading-container::before,
.heading-container::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #000);
}
.heading-container::after {
  background: linear-gradient(to left, transparent, #000);
}
.heading {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  margin: 0 10px;
}


.feature-pro-text {
  min-height: 100vh;
  padding-top: 45px;
  background-color: #f1f1f8;
  overflow-x: hidden;
  margin: 0 auto;
}

/* Feature Pro Container */
.feature-pro-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 70px;
  flex-wrap: wrap;
  gap: 10vw;
  padding-bottom: 50px;
}

@media (width>=2000px){
  .feature-pro-container{
     gap:16vw;
  }
}



/* Common Model */
.common-model {
  display: flex;
  flex-direction: column;
  width: 380px;
  height: 480px;
  background-color:white;
  border-radius: 15px;
  border-width: 1px;
  
  
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.common-model:hover {   
  
  opacity: 1;
}
.text-inside{
  color: black;
}
.style-container {
  align-self: center;
  width: 360px;
  height: 300px;
}

.text-project {
  color: #b2b2b2;
  text-align: center;
  width: 60%;
  margin: auto;
}

.style-container img {
  width: 100%;
  height: 90%;
  object-fit: contain;
  border-radius: 15px;
  margin-top: 22px;
}


.market{
  background-color: #f1f1f8;
}

@media(min-width: 521px) {
  .common-model {
    width: 350px;
    height: 450px;
  }
}

@media(min-width: 0px) and (max-width: 520px) {
  .common-model {
    width: 330px;
    height: 420px;
  }
  .common-model:hover {
    transform: scale(0.95);
  }
  .style-container img {
    width: 90%;
    padding-inline: 18px;
    border-radius: 20px;
    margin-left: 5%;
  }
}



 