#projects {
  margin-top: 50px;
  font-size: 18px;
  padding-top: 65px;
}

.project_flex {
  display: flex;
  justify-content: space-evenly;
  /* border: 1px solid red; */
  min-height: 1050px;
  flex-wrap: wrap;
}
.pro {
  width: 37%;
  border: 1px solid whitesmoke;
  border-radius: 20px;
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  height: 470px;
  background-color: #1b1b1b;
  box-shadow: rgba(236, 241, 233, 0.19) 0px 10px 20px,
    rgba(252, 250, 250, 0.23) 0px 6px 6px;
  transition: 0.3s;
}
.pro:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.pro .pro_img {
  height: 50%;
}
.pro .pro_img img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  opacity: 1;
}
.pro .pro_desc {
  height: 47%;
  display: flex;
  flex-direction: column;
  width: 95%;
  margin: auto;
}
.pro .pro_desc .pro_desc_title {
  color: white;
  font-size: 0.8em;
  text-align: justify;
}
.pro .pro_desc .bella_techs {
  display: flex;
  justify-content: space-evenly;
  width: 88%;
  margin: auto;
}
.movie_tech,
.kohls_tech {
  display: flex;
  justify-content: space-evenly;
  width: 75%;
  margin: auto;
}

/* .pro .pro_desc .pro_desc_techs .pro_desc_techs_title {
  width: 19%;
  height: 1.4em;
  color: rgb(8, 8, 8);
  background-color: rgb(245, 240, 240);
  border-radius: 5px;
  text-align: center;
}
.pro .pro_desc .pro_desc_techs .pro_desc_techs_title p {
  font-size: 0.7em;
  font-weight: 600;
} */

.pro .pro_btns {
  height: 20%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 1em;
}

.pro_btn {
  background-color: rebeccapurple;
  height: 2.5em;
  width: 22%;
  border-radius: 5px;
  cursor: pointer;
  color: white;
  border: none;
}
.pro_btn a {
  text-decoration: none;
  color: white;
}
.pro_btn_new {
  width: 2em;
  background-color: rebeccapurple;
}
.pro_btn:hover {
  background-color: black;
}
.live {
  background-color: red;
}
.code {
  background-color: rgb(123, 136, 106);
  color: white;
}
.demo {
  background-color: #286dab;
}
@media (max-width: 600px) {
  .pro {
    width: 80%;
  }
  .pro .pro_desc .pro_desc_techs .pro_desc_techs_title p {
    font-size: 0.55em;
    padding-top: 0.4em;
  }
}

@media only screen and (min-width: 600px) and (max-width: 900px) {
  .pro {
    width: 52%;
  }
  .pro .pro_desc .pro_desc_techs .pro_desc_techs_title p {
    font-size: 0.6em;
    padding-top: 0.4em;
  }
}
