@font-face {
    font-family: 'GeneralSans-Medium';
    src: url('../Assets/fonts/GeneralSans-Medium.otf');
    font-style: normal;
  }
  @font-face {
    font-family: 'GeneralSans-Semibold';
    src: url('../Assets/fonts//GeneralSans-Semibold.otf');
    font-style: normal;
  }


.wrapper{
    min-height:100vh;
    padding-top:110px;
}
.blog-heading{
    width: 90%;
    margin: 0 auto;
    /*margin-top: 7rem;*/
    
}

.blog-heading > h4 {
    width: 100%;
    font-family: 'GeneralSans-Medium';
    color: #00225F;
    border-bottom: 1px solid #CF5B5B;
    line-height: 0.1em;

}
.blog-heading > h4 span{
    background: #fff;
    padding: 0 10px;
    margin-left: 2rem

}
.card-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    margin: 0 auto;
    
}
.card{
    background-color: #ffffff;
    box-shadow: 0px 0px 77px #0000001C;
    border: none;
    border-radius: 20px !important;
    height:200px;
}
.card-title{
    font-family: 'GeneralSans-Semibold';
    color: #00225F !important;
            font-size: 18px;
            height: 40px;
         overflow: hidden;
}
.card-text{
    font-family: 'GeneralSans-Medium';
    color: #252525 !important;
    font-size: 14px;
    height: 67px;
     overflow: hidden;

}
.card-pic{
    /*width: 200px !important;*/
    /*height: 200px !important;*/
    padding: 1rem;
    border-radius: 25px;
}
.date-history  small{
    font-family: 'GeneralSans-Medium';
}
.card-body > .date-history > small:nth-child(1){
    color: #252525;
}
.card-body > .date-history > small:nth-child(2){
    color: #C55F60;
}

/*media query start*/

@media only screen and (max-width: 576px) and (min-width: 576px) {
   .card-pic {
    height: 100% !important;
    width: 100% !important;
}
}

@media only screen and (min-width: 768px){
    .card{
        max-width:50%;
    }
}
@media only screen and (min-width: 992px){
    .card{
        max-width:100%;
    }
}
