.contact-box {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 120px;
    margin-bottom: 80px;
}

.contact-box h5 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--title-color);
    margin: 10px;
}

.box_adress_container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 80px auto;
}

.box_adress_icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px auto;
}

.box_adress_bg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background-color: var(--link-color);
    border-radius: 50%;
}

.box_adress_bg span {
    font-size: 50px;
    color: white;
}

@media (max-width: 768px) {
    .contact-box {
        margin-top: 120px;
        margin-bottom: 4px;
    }

    .box_adress_container {
        max-width: 80%;
        grid-template-columns: repeat(2, 1fr);
        margin: 40px auto;
    }
}

@media (max-width: 576px) {
    .box_adress_container {
        grid-template-columns: repeat(1, 1fr);
    }
}