.footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 100px 300px;
    background-color: #141414;
    box-sizing: border-box;
    gap: 80px;
}
.ft_link_menu{
    display: flex;
    flex-direction: column;
}
.footer_mkt h2{
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 70px;
    position: relative;
    transition: all .5s;
}
.footer_mkt h2 a{
    position: relative;
}
.footer_mkt a::after{
    content: '';
    width: 0%;
    height: 1px;
    background-color: white;
    position: absolute;
    bottom: 5px;
    left: 0px;
    transition: all .5s;
}
.footer_mkt a:hover,.footer_mkt a:hover::after{
    width: 100%;
    transition: all .5s;
}
.footer_wbs h2{
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 70px;
    position: relative;
    transition: all .5s;
}
.footer_wbs h2 a{
    position: relative;
}
.footer_wbs a::after{
    content: '';
    width: 0%;
    height: 1px;
    background-color: white;
    position: absolute;
    bottom: 5px;
    left: 0px;
    transition: all .5s;
}
.footer_wbs a:hover,.footer_wbs a:hover::after{
    width: 100%;
    transition: all .5s;
}

.ft_inner{
    width: 100%;
    display: flex;
    align-items: flex-start;
}
.ft_inner img{
    width: 130px;
}
.finner_r{
    display: flex;
    flex-direction: column;
    color: #979797;
    margin-left: 80px;
}
.fir_top{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.fir_top ul{
    display: flex;
    gap: 10px;
}
.fir_top ul li{
    margin-right: 10px;
    position: relative;
}
.fir_top ul li::after{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 13px;
    background-color: #8f8f8f;
    margin-left: 10px;
}
.fir_top ul li:nth-last-child(1):after{
    display: none;
}
.copy{
    margin-top: 80px;
}

@media (max-width: 1320px){
    .fir_top ul{
        flex-direction: column;
    }
    .fir_top ul li::after{
        border: none;
    }
    .footer{
        padding: 100px;
    }
}
@media (max-width: 850px){
    .footer_mkt h2,.footer_wbs h2{
        font-size: 48px;
    }
    .fir_top{
        font-size: 16px;
    }
}
@media (max-width: 575px){
    .footer{
        padding: 40px 20px;
        gap: 40px;
    }
    .ft_inner{
        flex-direction: column;
    }
    .finner_r{
        width: 100%;
        margin-left: 0px;
        margin-top: 20px;
    }
    .footer_mkt h2,.footer_wbs h2{
        font-size: 34px;
    }
    .fir_top ul{
        flex-wrap: wrap;
        font-size: 14px;
    }
    .copy{
        margin-top: 20px;
        font-size: 14px;
    }
    .fir_top ul li::after{
        border: none;
    }
}
