@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&display=swap");

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 100;
    src: url(https://cdn.jsdelivr.net/npm/roboto-fontface@0.10.0/fonts/roboto/Roboto-Thin.woff2) format("woff2"), url(https://cdn.jsdelivr.net/npm/roboto-fontface@0.10.0/fonts/roboto/Roboto-Thin.woff) format("woff");
    unicode-range: U+0030-0039;
}

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 300;
    src: url(https://cdn.jsdelivr.net/npm/roboto-fontface@0.10.0/fonts/roboto/Roboto-Light.woff2) format("woff2"), url(https://cdn.jsdelivr.net/npm/roboto-fontface@0.10.0/fonts/roboto/Roboto-Light.woff) format("woff");
    unicode-range: U+0030-0039;
}

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 400;
    src: url(https://cdn.jsdelivr.net/npm/roboto-fontface@0.10.0/fonts/roboto/Roboto-Regular.woff) format("woff2"), url(https://cdn.jsdelivr.net/npm/roboto-fontface@0.10.0/fonts/roboto/Roboto-Regular.woff2) format("woff");
    unicode-range: U+0030-0039;
}

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 500;
    src: url(https://cdn.jsdelivr.net/npm/roboto-fontface@0.10.0/fonts/roboto/Roboto-Medium.woff2) format("woff2"), url(https://cdn.jsdelivr.net/npm/roboto-fontface@0.10.0/fonts/roboto/Roboto-Medium.woff) format("woff");
    unicode-range: U+0030-0039;
}

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 700;
    src: url(https://cdn.jsdelivr.net/npm/roboto-fontface@0.10.0/fonts/roboto/Roboto-Bold.woff2) format("woff2"), url(https://cdn.jsdelivr.net/npm/roboto-fontface@0.10.0/fonts/roboto/Roboto-Bold.woff) format("woff");
    unicode-range: U+0030-0039;
}

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 900;
    src: url(https://cdn.jsdelivr.net/npm/roboto-fontface@0.10.0/fonts/roboto/Roboto-Black.woff2) format("woff2"), url(https://cdn.jsdelivr.net/npm/roboto-fontface@0.10.0/fonts/roboto/Roboto-Black.woff) format("woff");
    unicode-range: U+0030-0039;
}

/* reset css */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,
tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,
hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
}

body {
    line-height: 1.2;
}

ol,ul {
    list-style: none;
}

legend {
    position: absolute;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden;
}

blockquote,q {
    quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

table caption {
    position: absolute;
    left: 0;
    top: 0;
    display: none;
    font-size: 0;
}

input,button,select,textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    outline: none;
    border-radius: 0;
}

input[type=submit],input[type=button] {
    -webkit-appearance: none;
}

button {
    cursor: pointer;
}

a:link,a:visited {
    text-decoration: none;
}

a:hover,a:focus,a:active {
    text-decoration: none;
}

img {
    vertical-align: middle;
}

table th,table td {
    vertical-align: middle;
}

i {
    font-style: normal;
}

hr {
    border: none;
    margin: 0;
}

/* common css */
html {
    font-size: 16px;
}

@media only screen and (max-width: 1024px) {
    html {
        font-size: 13px;
    }
}

@media only screen and (max-width: 830px) {
    html {
        font-size: 12px;
    }
}

@media only screen and (max-width: 425px) {
    html {
        font-size: 10px;
    }
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.block {
    display: block;
}

.in-block {
    display: inline-block;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.clear {
    display: block;
    clear: both;
    overflow: hidden;
}

.align-l {
    text-align: left;
}

.align-r {
    text-align: right;
}

.align-c {
    text-align: center;
}

.fl-l {
    float: left;
}

.fl-r {
    float: right;
}

.fl-n {
    float: none;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.w-75 {
    width: 75%;
}

.h-75 {
    height: 75%;
}

.w-50 {
    width: 50%;
}

.h-50 {
    height: 50%;
}

.w-25 {
    width: 25%;
}

.h-25 {
    height: 25%;
}

.mid {
    margin: auto;
}

.mid-x {
    margin-left: auto;
    margin-right: auto;
}

.mid-y {
    margin-top: auto;
    margin-bottom: auto;
}

.mt-auto {
    margin-top: auto;
}

.mr-auto {
    margin-right: auto;
}

.mb-auto {
    margin-bottom: auto;
}

.ml-auto {
    margin-left: auto;
}

.txt-normal {
    font-style: normal;
    font-weight: normal;
}

.txt-italic {
    font-style: italic;
}

.font-thin {
    font-weight: 100;
}

.font-light {
    font-weight: 300;
}

.font-regular {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

.ver-t {
    vertical-align: top;
}

.ver-m {
    vertical-align: middle;
}

.ver-b {
    vertical-align: bottom;
}

.ver-i {
    vertical-align: initial;
}

.pos-rel {
    position: relative;
}

.pos-abs {
    position: absolute;
}

.pos-fix {
    position: fixed;
}

.pos-sta {
    position: static;
}

.fix-t {
    top: 0;
    left: 0;
    right: 0;
}

.fix-r {
    top: 0;
    right: 0;
    bottom: 0;
}

.fix-l {
    top: 0;
    left: 0;
    bottom: 0;
}

.fix-b {
    left: 0;
    right: 0;
    bottom: 0;
}

.abs-t {
    top: 0;
    left: auto;
    right: auto;
}

.abs-r {
    top: auto;
    right: 0;
    bottom: auto;
}

.abs-l {
    top: auto;
    left: 0;
    bottom: auto;
}

.abs-b {
    left: auto;
    right: auto;
    bottom: 0;
}

.flex-c {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-t {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex-b {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.flex-l {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.flex-r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex-bet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-aro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flex-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.cursor-p {
    cursor: pointer;
}

.cursor-d {
    cursor: default;
}

.tb-fixed {
    table-layout: fixed;
}

.tb-auto {
    table-layout: auto;
}

.red-text {
    color: #f81948;
}

.montserrat {
    font-family: 'Montserrat', sans-serif;
}

.fontawesome {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}