.show-container{
  width: 87%;
  height: 100%;
  margin-left: 7%;
  margin-right: 7%;
  margin-top: 200px;
  margin-bottom: 5%;
}
.show-container p{
  padding: 20px 30px;
  font-size: 17px;
  color: #575656;
  line-height: 27px;
  vertical-align: top;
  text-align: justify;
  margin-bottom: 20px;
}
.show-container h5{
  font-size: 23px;
  padding-left: 30px;
  color: rgb(31, 5, 73);
}
.show-text a{
  background-color: red;
  color: white;
  padding: 8px 20px;
  border-radius: 3px;
  margin: 40px 30px;
}
.show-image{
  width: 40%;
  display: inline-block;
  height: 380px;
  border: 1px;
  background-color: red;
  background-size: cover;
  padding-bottom: 5px;
  vertical-align: top;
}
.show-image img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.show-text{
  width: 57%;
  display: inline-block;
  margin-left: 1%;
  height: 400px;
}
.more-items{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.more-items img{
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 1px;
  border-style: solid;
  border-color: lightgrey;
}


/* ------------css for small screens -------- */

@media only screen and (max-width: 600px){
  .show-container{
    width: 100%;
  }
  .show-container p{
    padding: 20px 30px;
    font-size: 16px;
    line-height: 24px;
  }
  .show-container h5{
    font-size: 19px;
    padding-top: 30px;
  }
  .show-image{
    width: 90%;
    margin-left: 3%;
    display: inline-block;
    height: 100%;
  }
  .show-text{
    width: 97%;
    display: inline-block;
    height: 100%;
    margin-left: 0;
    margin-right: 2%;
  }
  .show-text a{
    padding: 7px 10px;
    font-size: 16px;
  }
  .more-items{
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
    margin-top: 60px;
  }
  .more-items img{
    width: 85%;
    height: 100%;
    margin-left: 5%;

  }
  /* .show-container{
    margin-bottom: 50px;
  } */
  .show-container{
    width: 90%;
    height: 100%;
    /* margin-left: 5%;
    margin-right: 5%; */
    margin-top: 200px;
    margin-bottom: 5%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 979px){
  .show-image{
    width: 90%;
    margin-left: 5%;
    display: inline-block;
    height: 80%;
  }
  .show-text{
    width: 95%;
    display: inline-block;
    margin-left: 1%;
    height: 100%;
    margin-top: 5%;
    margin-bottom: 5%;
  }
  .more-items{
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
  }
}