@charset "utf-8";
/* header */
header.header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-height);
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
    transition: var(--transition);
}
header.header.dark:not(.scroll-active){
    background-color: rgba(0, 0, 0, .16);
    box-shadow: none;
}

.headerBody{
    height: var(--header-body);
    width: 100%;
}
.headerInner{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0 20px;
}
header.header .logo{
    flex: 0 0 auto;
}
header.header.dark:not(.scroll-active) .logo{
    background-image: url(../image/ci-dark.png);
}
.gnbW{
    flex: 0 0 auto;
    padding-left: 30px;
}
.gnb{
    display: flex;
    justify-content: flex-end;
}
.gnbLi{
    position: relative;
}
.gnbLink{
    height: var(--header-body);
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--grey-darken4);
    transition: var(--transition);
}
header.header.dark:not(.scroll-active) .gnbLink{
    color: #fff;
}
.gnbLink span{
    display: block;
    line-height: 1;
    position: relative;
    width: fit-content;
}
.gnbLink span::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: var(--grey-darken4);
    opacity: 0;
    visibility: hidden;
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
}
header.header.dark:not(.scroll-active) .gnbLink span::after{
    background-color: #fff;
}
.lnbBtn{
    display: none;
}
.lnb{
    position: absolute;
    display: block;
    width: 164px;
    padding: 12px 0;
    left: 50%;
    top: 74px;
    transform: translateX(-50%);
    z-index: 5;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .05);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.lnb>li{
    display: block;
}
.lnbLink{
    min-height: 36px;
    padding: 8px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 18px;
    color: var(--grey-lighten1);
    line-height: 1.2;
    font-weight: 500;
    transition: var(--transition);
}
.lnbLink>span{
    display: block;
    width: fit-content;
    line-height: 1;
    position: relative;
}
.lnbLink>span::before{
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--primary-base);
    top: -5px;
    left: -5px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: var(--transition);
}
.searchBtn,
.hamBtn{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    transition: var(--transition);
}
.searchBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
}
header.header.dark:not(.scroll-active) .searchBtn .icon{
    background-image: url(../image/icon-search-white.svg);
}
.headerBtnW{
    display: flex;
    gap: 0 14px;
    margin-left: auto;
}
.headerBtn{
    padding: 0 20px;
    border-radius: 999px;
    height: 44px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 5px;
    color: var(--grey-darken4);
    background-color: var(--grey-lighten5);
    transition: var(--transition);
}
.headerBtn.primaryDarken2{
    background-color: var(--primary-darken2);
    color: #fff;
}
.headerBtn.deepIndigo{
    background-color: var(--deepIndigo-base);
    color: #fff;
}
.hamBtn{
    position: relative;
    background-color: var(--skyCyan-base);
}
.hamBtn.active{
    background-color: var(--primary-base);
}
.hamBtnLine{
    display: block;
    height: 2px;
    width: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hamBtnLine::before,
.hamBtnLine::after{
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    border: 2px solid #fff;
    box-sizing: border-box;
    transition: all .15s .25s ease-out, transform .2s ease-in;
}
.hamBtnLine::before{
    left: 0;
}
.hamBtnLine::after{
    right: 0;
}
.hamBtnLine1::before,
.hamBtnLine1::after{
    top: -8px;
}
.hamBtnLine2::before,
.hamBtnLine2::after{
    bottom: -8px;
}
.hamBtnLine1::after{
    transform: rotate(45deg);
}

.hamBtn.active .hamBtnLine1::before,
.hamBtn.active .hamBtnLine2::after{
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.hamBtn.active .hamBtnLine1::after,
.hamBtn.active .hamBtnLine2::before{
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 999px;
    border: 0;
    transition: all .2s .05s ease-in, transform .2s .3s ease-out;
}
.hamBtn.active .hamBtnLine1::after{
    top: 0;
    animation: hamAni .5s ease-out forwards;
}
.hamBtn.active .hamBtnLine2::before{
    bottom: 0;
    transform: rotate(-45deg);
}

@keyframes hamAni{
    0%{
        transform: rotate(45deg);
    }
    10%{
        transform: rotate(0);
    }
    60%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(45deg);
    }
}

.hamBtn.hamBtnMo{
    display: none;
}
.headerDim{
    display: none;
}

html.search-active{
    height: 100vh;
    max-height: var(--view-height);
    overflow: hidden;
}

@media screen and (min-width: 1201px){
    .gnbLi:hover .gnbLink span::after{
        opacity: 1;
        visibility: visible;
        transform: scaleX(1);
    }
    .gnbLi:hover .lnb{
        opacity: 1;
        visibility: visible;
        top: 82px;
    }
    .lnbLink:hover{
        font-weight: 600;
        color: var(--primary-base);
    }
    .lnbLink:hover>span::before{
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
    .headerBtn:hover{
        background-color: var(--grey-lighten4);
    }
    .headerBtn.primaryDarken2:hover{
        background-color: var(--primary-darken3);
    }
    .headerBtn.deepIndigo:hover{
        background-color: var(--deepIndigo-darken1);
    }
    .searchBtn:hover{
        background-color: rgba(0, 0, 0, .16);
    }
    .hamBtn:hover{
        background-color: var(--primary-base);
    }
    .hamBtn.active:hover{
        background-color: var(--skyCyan-base);
    }
}
@media screen and (max-width: 1439px){
    .headerInner{
        gap: 0 16px;
    }
    .gnbW{
        padding-left: 0;
    }
    .gnbLink{
        font-size: 18px;
        padding: 0 20px;
    }
    .lnbLink{
        font-size: 16px;
        height: 32px;
    }
    .headerBtn{
        font-size: 16px;
    }
}
@media screen and (max-width: 1200px){
    header.header{
        border-bottom: 1px solid transparent;
    }
    .headerInner{
        height: var(--header-height);
    }
    .gnbW,
    .gnbW ul,
    .gnbW li{
        display: block;
    }
    .hamBtn.hamBtnPc,
    .headerBg{
        display: none;
    }
    .hamBtn.hamBtnMo{
        display: block;
    }
    .headerRight {
        gap: 0 2px;
    }
    .hamBtnMo.hamBtn.active .hamBtnLine1::before,
    .hamBtnMo.hamBtn.active .hamBtnLine2::after{
        background-color: var(--grey-base);
    }
    .headerBody{
        height: var(--header-body);
        align-items: center;
    }
    .headerDim{
        position: fixed;
        display: block;
        width: 100%;
        height: calc(100vh - var(--header-height));
        max-height: calc(var(--view-height) - var(--header-height));
        top: var(--header-body);
        left: 0;
        z-index: 98;
        background-color: rgba(0, 0, 0, .4);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .headerInner{
        gap: 0 8px;
    }
    .searchBtn{
        margin-left: auto;
    }
    .gnbW{
        position: fixed;
        width: 100%;
        max-width: 320px;
        height: calc(100vh - var(--header-height) - 70px);
        max-height: calc(var(--view-height) - var(--header-height) - 70px);
        overflow-x: hidden;
        overflow-y: auto;
        top: calc(var(--header-body) + 70px);
        right: 0;
        background-color: #fff;
        z-index: 99;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .gnb{
        display: block;
        overflow: hidden;
        width: 100%;
    }
    .gnbLi{
        position: relative;
        z-index: 3;
        overflow: hidden;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    .gnbLink{
        display: none;
    }
    .lnbBtn{
        display: flex;
        align-items: center;
        padding: 0 50px 0 var(--container-gutter);
        position: relative;
        width: 100%;
        height: 60px;
        font-size: 16px;
        font-weight: 600;
        color: var(--grey-darken4);
        width: 100%;
        text-align: left;
        transition: var(--transition);
    }
    .gnbLi .lnbBtn::after{
        content: "";
        display: block;
        position: absolute;
        width: 18px;
        height: 18px;
        background-image: url(../image/icon-arrow-down.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        transition: var(--transition);
        z-index: 3;
    }
    .lnb{
        position: relative;
        left: 0;
        top: 0;
        bottom: unset;
        width: 100%;
        height: 0;
        min-height: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(0);
        overflow-x: hidden;
        overflow-y: hidden;
        border-right: 0;
        text-align: left;
        padding: 0;
        z-index: auto;
        display: block;
        border-top: 1px solid var(--border-color);
        background-color: var(--primary-lighten5);
        transition: .25s ease-out;
    }
    .gnb>.gnbLi:first-child .lnb{
        border-left: 0;
    }
    .lnb>.lnbLi:first-child{
        margin-top: 12px;
    }
    .lnb>.lnbLi:last-child{
        margin-bottom: 12px;
    }
    .lnbLi{
        width: 100%;
    }
    .lnbLink{
        min-height: 0;
        width: 100%;
        padding: 0 var(--container-gutter) 0 32px;
        height: 40px;
        font-size: 16px;
        font-weight: 500;
        color: var(--grey-darken4);
        flex-direction: row;
        justify-content: flex-start;
        position: relative;
    }
    .lnbLink::before{
        content: "";
        display: block;
        position: absolute;
        width: 4px;
        height: 4px;
        box-sizing: border-box;
        background-color: var(--primary-base);
        border-radius: 50%;
        top: 50%;
        left: var(--container-gutter);
        transform: translateY(-50%);
        border-radius: 50%;
    }
    .gnbLi.active .lnbBtn{
        color: var(--primary-base);
    }
    .gnbLi.active .lnbBtn::after{
        transform: translateY(-50%) rotate(180deg);
    }
    .gnbLi.active .lnb{
        opacity: 1;
        visibility: visible;
        padding: 8px 0;
    }

    .searchBtn,
    .hamBtn{
        width: 40px;
        height: 40px;
    }

    .headerBtnW{
        align-items: center;
        gap: 0 8px;
        border-bottom: 1px solid var(--border-color);
        margin-left: 0;
        padding: 0 var(--container-gutter);
        position: fixed;
        top: var(--header-height);
        right: 0;
        width: 100%;
        max-width: 320px;
        height: 70px;
        background-color: #fff;
        z-index: 99;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .headerBtn{
        padding: 0 16px;
        font-size: 14px;
        height: 38px;
        background-color: var(--grey-lighten5);
    }
    .headerBtnW:has(.headerBtn:nth-child(3)) .headerBtn{
        padding: 0;
        flex: 1 1 auto;
    }
    .headerBtn>.icon{
        width: 20px;
        height: 20px;
    }
    header.header.mo-menu-active{
        background-color: #fff !important;
        border-bottom: 1px solid var(--border-color);
        box-shadow: none;
    }
    header.header.mo-menu-active .logo{
        background-image: url(../image/ci.png) !important;
    }
    header.header.mo-menu-active .headerDim{
        opacity: 1;
        visibility: visible;
    }
    header.header.mo-menu-active .gnbW,
    header.header.mo-menu-active .headerBtnW{
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        transition: .25s ease-out;
    }
    header.header.mo-menu-active .searchBtn{
        opacity: 0;
        visibility: hidden;
    }
}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){
    header.header.dark{
        background-color: #fff !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, .08) !important;
    }
    header.header.dark .logo{
        background-image: url(../image/ci.png) !important;
    }
    header.header.dark .searchBtn .icon{
        background-image: url(../image/icon-search.svg) !important;
    }
}
@media screen and (max-width: 500px){
}

/*fullmenuArea*/
.fullmenuArea{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-height: var(--view-height);
    background-color: rgba(0, 0, 0, .4);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.fullmenuArea.active{
    z-index: 9999;
    opacity: 1;
    visibility: visible;
}
.fullmenuW{
    background-color: #fff;
}
.fullmenuInner{
    position: relative;
    padding: 12px 0;
}
.fullmenuInner>.hamBtnPc{
    position: absolute;
    right: 0;
    top: calc((var(--header-height) - 44px) / 2);
    z-index: 5;
}
.fullmenu{
    display: block;
}
.fullmenu>li{
    display: flex;
    align-items: flex-start;
    padding: 38px 0;
}
.fullmenu>li + li{
    border-top: 1px solid var(--border-color);
}
.fullmenuDepth1{
    flex: 0 0 auto;
    width: 180px;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 0 16px;
    font-size: 20px;
    font-weight: 700;
}
.fullmenuDepth1>.icon{
    width: 42px;
    height: 48px;
}
.fullmenuDepth2W{
    display: flex;
    flex-wrap: wrap;
    flex-basis: 0;
    flex-grow: 1;
    gap: 20px 12px;
    padding-top: 8px;
}
.fullmenuDepth2W>li{
    width: calc((100% - 84px) / 8);
    min-width: 140px;
    white-space: nowrap;
    flex: 0 0 auto;
    display: block;
}
.fullmenuDepth2{
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
}
@media screen and (min-width: 1201px){
    .fullmenuDepth2W>li:hover .fullmenuDepth2{
        color: var(--primary-base);
    }
}
@media screen and (max-width: 1439px){
}
@media screen and (max-width: 1200px){
    .fullmenuArea{
        display: none;
    }
}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){
}
@media screen and (max-width: 500px){
}

/*                            */
/*                            */
/*     1차 오픈 후 주석 해제     */
/*                            */
/*                            */

/* search */
/*.searchArea{*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100vh;*/
/*    max-height: var(--view-height);*/
/*    background-color: rgba(0, 0, 0, .4);*/
/*    z-index: -1;*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transition: var(--transition);*/
/*}*/
/*.searchArea.active{*/
/*    z-index: 9999;*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*}*/
/*.searchW{*/
/*    background-color: #fff;*/
/*}*/
/*.searchInner{*/
/*    position: relative;*/
/*    padding: 100px 0 60px;*/
/*    max-height: var(--view-height);*/
/*}*/
/*.searchHead>.logo{*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: calc((var(--header-height) - var(--logo-height)) / 2);*/
/*    z-index: 5;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/
/*.searchClose{*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: calc((var(--header-height) - 44px) / 2);*/
/*    z-index: 5;*/
/*    width: 44px;*/
/*    height: 44px;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    background-color: var(--primary-base);*/
/*}*/
/*.closeLine{*/
/*    display: block;*/
/*    position: relative;*/
/*    height: 2px;*/
/*    width: 18px;*/
/*}*/
/*.closeLine::before,*/
/*.closeLine::after{*/
/*    content: "";*/
/*    display: block;*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: #fff;*/
/*    border-radius: 999px;*/
/*    top: 0;*/
/*    left: 0;*/
/*}*/
/*.closeLine::before{*/
/*    transform: rotate(45deg);*/
/*}*/
/*.closeLine::after{*/
/*    transform: rotate(-45deg);*/
/*}*/
/*.searchContents{*/
/*    width: 100%;*/
/*    max-width: 700px;*/
/*    margin: 0 auto;*/
/*}*/
/*.searchInput{*/
/*    position: relative;*/
/*    width: 100%;*/
/*    margin-bottom: 100px;*/
/*}*/
/*.searchInput::after{*/
/*    content: "";*/
/*    display: block;*/
/*    position: absolute;*/
/*    width: 100vw;*/
/*    height: 1px;*/
/*    bottom: -50px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    background-color: var(--border-color);*/
/*}*/
/*.searchInput>input{*/
/*    width: 100%;*/
/*    height: 64px;*/
/*    border-radius: 999px;*/
/*    background-color: var(--primary-lighten5);*/
/*    padding: 0 94px 0 40px;*/
/*    font-size: 24px;*/
/*    font-weight: 500;*/
/*}*/
/*.searchInput>input::placeholder{*/
/*    color: var(--grey-base);*/
/*}*/
/*.searchInputBtn{*/
/*    position: absolute;*/
/*    width: 44px;*/
/*    height: 44px;*/
/*    border-radius: 50%;*/
/*    right: 30px;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    background-color: transparent;*/
/*    transition: var(--transition);*/
/*}*/
/*.searchKeywordArea>strong{*/
/*    display: block;*/
/*    line-height: 1;*/
/*    font-size: 26px;*/
/*    font-weight: 700;*/
/*    margin-bottom: 20px;*/
/*}*/
/*.searchKeywordW{*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    flex-wrap: wrap;*/
/*    height: 276px;*/
/*    gap: 4px 30px;*/
/*}*/
/*.searchKeywordW>li{*/
/*    display: block;*/
/*    width: calc(50% - 15px);*/
/*}*/
/*.searchKeyword{*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 0 16px;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    height: 52px;*/
/*}*/
/*.searchKeyword>span{*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    text-align: center;*/
/*    width: 32px;*/
/*    height: 32px;*/
/*    font-size: 18px;*/
/*    font-weight: 600;*/
/*    line-height: 1;*/
/*    color: #fff;*/
/*    background-color: #747B8D;*/
/*    border-radius: 50%;*/
/*    transition: var(--transition);*/
/*}*/
/*.searchKeyword>p{*/
/*    font-size: 20px;*/
/*    font-weight: 600;*/
/*    overflow: hidden;*/
/*    white-space: nowrap;*/
/*    text-overflow: ellipsis;*/
/*    word-break: break-all;*/
/*    transition: var(--transition);*/
/*}*/
/*@media screen and (min-width: 1201px){*/
/*    .searchInputBtn:hover{*/
/*        background-color: var(--primary-lighten4);*/
/*    }*/
/*    .searchKeyword:hover>span{*/
/*        background-color: var(--primary-base);*/
/*    }*/
/*    .searchKeyword:hover>p{*/
/*        color: var(--primary-base);*/
/*    }*/
/*}*/
/*@media screen and (max-width: 1200px){*/
/*    .searchClose{*/
/*        width: 40px;*/
/*        height: 40px;*/
/*        position: static;*/
/*    }*/
/*    .searchHead{*/
/*        height: var(--header-height);*/
/*        display: flex;*/
/*        justify-content: space-between;*/
/*        align-items: center;*/
/*        position: relative;*/
/*    }*/
/*    .searchHead::after{*/
/*        content: "";*/
/*        display: block;*/
/*        position: absolute;*/
/*        width: calc(100% + (var(--container-gutter) * 2));*/
/*        height: 1px;*/
/*        background-color: var(--border-color);*/
/*        bottom: 0;*/
/*        left: calc(var(--container-gutter) * -1);*/
/*    }*/
/*    .searchHead>.logo{*/
/*        position: static;*/
/*    }*/
/*    .searchInner{*/
/*        padding: 0 0 40px;*/
/*    }*/
/*    .searchInput{*/
/*        margin-top: 50px;*/
/*    }*/
/*    .searchKeywordArea{*/
/*        max-height: calc(var(--view-height) - var(--header-height) - 264px);*/
/*        overflow-x: hidden;*/
/*        overflow-y: auto;*/
/*    }*/
/*}*/
/*@media screen and (max-width: 1023px){*/
/*}*/
/*@media screen and (max-width: 767px){*/
/*    .searchInner{*/
/*        padding: 0 0 15px;*/
/*    }*/
/*    .searchContents{*/
/*        max-width: 100%;*/
/*    }*/
/*    .searchInput{*/
/*        margin-top: 20px;*/
/*        margin-bottom: 40px;*/
/*    }*/
/*    .searchInput::after{*/
/*        width: calc((var(--container-gutter) * 2) + 100%);*/
/*        bottom: -20px;*/
/*    }*/
/*    .searchInput>input{*/
/*        height: 48px;*/
/*        padding: 0 60px 0 20px;*/
/*        font-size: 18px;*/
/*    }*/
/*    .searchInputBtn{*/
/*        position: absolute;*/
/*        width: 38px;*/
/*        height: 38px;*/
/*        right: 10px;*/
/*    }*/
/*    .searchInputBtn>.icon{*/
/*        width: 24px;*/
/*        height: 24px;*/
/*    }*/
/*    .searchKeywordArea{*/
/*        max-height: calc(var(--view-height) - var(--header-height) - 123px);*/
/*    }*/
/*    .searchKeywordArea>strong{*/
/*        font-size: 18px;*/
/*        margin-bottom: 16px;*/
/*    }*/
/*    .searchKeywordW{*/
/*        display: block;*/
/*        height: auto;*/
/*    }*/
/*    .searchKeywordW>li{*/
/*        width: 100%;*/
/*    }*/
/*    .searchKeywordW>li + li{*/
/*        margin-top: 4px;*/
/*    }*/
/*    .searchKeyword{*/
/*        gap: 0 8px;*/
/*        height: 34px;*/
/*    }*/
/*    .searchKeyword>span{*/
/*        width: 24px;*/
/*        height: 24px;*/
/*        font-size: 16px;*/
/*    }*/
/*    .searchKeyword>p{*/
/*        font-size: 16px;*/
/*    }*/
/*}*/
/*@media screen and (max-width: 500px){*/
/*}*/


/*footer*/
footer.footer{
    margin-top: auto;
    width: 100%;
}
.footerHead1{
    padding: 14px 0;
    background-color: var(--primary-base);
}
.footerHead1 .footerInner{
    display: flex;
    align-items: center;
}
.footerHead1 .footerInner .footerLinkW{
    margin-right: auto;
}
.footerHead1  .customSelectW{
    width: 250px;
}
.footerHead2{
    padding: 20px 0;
}
.footerHead2 .footerInner{
    display: flex;
    align-items: center;
}
.footerCs{
    display: flex;
    align-items: center;
    margin-right: auto;
    gap: 0 18px;
}
.footerCs>strong{
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    display: block;
    position: relative;
}
.footerCs>strong + strong{
    margin-left: 7px;
}
.footerCs>strong + strong::before{
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 12px;
    background-color: var(--border-color-dark);
    top: 50%;
    left: -13px;
    transform: translateY(-50%);
}
.footerCs>p{
    font-size: 14px;
    color: var(--grey-lighten1);
    font-weight: 500;
}
.footerHead2 .footerLinkW{
    left: 8px;
}
.footerHead3{
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color-dark);
    background-color: var(--grey-lighten5);
}
.footerLinkW{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    left: -8px;
}
.footerLinkW>li{
    display: block;
    position: relative;
}
.footerLink{
    padding: 0 8px;
    height: 38px;
    display: flex;
    gap: 0 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    transition: var(--transition);
}
.footerLinkW.lg .footerLink{
    font-size: 18px;
    font-weight: 600;
}
.footerLink.white{
    color: #fff;
}
.footerLink.skyCyan{
    color: var(--skyCyan-base);
    font-weight: 700;
}
.footerLinkW.dot{
    gap: 0 36px;
}
.footerLinkW.dot>li:not(:last-child)::after{
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--primary-base);
    border-radius: 50%;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
}
.footerLinkW.line{
    gap: 0 33px;
}
.footerLinkW.line>li:not(:last-child)::after{
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 12px;
    background-color: var(--border-color-dark);
    border-radius: 50%;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
}
.footerBody{
    background-color: var(--grey-lighten5);
    padding: 42px 0;
}
.footerBody .footerInner{
    display: flex;
    align-items: center;
    gap: 0 24px;
}
.footerInfo{
    flex-basis: 0;
    flex-grow: 1;
    max-width: 488px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 30px;
}
.footerInfo>li{
    display: flex;
    gap: 0 21px;
    font-size: 16px;
}
.footerInfo>li>strong{
    display: block;
    font-weight: 700;
    position: relative;
}
.footerInfo>li>strong::after{
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 12px;
    background-color: var(--border-color-dark);
    border-radius: 50%;
    right: -11px;
    top: 50%;
    transform: translateY(-50%);
}
.footerInfo>li>p{
    font-weight: 500;
    color: var(--grey-base);
}
.appW{
    display: flex;
    gap: 0 24px;
    align-items: center;
}
.appQr{
    width: 72px;
    min-width: 72px;
    height: 72px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-base);
    border-radius: 6px;
    padding: 2px;
}
.appQr>img{
    display: block;
    width: 100%;
}
.appInfoTop{
    display: flex;
    align-items: center;
    gap: 0 6px;
}
.appInfoTop>strong{
    display: block;
    font-size: 16px;
    color: var(--primary-base);
}
.appInfo>p{
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}
.appInfo>span{
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--grey-lighten1);
    margin-top: 6px;
}
@media screen and (min-width: 1201px){
    .footerLink:hover{
        background-color: var(--primary-lighten4);
        font-weight: 700;
    }
    .footerLink.white:hover{
        background-color: var(--primary-darken1);
    }
}
@media screen and (max-width: 1200px){
    .footerHead2{
        padding: 20px 0 15px;
    }
    .footerHead2 .footerInner{
        display: block;
    }
    .footerCs{
        margin-right: 0;
        margin-bottom: 16px;
    }
    .footerHead2 .footerLinkW{
        left: -8px;
    }
    .footerBody .footerInner{
        flex-wrap: wrap;
    }
    .appW{
        flex: 1 1 100%;
        margin-top: 20px;
    }
}
@media screen and (max-width: 1023px){
    .footerHead1 .footerInner .footerLinkW{
        gap: 0 6px;
    }
}
@media screen and (max-width: 767px){
    .footerHead1 .footerInner{
        gap: 0 8px;
    }
    .footerHead1  .customSelectW{
        width: auto;
        min-width: 250px;
        flex-basis: 0;
        flex-grow: 1;
    }
    .footerHead2 .footerInner{
        display: block;
    }
    .footerCs{
        margin-right: 0;
        flex-wrap: wrap;
    }
    .footerCs>strong{
        font-size: 16px;
    }
    .footerCs>p{
        flex: 1 1 100%;
        margin-top: 8px;
    }
    .footerLinkW{
        gap: 0 10px;
    }
    .footerLink{
        height: 28px;
        font-size: 14px;
    }
    .footerLinkW.dot{
        gap: 0 24px;
    }
    .footerLinkW.dot>li:not(:last-child)::after{
        right: -14px;
    }
    .footerLinkW.line{
        gap: 0 23px;
    }
    .footerLinkW.line>li:not(:last-child)::after{
        right: -12px;
    }
    .footerBody{
        padding: 30px 0;
    }
    .footerBody .footerInner{
        display: block;
    }
    .footerInfo{
        display: block;
        margin-top: 20px;
    }
    .footerInfo>li + li{
        margin-top: 8px;
    }
    .footerInfo>li>p{
        font-size: 14px;
    }
    .appW{
        gap: 0 16px;
        align-items: flex-start;
    }
    .appQr{
        width: 50px;
        min-width: 50px;
        height: 50px;
    }
}
@media screen and (max-width: 500px){
    .footerHead1 .footerInner{
        display: block;
    }
    .footerHead1 .footerInner .customSelectW + .customSelectW{
        margin-top: 10px;
    }
}
