#footerType {
    background-color: #fff;
}

.footer__inner {
    box-sizing: border-box;
}

.footer__top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer__top .footer__left {
    width: 30%;
}

.footer__top .footer__left h3 {
    font-size: 18px;
    margin-top: 20px;
    font-style: normal;
}

.footer__top .footer__left .desc {
    font-size: 14px;
    margin-top: 20px;
    opacity: 0.5;
    font-weight: normal;
}

.footer__top .footer__left .desc li {
    margin-bottom: 10px;
}

.footer__top .footer__left .icon {
    margin-top: 20px;
}

.footer__top .footer__left .icon li {
    display: inline-block;
}

.footer__top .footer__left .icon li a {
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: url(../img/footerType/footer.png) no-repeat center center;
    background-position: 12.5px 12.5px;
    background-color: #f5f5f5;
}

.footer__top .footer__left .icon li:nth-child(2) a {
    background-position: -37.5px 12.5px;
}

.footer__top .footer__left .icon li:nth-child(3) a {
    background-position: -87.5px 12.5px;
}

.footer__top .footer__left .icon li:nth-child(4) a {
    background-position: -137.5px 12.5px;
}

.footer__top .footer__left .icon li:nth-child(5) a {
    background-position: -188.5px 13.5px;
}

.footer__top .footer__right {
    width: 70%;
    display: flex;
    justify-content: space-between;
}

.footer__top .footer__right article h3 {
    margin-bottom: 20px;
    font-size: 18px;
    margin-bottom: 17px;
}

.footer__top .footer__right article ul li {
    margin-bottom: 10px;
    font-weight: 300;
}

.footer__top .footer__right article ul li a {
    font-size: 14px;
    opacity: 0.5
}

.footer__copyright {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer__copyright p {
    text-align: center;
    margin-top: 30px;
    opacity: 0.5;
    font-size: 14px;
    font-weight: 300;
    color: #000;
}

@media(max-width : 1220px) {
    .footer__inner {
        width: 96%;
    }
}

@media(max-width : 920px) {
    .footer__top .footer__left {
        width: 50%;
    }

    .footer__top .footer__right {
        flex-wrap: wrap;
        width: 50%;
    }

    .footer__top .footer__right article {
        width: 50%;
    }

    .footer__top .footer__right article:nth-child(1) {
        margin-bottom: 20px;
    }

    .footer__top .footer__right article:nth-child(2) {
        margin-bottom: 20px;
    }
}

@media(max-width : 768px) {
    .footer__top .footer__left {
        width: 100%;
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    .footer__top .footer__right {
        display: none;
    }

    .footer__copyright p {
        margin: 50px 0 0 0;
        line-height: 1.6;
    }
}