/* footerType */
#footerType {
    background: #f5f5f5;
}
.footer__wrap {
    padding: 120px 0;
    position: relative;
}
.top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}
.top::after {
    content: '';
    background: #ccc;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 180px;
}
.top h3 {
    margin-bottom: 20px;
}
.top .left{
    width: 40%;
}
.top .left > p {
    font-size: 14px;
    line-height: 1.6;
    color: #939393;
}

.top .right {
    width: 60%;
    display: flex;
    justify-content: space-between;
}
.top .right ul li a {
    font-size: 14px;
    padding: 5px 0;
    display: inline-block;
    color: #939393;
}

.bottom {
    font-size: 14px;
    text-align: center;
    color: #939393;
}

@media (max-width: 800px) {
    #footerType {
        display: none;
    }
}