.blogs__content {
    padding: 50px 20%;
    background-image: -ms-linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
    background-image: -moz-linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
    background-image: -o-linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
    background-image: -webkit-linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
    background-image: linear-gradient(to right, #EBEBEB 0%,  #BEA28C 100%);
}

.blogs__header {
    position: relative;
    height: 200px !important;
    display: flex;
    align-items: center;
    padding: 0 20% !important;
    text-transform: capitalize;
    color: white;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.blogs__header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Change the color and opacity as needed */
    z-index: 1; /* Ensure the overlay is below content */
}

.blogs__header h1 {
    padding: 0;
    margin: 0;
    z-index: 2;

}

.blogs__content p {
    font-size: 18px !important;
}