/* 팝업창 */
.f_pop{
    position: absolute;
    top: 20%;
    left: 42%;
    background-color: #fff;

    display: none;
}
.f_pop>div{
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    background-color: #23674e;
    box-sizing: border-box;
}
.f_pop>div p{
    color: #fff;
}
.f_pop span{
    display: block;
    width: 30px;
    height: 2px;
    background-color: #222;
}
.close{
    width: 18px;
    cursor: pointer;
}
.f_pop span:first-child{
    transform: rotate(45deg);
}
.f_pop span:last-child{
    transform: rotate(-45deg);
}
.f_pop>p{
    padding: 1rem;
    box-sizing: border-box;
}
.click{
    cursor: pointer;
}
@media screen and (max-width:1400px) {
    .f_pop{
        position: absolute;
        top: 20%;
        left: 52%;
        background-color: #fff;
    
        display: none;
    }
}
@media screen and (max-width:1400px) {
    .f_pop{
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
        background-color: #fff;
    
        display: none;
    }
}
@media screen and (max-width:860px) {
    .f_pop{
        width: 90%;
    }
}









/* footer */
footer{
    background-color: #6f4d35;
    padding: 2rem 3rem;
    position: relative;
}
.footer_top{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: #ffffff;
}
.top_top{
    font-size: 1.4rem;
}
.top_middle{
    font-size: 2.1rem;
    font-weight: 700;
}

.f_border{
    width: 100%;
    height: 1px;
    background-color: #fff;
    margin: 1rem 0;
}
.footer_bottom{
    color: #ffffffb9;
    font-size: 16px;
    font-weight: 100;
}
.footer_bottom ul{
    display: flex;
    gap: 1rem;
}
.f_more li{
    font-weight: 400;
}
.bottom{
    margin-top: 3rem;
}
.logobox{
    width: 100px;
}
.bottom ul{
    margin: 2px 0;
}
.pointer{
    cursor: pointer;
}
.sns{
    width: 25px;
}

.kr-logos {
    margin-top: 20px;
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

@media screen and (max-width:860px) {
    .footer_bottom ul li{
        font-size: 12px;
    }
    .bottom p{
        font-size: 12px;
    }
    .f_none{
        display: none;
    }
    .sns{
        width: 20px;
    }
}
@media screen and (max-width:768px) {
    footer{
        padding: 2rem 1rem;
    }
    .footer_top{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .top_top{
        font-size: 1rem;
    }
    .top_middle{
        font-size: 1.5rem;
    }
    .top_bottom{
        font-size: 12px;
    }
    ul.top_right{
        display: none;
    }
}
@media screen and (max-width:550px) {
    .bottom ul {
        flex-direction: column;
        gap: 1px;
    }
    .logobox{
        width: 80px;
    }
}