* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: "NanumGothic";
    src: url("../fonts/NanumGothic.woff") format("woff");
    font-weight: 400;
}

@font-face {
    font-family: "NanumGothic";
    src: url("../fonts/NanumGothicBold.woff") format("woff");
    font-weight: 700;
}
@font-face {
    font-family: "Noto Sans KR"; 
    src: url("../fonts/NotoSans-Regular.woff2") format("woff");
    font-weight: 400;
}

@font-face {
    font-family: "Noto Sans KR";
    src: url("../fonts/NotoSans-Bold.woff2") format("woff");
    font-weight: 700;
}

html {
    margin: 0;
    /* font-size: 10px; */
    font-size: 0.5208vw;
    position: relative;
    overflow-x: hidden;
    overflow-y: overlay;
    font-family: "Noto Sans KR";
    font-weight: 400;
    min-height: 100%;
}

p, h1, h2, h3, h4, h5, h6, span {
    line-height: 1;
}

input {
    font-family: "Noto Sans KR";
    font-weight: 400;
}

body {
    position: relative;
    font-size: 1.6rem;
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff

}

#main {
    min-height: calc(100vh - 62px);
}


/* 로그인 후 데모 서비스 선택 */
.body-container .card-area {
    max-height: 58vh;
    overflow-y: overlay;
    padding: 2rem;
    background-color: rgba(0, 0, 30, 0.8);
    /* 2024-03-06 */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-area .title {
    color: white;
    font-size: 2.5rem;
    margin: 1rem 0 1.5rem 0;
}

.card-area .card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 1rem 0;
}

.station-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    background-color: rgba(233, 233, 233, 0.1);
}

@keyframes img-gg {
    0% {
        background-position: left;
        transform: translateZ(50px) rotateY(-20deg);
    }

    50% {
        background-position: right;
        transform: translateZ(50px) rotateY(20deg);
    }

    100% {
        background-position: left;
        transform: translateZ(50px) rotateY(-20deg);
    }
}

.card-content {
    width: 100%;
    text-align: center;
    padding: 15px 0;

    /* 2023-12-07 */
    /* padding-bottom: 33px; */
}

.card-content .card-title {
    font-size: 20px;
    font-weight: bold;
    color: yellow;
}

.card-content .card-en-title {
    font-size: 15px;
    color: white;
}

.card-link-btn-container {
    width: 100%;
    height: 40px;
}

.card-link-btn-container .card-link-btn {
    background: linear-gradient(90deg, rgba(122, 50, 193, 1) 0%, rgba(64, 140, 197, 1) 50%, rgba(122, 50, 193, 1) 100%);
    display: flex;
    border-radius: 10px;
    justify-content: center;
    align-items: center;

    color: white;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    height: 100%;
    background-size: 200% 100%;
}

.card-link-btn-container .card-link-btn:hover {
    cursor: pointer;
    transform: scale(1.025);
    animation: btn_focus 1s ease;
    animation-duration: 1000ms;
    animation-fill-mode: forwards;
}

@keyframes btn_focus {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}



.footer-container {
    width:100%;
    background:rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    /* position: fixed;
    bottom: 0; */
}

.footer-contact {
    display: flex;
}

.footer-contact .title {
    display: flex;
    align-items: center;

}

.footer-contact .detail {
    display: flex;
    align-items: center;
}

.footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    font-weight: 500;
    color: white;
}

.bcp-img{
    width: 2rem;
    position: relative;
    top: 3px;
}

.bcp-txt{
    color:#ffff00;
    font-size:1.8rem;
    padding-left:1rem;
}

/* [footer left 2] 대표명, 전화번호, 이메일 */
.info{
    list-style: none;
    display:flex;
    padding-left:20px;
}

.info li{
    font-size:15px;
    color:#fff;
    display: flex;
    align-items: center;
}

.li-img{
    position: relative;
    top: 0px;
    padding-right: 5px;
}

.email {
    position: relative;
    top: 1px;
}

.li-circle {
    padding-left: 15px;
}

.li-circle:before {
    content: ".";
    position: relative;
    left: -8px;
    top: -9px;
    line-height: 0;
    font-size: 26px;
    color:#fff;
}

/* [footer right] copyright */
.copy{
    color:#fff;
}


@media screen and (max-width: 1540px) {
    html {
        font-size: 10px;
    }
}
@media screen and (max-width:1240px) {
    
    .contact-info {
        gap: 1rem;
    }
    .info {
        padding: 0;
        gap: 0.5rem;
    }
    .li-circle:before {
        display: none;
    }
}


/* 모바일 반응형 */
@media only screen and (max-width: 1200px) {
    .footer-right{
        display:none;
    }

    .footer-container{
        justify-content: center;
    }
    .li-circle {
        padding-left: 0;
    }
}

@media only screen and (max-width: 800px) {
    
    .footer-right{
        display:none;
    }

    .footer-container{
        justify-content: center;
        gap: 2rem;
    }
    /* .info {
        flex-direction: column;
    } */
}