.contact-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.contact-banner-text {
	max-width: 50rem;
}

.contact-section-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    gap: 20px;
    justify-content: center;
}

.contact-section-text {
    text-align: center;
    max-width: 245rem;
}

.address {
    text-align: center;
}

.contact-section-img {
    height: 40px;
}

.contact-services p {
    font-size: 1.6rem;
    text-align: left;
}

@media only screen and (min-width: 780px) {
      .contact-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: start;
    }
}