/* @import url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_11-01@1.0/NanumSquareNeo-Variable.woff2'); */

:root {
    --mainColor: #00508e;
    --bodyText: dimgray;
}
a {
    text-decoration: none !important;
    cursor: pointer;
}
a:not([href]) {
    cursor: default;
}
body {
    /* user-select: none; */
    color: #222222 !important;
}
#mainapp {
    font-family: "Roboto", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.3px;
    /* overflow: hidden; */
}
#mainapp > div:last-child {
    height: auto !important;
}
.pageBanner {
    margin-top: 80px;
    height: 400px !important;
    background-size: cover;
    background-position: center center !important;
    transform: scale(1.1, 1.1);
    transition: transform 1.5s ease-in-out;
}
.pageBanner + div {
    background-color: white;
}
.pageBanner > div:nth-child(1) {
    width: 100%;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
    transition: all ease-in 1.5s;
    padding-top: 50px;
    opacity: 0;
}
.pageBanner > div:nth-child(1).start{
    padding-top: 0px;
    opacity: 1;   
}
.pageBanner.start {
    transform: scale(1, 1);
}
span[x-apple-data-detectors], a[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;  
    font-family: inherit !important;  
    font-weight: inherit !important;  
    line-height: inherit !important;
}

@media screen and (min-width: 1900px) {
    .pageBanner {
        height: 400px;
    }
}

@media screen and (max-width: 720px) {
    .pageBanner {
        height: 120px !important;
        background-position-x: center !important;
        margin-top: 60px;
    }
    .pageBanner > div:nth-child(1) {
        font-size: 26px;
    }
}