@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

html {
    height: 100%
}

body {
    height: 100%;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-weight: 400;
    word-break: keep-all;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* header */
.header_container {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    z-index: 1000;
}

.header_container .header {
    position: relative;
    width: 1080px;
    height: 60px;
    margin: 0 auto;
}

.header_container .header .header_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header_container .header .header_logo img {
    width: auto;
    height: 25px;
}

.header_container .header .gnb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}
.header_container .header .gnb button {
    width: 40px;
    height: 40px;
}
.header_container .header .gnb .open {
    background: url(../images/icon/icon_nav.png) no-repeat center center;
    background-size: contain;
}

.header_container .header .gnb .close {
    display: none;
    background: url(../images/icon/icon_close.png) no-repeat center center;
    background-size: contain;
}

.header_container .header .gnb button:hover {
    width: 40px;
    height: 40px;
    background-color: #F5F7FA;
    border-radius: 50%;
}

.header_container .header .gnb .gnb_link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    text-align: center;
}

.header_container .header .gnb .gnb_link li {
    width: auto;
    height: 59px;
    padding: 5px 5px 0;
    color: #121212;
    cursor: pointer;
}

.header_container .header .gnb .gnb_link li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.header_container .header .gnb .gnb_link li a:hover {
    color: #999;
}

.header_container .header .gnb .gnb_link .on {
    font-weight: 700;
    color: #0FC3B9;
    border-bottom: 3px solid #0FC3B9;
}

.header_container .header .gnb .gnb_link .on a:hover {
    color: #0FC3B9;
}

@media screen and (max-width: 1080px) {
    .header_container .header {
        width: 100%;
        height: 100px;
        padding: 0 20px;
    }

    .header_container .header .header_logo {
        top: 30px;
    }

    .header_container .header .header_logo img {
        width: auto;
        height: 20px;
    }

    .header_container .header .gnb {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .header_container .header .gnb button {
        width: 36px;
        height: 36px;
        margin-top: 10px;
        z-index: 1000;
    }

    .header_container .header .gnb .gnb_link {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .header_container .header .gnb .gnb_link li {
        height: 50px;
    }
}


/* menu */
.menu_container {
    display: none;
    position: fixed;
    top: 60px;
    width: 100%;
    height: auto;
    background-color: #fff;    
    box-shadow: 0px 15px 20px -15px rgba(0, 0, 0, 7%);
    border-top: 1px solid #eee;
    z-index: 999;
}

.menu_container .menu {
    display: flex;
    gap: 130px;
    width: 1080px;
    height: 100%;
    margin: 0 auto 10px;
}

.menu_container .menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 10px 50px;
}

.menu_container .menu ul li {
    font-size: 17px;
    font-weight: 700;
    color: #121212;
}

.menu_container .menu ul:last-child li a {
    font-size: 17px;
    font-weight: 400;
    color: #222;
}

.menu_container .menu ul li a:hover,
.menu_container .menu ul:last-child a {
    color: #999;
}

.menu_container .menu .on,
.menu_container .menu ul:last-child .on a {
    color: #0FC3B9;
    font-weight: 600;
}

.menu_container .menu .on a:hover {
    color: #0FC3B9;
}

.dimmed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;    
}

@media screen and (max-width: 1080px) {
    .menu_container {
        top:0;
        width: 400px;
        height: 100%;
        padding: 55px 0 0;
        border: none;
        z-index: 999;
    }

    .menu_container .menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .menu_container .menu ul {
        width: 100%;
        gap: 0;
        margin: 0;
    }

    .menu_container .menu ul li {
        display: flex;
        justify-content: start;
        align-items: center;
        height: 60px;
        padding: 0 30px;
        font-size: 15px;
    }

    .menu_container .menu ul:first-child li {
        border-bottom: 1px solid #eee;
    }

    .menu_container .menu ul:first-child li:first-child {
        border-top: 1px solid #eee;
    }

    .menu_container .menu ul:last-child li {
        height: 40px;
    }
    .menu_container .menu ul:last-child li:first-child {
        height: 60px;
    }

    .menu_container .menu ul:last-child li a {
        font-size: 15px;
    }
}


/* MAIN */
/* banner */
.banner_contatiner {
    width: 100%;
    height: 800px;
    padding-top: 60px;
    background-color: #0FC3B9;
    background: url(../images/main/main_banner.png) no-repeat 50%;
    background-size: cover;
}
.banner_contatiner .banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1080px;
    height: 100%;
    margin: 0 auto;
    color: #fff;
}
.banner_contatiner .banner .banner_title .head_title {
    padding: 30px 0;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.4em;
}
.banner_contatiner .banner .banner_title .sub_title {
    padding: 20px 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8em;
}
.download_btn {
    display: flex;
    justify-content:flex-start;
    align-items: center;
    gap: 10px;
}
.download_btn img {
    width: auto;
    height: 60px;
}
.download_btn {
    padding: 30px 0 0;
}
.banner_contatiner .banner .banner_image img {
    width: auto;
    height: 650px;
    padding-right: 70px;
}

