*{
    margin:0;
    padding:0;
}


a{
    text-decoration: none;
    color:#000;
}

li{
    list-style: none;
}

@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}


body{
    font-family: 'Pretendard';
}

.mb{
    display: none;
}

/* -----------header---------- */


header{
    display: none;
    position: fixed;
    width:100%;
    height:70px;
    background: rgb(255, 255, 255,0.8);
    border-bottom:1px solid #ddd;
    z-index: 9999;
}



.header_wrap{
    position: relative;
    display: flex;
    width:70%;
    height:100%;
    margin:0 auto;
    text-align: center;
    font-size: 1.1rem;
    opacity: 1;
}


.logo{
    position: relative;
    width:10%;
}

.logo img{
    position: absolute;
    width:20%;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}





.header_wrap > ul{
    position: absolute;
    right:0;
    width:60%;
    height:100%;
    display: flex;
    align-items: center;
}


.header_wrap ul li{
    position: relative;
    width:100%;
    line-height: 70px;
}


.header_wrap ul div{
    position: relative;
    height:100%;
}


.header_wrap ul div img{
    position: absolute;
    width:30%;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}





.header_wrap ul li ul{
    display: none;
    position: absolute;
    width:100%;
    background: rgb(255, 255, 255,0.8);
}



.header_wrap a:hover{
    color:#0220D8;
}

header:hover{
    background: rgb(255, 255, 255);
}

.header_wrap ul li:hover ul{
    background: rgb(255, 255, 255);
}





/* -----------contact_pop_wrap---------- */



.contact_pop_wrap{
    position: fixed;
    width:100%;
    height:100vh;
    background: rgb(0, 0, 0,0.7);
    display: none;
    backdrop-filter: blur(5px);
    z-index: 999;
}



.contact_pop_modal{
    position: absolute;
    width:520px;
    height:640px;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    border:1px solid #fff;
    border-radius: 30px;
    background: rgb(255, 255, 255,0.7);
    z-index: 999;
}


.contact_main_box{
    position: absolute;
    width:85%;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}




.contact_pop_wrap .contact_main_box h1{
    color:#0220D8;
}






.contact_pop_close_btn{
    position: absolute;
    cursor: pointer;
    width:30px;
    height:30px;
    right:-5%;
    top:-5%;
    display:inline-block;
    display:inline;
}


.contact_pop_close_btn::after{
    display: inline-block;
    content: "\00d7";
    font-size:32px;
    font-weight: 600;
}





.input p{
    font-size: 1.2rem;
    padding-top:4%;
    padding-bottom:1%;
}


.input input, textarea{
    width:100%;
    height:50px;
    border-radius: 10px;
    border:1px solid #aaa;
    padding-left:2%;
    resize: none;
}


.input input::placeholder, textarea::placeholder{
    font-size: 1rem;
    font-family: 'Pretendard-Regular';
}



.input_detail textarea{
    padding-top: 2%;
    height:100px;
}


input:focus{
    outline: 1px solid #0220D8;
}

textarea:focus{
    outline: 1px solid #0220D8;
}





.contact_agree{
    display: flex;
    align-items: center;
    margin-top:4%;
    font-size: 1rem;
}


.contact_agree p{
    padding-left: 3%;
}


.contact_agree a{
    position: absolute;
    right:0;
}



.agree_btn{
    position: relative;
    cursor: pointer;
    width:40px;
    height:40px;
    border-radius:8px;
    background: #aaa;
}



.agree_btn img{
    position: absolute;
    width:32px;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}


.agree_btn_on{
    background: #0220D8;
}







.contact_btn{
    color: #fff;
    cursor: pointer;
    margin-top:4%;
    text-align: center;
    line-height: 60px;
    background: #0220D8;
    border-radius: 200px;
}






/* -----------float---------- */


.float_menu{
    position: fixed;
    right:3%;
    bottom:3%;
    z-index: 99;
}


.float_menu ul {
    position: relative;
}



.float_menu ul li a{
    display: block;
    cursor: pointer;
    margin:20%;
    width:90px;
    height:90px;
    text-align: center;
    align-content: center;
    border:1px solid #ddd;
    background: rgb(255, 255, 255,0.8);
    border-radius: 16px;
}



.float_menu ul li:last-child{
    display: block;
    cursor: pointer;
    margin:20%;
    width:90px;
    height:90px;
    text-align: center;
    align-content: center;
    border:1px solid #ddd;
    background: rgb(255, 255, 255,0.8);
    border-radius: 16px;
}


/* -----------footer---------- */



footer{
    position: relative;
    display: flex;
    width:100%;
    background: #030A13;
    color:#fff;
}

.footer_wrap{
    display: flex;
    width:80%;
    margin:0 auto;
    justify-content: space-between;
    padding-top:3%;
    padding-bottom: 3%;
}


