@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.main-color {
    color: var(--main-color);
}

.bg-main-color {
    color: var(--main-color);
}

#header {
    z-index: 99999;
    position: fixed;
    top: 0;
    width: 100vw;
    background-color: transparent;
    /* box-shadow: 0 2px 5px rgba(110, 110, 110, 0.212); */
    transition: all 0.4s ease;
    color: white;


}

#header.hover,
#header.scroll {
    color: #111;
    background-color: #fff;

}

.filter_dark {
    filter: brightness(80%) !important;
    transition: 0.2s;
}

#header .header_center.hover {
    /*border-bottom: 1px solid #e1e1e1;   */

}

#header .header_center .btn_h03 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

#header .header_center .btn_h03 span {
    display: block;
    background-color: white;
    width: 35px;
    height: 3px;

    transition: 0.4s;
}

#header .btn_h03.hover span {
    background-color: #111;
}

#header:hover {
    color: #111;
    background-color: white;
}

.header_center {
    padding: 0 5%;
    background-color: transparent;
}

.header_center.hover {

}

header .h01 {
    /* color: white; */
    height: 7vw;
    position: relative;

}

#header .h01.hover {
    color: #111;
}

header .h01 ul.menu {
    width: 100%;
}

header .h01 ul.menu li {
    text-align: center;
}

header .h01 ul.menu li:hover {
    color: var(--blue);
    transition: 0.1s;
}


header .h01 .logo {
    position: absolute;
    top: 58%;
    left: 0%;
    transform: translate(0%, -50%);
}

header .h01 .login {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(0%, -50%);
}


header .h01 .login .btn_login,
header .h01 .login .btn_join {
    /*width: 100px;*/
    width: 6vw;
    /*height: 40px;*/
    height: 2.3vw;
    border-radius: 8px;
    color: white;
}

header .h01 .login .btn_login {
    background-color: var(--blue);
}

header .h01 .login .btn_join {
    background-color: var(--darkblue);
}

header .h02 {
    /* background-color: white; */

    color: #888888;
    font-size: 1vw !important;
    height: 18vw;
}

header .h02 ul li,
header .h01 ul.menu li {
    /* width:200px; */
    width: 10.4vw;
}

header .h02 ul li a:hover {
    font-weight: bold;
    color: #111;
    text-decoration: underline;
    text-underline-position: under;
}

.h02 ul li a:hover .header {

}

header .h02 ul {
    gap: 1vw !important;
}


/* 
.hd .logo {}

.hd .logo img {} */

.hd_nav {
    gap: 2vw;
}

.hd_nav > ul {
    position: relative;
    gap: 2.5vw;
}

.hd_nav > ul > li {
    white-space: nowrap;
    padding-right: 6px;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}


@keyframes appear {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* 모바일 메뉴 */
.m_menu_btn,
.m_menu_box {
    display: none;
}

.menu_box {
    display: none;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.menu_box.show {
    transform: translateX(0);
}

/* 모바일 메뉴 */
.menu_box {
    width: 70%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: white;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.menu_box .close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 25px;
}

.menu_box .close i {
    font-size: 20px;
}

.menu_box ul.m_main_menu > li {
    width: 100%;
    margin-bottom: 40px;
}

.menu_box ul.m_main_menu > li p {
    width: max-content;
    position: relative;
}

.menu_box ul.m_main_menu > li p:after {
    content: " ";
    width: 5px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: -13px;
    transform: translateY(-50%);
}

.menu_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu_overlay.show {
    opacity: 1;
    visibility: visible;
}

.kakao {
    position: fixed;
    right: 3%;
    bottom: 6%;
    z-index: 999;
}

/*모바일 사이트맵*/
#m_sitemap {
    display: none;
}

.menu_btn {
    display: block;
    font-size: 30px;
    color: #111;
    cursor: pointer;
}

.st_center {
    padding: 0 8.33vw;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    height: 140px;
    align-items: center;
}

#sitemap {
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999999999;
    background: linear-gradient(107deg, #1b75bc, #2b3890);
    /*opacity: 0.9;*/
    transform: translateX(100%);
    transition: transform .8s;
}

#sitemap.show {
    transform: translateX(0);
}

#sitemap .header_center {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#sitemap .close_btn P {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    font-family: 'SUIT-Bold', sans-serif;
}

.pc_st_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3vw 0;
}

.pc_st_box > li {
    width: 30%;
}

.pc_st_box > li:nth-child(4), .pc_st_box > li:nth-child(5) {
    width: 45%;
}

.pc_st_box p {
    border-bottom: 3pt solid rgba(255, 255, 255, .3);
    padding-bottom: .5vw;
}

.pc_st_box a {
    color: #dddddd;
}

.pc_st_box ul {
    margin-top: 1vw;
    display: flex;
    flex-direction: column;
    gap: 1vw 0;
}

.pc_st_box div {
    display: flex;
    gap: 0 5vw;
}


.header_img {
    width: 8vw;
}

.menu li a, .login a {
    font-size: 1vw !important;
}

.menu_btn p {
    margin-top: 5px;
    font-size: 1.8vw;
    /*color: white;*/
    transition: all 0.2s ease-in;
    font-family: 'Pretendard-ExtraBold', sans-serif;
}

.menu_btn i:hover {
    color: #000;
}

