.borrowerleads4-container {
    --primary-text-color: #1e2c3d;
    display: flex;
    flex-wrap: nowrap;
    color: var(--primary-text-color);
    overflow: hidden;
    height: 330px;
}

.borrowerleads4-content {
    display: flex;
    gap: 75px;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
}

.borrowerleads4-apply-now-section {
    display: flex;
    align-items: center;
}

.borrowerleads4-apply-now-button {
    position: relative;
    font-size: 3rem;
    text-transform: uppercase;
    padding: 35px 40px !important;
    font-weight: 800 !important;
    max-width: 280px;
    white-space: unset;
    line-height: 1;
}

.borrowerleads4-apply-now-button::before,
.borrowerleads4-apply-now-button::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: white;
}

.borrowerleads4-apply-now-button::before {
    top: -1px;
    left: -1px;
}

.borrowerleads4-apply-now-button::after {
    bottom: -1px;
    right: -1px;
}

.borrowerleads4-info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    max-width: 400px;
}

.borrowerleads4-banner-container {
    display: flex;
}

.borrowerleads4-banner-image {
    position: relative;
    height: 85px;
    width: 100%;
    max-width: 250px;
}

.borrowerleads4-banner-image::after {
    content: '';
    position: absolute;
    background-color: white;
    width: 100px;
    height: 100px;
    top: 50%;
    right: 0;
    transform: translate(66%, -50%);
    border-radius: 50%;
    z-index: 1;
}

.borrowerleads4-banner-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.borrowerleads4-212-logo {
    position: relative;
    width: 85px;
    height: 85px;
    margin-left: -18px;
}

.borrowerleads4-212-logo > * {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .borrowerleads4-container {
        height: unset;
    }

    .borrowerleads4-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .borrowerleads4-info-section {
        align-items: center;
    }
}