.contact-five {
    margin-top: 30px;
    margin-bottom: 60px;
}
.contact-five .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact-five .contact-five-item {
    width: calc(100% / 5 - 10px);
    max-width: 190px;
    text-align: center;
    text-decoration: none;
    justify-content: center;
}
.contact-five .contact-five-item:not(:nth-child(5n)) {
    margin-right: 7px;
}
.contact-five h3 {
    font-family: var(--rubik);
    font-size: 1.3rem;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--dark-blue);
    text-align: center;
}
.contact-five p {
    font-family: var(--merriweather);
    margin-bottom: 15px;
    color: var(--black);
    text-align: center;
}
.contact-five img {
    display: inline-block;
}


@media (max-width: 1175px) {
    .contact-five .container {
        flex-wrap: wrap;
        max-width: 600px;
        justify-content: center;
    }
    .contact-five .contact-five-item,
    .contact-five .contact-five-item:not(:nth-child(5n)) {
        width: 45%;
        max-width: unset;
        margin-bottom: 48px;
    }
    .contact-five .contact-five-item:not(:nth-child(5n)) {
        margin-right: 5%;
    }
    .contact-five .contact-five-item:not(:nth-child(5n)):nth-child(2n) {
        margin-right: 0;
    }    
}

@media (max-width: 1175px) and (min-width: 600px) {
    .contact-five h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .contact-five p {
        font-size: 1.2rem;
    }
}

@media (max-width: 751px) {
    .contact-five {
        margin-bottom: 40px;
    }
}
@media (max-width: 450px) {
    .contact-five .container {
        width: 95%;
    }
    .contact-five .contact-five-item,
    .contact-five .contact-five-item:not(:nth-child(5n)) {
        width: 48%;
    }
    .contact-five .contact-five-item:not(:nth-child(5n)) {
        margin-right: 4%;
    }

    .contact-five h3 { font-size: 1.1rem; }
    .contact-five p { font-size: 0.9rem; }
}