footer {
    background-color: var(--black);
    padding: 50px 0;
}

footer .top {
    margin-bottom: 110px;
}

footer .top p {
    color: var(--main);
    font-size: 30px;
    font-weight: 800;
    margin-top: 18px;
}

footer .bottom {
    color: var(--white);
}

footer .bottom .left .link_wrap {
    display: flex;
    margin-bottom: 25px;
}

footer .bottom .left .link_wrap a {
    color: var(--white);
}

footer .bottom .left .link_wrap a::first-child {
    display: flex;
    align-items: center;
}

footer .bottom .left .link_wrap a:first-child::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 2px;
    height: 16px;
    margin: 0 10px;
    background-color: var(--white);
}

footer .bottom .left .address_wrap {
    display: flex;
    /* justify-content: space-between; */
}

footer .bottom .left .address_wrap p {
    color: var(--white);
    line-height: 21px;
    margin-right: 190px;
}

footer .bottom .left .address_wrap img {
    width: 83px;
}

@media screen and (max-width: 1200px) {
    footer .top p {
        /* font-size: 35px; */
    }
}

@media screen and (max-width: 1024px) {
    footer .bottom .left .address_wrap {
        justify-content: space-between;
    }

    footer .bottom .left .address_wrap p {
        margin-right: 0;
    }

    footer .bottom .left .link_wrap a {
        font-size: 14px;
    }

    footer .bottom .left .address_wrap p {
        font-size: 14px;
    }
}

@media screen and (max-width: 840px) {
    footer .top {
        margin-bottom: 60px;
    }

    footer .top img {
        width: 80px;
    }

    footer .top p {
        font-size: 25px;
        margin-top: 10px;
    }

    footer .bottom .left .address_wrap {
        flex-direction: column;
    }

    footer .bottom .left .address_wrap img {
        margin-top: 50px;
    }
}