div.blog-heading-banner{
    display: flex;
    justify-content: center;
    position: relative;
    padding: 7em 1em 3em 1em;
    color: #ffffff;
    overflow: hidden;
}
div.blog-heading-banner .head-bg-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}
div.blog-heading-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
div.blog-heading-banner .blog-heading-context{
    position: relative;
    z-index: 2;
    width: 60%;
}
div.blog-heading-banner .blog-heading-context h1{
    font-family: Baloo2, var(--backup-family);
    font-size: 55px;
    line-height: 4rem;
    opacity: 0;
    transform: translateX(1000px);
    animation: right2left 3s forwards 0.3s;
    text-transform: capitalize;
}
div.blog-heading-banner .blog-heading-context p{
    font-size: 1rem;
    line-height: 28px;
    letter-spacing: 0.1px;
    word-spacing: 1px;
    opacity: 0;
    transform: translateX(-500px);
    animation: left2right 3s forwards 0.3s;
}
div.blog-heading-banner .blog-heading-context .shop-quote-btn .shop-btn-text{
    display: inline-block;
    padding: 15px 20px;
    margin: 20px 0;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    background-color: #f6985b;
    border-radius: 30px;
}
div.blog-heading-banner .blog-heading-context .shop-quote-btn .shop-btn-text:hover{
    background-color: #6da4b0;
}
@media (max-width: 850px) {
    div.blog-heading-banner .blog-heading-context{
        width: 80%;
    }
}
@media (max-width: 650px) {
    div.blog-heading-banner{
        padding: 3em 1em 1em 1em;
    }
    div.blog-heading-banner .blog-heading-context h1{
        font-size: 45px;
    }
}
@media (max-width: 550px) {
    div.blog-heading-banner {
        padding: 2em 1em 1em 1em;
    }
    div.blog-heading-banner .blog-heading-context{
        width: 100%;
    }
}