/*** Page-Wide ***/
body{
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
}

.blog-navbar button:focus {
    outline: none;
}

main{
    margin-top: 3.5rem;
    min-height: calc(85vh - 100px);
}

.center--ver-hor{
    display: flex;
    justify-content: center;
    align-items: center;
}

/*** Header Navigation***/

.header--img-container{
    width: 250px;
    height: 60px;
}

.nav-item{
    margin: 5px;
    padding: 5px 10px;
}

.nav-item:hover{
    border-radius: 2px 15px 2px 2px ;
}

.blog-navbar-collapse {
    z-index: 9999;
}

.blog-navbar-toggler-icon {
    font-size: 1.5rem;
}

/*** Blog Card***/
.blogs-content{
    border-bottom: 1px solid;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blogs--img-container img{
    height: 200px;
    object-fit: cover;
}

.box--title a{
    height: 40px;
    text-decoration: none;
}

.box--title h4{
    font-size: 1.1rem;
    font-weight: bold;
}

.box--description {
    font-size: 0.8rem;
    margin-top: .5rem;
}

.box--title {
    padding: 1.5rem 0 0 0;
}

.click--button {
    padding: 1.5rem 0 0 0;
}

.box--description p{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 16px;
    max-height: 64px;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.box--description-blog--detail {
    font-size: 0.9rem;
    margin-top: .5rem;
}

.box--description-blog--detail img {
    max-width: 100%;
}

.blog-detail__introduction-text {
    border: 1px solid;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.click--button {
    font-size: 0.7rem;
}

.click--button a:hover {
    text-decoration: none;
}

.text--underline {
    text-decoration: underline;
}

/*** Pagination***/

ul.pagination{
    font-size: 0.8rem;
}

.page-link{
    border: none;
    cursor: pointer;
}

.page-link-numbers{
    border: 1px solid;
    border-radius: 0.25rem;
    margin: 0 5px;
}

.page-link-numbers .page-item:focus, .page-link-numbers .page-link:focus {
    outline: none;
}

.total-blog-number {
    font-size: 0.8rem;
}


.p-rem2{
    padding: 2rem;
}

/*** Blog Detail Css ***/

.more-blogs{
    border: 1px solid;
    border-radius: 0.25rem;
}

.blog-detail--img-container img{
    height: 400px;
    object-fit: fill;
}

.blog-detail--img-container img, .blogs--img-container img{
    border-radius: 4px;
}

.box--title h3 {
    font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
    .blogs--img-container img, .blog-detail--img-container img {
        height: auto;
    }
}

.ql-align-center {
    text-align: center;
}

.ql-video {
    width: 600px;
    height: 300px;
}

@media only screen and (max-width: 768px) {
    .ql-video {
        width: 100% !important;
    }
}