/* Feature Pro Text */
.feature-pro-text {
  min-height: 100vh;
  padding-top: 45px;
  background-color: #131313;
  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: 45px;
  padding-bottom: 50px;
}

/* Common Model */
.common-model {
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 400px;
  background-color: #262626;
  border-radius: 15px;
  border-width: 1px;
  border-color: #01d8c3;
  border-style: solid;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.common-model:hover {
  transform: scale(1.03);
  border-color: #01d8c3;
  opacity: 1;
}

.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%;
  object-fit: contain;
  border-radius: 15px;
  margin-top: 22px;
  height : 90%;
}

@media(min-width: 521px) {
  .common-model {
    width: 400px;
    height: 400px;
  }
}

@media(min-width: 0px) and (max-width: 520px) {
  .common-model {
    width: 360px;
    height: 420px;
  }
  .common-model:hover {
    transform: scale(0.95);
  }
  .style-container img {
    width: 90%;
    padding-inline: 18px;
    border-radius: 20px;
  }
}