@media screen and (max-width: 1080px) {
    .banner_contatiner {
        height: auto;
        padding-top: 100px;
    }
    .banner_contatiner .banner {
        width: 100%;
        display: flex;
        flex-direction: column;

    }
    .banner_contatiner .banner .banner_title {
        padding: 20px 0 40px;
        text-align: center;
    }
    .banner_contatiner .banner .banner_title .head_title {
        font-size: 35px;
    }
    .banner_contatiner .banner .banner_title .sub_title {
        font-size: 15px;
    }
    .banner_contatiner .banner .banner_title .download_btn {
        padding: 440px 20px 0;
    }
    .banner_contatiner .banner .banner_image {
        position: absolute;
        top: 280px;
    }
    .banner_contatiner .banner .banner_image img {
        width: auto;
        height: 400px;
        padding: 0;
    }
}

@media screen and (max-width: 450px) {
    .download_btn a {
        width: calc(100%/2);
    }
    .download_btn img {
        height: auto;
    }
}


/* scroll tab */
.scroll_tab {
    position: sticky;
    top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 50px 0 60px;
    z-index: 999;
}
.scroll_tab button {
    width: 140px;
    height: 52px;
    border-radius: 26px;
    border: 1px solid #eee;
    background-color: #fff;
    font-size: 17px;
    font-weight: 400;
    color: #121212;
}
.scroll_tab button:hover {
    border: 1px solid #0FC3B9;
    color: #0FC3B9;
}

@media screen and (max-width: 1080px) {
    .scroll_tab {
        top: 80px;
        gap: 10px;
        padding: 40px 20px;
    }
    .scroll_tab button {
        width: calc(100%/3);
        height: 44px;
        font-size: 15px;
    }
}

/* main */
.main_container {
    width: 100%;
}
.main_container .main .main_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main_container .main.first .main_content {
    justify-content: start;
    gap: 80px;
}
.main_container .main .main_content .main_text h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.6em;
    color: #121212;
}
.main_container .main .main_content .main_text h4 {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.6em;
    color: #121212;
}
.main_container .main .main_content .main_text h5 {
    padding: 0 0 10px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6em;
    color: #222;
}
.main_container .main .main_content .main_text p {
    width: 450px;
    padding: 30px 0 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8em;
    color: #222;
}
.main_container .main .main_content .main_text button {
    width: 160px;
    height: 52px;
    margin: 40px 0 0;
    border-radius: 7px;
    font-size: 17px;
    color: #121212;
    background-color: #F5F7FA;
}

@media screen and (max-width: 1080px) {
    .main_container .main {
        padding: 0 20px;
    }
    .main_container .main .main_content .main_text {
        padding: 20px 0;
    }
    .main_container .main .main_content .main_text h3 {
        font-size: 25px;    
    }
    .main_container .main .main_content .main_text h4 {
        font-size: 20px;
    }
    .main_container .main .main_content .main_text h5 {
        font-size: 17px;
    }
    .main_container .main .main_content .main_text p {
        width: 100%;
        padding: 10px 0 0;
    }
    .main_container .main .main_content .main_text button {
        width: 100%;
        height: 44px;
        margin: 20px 0 0;
        font-size: 15px;
    }
}

/* main first */
.main_container .main.first .main_content {
    width: 1080px;
    margin: 0 auto;
}
.main_container .main.first .main_content:last-child {
    padding: 60px 0 100px;
}
.main_container .main.first .main_content .main_image {
    position: relative;
}
.main_container .main.first .main_content .main_image img {
    width: 550px;
    height: 350px;
    border-radius: 20px;
}
.main_container .main.first .main_content .main_image::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../images/mobidic_logo_white.png) no-repeat center center;
    background-size: contain;
}

@media screen and (max-width: 1080px) {
    .main_container .main.first .main_content {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 0;
        width: 100%;
    }
    .main_container .main.first .main_content:last-child {
        padding: 20px 0 30px;
    }
    .main_container .main.first .main_content .main_image img {
        width: 100%;
        height: auto;
    }
    .main_container .main.first .main_content .main_image::after {
        width: 170px;
        height: 35px;
    }
    .main_container .main.first .main_content .main_text {
        width: 100%;
    }
}

/* main second & third */
.main_container .main.second {
    background-color: #F5F7FA;
}
.main_container .main.third {
    background-color: #fff;
}
.main_container .main.second .main_content,
.main_container .main.third .main_content {
    align-items: flex-end;
    width: 1080px;
    height: 650px;
    margin: 0 auto;
}
.main_container .main.second .main_text,
.main_container .main.third .main_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 650px;
}
.main_container .main .imgs {
    position: relative;
    width: 350px;
    height: 550px;
    border-top: 13px solid #fff;
    border-left: 13px solid #fff;
    border-right: 13px solid #fff;
    border-radius: 50px 50px 0 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 10%);
    box-sizing: border-box;
}
.main_container .main .imgs::after {
    content: '';    
    width: 400px;
    height: 40px;
    position: absolute;
}
.main_container .main.second .imgs::after {
    background-color: #fff;
    top: 537px;
    right: -40px;
}
.main_container .main.third .imgs::after {
    background-color: #F5F7FA;;
    top: 537px;
    left: -40px;
}
.main_container .main.second .imgs {
    margin-right: 20px;
}
.main_container .main .imgs .mockup {
    border-radius: 38px 38px 0 0;
    filter: brightness(90%);
}

