@import "./variable.css";

.Property-header{
  margin-top: 5rem;
}

.weblog{
  display: flex;
  justify-content: center;
  /* max-width: 1366px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);*/
  margin: 50px auto; 
}

.weblog-item{
  margin: 10px;
  padding: 10px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  box-shadow: 0 1px 10px 1px #aaa;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.weblog-item__img{
  width: 100% !important;
  height: 220px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.weblog-item__title{
  font-size: 1.1rem;
  margin: 2rem auto 0rem;
}

.weblog-item__desc{
  padding: 1rem;
  line-height: 1.7rem;
}

.weblog-item__btn{
  width: 150px;
  background-color: var(--secondary-primary-color);
  color: white;
  text-align: center;
  padding: 7px 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  /* box-shadow: 0 1px 10px 1px #aaa; */
}

.weblog-item__btn:hover{
  background-color: var(--secondary-color);
  text-decoration: none;
  color: white;
}

@media (max-width: 800px) {
  .Property-header{
    margin-right: 3rem !important;
  }
}