.footer_wrap_left ul p{
    font-size: 1.1rem;
    line-height: 2rem;
}




/* -----------footer sns---------- */

.footer_sns{
    display: flex;
    width:10%;
    align-items: center;
}


.footer_sns li{
    padding:6%;
}


.footer_sns li img{
    width:100%;
}









/* ---------------mb--------------- */


@media (max-width:1025px){


    .pc{
        display: none;
    }

    .mb{
        display: block;
    }


    header{
        height: 50px;
    }

    .mb_header_wrap{
        width:100%;
        height: 100%;
    }


    .mb_header{
        display: flex;
        justify-content: space-between;
        width:90%;
        height: 100%;
        margin:0 auto;
    }

    .logo{
        width:35%;
    }

    .logo img{
        left:0;
        transform: translate(0,-50%);
    }

    .mb_kakao{
        position: relative;
        width:100%;
    }

    .mb_kakao img{
        position: absolute;
        width:60%;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
    }


    .mb_header_wrap > ul {
        position: absolute;
        right: 0;
        width: 60%;
        height: 100%;
        display: flex;
        align-items: center;
    }
    


    .mb_header_wrap ul li{
        position: relative;
        width:100%;
        line-height: 70px;
    }


    .mb_header_wrap ul div{
        position: relative;
        height:100%;
    }


    .mb_header_wrap ul div img{
        position: absolute;
        width:30%;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
    }





    .mb_header_wrap ul li ul{
        display: none;
        position: relative;
        width:100%;
        background: #f1f1f1;
    }



    .mb_header_wrap a:hover{
        color:#0220D8;
    }   


        






    .mb_menu_wrap{
        display: flex;
        width:30%;
    }

    .mb_menu_btn_wrap{
        position: relative;
        width:40%;
    }

    .mb_menu_btn{
        position: absolute;
        width:100%;
        right: 0;
        top:50%;
        transform: translateY(-50%);
    }
    

    .mb_menu_btn span{
        position: relative;
        content:"";
        display: block;
        width:100%;
        height:2px;
        left: 100%;
        transform: translateX(-100%);
        margin-top:20%;
        border-radius: 50px;
        background: #030A13;
    }

    .mb_menu_btn span:first-child{
        margin-top:0;
    }



    .mb_main_menu_wrap{
        display: none;
    }



    .mb_main_menu_wrap{
        position: absolute;
        top:0;
        width: 100vw;
        height:100vh;
        background: #fff;
        z-index: 9999;
    }


    .mb_menu_close_btn{
        position: absolute;
        cursor: pointer;
        width:20%;
        top:3%;
        right:0;
    }

    .mb_menu_close_btn img{
        position: absolute;
        width:50%;
        right:15%;
    }






    .mb_main_menu_wrap ul{
        position: absolute;
        width:100%;
        top:10%;
        text-align: left;
    }

    .mb_main_menu_wrap ul li h4{
        padding-left: 40px;
    }





    .sub_menu_wrap{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header_wrap .sub_menu_btn{
        height:30px;
    }

    .sub_menu_btn{
        position: absolute;
        width:24%;
        height:30px;
        right:0;
        transform-origin: 50% 50%;
        transition: transform 0.3s ease;
    }


    .header_wrap ul li ul{
        position: relative;
        background: #f1f1f1;
    }


    .header_wrap ul li:hover ul{
        background: #f1f1f1;
    }




    .sub_menu_btn_rotate {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }






    /* 플로팅메뉴 */
    

    .float_menu ul li a, .float_menu ul li:last-child{
        margin:0;
        margin-bottom:20%;
        width:60px;
        height:60px;
        font-size: 0.8rem;
    }


    .float_menu ul li img{
        width:30%
    }




    /* 상담신청 */

    

    .contact_pop_modal{
        width:80%;
        height:450px;
    }

    .contact_main_box{
        width:90%;
    }


    .contact_pop_close_btn{
        width:20px;
        height:20px;
        right:0;

    }

    .contact_main_box h1{
        font-size: 1.4rem;
    }

    .input p{
        font-size: 0.9rem;
    }


    .input input, textarea{
        height:40px;
        padding-left: 0;
    }

    input::placeholder { 
        font-size: 0.8rem; 
    }
    
    

    

    
    .input_detail textarea{
        height: 60px;
    }




    .agree_btn{
        width:30px;
        height: 30px;
    }


    .contact_agree p{
        font-size: 0.8rem;
    }

    
    .contact_agree a{
        font-size: 0.8rem;
    }



    .contact_btn{
        font-size: 1.2rem;
        line-height: 50px;
    }




    /* 푸터 */


    .footer_wrap{
        display: block;
        padding-top:8%;
        padding-bottom: 8%;
    }


    .footer_sns{
        width:30%;
        margin-top:5%;
    }






    

}