.main_container .main .nfc,
.main_container .main .QRcode,
.main_container .main .memo {
    position: absolute;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 10%);
}
.main_container .main .nfc {
    top: 80px;
    right: 160px;
    width: 320px;
}
.main_container .main .QRcode {
    bottom: 80px;
    right: -40px;
    width: 140px;
}
.main_container .main .memo {
    top: 220px;
    left: 150px;
    width: 300px;
}

@media screen and (max-width: 1080px) {
    .main_container .main.second,
    .main_container .main.third {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
    }

    .main_container .main.second .main_content,
    .main_container .main.third .main_content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        padding: 50px 0 0;
        text-align: center;
    }
    
    .main_container .main.third .main_content {
        flex-direction: column-reverse;
    }
    .main_container .main.second .main_text,
    .main_container .main.third .main_text {
        width: 100%;
        height: auto;
        padding: 0 0 40px;
    }
    .main_container .main.second .main_content .main_text p,
    .main_container .main.third .main_content .main_text p {
        padding: 10px 10%;
    }
    .main_container .main .imgs {
        width: 240px;
        height: 360px;
        border-top: 10px solid #fff;
        border-left: 10px solid #fff;
        border-right: 10px solid #fff;
        border-radius: 30px 30px 0 0;
    }
    .main_container .main .imgs::after {
        width: 300px;
        height: 40px;
    }
    .main_container .main.second .imgs::after,
    .main_container .main.third .imgs::after {
        top: 350px;
        left: -40px;
    }
    .main_container .main.second .imgs {
        margin-right: 0;
    }
    .main_container .main .imgs .mockup {
        border-radius: 20px 20px 0 0;
    }
    .main_container .main .nfc,
    .main_container .main .QRcode,
    .main_container .main .memo {
        border-radius: 10px;
    }
    .main_container .main .nfc {
        top: 60px;
        right: 70px;
        width: 200px;
    }
    .main_container .main .QRcode {
        bottom: 50px;
        left: 160px;
        width: 90px;
    }
    .main_container .main .memo {
        top: 140px;
        left: 60px;
        width: 300px;
    }
}

/* main fourth */
.main_container .main.fourth {
    background-color: #F5F7FA;
}

.main_container .main.fourth .main_content {
    width: 1080px;
    padding: 80px 0 70px;
    margin: 0 auto;
}

.main_container .main.fourth .main_content .main_image img {
    width: auto;
    height: 350px;
}

.main_container .main.fourth .main_content .main_text button {
    margin: 100px 0 0;
    background-color: #0FC3B9;
    color: #fff;
    font-weight: 400;
}

.color_mint {
    color: #0FC3B9;
}

@media screen and (max-width: 1080px) {
    .main_container .main.fourth .main_content {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 30px 0;
        text-align: center;
    }

    .main_container .main.fourth .main_content .main_image img {
        position: absolute;
        top: 90px;
        left: 50%;
        transform: translate(-50%, 0);
        width: auto;
        height: 200px;
    }

    .main_container .main.fourth .main_content .main_text h3 {
        padding: 0 10%;
    }

    .main_container .main.fourth .main_content .main_text h3 br {
        display: none;
    }

    .main_container .main.fourth .main_content .main_text h5 {
        padding: 0 10% 220px;
        
    }

    .main_container .main.fourth .main_content .main_text button {
        margin: 30px 0 0;
    }
}

/* main fifth */
.main_container .main.fifth .main_content {
    flex-direction: column;
    width: 1080px;
    height: auto;
    padding: 80px 0 70px;
    margin: 0 auto;
    text-align: center;
}
.main_container .main.fifth .main_content .symbol {
    width: auto;
    height: 60px;
}
.main_container .main.fifth .main_content .main_text {
    width: 100%;
    padding: 30px 0 10px;
}


@media screen and (max-width: 1080px) {
    .main_container .main.fifth .main_content {
        width: 100%;
        height: auto;
        padding: 50px 0;
    }
    .main_container .main.fifth .main_content .symbol {
        height: 50px;
    }
    .main_container .main.fifth .main_content .main_text {
        width: 100%;
        padding: 30px 0 0;
    }
    
}

/* main sixth */
.main_container .main.sixth {
    background-color: #F5F7FA;
}
.main_container .main.sixth .main_content {
    flex-direction: column;
    align-items: start;
    width: 1080px;
    height: auto;
    padding: 60px 0 90px;
    margin: 0 auto;
}
.main_container .main.sixth .main_content .main_text h5 {
    padding: 0;
    font-size: 27px;
    font-weight: 700;
    color: #121212;
}
.main_container .main.sixth .main_content .main_text ul {
    padding: 10px 0;
    font-size: 17px;
    color: #222;
}
.main_container .main.sixth .main_content .main_text ul li {
    padding: 5px 0;
}

