/*
Current card type is bigBlog card
*/
#blogs {
    margin: 20px;
    margin-top: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
    padding-bottom: 30px;
    min-height: 100px;
}
#blogBoxContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    min-height: 500px;
    margin-right: 5px;
    margin-left: 5px;
    border-radius: 5px;
    margin-bottom: 25px;
}
#blogBoxAreaTitle /*Top Title of whole container*/ {
    font-family: openSans-Bold;
    margin: 25px;
    padding-bottom: 20px;
    border-bottom: 5px solid #258eac;
    color: #258eac;
}
#bigBlogBoxContainer {
    display: flex;
    flex-wrap: wrap;
    margin: 0px;
    min-width: 30%;
    min-height: 500px;
    justify-content: center;
}

#smallBlogBoxContainer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    min-width: 65%;
    min-height: 400px;
}
#smallBlogBoxHolder {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.bigBlogCard {
    margin: 20px;
    border-radius: 1px;
    height: 550px;
    /*width: 100%;*/
    width: 360px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    cursor: default;
    box-shadow: 2px 2px 5px 2px rgb(73, 73, 73,0.2);
    transition: 0.2s box-shadow;
}
.bigBlogCard:hover {
    box-shadow: 4px 4px 5px 2px rgb(153, 151, 151);
}
.bigBlogCardImageHolder {
    height: 45%;
}
.bigBlogCardImage {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.bigBlogCardDetail {
    height: 55%;
    position: relative;
    display: flex;
    flex-direction: column;
}
.bigBlogCardDetail h3 {
    text-align: center;
    font-family: openSans-Bold;
    font-size: 130%;
    margin: 0;
    padding: 2px;
    padding-top: 10px;
    color: rgb(0,0,0,0.7);
}
.bigBlogCardTextDetails {
    word-wrap: break-word;
    overflow: auto;
    height: 70%;
    margin: 0px;
    padding: 10px;
    color: rgb(88, 84, 84);
    font-family: openSans;
}
.bigBlogCardTextDetails::-webkit-scrollbar {
    width: 1px;
  }
  
.bigBlogCardTextDetails::-webkit-scrollbar-track {
    background: transparent; 
  }
.bigBlogCardTextDetails::-webkit-scrollbar-thumb {
    background: rgba(116, 116, 116, 0.329); 
  }
  .bigBlogBoxFooter {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      overflow: hidden;
  }
  .bigBlogCardAuthorDetails {
    font-size: 60%;
    font-family: openSans-Bold;
    margin: 10px;
    
    /*position: absolute;*/
    display: block;
    color: rgb(88, 84, 84);
}
.bigBlogLink {
    /*position: absolute;*/
    display: block;
    font-family: openSans-Bold;
    margin: 15px;
    color: #6886c5;
    text-decoration: none;
    transition: 0.2s color;
}
.bigBlogLink:hover {
    color: #3c0a99;
}
.blogBox {
    cursor: pointer;
    width: 355px;
    height: 230px;
    margin: 20px;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition:box-shadow 0.2s;
    box-shadow: 2px 2px 5px 2px rgb(73, 73, 73,0.2);
}
.blogBox:hover {
    box-shadow: 2px 2px 10px 2px rgb(73, 73, 73,0.5);
}
.blogBoxImgContainer {
    height: 45%;
}
.blogBoxImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blogBoxDetails {
    height: 55%;
    background: rgb(252, 252, 252);
    color: rgba(0,0,0,0.7);
    padding: 5px;
    word-wrap: break-word;
}
.blogBoxTitle {
    font-family: openSans-Bold;
    margin-top: -2px;
    margin-bottom: 2px;
    font-size: 20px;
}
.blogBoxAbout {
    font-family: openSans;
    font-size: 15px;
    padding-bottom: 20px;
}
.blogBoxVisitLink {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 15px;
    margin-right: 15px;
    text-decoration: none;
    font-size: 18px;
    color: rgb(182, 179, 179);
    font-family: openSans-SemiBold;
    text-shadow: 2px 2px 5px 2px rgb(175, 149, 149);
}
.blogBoxVisitLink:hover {
    text-decoration: underline;
}
#blogViewMorePageLink {
    padding: 10px;
    text-decoration: none;
    font-family: openSans-Bold;
    margin: 10px;
    text-align: center;
    font-size: 17px;
    border-radius: 5px;
    color: #6886c5;
    background-color: #f9f9f952;
}
#blogViewMorePageLink:hover {
    background-color: #e7d5d5;
    color: rgb(24, 24, 153);
}
@media only screen and (max-width:1300px) {
    /*
    PC view
    */
}
@media only screen and (max-width:650px) {
    /*
    Mobile view
    */
    #blogs {
        margin: 5px;
        margin-top: 20px;
    }
    #blogBoxAreaTitle/*Top Title of whole container*/ {
        margin:10px;
         font-size: 25px;
         border-bottom: 3px solid;
         padding-bottom: 17px;
    }
    #bigBlogBoxContainer {
        min-height: 620px;
        margin: 5px;
    }
    .bigBlogCard {
        min-height: 620px;
    }
    .blogBox {
        width: 100%;
        margin: 5px;
        max-width: 365px;
        margin-top: 35px;
    }
    #smallBlogBoxContainer {
        width: 100%;
    }
    .blogBoxTitle {
        font-size: 107px;
    }
    .blogBoxAbout {
        font-size: 14px;

    }
}