
.new-banner {
    background: linear-gradient(rgba(159, 212, 172, 0.6), rgba(159, 212, 172, 0.6)),
        url(https://cdn.fbhl.dev/servicing/images/Top-USDA-Lender-BG.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    padding: 150px;
    margin-bottom: 0;
    box-sizing: border-box;
    display: flex;                
    align-items: center;          
    justify-content: center;      
    overflow: hidden;
}

.new-banner h1 {
    color: #264822;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.new-banner p {
    color: #264822;
    font-size: 1.2rem;
    max-width: 700px;      
    margin: 0 auto;         
    text-align: center;     
}

.tile {

    background-color: #fff;
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: 300px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-radius: 5px;
    box-shadow:  3px 3px 20px -3px rgba(0, 0, 0, .8);
    overflow: visible;
}

.tile h3 {
    font-size: 1.8rem;
    color: #060706;
    width: 100%;
}

.tile p {
    font-size: 1.4rem;
    color: #264822;
    width: 100%;
}

.tile ul {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 5px;
    list-style: disc;
    list-style-position: inside;
    width: 100%;
    padding-left: 0;
}

.layout-grid {
    display: grid;
    grid-template-columns: 1fr;

    justify-items: center;
}

@media (min-width: 768px) {
    .layout-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .layout-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}


.new-register {
    /* background: linear-gradient(rgba(38, 72, 34, .9), rgba(38, 72, 34, .9)), 
                url(https://cdn.fbhl.dev/servicing/images/loan-programs-banner.jpg); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 250px;
    color: #fff;
    display: flex;
    justify-content: center; 
}

.register-content {
    max-width: 700px;
    display: flex;
    flex-direction: column;   
    align-items: flex-start;  
    gap: 20px;                
}

.register-content h2 {
    color: #264822;
}

.register-list {
    list-style: disc;
    list-style-position: inside;
    padding-left: 20px;
}

.register-btn {
    display: block;        
    margin-top: 20px;        
}

.content {
    background-color: #eaf4e5;
    padding: 40px 20px !important; 
    margin-top: 0;              
    
}
.content-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
}
.content-header p{
    text-align: center;
    width: 100%;
    padding: 10px;
}
.content-header h2 {
    color:#264822
}