@media screen and (max-width: 1080px) {
    .main_container .main.sixth .main_content {
        width: 100%;
        height: auto;
        padding: 20px 0;
    }
    .main_container .main.sixth .main_content .main_text {
        width: 100%;
    }
    .main_container .main.sixth .main_content .main_text h5 {
        font-size: 17px;
    }
    .main_container .main.sixth .main_content .main_text ul {
        padding: 8px 0 0;
        font-size: 15px;
    }
    .main_container .main.sixth .main_content .main_text ul li {
        padding: 4px 0;
    }
}

/* footer */
#wrap {
    min-height: 100%;
    position: relative;
    padding-bottom: 300px;
}
footer {
    position: absolute;
    height: auto;
    width: 100%;
    bottom: 0;
    background-color: #222;
}
.footer_container {
    padding: 60px 0;
}

.footer_container .footer {
    width: 1080px;
    margin: 0 auto;
}

.footer_container .footer .footer_logo img {
    width: 130px;
    height: auto;
}

.footer_container .footer .footer_text .menu_link {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 0 20px;
    font-size: 17px;
    font-weight: 400;
    color: #eee;
}

.footer_container .footer .footer_text .company {
    font-size: 15px;
    font-weight: 400;
    color: #999;
}

.footer_container .footer .footer_text .company li {
    position: relative;
    display: inline-block;
    padding: 5px 12px;
}

.footer_container .footer .footer_text .company li::before {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    width: 1px;
    height: 11px;
    background: rgba(255, 255, 255, 0.2);
}
.footer_container .footer .footer_text .company li:first-child,
.footer_container .footer .footer_text .company li:nth-child(5),
.footer_container .footer .footer_text .company li:last-child {
    padding-left: 0;
}

.footer_container .footer .footer_text .company li:nth-child(3)::before,
.footer_container .footer .footer_text .company li:nth-child(6)::before,
.footer_container .footer .footer_text .company li:last-child::before {
    background: #222;
}

.footer_container .footer .footer_text .copyright {
    padding: 15px 0 0;
    font-size: 13px;
    font-weight: 300;
    color: #999;
}

@media screen and (max-width: 1080px) {
    #wrap {
        min-height: 100%;
        position: relative;
        padding-bottom: 500px;
    }
    
    footer {
        position: absolute;
        height: 500px;
        width: 100%;
        bottom: 0;
    }

    .footer_container {
        padding: 40px 0;
    }

    .footer_container .footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        width: 100%;
        padding: 0 20px;
    }

    .footer_container .footer .footer_logo img {
        width: auto;
        height: 20px;
        margin: 0;
    }
    .footer_container .footer .footer_text {
        width: 100%;
        line-height: 1.8em;
    }
    .footer_container .footer .footer_text .menu_link {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 30px 0 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 15px;
    }

    .footer_container .footer .footer_text .company {
        padding: 20px 0 10px;
    }

    .footer_container .footer .footer_text .company br {
        display: none;
    }

    .footer_container .footer .footer_text .company li {
        display: block;
        padding: 0;
        font-size: 13px;
    }

    .footer_container .footer .footer_text .company li::before {
        display: none;
    }

    .footer_container .footer .footer_text .copyright {
        padding: 0;
        font-size: 11px;
    }
}


/* SERVICE */
.service_contatiner {
    padding-top: 60px;
}
.service_contatiner .bg {
    position: fixed;
    top: 0;
    left: 0; 
    width: 100%;
    height: 100%;
    background-image: url("../images/bg.png");
    background-size: cover;             
    background-position: center center;
    transform: translateZ(0); 
    will-change: transform; 
    z-index: -1;
}
.service_contatiner .service {
    width: 1080px;
    margin: 0 auto;
}
#service_2 {
    margin-bottom: 130px; 
}
.service_contatiner .service .service_title .head_title {
    padding: 70px 0 40px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4em;
    text-align: center;
}

@media screen and (max-width: 1080px) {
    .service_contatiner {
        padding-top: 100px;
        background-color: #F5F7FA;
    } 
    .service_contatiner .bg {
        display: none;
    }
    .service_contatiner .service {
        width: 100%;
        padding: 0 20px;
    }
    #service_2 {
        padding-bottom: 50px;
        margin-bottom: 0; 
    }
    .service_contatiner .service .service_title .head_title {
        padding: 50px 0 20px;
        font-size: 25px;
    }
}

/* CASHBACK */
.cashback_contatiner {
    padding-top: 60px;
}
.cashback_contatiner .bg {
    position: fixed;
    top: 0;
    left: 0; 
    width: 100%;
    height: 100%;
    background-image: url("../images/bg.png");
    background-size: cover;             
    background-position: center center;
    transform: translateZ(0); 
    will-change: transform; 
    z-index: -1;
}
.cashback_contatiner .cashback {
    width: 1080px;
    margin: 130px auto;
}

