footer {
    background-color: #ffffff;
    padding: 60px 72px;
    text-align: center;
}

footer h2 {
    color: #000000;
    font-family: "Abril Fatface", serif;
    font-size: 50px;
    font-weight: 400;

    margin-bottom: 25px;
}
footer .footer-text{
    color: #000000;
    font-family: "inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    

    margin-bottom: 80px;
}


.footer-contacts{
    display: flex;
    flex-wrap: wrap;
    gap: 75px;
    justify-content: center;

    margin-bottom: 50px;
}
.contact-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 250px;
}

.contact-icon{
    width: 26px;
}

.contact-label{
    color: #000000;
    font-family: "abril fatface", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}
.contact-text{
    font-family: "inter", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
}
.contact-text a{
    color: #000000;
    text-decoration: none;
}
hr {
    border: 0;
    border-top: 2px solid #E9C664;
    margin-bottom: 45px;
}

.copyright{
    color: #000000;
    font-family: "inter", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}





/* css для мобілки */
@media screen and (max-width: 1023px) {
    footer {
        padding: 30px 20px;
    }
    footer h2 {
        font-size: 30px;
    }
    .footer-contacts {
        flex-direction: column;
        align-items: center;
    }
    .contact-item {
        max-width: 100%;
    }
}