/* footer */
.footer {
    background: #fff;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-logo {
    width: 115px;
    height: 34px;
    background: url('../images/logo.png') 0% 50% no-repeat padding-box;
    background-size: 50%;
    opacity: 1;
    margin-bottom: 40px;
}
.footer-logo h1 {
	display: none;
}

.footer-info {
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: .5px solid #707070;
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 12px;
}

/* mobile */
@media (max-width: 767px) {
    .footer {
        padding: 30px;
        margin: 0;
        margin-bottom: -30px;
    }

    .footer-content {
        gap: 0;
        padding: 0;
    }
    
    .footer-logo {
        margin: 0;
    }

    .footer-info {
        font-size: 8px;
        line-height: 9px;
    }
    
    .footer-info p {
        pointer-events: none;
    }
}

.footer {
    clear: both;
    position: relative;
    z-index: 10;
}