@media screen and (max-width: 1080px) {
    .cashback_contatiner {
        padding-top: 100px;
        background-color: #F5F7FA;
    } 

    .cashback_contatiner .bg {
        display: none;
    }
    
    .cashback_contatiner .cashback {
        width: 100%;
        padding: 50px 20px;
        margin: 0;
    }
}

/* FAQ */
.faq_container {
    width: 100%;
    padding: 100px 0;
    background-color: #fff;
}
.faq_container .faq {
    width: 1080px;
    margin: 0 auto;
}
.faq_container .faq .faq_title h5 {
    padding: 0 0 30px;
    font-size: 20px;
    font-weight: 400;
    color: #222;
}
.faq_container .faq .faq_title h3 {
    font-size: 30px;
    font-weight: 700;
    color: #121212;
}
.faq_container .faq .faq_content {
    padding: 30px 0 0;
}
.faq_container .faq .faq_content details {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}
.faq_container .faq .faq_content details:last-child {
    border: none;
}
.faq_container .faq .faq_content details summary {
    position: relative;
    display: flex;
    padding-right: 40px;
    font-size: 20px;
    font-weight: 500;
    color: #121212;
    cursor: pointer;
}
.faq_container .faq .faq_content summary::-webkit-details-marker {
    display: none;
}
.faq_container .faq .faq_content summary {
    line-height: 27px;
    list-style-type: none;
}
.faq_container .faq .faq_content details summary::after {
    content: "";
    position: absolute;
    top: -7px;
    right: 0;
    width: 35px;
    height: 35px;
    background: url(../images/icon/icon_more.png) no-repeat center center;
    background-size: contain;
}
.faq_container .faq .faq_content details[open] summary::after {
    transform: rotateZ(180deg);
}
.faq_container .faq .faq_content details p {
    position: relative;
    padding: 30px 40px 0 34px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8em;
    color: #222;
}
.faq_container .faq .faq_content details summary:before {
    content: "Q.";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0 10px 0 0;
    background: url(/web/images/faq/icon_Q.png) 0 0 no-repeat;
    overflow: hidden;
    text-indent: -9999px;
    background-size: 24px 24px;
}
.faq_container .faq .faq_content details p:before {
    content: "A.";
    position: absolute;
    top: 30px;
    left: 0;
    width: 24px;
    height: 24px;
    margin: 0 10px 0 0;
    background: url(/web/images/faq/icon_A.png) 0 0 no-repeat;
    overflow: hidden;
    text-indent: -9999px;
    background-size: 24px 24px;
}

@media screen and (max-width: 1080px) {
    .faq_container {
        padding: 50px 0 40px;
    }
    .faq_container .faq {
        width: 100%;
        padding: 0 20px;
    }
    .faq_container .faq .faq_title h5 {
        padding: 0 0 20px;
        font-size: 17px;
        font-weight: 400;
        color: #222;
    }
    .faq_container .faq .faq_title h3 {
        font-size: 25px;
        font-weight: 700;
        color: #121212;
    }
    .faq_container .faq .faq_content {
        padding: 20px 0 0;
    }
    .faq_container .faq .faq_content details {
        padding: 24px 0;
    }
    .faq_container .faq .faq_content details summary {
        padding-right: 30px;
        font-size: 17px;
    }
    .faq_container .faq .faq_content details summary::after {
        content: "";
        position: absolute;
        top: -5px;
        right: 0;
        width: 30px;
        height: 30px;
        background: url(../images/icon/icon_more.png) no-repeat center center;
        background-size: contain;
    } 
    .faq_container .faq .faq_content details p {
        padding: 24px 30px 0 34px;
    }
    .faq_container .faq .faq_content details p:before {
        top: 24px;
    }
}

/* SWIPER */
.swiper_content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 1000px;
    height: 600px;
    margin: 0 auto;
    border-radius: 30px;
    background-color: #fff;
}
.swiper_content .swiper_image img {
    width: 380px;
    height: 440px;
    border-radius: 30px;
    object-fit: cover;
}
.swiper_content .swiper_text {
    width: 400px;
    padding: 0 0 80px;
}
.swiper_content .swiper_text h3 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.6em;
    color: #121212;
}
.swiper_content .swiper_text ul {
    padding: 20px 0 0 15px;
}
.swiper_content .swiper_text ul li {
    padding: 4px 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8em;
    color: #222;
    list-style: disc;
}

.swiper_content .swiper_text .step {
    width: 77px;
    height: 27px;
    margin: 0 0 20px;
    background-color: #0FC3B9;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 27px;
}

