.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
}
.footer-text {
    padding-top: 5%;
}
.footer-wrap p {
    margin: 10px;
    font-size: 2rem;
    text-align: center;
    line-height: 1.2;
}
.footer-wrap-link {
    color: #76C741;
}
.footer-wrap-link a{
    color: #76C741;
}
.footer-wrap-box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.contacts-wrap {
    margin-top: 10%;
    position: relative;
}
.contacts-wrap-box {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    max-width: 1200px;
    box-sizing: border-box;
    padding: 0 14px;
}
.contacts-wrap-box__item {
}
.info-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: end;
    margin-bottom: 20px;
}
.info-wrap__icon {
    margin-right: 7px;
}
.info-wrap a{
    text-decoration: none;
    color: #3D3D4F;
}
.footer-mob-contacts {
    display: none;
    box-sizing: border-box;
    padding: 10px;

}
@media screen and (max-width: 750px){
    .contacts-wrap-box {
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 600px){
    .footer-mobile-hide {
        display: none;
    }
    .footer-mob-contacts {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .footer-wrap-link span {
        transform: rotate(90deg);
    }
    .footer-wrap-link a {
        color: black;
        text-decoration: none;
        border-bottom: 2px solid #76C741;
    }
    .footer-wrap-link {
        display: flex;
        flex-direction: column;
    }
}
