.footer_box {
    width: 100%;
    background: url(../image/footer_bg.png) no-repeat;
    background-size: cover;

    padding-top: calc(20px + 5rem);

}

.footer {
    max-width: 1480px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.footer_left {
    width: calc(50px + 10rem);
}

.footer_logo {
    width: calc(50px + 10rem);
}

.footer_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer_icon_box {
    display: flex;
    justify-content: space-between;
    margin-top: calc(12px + 2rem);
}

.footer_icon {
    width: calc(5px + 2rem);
    height: calc(5px + 2rem);
    background: #7D818E50;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_icon img {
    height: calc(6px + 0.5rem);
}

.footer_title {
    font-family: Century Gothic;
    font-weight: bold;
    font-size: calc(10px + 0.5rem);
    color: #FFFFFF;
}

.footer_nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(6px + 1rem);
    margin-top: calc(10px + 1.5rem);
}

.footer_nav p {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #FFFFFF;
    line-height: 1;
}

.footer_contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(6px + 2rem);
    margin-top: calc(10px + 1.5rem);
}

.footer_contact .footer_contact_item {

    width: calc(95px + 16rem);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: calc(4px + 1rem);
}

.footer_contact .footer_contact_item .footer_contact_item_icon {
    width: calc(10px + 0.5rem);
    margin-top: calc(5px + 0.2rem);

}

.footer_contact .footer_contact_item:nth-of-type(3) .footer_contact_item_icon {
    width: calc(10px + 1.5rem);
}

.footer_contact .footer_contact_item .footer_contact_item_icon img {
    width: 100%;
}

.footer_contact .footer_contact_item p {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(8px + 0.5rem);
    color: #FFFFFF;
    line-height: calc(1px + 1.5rem);
}

.footer_code {
    width: calc(82px + 5rem);
    height: calc(82px + 5rem);
    margin-top: calc(10px + 1.5rem);
}

.footer_code img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.copyright_box {
    max-width: 1480px;
    width: 85%;
    margin: auto;
    margin-top: calc(18px + 4rem);

}

.copyright {
    padding: calc(5px + 2rem) 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px #D2D2D230 solid;
}

.copyright p {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(8px + 0.5rem);
    color: #D6D6D6;

}

@media (max-width: 1100px) {
    .footer {
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 4rem);
    }

    .footer_logo {
        width: calc(50px + 24rem);
    }

    .footer_left {
        width: 75%;
    }

    .footer_icon {
        width: calc(5px + 10rem);
        height: calc(5px + 10rem);
    }

    .footer_icon img {
        height: calc(6px + 2.5rem);
    }

    .footer_title {
        font-size: calc(14px + 1rem);
    }

    .footer_nav p {
        font-size: calc(10px + 1rem);
    }

    .footer_contact .footer_contact_item {
        width: auto;
    }

    .footer_contact .footer_contact_item p {
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }

    .footer_contact .footer_contact_item .footer_contact_item_icon {
        width: calc(10px + 1.5rem);
    }

    .footer_contact .footer_contact_item:nth-of-type(3) .footer_contact_item_icon {
        width: calc(10px + 4rem);
    }

    .copyright {
        flex-direction: column;
        justify-content: center;

        align-items: center;
        gap: calc(10px + 1rem);
    }

    .copyright p {
        font-size: calc(10px + 1rem);
        text-align: center;
    }

    .footer_nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: calc(10px + 2rem);
    }

    .footer_nav p {
        width: 30%;
    }

}