@media screen and (max-width: 1080px) {
    .swiper_content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
        width: 100%;
        height: 750px;
        padding: 25px;
    }
    .swiper_content .swiper_image {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .swiper_content .swiper_image img {
        width: auto;
        height: 360px;
    }
    .swiper_content .swiper_text {
        width: 100%;
        padding: 20px 5px 0;
    }
    .swiper_content .swiper_text h3 {
        font-size: 20px;
    }
    .swiper_content .swiper_text ul {
        padding: 10px 0 0 15px;
    }
    .swiper_content .swiper_text ul li {
        padding: 2px 0;
    }
    .swiper_content .swiper_text .step {
        width: 65px;
        height: 25px;
        margin: 0 0 10px;
        font-size: 15px;
        line-height: 25px;
    }
}

/* TERMS */
.terms_container {
    padding-top: 60px;
}

.terms_container .terms {
    display: flex;
    align-items:start;
    gap: 60px;
    width: 1080px;
    padding: 60px 0;
    margin: 0 auto;
}

.terms_container .terms aside ul {
    width: 250px;
    height: auto;
    border: 1px solid #eee;
}

.terms_container .terms aside ul li {
    width: 100%;
    height: 52px;
    padding: 0 20px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    font-weight: 400;
    line-height: 52px;
    color: #121212;
}

.terms_container .terms aside ul li a {
    display: block;
    margin-left: 10px;
}

.terms_container .terms aside ul .on {
    font-weight: 600;
    color: #0FC3B9;
}

.terms_container .terms aside ul li:first-child {
    font-weight: 700;
    background-color: #F5F7FA;
}

.terms_container .terms aside ul li:last-child {
    border: none;
}

.terms_container .terms .tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.terms_container .terms .tabs div {
    position: relative;
    width: 130px;
    height: 44px;
    margin-right: 5px;
    font-size: 15px;
    line-height: 44px;
    text-align: center;
    color: #121212;
    background-color: #F5F7FA;
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    cursor: pointer;
}

.terms_container .terms .tabs div.active {
    font-weight: 600;
    color: #0FC3B9;
    background-color: #fff;
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

.terms_container .terms .tabs div.active::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -1px;
    width: 128px;
    height: 2px;
    background-color: #fff;
}

.terms_container .terms .terms_content {
    overflow-x: auto
}

.terms_container .terms .terms_content .terms_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 10px;
    border-bottom: 1px solid #eee;
}

.terms_container .terms .terms_content .terms_title .head_title {
    font-size: 25px;
    font-weight: 700;
    color: #121212;
}

.terms_container .terms .terms_content .terms_title select {
    width: 250px;
    height: 44px;
    padding: 0 15px;
    border: 1px solid #eee;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 400;
    color: #121212;
    background: url(../images/icon/icon_more.png) no-repeat right 7px center;
    background-size: 24px 24px;
    cursor: pointer;
}

.terms_container .terms .terms_content .terms_text {
    padding: 30px 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8em;
    color: #222;
    word-break: break-all;
    overflow-x: auto;
}

@media screen and (max-width: 1080px) {
    .terms_container {
        padding-top: 100px;
    }
    .terms_container .terms {
        width: 100%;
        padding: 0;
    }
    .terms_container .terms aside {
        display: none;
    }
    .terms_container .terms .terms_content .terms_title {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 20px;
        border: none;
    }
    .terms_container .terms .terms_content .terms_title .head_title {
        font-size: 20px;
    }
    .terms_container .terms .terms_content .terms_title select {
        width: 100%;
        height: 44px;
        padding: 0 15px;
    }
    .terms_container .terms .terms_content {
        padding: 30px 20px 60px;
    }
    .terms_container .terms .terms_content .terms_text {
        padding: 20px 0 0;
    }
    .terms_container .terms .tabs {
        padding: 0 20px;  
        margin: 0;  
    }
    .terms_container .terms .tabs div {
        display: flex;
        justify-self: center;
        align-items: center;
        width: auto;
        height: 50px;
        margin-right: 20px;
        border: none;
        line-height: 1.15;
        background-color: #fff;
    }

    .terms_container .terms .tabs div.active {
        border: none
    }

    .terms_container .terms .tabs div.active::after {
        display: none;
    }

}

/* SHARING 240710 새암 추가 */
.sharing .background {
    position: relative;
    width: 100%; 
    height: auto; 
}

.information_container {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    padding-bottom: 100px;
}

.sharing.profile .information_container {
    top: 298px;
}

/* business card */
.business_card {
    display: flex;
    margin: 0 auto;
    border-radius: 14px;
    border: 1px solid #eee;
    background-color: #fff;
    box-shadow: 3px 3px 15px 0px rgba(0, 0, 0, 5%);
    box-sizing: border-box;
}

.business_card img {
    width: 100%;
    height: 100%;
    border-radius: 14px;
}

.template_profile div {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    border: 1px solid #eee; 
    background: url(../images/icon/icon_user.png) center no-repeat;
    background-size: contain;
}
.template_profile div img {    
    width: inherit;
    height: inherit;
    border-radius: inherit;
}
.template_profile p {
    font-size: 17px;
    font-weight: 700;
}

.template_information {
    font-size: 13px;
    color: #222;
}

.template_information .template_company {
    font-size: 15px;
}

