@charset "UTF-8";

#plant .main_height_plant {
  min-height: 1200px;
}
#plant .main_width {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#plant .section_title h2{
  padding-top: 80px;
}
#plant .plant_text {
margin-bottom: 100px;
text-align: left;
}
#plant .plant_text p {
  font-size: 20px;
  font-weight: bold;
}
#plant .plant_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 50px;
  column-gap: 50px;
}
#plant .list img {
  width: 300px;
  height: 350px;
  border-radius: 5%;
  box-shadow: 1px 1px 5px 5px #F6F4F0;
}

@media only screen and (max-width: 768px) {
  #plant .main_height_plant {
    min-height: 1000px;
  }
  #plant .plant_text {
    margin-bottom: 30px;
    }    
  #plant .plant_text p {
    background-color: #fff;
    opacity: 0.9;
    border-radius: 20px;
    padding: 10px 10px;
    font-size: 16px;
    font-weight: normal;
  }
  #plant .plant_list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 20px;
  }
  #plant .list img {
    width: 200px;
    height: 200px;
    border-radius: 10%;
    box-shadow: 1px 1px 5px 5px #F6F4F0;
  }
}

@media only screen and (max-width: 375px) {
  #plant .main_height_plant {
    min-height: 800px;
  }
  #plant .plant_text p br {
    display: none;
  }
  #plant .section_title h2 {
    padding-top: 40px;
  }
  #plant .plant_list {
    row-gap: 15px;
  }
  #plant .list img {
    width: 160px;
    height: 160px;
  }
}
