

.recipe-card-container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 30px;
  width: 90%;
  margin: 0 auto;
}


.container-card{
      display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32%;
  max-width: 400px;
margin-right: 20px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.2);
    border-width: 1px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}
.card{
 display: flex;
    flex-direction: column;
   
}
.container-card:nth-child(3n) {
  margin-right: 0;
}

.container-wide{
    width: 66.6%;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.2);
    border-width: 1px;
    border-radius: 12px;
    padding-bottom: 20px;
    background-color: #ffffff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}

.nutrients{
    display: flex;
    padding-top: 0px;
}

.container-img{
  position: relative;
    width: 100%;
    height: 212px;
    border-style: none;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  cursor: pointer
}
/*.container-img{
  position: relative;
  width: 100%;}*/

.container-text{
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
}

.textbox-display{
    width: 45%;
}

.textbox-no-display{
    display: none;
}
.textbox-margin {
   
  padding: 0 20px;
  
}

.text-heading{
    font-family: 'Light';
    margin: 10px 0px;
    font-size: 28.8px;
    color: #005595;
  cursor: pointer
}

.recipe-text > div {
    text-align: center;
    white-space: nowrap;
    font-size: 16px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Light';
    width: 100%;
  text-justify: inter-word;
  text-align: justify:
}

.read-more-btn{
    width: 60%;
    text-decoration: none;
    font-family: 'Light';
    color: white;
    background-color: #089e9a;
    padding: 15px 30px;
    text-align: center;
    border-style: none;
    border-radius: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
      font-size: 18px;
    white-space: nowrap;
    border: 1px solid #089e9a;
    margin-bottom: 20px;
  }
  
  .read-more-btn:hover{
     border: 1px solid #005595;
  background: #ffffff;
  color: #005595;
  font-family: 'Book';
  }
.play-btn{
   position: absolute;
    top: 50%;
    left: 50%;
    margin: -37px 0 0 -37px;
    text-indent: -9999px;
    overflow: hidden;
    width: 74px;
    height: 74px;
    background: url(https://www.heartsforhearts.asia/wp-content/themes/nurse/assets/img/play.svg) no-repeat;
    background-size: 100% auto;
  border: none;
  cursor: pointer;
  }

.recipe-link {
 text-decoration: none;
}
.more-recipe {
  font-size: 35px;
  color: #005595;
  font-family: 'Light';
  max-width: 1366px;
  margin: auto;
  text-align: left;
  /*font-weight:bold;*/
}

.card a {
    color: inherit;
    text-decoration: none;
}
.card a:hover{
  color: #002d62 !important;
  text-decoration: none;
}
@media (max-width: 528px){
	.container-card {
		width: 100% ;
		float: none ;
    margin-left: auto !important ;
    margin-right: auto !important;
	}
  .recipe-card-container {
    margin-left: 15px;
    margin-right: 15px;
}
}
@media (min-width: 529px) and (max-width: 768px) {
.container-card {
		width: 48% ; 
	}
.recipe-card-container {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (min-width: 769px) and (max-width: 1024px)and (-webkit-min-device-pixel-ratio: 2)  {
  .container-card {
		width: 48% ; 
	}
  .recipe-card-container {
    justify-content: space-evenly;
    margin-left: 0px;
    margin-right: 0px;
}
}

