/*플로팅메뉴*/
.fab {
    position: fixed;
    right: 20px; bottom: 20px;
    z-index: 999999;
    animation-name: fab;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    padding: 15px 11px; box-sizing: border-box;
    border: 1px solid #A9A9A9;
    background: #FFF;
    cursor: pointer;
    text-align: center;
}

.fab:hover {
    border: 1px solid #EEC550;
}

@keyframes fab {
    0% {bottom: 20px;}
    50% {bottom: 25px;}
    100% {bottom: 20px;}
}

.inquiry_icon {
    display: block;
    width: 34px;
    height: 34px;
    background: url(/images/icon/inquiry_icon.svg);
    background-size: cover;
    margin: 0 auto;
    margin-bottom: 10px;
}

@media screen and (max-width:430px) {
    .fab {
        display: none;
    }
}

/*헤더*/
.header {
    position: relative;
    background: #fff;
    color: #111;
}

.pc_header {
    width: 1500px; height: 115px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo_bl {
    width: 166px; height: 25px;
    background: url(/images/logo_bl.png);
}

.lnb {
    font-size: 20px;
    font-weight: 600;
}

.lnb_list_box {
    display: flex;
}

.lnb_list {
    padding: 46px 20px;
    cursor: pointer;
}

.lnb_list_mg {
    margin: 0 83px;
}

.flight_aware {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
}

.flight_aware:hover {
    cursor: pointer;
    text-decoration: underline;
}

.flight_aware_icon {
    width: 29px;
    height: 17px;
    background: url(/images/icon/flight_aware_icon.svg);
    margin-right: 10px;
}

.lnb_menu ul {
    display: flex;
    width: fit-content;
    margin: 0 auto;
}

.lnb_menu li {
    margin-right: 60px;
}

.lnb_menu li:last-child {
    margin-right: 0;
}

.lnb_about:hover .about_menu {height: 66px;}
.lnb_about:hover .lnb_menu {border-top: 1px solid #ccc;}
.lnb_program:hover .program_menu {height: 66px;}
.lnb_program:hover .lnb_menu {border-top: 1px solid #ccc;}


.lnb_menu {
    display: flex;
    width: 100%; height: 0;
    position: absolute;
    top: 115px; left: 0;
    background: #fff;
    z-index: 9;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 16px;
    font-weight: 400;
    overflow: hidden;
    transition: all 0.1s;
}

.lnb_menu li {
    margin-right: 60px;
}

.lnb_menu li:last-child {
    margin-right: 0;
}

.lnb_menu li:hover {
    cursor: pointer;
    text-decoration: underline;
}

/*모바일헤더*/
#ham_chk {display: none;}
#ham_chk:checked ~ .mo_nav {right: 0;}

.mo_header {
    display: none;
}

.mo_header_contents {
    position: relative;
    z-index: 99999999;
}

.mo_header_inner {
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mo_logo_bl {
    width: 106px; height: 16px;
    background: url(/images/mo_logo_bl.png);
}

.mo_logo_bl img {
    width: 100%; height: 100%;
}

.ham_btn {
    float: right;
    width: 26px; height: 23px;
    background: url(/images/icon/ham_btn.svg);
}

.mo_nav {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    z-index: 99999999999999999;
    transition: all 0.3s;
    overflow-y: scroll;
    background: #28394D;
    color: #FFF;
}

.mo_nav_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 34px 0 43px 0;
}

.mo_logo_wh {
    width: 106px; height: 16px;
    background: url(/images/mo_logo_wh.png);
}

.close_btn {
    width: 21px; height: 22px;
    background: url(/images/icon/close_btn.svg);
}

.flight_aware_box {
    width: 100%;
    padding: 18px; box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.40);
    margin-bottom: 50px;
}

.flight_aware_icon_wh {
    width: 29px;
    height: 17px;
    background: url(/images/icon/flight_aware_icon_wh.svg);
    margin-right: 10px;
}

.mo_menu_box {
    text-align: center;
}

.mo_menu_list {
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 35px;
}

.big_menu {
    font-size: 22px;
    font-weight: 600;
}

@media screen and (max-width:1600px) {
    .pc_header {
        width: calc(100% - 60px);
    }
}

@media screen and (max-width:1024px) {
    .lnb_list_mg {
        margin: 0 10px;
    }

    .lnb_list {
        padding: 46px 10px;
    }
}

@media screen and (max-width:768px) {
    .pc_header {display: none;}
    .mo_header {display: block;}
}