.wf-wrap {
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}
  
.banner-blog-container {
    background: linear-gradient(45deg, rgba(10,44,118,1) 0%, rgba(5,51,206,1) 50%, rgba(10,22,80,1) 100%);
    text-align: center;
    display: grid;
}

.banner-blog-content {
    width: 600px;
    justify-self: center;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.banner-blog-content h2 {
    color: white;
    margin-bottom: 20px;
}

.banner-blog-content a {
    color: white;
    text-decoration: none;
    background: #43ADEE;
    padding: 10px 20px;
    border-radius: 20px;
    width: fit-content;
    align-self: center;
}

.bb-footer-inside {
    margin-top: 0 !important;
}

@media only screen and (max-width: 600px) {
    .banner-blog-container {
        display: flex;
        padding: 20px 50px;
    }
    
    .banner-blog-content {
        width: 100%;
        padding: 15px 0;
    }
    
    .banner-blog-content h2 {
        margin: 0;
        font-size: 1.2em;
        line-height: 1.3;
    }
}