#sitemap .fs-36{
    font-size: 2vw !important;
}
#sitemap .fs-18{
    font-size: 1vw !important;
}
.pc_st_box ul {
    margin-top: 1vw;
    display: flex;
    flex-direction: column;
    gap: 0.5vw 0;
}
@media screen and (max-width: 1500px) {
    /*.btn_login,*/
    /*.btn_join{*/
    /*    display: none;*/
    /*}*/
    .btn_h03 {
        display: none !important;
    }
}
/* mobile */
@media screen and (max-width: 767px) {
    .menu_btn {
        display: none;
    }

    #sitemap {
        display: none;
    }

    header .h01 {
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    header .h01 .flex_box {
        justify-content: space-between;
        gap: 0 10px;
        display: flex;
    }

    header .h01 .logo {
        width: fit-content;
        height: fit-content;
        position: unset;
        transform: unset;
    }

    .header_img {
        width: 94px;
    }

    header .h01 .login {
        position: unset;
        transform: unset;
    }

    header .h01 .login .btn_login, header .h01 .login .btn_join {
        width: 56px;
        height: 27px;
        font-size: 12px;
    }

    header .h02 {
        display: none !important;
    }

    .m_menu_btn {
        display: flex;
        align-items: center;
        width: 20px;
    }

    .m_menu_btn img {
        width: 100%;
    }

    /*모바일 사이트맵*/
    #m_sitemap {
        display: block;
        width: 100%;
        height: 100vh;
        background-color: rgb(38, 119, 184);
        position: fixed;
        top: 0;
        right: 0;
        z-index: 999;
        transform: translateX(100%);
        transition: transform .8s;
    }

    #m_sitemap.show {
        transform: translateX(0);
    }

    .close_btn {
        display: flex;
        justify-content: flex-end;
        padding-right: 30px;
        padding-top: 38px;
    }

    #m_sitemap .close_btn P {
        font-size: 24px;
        color: #fff;
        font-family: 'SUIT-Bold', sans-serif;
    }

    .st_box {
        padding: 3vh 15% 0;
        overflow: auto;
        width: 100%;
        height:350px;
        padding-bottom: 450px;
    }

    .st_menu ul {
        width: 100%;
        display: none;
        margin-bottom: 25px;
    }

    .st_menu p {
        font-size: 21px;
        color: #fff;
        font-family: 'Pretendard-ExtraBold', sans-serif;
        padding: 15px 0;
    }

    .st_menu li {
        padding: 10px 0;
    }

    .st_menu a {
        font-size: 16px;
        color: #fff;
        font-family: 'Pretendard-Regular', sans-serif;
    }

    .kakao {
        width: 20%;
        bottom: 2%;
    }

    .kakao img {
        width: 100%;
    }

    /* 모바일 메뉴 */
    .m_hd {
        height: 8vh;
    }

    .m_logo {
        width: 33vw;
        height: auto;
    }

    .m_hd_logo {
        width: fit-content;
        height: fit-content;
    }

    .menu_box .search-container button {
        height: 117% !important;
        width: 22% !important;
        white-space: nowrap !important;
    }

    header .logo {
        width: 50%;
    }

    header ul:not(.m_main_menu) {
        display: none;
    }

    header .menu_box {
        display: flex;
    }

    header .hd_m_nav i {
        font-size: 25px;
    }

    .hd_login_btn {
        border-radius: 7px;
        padding: 1.3vw 2.5vw;
    }

    .hd_register_d_btn {
        border-radius: 7px;
        padding: 1.3vw 1.5vw;
    }


    .menu_box .search-container {
        margin-top: 407px !important;
    }


}

/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .menu li a, .login a {
        font-size: 1.5vw !important;
    }

    .menu_btn {
        display: none;
    }

    #sitemap {
        display: none;
    }

    header ul:not(.m_main_menu) {
        display: none;
    }

    header .h01 {
        height: 100px;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    header .h01 .flex_box {
        justify-content: space-between;
        gap: 0 15px;
        display: flex;
    }

    header .h01 .logo {
        width: 150px;
        position: unset;
        transform: unset;
    }

    .header_img {
        width: 100px;
    }

    header .h01 .login {
        position: unset;
        transform: unset;
    }

    header .h01 .login .btn_login, header .h01 .login .btn_join {
        width: 63px;
        height: 27px;
        font-size: 13px;
    }

    header .h02 {
        display: none !important;
    }

    .m_menu_btn {
        width: 20px;
        display: flex;
        align-items: center;
    }

    .m_menu_btn img {
       width: 100%;
    }

    /* 모바일 sitemap */
    #m_sitemap {
        display: block;
        width: 100%;
        height: 100vh;
        background-color: rgb(38, 119, 184);
        position: fixed;
        top: 0;
        right: 0;
        z-index: 999;
        transform: translateX(100%);
        transition: transform .8s;
    }

    #m_sitemap.show {
        transform: translateX(0);
    }

    .close_btn {
        display: flex;
        justify-content: flex-end;
        padding-right: 84px;
        padding-top: 40px;
    }

    #m_sitemap .close_btn p {
        font-size: 30px;
        color: #fff;
        font-family: 'SUIT-Bold', sans-serif;
    }

    .st_box {
        padding: 12vh 15% 0;
        overflow: scroll;
        width: 100%;
        height: 100%;
    }

    .st_menu ul {
        width: 100%;
        display: none;
    }

    .st_menu p {
        font-size: 21px;
        color: #fff;
        font-family: 'Pretendard-Bold', sans-serif;
        padding: 15px 0;
    }

    .st_menu li {
        padding: 15px 0;
    }

    .st_menu a {
        font-size: 18px;
        color: #fff;
        font-family: 'Pretendard-Regular', sans-serif;
    }


    .menu li a, .login a {
        font-size: 1.6vw !important;
    }
    .kakao{
        width:20%;
        bottom: 2%;
        /*right:0;*/
    }

}




/* 가로모드 */
@media only screen and (max-width: 1400px) and (orientation: landscape){

    #m_sitemap{
        overflow-y: scroll;
    }
    .st_box{
        width: unset;
        height: 300px;
    }
    .kakao{
        /*width:12%;*/
        bottom: 2%;
        /*right:0;*/
    }
}
