#site-text-background {
    text-align: center;
    padding: 100px 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    background-blend-mode: hard-light;
}

#site-text-background h3 {
    color: #fff;
}

#site-text-background a {
    background-color: var(--site-primary) !important;
    border-color: var(--site-primary) !important;
}

.contact-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 50px;
    gap: 30px;
}

.contact-item {
    border-radius: 12px;
    text-transform: uppercase;
    font-weight: bold;
    border: 2px solid #ffffff;
    padding: 30px;
    color: var(--site-primary);
    _background: rgba(0, 0, 0, 0.85);
    font-size: 18px;
}

.contact-item span {
    display: block;
    font-size: 30px;
    color: #fff;   
}


@media only screen and (max-width: 980px) {
    .contact-items {
        grid-template-columns: 1fr;
    }
}