.footer {
    width: 100%;
    background-color: #191919;
    padding-top: 60px;
    color: #c2c2c2;
    font-size: 14px;
}

.footer a {
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: #20c1c6;
}

.footer a.is-active {
    color: #20c1c6;
}

.footer__wrap {
    width: 100%;
}

.footer__content {
    width: 90%;
    max-width: 1350px;
    min-width: 330px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer__about {
    width: 300px;
    margin-right: 30px;
    color: #fff;
}

.footer__about-content-title {
    display: flex;
    justify-content: center;
}

.footer__about-content-title img {
    width: 146px;
    height: 50px;
    object-fit: contain;
}

.footer__about-content-links {
    padding: 20px 0;
}

.footer__about-content-links-item--email {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 23px 0;
}

.footer__about-content-links-item--email a {
    color: #fff;
}

.footer__about-content-links-item--email a:hover {
    color: #fff;
}

.footer__about-content-links-item--email .footer__about-content-links-label {
    margin-right: 0px;
}

.footer__about-content-links-item--text {
    margin-top: 10px;
    line-height: 1.5;
    color: #c2c2c2;
}

.footer__about-content-links-label {
    font-weight: 500;
    color: #fff;
}

.footer__nav-wrap {
    width: calc(100% - 300px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer__nav-col {
    width: 14%;
}

.footer__nav-col:first-child {
    width: 25%;
}

.footer__nav-col-title {
    font-size: 21px;
    color: #fff;
    margin-bottom: 25px;
}

.footer__nav-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__nav-col-item {
    display: flex;
    padding-right: 25px;
    padding-bottom: 19px;
    justify-content: space-between;
    align-items: center;
}

.footer__nav-col-item a {
    color: #c2c2c2;
}

.footer__nav-col-item-sub {
    width: 55px;
    text-align: left;
}

.footer__bottom {
    width: 100%;
    background-color: #171717;
    border-top: 1px solid #333;
    color: #c2c2c2;
    z-index: 9;
    margin-top: 20px;
}

.footer__bottom-wrap {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    font-size: 14px;
    color: #666666 !important;
    cursor: pointer;
}

.footer__social {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__social-item {
    width: 35px;
    margin-right: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.footer__social-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media screen and (max-width: 920px) {
    .footer__content {
        flex-direction: column-reverse;
    }

    .footer__bottom-wrap {
        display: block;
        text-align: center;
    }

    .footer__social {
        width: 80%;
        margin: 0 auto;
        padding-top: 20px;
        justify-content: center;
    }

    .footer__nav-col {
        width: 20%;
        min-width: 220px;
        margin-bottom: 20px;
    }

    .footer__about {
        width: 100%;
        margin: 0 auto;
        border-top: 1px solid #666;
        padding: 23px 0;
        text-align: center;
    }

    .footer__about-content {
        width: 300px;
        margin: 0 auto;
    }

    .footer__about-content-links-item--email {
        justify-content: center;
    }

    .footer__nav-wrap {
        width: 100%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 920px) and (max-width: 1350px) {
    .footer__content {
        flex-direction: column-reverse;
    }

    .footer__about {
        width: 100%;
        margin: 0 auto;
        border-top: 1px solid #666;
        padding: 23px 0;
        text-align: center;
    }

    .footer__about-content {
        width: 300px;
        margin: 0 auto;
    }

    .footer__about-content-links-item--email {
        justify-content: center;
    }

    .footer__nav-wrap {
        width: 100%;
        margin: 0 auto;
    }
}