/* footer */
footer{
    background: rgba(0, 59, 117, 8%);
    color: #2A2A2A;
}
footer .content_inner{
    padding: 5rem 0;
    font-size: 14px;
    max-width: 1720px;
}

.f_logo{
    max-width: 300px;
}
.f_wrap{
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 2rem;
}
.f_right{
    text-align: right;
    line-height: 2;
}
footer hr{margin: 2rem 0;}
ul.copy_menu{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    opacity: 0.6    ;
}


@media (min-width:0px) and (max-width:1280px){
    footer .content_inner{
        flex-direction: column;
        gap: 3rem;
    }
    .f_right{flex-direction: row-reverse;align-items: end;}
    .f_right ul{display: flex; gap: 2rem;}
    
}
@media (min-width:0px) and (max-width:900px){
    footer .content_inner{
        padding: 5rem 0 12rem;
    }
    .f_left p{font-size: 1.6rem;}
    .f_logo{display: none;}
    .f_right {
        text-align: left;
        flex-direction: row;
    }
    .f_wrap {
        flex-direction: column-reverse;
    }
}
@media (min-width:0px) and (max-width:600px){
    .f_right ul{
        font-size:16px ;
    }
    .f_wrap{
        flex-direction: column-reverse;
        gap: 1rem;
    }
}