@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.5/dist/web/static/pretendard.css");

* {
    padding:0;
    margin:0;
    list-style:none;
    text-decoration:none;
}

#header{
    position: fixed;
    top: 0;left: 0;
    width: 100%;
    padding: 50px 0px;
    z-index: 99999999;
	background:rgb(255,255,255,0.7);
}
#header.on{
    position: fixed;
}
#header>.inner{
    width: 95%;
    margin: 0 auto;
    display: flex;align-items: center;
    justify-content: space-between;
    z-index: 999999999;
}



#header .hamburger{
    width: 51px;height: 28px;
    position: relative;
    cursor: pointer;
}


.burger_tab{
    position: absolute;
    right: 0;height: 2px;background-color: #444;
    transition: .5s linear;
}
.burger_tab:nth-of-type(1){
    top: 0;width: 100%;
}
.burger_tab:nth-of-type(2){
    top: 50%;width: 80%;
    transform: translateY(-50%);
}
.burger_tab:nth-of-type(3){
    bottom: 0;width: 100%;
}

#header.on .burger_tab:nth-of-type(2){
    opacity: 0;
    right:-100%;
    transition: .5s linear;
}
#header.on .burger_tab:nth-of-type(1){
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: .5s linear;
}

#header.on .burger_tab:nth-of-type(3){
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    transition: .5s linear;
}




.all_menu_wrapper{
    width:40px;height: 40px;
    position: fixed;
    top: 0;right: 0;
    background-color: rgba(239, 239, 239, 0.9);
    opacity: 0;
    overflow: hidden;
    border-radius: 100% 40% 100% 100%;
    z-index: -1;
    display: flex;align-items: center;
    justify-content: center;
    transition: .5s linear;
}

.all_menu_wrapper.on{
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100vh;
    opacity: 1;
    border-radius: 0%;
    /* animation: all_menu .3s linear forwards; */
}

@keyframes all_menu {
    0%{
        opacity: 1;
    }
    30%{
        border-radius: 80%;
    }
    100%{
        border-radius: 0;
        width: 100%;height: 100%;
        opacity: 1;
    }
}

.all_menu_wrapper .inner{
    width: 1410px;
    margin: 0 auto;
    padding: 10px;
    display: flex;align-items: flex-start;
    justify-content: space-between;
}

.all_menu_lt,
.all_menu_rt{
    width: 50%;
}
.all_menu_lt li:not(:nth-of-type(1)){
    margin-top: 70px;
}
.all_menu_lt li a{
    font-size: 57px;
    color: #444;
    font-weight: 700;
    position: relative;
    display: inline-block;
}
.all_menu_lt li a::after{
    content:"";
    width: 0%;height: 3px;background-color: #d8a2d3;
    position: absolute;left: 0;bottom: -1px;

}
.all_menu_lt li a:hover{
    color: #d8a2d3;
}
.all_menu_lt li a:hover::after{
    width: 100%;transition: .5s ease;
}

.all_menu_lt li a span{
    font-size: 40px;
    display: inline-block;
    padding-left: 20px;
}

.all_menu_rt{
    padding-left: 290px;
}
.all_menu_rt dt{
    font-size: 20px;
    color: #444444;
}
.all_menu_rt dd{
    font-size: 18px;
    color: #797979;
    padding-top: 10px;
}
.all_menu_rt>ul li:not(:nth-of-type(1)){
    margin-top: 30px;
}

.btn_wrap{
    margin-top: 230px;
}
.f_tab_list{
    display: none;
}
.btn_wrap li{
    display: flex;align-items: center;
    justify-content: flex-start;
    margin-top:10px
}
.btn_wrap li>a{
    display: inline-block;
    width: 196px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #111111;
    color: #44444;
    margin-right: 10px;
}
.btn_wrap li>a:hover{
   color: #d8a2d3;
   border-color: #d8a2d3;
}

.btn_wrap li .f_tab{
    width: 196px;height: 40px;
    border: 1px solid #111111;
    position: relative;
    display: flex;align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #111111;
}
.btn_wrap li .f_tab_list{
    width: 100%;
    padding: 10px 20px;
    position: absolute;
    bottom: 110%;
    left: 0;
    border: 2px solid #111111;
    display: none;
}
.btn_wrap li .f_tab_list dt{
    font-size: 15px;
    font-weight: 500;
    color: #111111;
}
.btn_wrap li  .f_tab_list a{
    margin-top: 5px;
    color: #111111;
    display: inline-block;
    font-size: 14px;
    padding-left: 3px;
}

@media screen and (max-width:1440px) {
    .all_menu_wrapper .inner{
        width: 85%;
    }
    .all_menu_lt li:not(:nth-of-type(1)){
        margin-top: 35px;
    }
    .btn_wrap{
        margin-top: 110px;
    }
}
@media screen and (max-width:1240px) {
    .all_menu_wrapper .inner{
        width: 95%;
    }
    #header {
        padding: 25px 0px;
    }
    .all_menu_lt li a{
        font-size: 42px;
    }
    .all_menu_rt{
        padding-left: 50px;
    }
}
@media screen and (max-width:1000px) {
    .all_menu_rt{
        display: none;
    }

    .all_menu_lt{
        width: 100%;
    }
    .all_menu_lt li{
        text-align: center;
    }
}
@media screen and (max-width:600px) {
    .all_menu_lt li a{
        font-size: 35px;
    }
    .all_menu_lt li a span{
        font-size: 25px;
    }
}