@charset "utf-8";
footer{
    display: block;
    width: 100%;
    height: auto;
    background: var(--navy);
    padding: clamp(60px, 10dvw, 128px) 0;
    position: relative;

    .footer-inner{
        width: var(--inner-width);
        margin: 0 auto;
        display: flex;
        justify-content: center;
        gap: 12%;
        .footer-l{
            width: 33%;
            .footer-logo{
                display: block;
                width: clamp(274px,76.46dvw,348px);
                aspect-ratio: 324/50;
                margin-bottom: 3rem;
            }
            ul{
                list-style: none;
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 2rem;
                li{
                    border-left: 2px solid var(--orange);
                    padding-left: 10px;
                    a{
                        display: block;
                        color: var(--white);
                        font-size: 16px;
                        font-weight: 600;
                        line-height: 1.4;
                        text-decoration: none;
                    }
                }
            }
            .btn-orange{
                width: fit-content;
                margin: 22px 0;
                padding: 0.2em 2.5em;
                border-left: none;
                background: var(--orange);
                text-align: center;
                a{
                    font-size: 16px;
                    font-weight: 600;
                    color: var(--white);
                    text-align: center;
                    line-height: 36px;
                }
            }
        }
        .footer-company{
            width: 50%;
            .company-block{
                width: 100%;
                margin-bottom: 28px;

                h3{
                    position: relative;
                    padding-left: 1rem;
                    margin-bottom: 8px;
                    color: var(--white);
                    font-size: 20px;
                    font-weight: 500;
                    line-height: 1.8;
                    letter-spacing: 0.01em;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
                    &::before{
                        content: "";
                        position: absolute;
                        top: 0.35em;
                        left: 0;
                        width: 2px;
                        height: 1.1em;
                        background: var(--orange);
                    }
                }
                .company-links{
                    padding-left: 1rem;
                    a{
                        width: fit-content;
                        display: flex;
                        align-items: center;
                        gap: 6px;
                        color: var(--white);
                        font-size: 14px;
                        font-weight: 500;
                        line-height: 1.5;
                        text-decoration: none;
                        img{
                            display: block;
                            width: 10px;
                            height: auto;
                        }
                    }
                }
            }
            .company-block:last-child{
                margin-bottom: 0;
            }
        }
    }
    .footer-small{
        display: block;
        width: 100%;
        line-height: 30px;
        font-size: 12px;
        background: var(--white);
        text-align: center;
        position: absolute;
        bottom: 0;
        left: 0;
    }
}

@media (max-width: 904px){
    footer{
        padding: clamp(60px, 10dvw, 128px) 0 96px;
        .footer-inner{
            width: min(360px,90%);
            margin: 0 auto;
            flex-direction: column;
            .footer-l{
                width: 100%;
            }
            .footer-company{
                width: 100%;
            }
        }
    }
}