/* Start custom CSS */.footer {
    background-color: #000 !important;
    padding: 10rem 0;
}
.footer h2 {
    color: #fff;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
}
.footer h3 {
    color: #BDBDBD;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 4rem;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    width: 32%;
    margin: auto;
    gap: 2.5rem;
}

.footer__contacts--link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer__contacts--link .icon {
    width: 65px !important;
    height: 65px !important;
}

.footer__contacts--link .text,
.footer__contacts--link .text a{
    color: #fff !important;
    font-size: 1rem;
    display: block;
    font-weight: 500;
}


@media (max-width: 768px) {
    .footer {
        padding: 6rem 0;
    }
    .footer h3 {
        font-size: 1.25rem;
    }
    .footer__contacts {
        width: 90%;
    }
}/* End custom CSS */