#blog-contents h1,  
#blog-contents h2, 
#blog-contents h3,
#blog-contents h4,
#blog-contents h5,
#blog-contents h6
{
    font-family: 'Nominee' !important;
    font-weight: normal;
    margin-top: 12px;
    margin-bottom: 12px;

}

#blog-contents h1
{
    font-family: "Nominee Extra" !important;
    font-weight: bold;
    font-size: 37px !important;
}

#blog-contents h2
{
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 30px;
}

#blog-contents h3
{
    font-size: 21px;
    margin-top: 30px;
    margin-bottom: 30px;
}

#blog-contents h4
{
    font-size: 18px;
}

#blog-contents h5
{
    font-size: 16px;
}

#blog-contents h6
{
    font-size: 14px;
}

#blog-contents p, #blog-contents li
{
    font-weight: 400;
    font-size: 20px;
    line-height: 35px;
    margin-top: 25px;
}

#blog-contents p
{
    margin-top: 20px;
}

#blog-contents img
{
    margin-top: 15px;
    max-width: 100%;
    width: 100%;
    height: auto;

}

#blog-contents ul
{
    padding-left: 2.5rem;
}

#blog-contents li
{
    padding-left: 1rem;
}

#blog-contents li strong
{
    font-weight: 700;
}

.blog-search-form 
{
    flex-direction: row !important;
    display: flex;
    padding: 5px;
    padding-left: 20px;
    border-radius: 5px;
    background-color: #f0f0f0;
    width: 100%;
}

.blog-search-form input[type="search"]
{
    border: none !important;
    background: transparent;
    box-shadow: none;
    outline: none;
    font-size: 18px;
    padding: 6px;
    width: 100%;
    margin-left: 15px;
}

.blog-search-form input[type="search"].full-input-field
{
    display: inline-block;
}

.blog-search-form input[type="search"].mobile-input-field
{
    display: none;
}


.blog-search-form img.search-icon
{
    width: 40px !important;
    height: 40px !important;

}

.blog-seach-buttom
{
    background-color: var(--color1);
    color: white;
    border: none;
    padding: 13px 17px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
}


@media screen and (max-width:430px)
{
    .blog-search-form input[type="search"].full-input-field
    {
        display: none;
    }

    .blog-search-form input[type="search"].mobile-input-field
    {
        display: inline-block;
    }

    .blog-search-form img.search-icon
    {
        margin-top: 5px;
        width: 30px !important;
        height: 30px !important;
    }
}