.template_information .template_company li:first-child {
    font-weight: 600;
}
.template_information ul li {
    word-break: break-all;
}

.template_information .template_contact li {
    display: flex;
    gap: 10px;
}

.template_information .template_contact li div {
    width: 8px;
    font-weight: 600;
    color: #121212;
}

/* horizontal */
.horizontal .business_card {
    width: calc(100% - 60px);
    max-width: 340px;
    aspect-ratio: 1.74 / 1;
}

.horizontal .template {
    display: flex;
    align-items: start;
    gap: 30px;
    margin: 20px;
}

.horizontal .template_profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.horizontal .template_profile p {
    padding: 32px 0 0;
}

.horizontal .template_information {
    line-height: 1.6;
}

/* horizontal case01 */
.horizontal .template.case01 .template_information .template_contact {
    padding: 16px 0 0;
}

/* horizontal case02 */
.horizontal .template.case02 {
    align-items: center;
}

.horizontal .template.case02 .template_profile p {
    padding: 13px 0 0;
}

/* horizontal case03 */
.horizontal .template.case03 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 auto;
}

.horizontal .template.case03 .template_company, 
.horizontal .template.case03 .template_contact {
    padding: 16px 0 0;
}

/* horizontal case04 */
.horizontal .template.case04 {
    align-items: center;
}

.horizontal .template.case04 .template_information .template_contact {
    padding: 16px 0 0;
}

/* vertical */
.vertical .business_card{
    height: 360px;
    aspect-ratio: 1 / 1.74;
}


.vertical .template {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 30px 15px;
}

.vertical .template_profile {
    display: flex;
    align-items: end;
    justify-content: start;
    gap: 15px; 
}

.vertical .template_profile p {
    padding: 0 0 7px;
}

.vertical .template_information {
    padding: 40px 0 0;
    line-height: 1.8;
}

.vertical .template_information .template_contact {
    padding: 30px 0 0;
}

/* vertical case02 */
.vertical .template.case02 {
    justify-content: center;
}

.vertical .template.case02 .template_information .template_contact {
    padding: 0;
}

/* vertical case03 */
.vertical .template.case03 {
    justify-content: center;
    align-items: start;
    width: 100%;
}
.vertical .template.case03 .template_profile {
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.vertical .template.case03 .template_information .template_contact {
    padding: 0;
}

/* profile */
.profile_container {
    position: absolute;
    top: 100px;
    width: 100%;
    height: auto;
    padding: 0 30px;
}

.profile_summary {
    font-size: 17px;
    line-height: 1.5;
    color: #fff;
}

.profile_summary h3 {
    padding: 20px 0;
    font-size: 25px;
    letter-spacing: 20px;
}

.profile_photo, .company_photo {
    position: absolute;
    border: 1px solid #eee;
    background-color: #fff;
    box-shadow: 3px 3px 15px 0px rgba(0, 0, 0, 5%);
    z-index: 3;
}

.profile_photo {
    top: 60px;
    right: -10px;
    width: 180px;
    height: 180px;
    border-radius: 90px;

}

.company_photo {
    top: 160px;
    right: 150px;
    width: 80px;
    height: 80px;
    border-radius: 40px;

}

.profile_photo img, .company_photo img {
    width: inherit;
    height: inherit;
    border-radius: inherit;
}

/* tab */
ul.tabs {    
    display: flex;
    flex-direction: row;
    clear: both;
    border-bottom: 1px solid #eee;
    background: #fff;
    cursor: pointer;
}

ul.tabs li {
    display: block;
    position: relative;
    flex-grow: 1;
    flex-basis: 0;
    width: 100%;
    padding: 10px 0;
    box-sizing: border-box;
    text-align: center;
    font-size: 15px;
    line-height: 26px;
    color: #121212;
}

ul.tabs li.current {
    font-weight: 600;
	color: #0FC3B9;
}

ul.tabs li.current::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0FC3B9;    
}

.tab-content{
	display: none;
}

.tab-content.current{
	display: inherit;
}

.horizontal .tabs {
    margin-top: 15%;
}

.vertical .tabs {
    margin-top: 30px;
}

.profile .tabs {
    margin-top: 50px;
}

/* information */
.information {
    padding: 20px 24px;
    background-color: #fff;
}

.information th {
    padding: 13px 0 0;
    font-size: 13px;
    font-weight: 400;
    text-align: left;
    color: #444;
}

.information td {
    padding: 7px 0 13px ;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    text-align: right;
    border-bottom: 1px solid #eee;
}

.information summary {
    display: block;
    font-size: 15px;
    font-weight: 500;
    text-align: right;
}

.information .contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 0 0;
}

.information .contact img {
    width: 40px;
    height: 40px;
}

.information p {
    font-size: 15px;
    line-height: 1.8em;
}

#tab-2 .information{
    padding-bottom: 30px;
}

.empty {
    padding: 100px 24px 90px;
    background-color: #fff;
    font-size: 15px;
    color: #222;
    text-align: center;
}

