.vf-ad-container {
    margin-bottom: 100px;
    position: relative;
}

.vf-ad-wrapper {
    display: flex;
    justify-content: space-between;
}

.vf-ad-content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 4rem;
}

.vf-ad-content-container h2 {
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 35px;
    max-width: 82%;
}

.vf-ad-content-container a {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.vf-ad-content-container .button-logo-container {
    display: flex;
    justify-content: space-between;
}

.vf-ad-container .vf-ad-content-container .button-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    width: 30%;
}

.vf-ad-container .vf-ad-content-container .logo-container {
    max-width: 50%;
}

.vf-ad-img-container {
    width: 50%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.mobile-ad-img-container {
    display: none;
}

.sponsored-text {
    position: absolute;
    margin-bottom: 0px;
    padding-left: 5px;
    top: 0;
    left: 0;
}

/* Laptop */
@media(max-width: 1024px) {

    .vf-ad-wrapper {
        flex-direction: column-reverse;
        justify-content: normal;
    }

    .mobile-img-content-container {
        display: flex;
    }

    .mobile-ad-img-container {
        display: block;
        width: 50%;
        background-size: cover;
        background-position: center center;
    }

    .vf-ad-img-container {
        display: none;
    }

    .vf-ad-content-container h2 {
        max-width: 50%;
        margin-bottom: 0px;
        padding: 2rem;
    }

    .vf-ad-content-container .button-logo-container {
        flex-direction: column-reverse;
        justify-content: normal;
        align-items: center;
        padding: 2rem;
    }

    .vf-ad-content-container {
        padding: 0px;
    }

    .vf-ad-container .vf-ad-content-container .logo-container {
        max-width: 90%;
    }

}

/* Tablet */
@media(max-width: 768px) {

    .vf-ad-content-container h2 {
        font-size: 32px;
    }

    .vf-ad-container .vf-ad-content-container .button-container {
        width: 100%;
    }

}
/* Mobile */
@media(max-width: 500px) {

    .vf-ad-content-container h2 {
        font-size: 32px;
        padding-bottom: 0px;
    }

    .vf-ad-img-container {
        display: block;
        height: 200px;
        width: 100%;
    }

    .mobile-ad-img-container {
        display: none;
    }

    .vf-ad-content-container h2 {
        max-width: 100%;
    }

    .sponsored-text {
        top: 202px;
    }

}