/*-------------------------------------------------------------------* 
 Single Blog Post/Page 
*-------------------------------------------------------------------*/

/* Post Title Bar */
header {
    top: 0px;
}

.heading-bar {
    position: relative;
    width: 100%;
    height: 300px;
    justify-content: center;
    align-items: center;
    background-color: var(--black-color-two);
}

.heading-bar .heading {
    color: var(--white-color);
    font-size: 60px;
    text-align: center;
}

.heading-bar .heading h1 {
    padding: 80px 0 0 0;
    margin: 70px 0 20px 0;
}

.heading-bar .sub-heading {
    font-size: 17px;
    text-align: center;
    text-transform: uppercase;
}

.heading-bar .sub-heading span {
    color: var(--theme-color);
}

.heading-bar .sub-heading span:hover {
    color: var(--white-color-two);
}





/*-------------------------------------------------------------------*
  Single Blog Post Page
*-------------------------------------------------------------------*/

.post {
    width: 100%;
    position: relative;
    padding: 80px 0;
    padding-bottom: 100px;
    background: var(--black-color);
    justify-content: center;
    align-items: center;
}

.post .content {
    width: 60%;
    margin-left: 20%;
    justify-content: center;
    text-align: justify;
    line-height: 30px;
}

.post .content ul{
    font-size: 16px;
    margin: 20px 20px;
}

.post .content .thumbnail-container{
    width: 100%;
    height:auto;
}

.post .content .thumbnail-container img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.post .content .thumbnail-container img{
    
}