.rl-footer {
    h1, h2, h3, h4, h5, h6, p {
        color: var(--c-w);
    }
    .footer {
        display: flex;
        flex-direction: row;
        gap: 36px;
        padding: 36px;
        box-sizing: border-box;
        .system {
            display: flex;
            justify-content: center;
            flex-direction: column;
            gap: 24px;
            .logo {
                display: flex;
                align-items: center;
                gap: 16px;
                img {
                    height: 42px;
                    background-color: var(--c-w);
                    border-radius: 8px;
                    -webkit-border-radius: 8px;
                    padding: 5px;
                    box-sizing: border-box;
                }
                h1 {
                    font-size: 18px;
                    font-family: p500;
                }
                h2 {
                    font-size: 14px;
                    font-family: p300;
                }
            }
            .address {
                display: flex;
                flex-direction: column;
                h3 {
                    font-size: 16px;
                    font-family: p300;
                }
            }
        }
        .link {
            flex: 1;
            display: flex;
            justify-content: center;
            .link-sub {
                display: flex;
                flex-direction: column;
                gap: 18px;
                h4 {
                    font-size: 16px;
                    font-family: p400;
                }
                h5 {
                    font-size: 14px;
                    font-family: p300;
                    width: fit-content;
                    &:hover {
                        text-decoration: underline;
                        cursor: pointer;
                    }
                }
            }
        }
        .contact {
            display: flex;
            flex-direction: column;
            gap: 36px;
            h6 {
                font-size: 16px;
                font-family: p300;
            }
            .social {
                display: flex;
                align-items: center;
                gap: 8px;
                img {
                    height: 32px;
                    background-color: var(--c-w);
                    border-radius: 8px;
                    -webkit-border-radius: 8px;
                    &:hover {
                        cursor: pointer;
                    }
                }
            }
            input[type="text"] {
                width: 280px;
                border: none;
                border-radius: 50px;
                -webkit-border-radius: 50px;
                color: var(--c-b);
                font-size: 14px;
                font-family: p400;
                padding: 12px 24px;
                box-sizing: border-box;
                &::placeholder {
                    color: var(--c-b-3);
                }
                &:focus {
                    outline: none;
                }
            }
            button {
                border: none;
                color: var(--c-w);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                font-size: 14px;
                font-family: p400;
                padding: 12px 28px;
                box-sizing: border-box;
                background-color: var(--c-mj-3);
                &:not(:disabled):hover {
                    background-color: var(--c-mj);
                }
            }
            .subscribe {
                display: flex;
                align-items: center;
                gap: 8px;
            }
        }
    }
    .line {
        width: 100%;
        height: 1px;
        background: rgba(var(--c-wx), .16);
    }
    .copyright {
        padding: 36px;
        box-sizing: border-box;
        p {
            font-size: 14px;
            font-family: p300;
            text-align: center;
        }
    }
}

@media screen and (min-width: 0px) {
    .rl-footer {
        zoom: 1;
    }
    .rl-footer .footer {
        flex-direction: column;
    }
    .rl-footer .footer .system, .rl-footer .footer .contact {
        justify-content: flex-start;
        flex-direction: column;
    }
    .rl-footer .footer .contact h6 {
        text-align: center;
    }
    .rl-footer .footer .contact .social, .rl-footer .footer .contact .subscribe, .rl-footer .footer .system .logo {
        justify-content: center;
    }
    .rl-footer .footer .contact {
        zoom: .9;
    }
    .rl-footer .footer .contact input[type="text"] {
        width: auto;
    }
    .rl-footer .footer .system .address h3 {
        text-align: center;
    }
}
@media screen and (min-width: 576px) {
    .rl-footer .footer .system, .rl-footer .footer .contact {
        justify-content: center;
        flex-direction: unset;
    }
    .rl-footer .footer .contact {
        zoom: 1;
    }
    .rl-footer .footer .contact h6 {
        text-align: start;
    }
    .rl-footer .footer .contact .social, .rl-footer .footer .contact .subscribe, .rl-footer .footer .system .logo {
        justify-content: flex-start;
    }
    .rl-footer .footer .system .address h3 {
        text-align: start;
    }
}
@media screen and (min-width: 768px) {
    .rl-footer {
        zoom: .7;
    }
    .rl-footer .footer {
        flex-direction: row;
    }
    .rl-footer .footer .system, .rl-footer .footer .contact {
        justify-content: flex-start;
        flex-direction: column;
    }
    .rl-footer .footer .contact input[type="text"] {
        width: 280px;
    }
}
@media screen and (min-width: 992px) {
    .rl-footer {
        zoom: 1;
    }
}
@media screen and (min-width: 1200px) {
}
@media screen and (min-width: 1400px) {
}