.footer {
    background-color: var(--brown);
    padding: 4rem 0 6rem 0;
    color: var(--beige);
}

.footer-map-block {
    background-color: pink;
}

.footer-contact-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-evenly;
    row-gap: 4rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-contact-heading {
    width: 100%;
    font-size: 3rem;
    margin-bottom: 0;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-item {
    width: 100%;
    padding: .5rem 0;
    font-size: 2rem;
    line-height: 1.6;
}

.address {
    width: 100%;
    padding: 2rem 0;
    font-size: 2rem;
    line-height: 1.6;
}

.footer-contact-link {
    text-decoration: none;
    color: var(--beige);
}

/* responsive1 */
@media (max-width: 1700px) {

}

/* responsive2*/
@media (max-width:1500px) {

}

/* responsive3 */
@media (max-width:1350px) {  

}

/* responsive4 */
@media (max-width:1249px) {
    .footer-contact-heading {
        font-size: 2.5rem;
    }
}

/* responsive5 */
@media (max-width:1024px) {

}

/* responsive6 */
@media (max-width:911px) {  
    .footer-contact {
        width: 40%;
    }
    
    .footer-contact-heading,
    .address,
    .footer-contact-item  {
        text-align: center;
    }

    
}

/* responsive7 */
@media (max-width:767px) {
 
}

/* responsive8 */
@media (max-width:639px) {
    .footer-contact {
        width: 80%;
    }
}

/* responsive9 */
@media (max-width:430px) {
    .footer-contact-item {
        text-wrap: balance;
    }
}