footer {
    position: relative;
    margin-top: -30px;
    padding: 150px 0 50px 10%;
    background-color: #000;
    border-radius: 30px 30px 0 0;
}

footer .top_scroll {
    position: absolute;
    top: -40px;
    right: 2%;
    width: 140px;
    height: auto;
    cursor: pointer;
}

footer .top_scroll img {
    width: 100%;
    height: auto;
}

footer .footer_container {
    display: flex;
    gap: 140px;
}

footer .footer_info {
    color: #FFF;
}

footer .footer_info .company_name_txt {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

footer .footer_info .company_name_txt span {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0.15em;
}

footer .footer_info .address_box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

footer .footer_info .address_box .address_txt {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.2em;
}

footer .footer_info .address_box .address_txt span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

footer .footer_info .address_box a {
    display: block;
    padding: 6px 18px 10px 18px;
    width: fit-content;
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFF;
    border: 2px solid #FFF;
    border-radius: 50px;
}

footer .footer_info small {
    display: block;
    margin-top: 90px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

footer .footer_link {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

footer .footer_link .footer_cv_box {
    display: flex;
    align-items: center;
    gap: 30px;
}

footer .footer_link .footer_cv_box a {
    display: block;
    padding: 15px 30px;
    width: fit-content;
    background-color: #FFF;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.1em;
    border-radius: 10px;
}

footer .footer_link ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

footer .footer_link ul li a {
    color: #FFF;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.2em;
}

footer .mg_txt {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 4vw;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.2em;
    text-align: right;
}

@media screen and (max-width:1200px) {
    footer {
        padding: 150px 0 50px;
    }

    footer .footer_container {
        width: fit-content;
        margin: 0 auto;
    }
}

@media screen and (max-width:990px) {
    footer {
        padding: 90px 0 40px;
    }

    footer .footer_container {
        width: 80%;
        flex-direction: column-reverse;
        gap: 80px;
    }

    footer .mg_txt {
        margin-top: 40px;
        font-size: max(6vw, 32px);
    }
}

@media screen and (max-width:768px) {
    footer .footer_link .footer_cv_box {
        flex-direction: column;
        align-items: unset;
        gap: 18px;
    }

    footer .footer_link .footer_cv_box a {
        padding: 15px 40px;
    }

    footer .footer_info .address_box {
        flex-direction: column;
        align-items: unset;
        margin-top: 15px;
    }

    footer .footer_info small {
        margin-top: 40px;
    }
}

@media screen and (max-width:500px) {
    footer .footer_info .company_name_txt {
        font-size: 20px;
    }

    footer .footer_info .company_name_txt span {
        font-size: 28px;
    }

    footer .top_scroll {
        width: 30%;
        min-width: 82px;
    }
}