.contact-info-box .blue-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}




.three-columns {
    column-count: 3;
}
.three-columns h3:first-of-type{

    margin-top: 0;
}

@media only screen and (max-width: 900px) {
    .contact-info-box .blue-cta {
        grid-template-columns: 1fr;
    }
    .three-columns {
        column-count: 1;
    }
    }