.identify {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 24px;
}
.identify img {
    width: 24px;
    height: 24px;
}

.identify p {
    font-size: 15px;
    color: #222;
}

.identify p>span {
    color: #0FC3B9;
}

.company_address {
    padding: 30px 0 20px;
}

.company_address h3 {
    padding: 0 24px;
    font-size: 17px;
    font-weight: 600;
}

.company_address .map {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    margin: 20px 0 0;
    background-color: #eee;
}

.company_address .map .pin {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: auto;
}

/* save button */
.btn_fixed {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    border-top: 1px solid #eee;
    z-index: 1;
}

.btn_fixed button {
    width: calc(100%/3);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    line-height: 60px;
    color: #444;
}

.btn_fixed button.download {
    font-weight: 600;
    color: #fff;
    background-color: #0FC3B9;
}

/* modal */
#dim {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
}

#modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 60px);
    min-width: 220px;
    background: #fff;
    border-radius: 10px;
    z-index: 1000;
    text-align: center;
}

.confirm .btn_close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 40px;
    height: 40px;
    background: url(../images/icon/icon_close.png) center center no-repeat;
    background-size: 24px 24px;
}

.confirm .text {
    padding: 40px 40px 30px;
}

.confirm .text img {
    width: auto;
    height: 25px;
}

.confirm .text p {
    padding: 30px 0 0;
    font-size: 15px;
    line-height: 1.5em;
    color: #121212;
}

.btn_confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 54px;
    background-color: #eee;
    border-radius: 0 0 10px 10px;
    font-size: 15px;
}

.btn_confirm button {
    flex-basis: 0;
    flex-grow: 1;
    height: 54px;
}

.btn_confirm button:first-child {
    flex-grow: 2;
    color: #444;
}

.btn_confirm button.download {
    flex-grow: 3;
    font-weight: 600;
    color: #fff;
    background-color: #0FC3B9;
    border-radius: 0 0 10px 0;
}

/* FAQ 241004 새암 추가*/
.faq-filter {
    margin: 20px 0;
}
.faq-filter dl dd input[type=radio] {
    position: absolute; 
    margin: 10px 0 0; 
    opacity: 0;
}
.faq-filter dl dd:after {
    content: ""; 
    display: block; 
    clear: both;
}
.faq-filter dl dd{
    margin: 0 -1% 0 0; 
    padding: 0 15px;
}
.faq-filter dl dd label {
    position: relative; 
    float: left; 
    width: calc(50% - 10px); 
    margin: 10px 5px 0; 
    padding: 8px 0; 
    vertical-align: top; 
    text-overflow: ellipsis; 
    overflow: hidden; 
    max-width: 100%; 
    white-space: nowrap; 
    word-wrap: break-word; 
    font-size: 15px; 
    color: #444; 
    line-height: 27px; 
    font-weight: 400; 
    border-radius: 10px; 
    border: 1px solid #eee; 
    background: #fff; 
    text-align: center;
    box-sizing: border-box;  
}
.faq-filter dl dd input[type=radio]:checked+label {
    font-weight: 600;
    color: #0FC3B9; 
    border-color: #0FC3B9;
}
.cscenter-notice {
    clear: both;
    margin: 40px 0 0;
}
.cscenter-notice h5 {
    padding: 0 20px 20px;
    font-size: 17px;
    font-weight: 700;
    color: #121212;
    border-bottom: 1px solid #eee;
}
.cscenter-notice .article {
    border-bottom: 1px solid #eee;
}
.cscenter-notice .article .caption {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 16px 20px 17px;
    box-sizing: border-box;
    text-align: left;
}
.cscenter-notice .article .caption .tit {
    word-wrap: break-word;
    font-size: 17px;
    color: #121212;
    line-height: 27px;
    font-weight: 500;
}
.cscenter-notice .article .caption .tit span {
    margin-right: 5px;
    color: #0FC3B9;
}
.cscenter-notice .article .html {
    display: none;
    position: relative;
    clear: both;
    min-height: 23px;
    padding: 20px;
    text-align: left;
    font-size: 15px;
    color: #222;
    line-height: 1.8em;
    font-weight: 400;
    border-top: 1px solid #eee;
    background: #F5F7FA;
}
.cscenter-notice .article.qna .caption:before {
    content: "Q.";
    display: inline-block;
    width: 24px;
    min-width: 24px;
    height: 24px;
    margin: 1px 10px 2px 0;
    background: url(/web/images/faq/icon_Q.png) 0 0 no-repeat;
    overflow: hidden;
    text-indent: -9999px;
    background-size: 24px 24px
}
.cscenter-notice .article.qna .html {
    padding-left: 54px
}
.cscenter-notice .article.qna .html:before {
    content: "A.";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 24px;
    height: 24px;
    background: url(/web/images/faq/icon_A.png) 0 0 no-repeat;
    overflow: hidden;
    text-indent: -9999px;
    background-size: 24px 24px
}
.cscenter-notice .article.active .html {
    display: block
}
