/* CALL TO ACTION */
.call-to-action-section{
    background-color: white;
    
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    padding: 100px 150px;
}

.call-to-action-box{
    background-color: #3882F6;
    color: white;
    padding: 50px 20px;
    border-radius: 5px;

    flex: 1 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.call-to-action-box > *{
    flex-shrink: 0;
}

.call-to-action-title, 
.call-to-action-subtext{
    margin: 0;
}

.call-to-action-button{
    border: 2px solid white;
}

