.wrapper-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #111111;
}

.footer-content {
    display: flex;
    align-items: center;
}

.copyright {
    display: flex;
    flex-direction: row;
}

.social-block {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.social-block-text {
    margin-right: 10px;
    color: #dcdcdc;
}

.social-block-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.social-block-item {
    margin-right: 10px;
}

.social-block-link {
    display: inline-block;
    width: 30px;
    height: 30px;
}

footer span {
    margin-left: 30px;
}

@media only screen and (max-width: 670px) {
    .copyright {
        flex-direction: column;
    }
}

@media only screen and (max-width: 500px) {
    .social-block {
        flex-direction: column;
    }
    .social-block-text {
        margin: 0 10px;
    }
}

@media only screen and (max-width: 420px) {
    .wrapper-footer {
        flex-direction: column;
        font-size: 18px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
    }

    .social-block {
        flex-direction: row;
    }

    .social-block-list {
        margin-top: 20px;
    }

    span {
        margin-left: 0;
    }
    .social-item{
        width: 50px;
    }
    .social-block-item {
        margin-right: 40px;
    }
}
