/* 리셋, 기본 폰트, 공통 요소 */
/* base.css - 초기화 및 공통 스타일 */

/* 폰트 불러오기 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://use.typekit.net/pju8usx.css'); /* adobe 유료폰트 */


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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    font-family: 'Roboto', sans-serif;
    font-size:19px;

}

/* HTML5 display reset */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
    display: block;
}


/* 예시
font-family: 'Open Sans', sans-serif;
font-family: 'Ubuntu', sans-serif;
font-family: 'Nanum Gothic';  400,700,800
font-family: 'Roboto', sans-serif;
@font-face
font-family: 'NanumSquare';
font-family: 'Lato', 'Noto Sans KR', Tahoma, Geneva, sans-serif;
font-family: 'Nanum Myeongjo';
font-family: 'Nanum Barun Gothic', sans-serif;
font-family: 'Cairo', sans-serif;
font-family: 'Josefin Sans', sans-serif;
font-family: 'Noto Sans KR', sans-serif;
font-family: 'Playfair Display', serif;
font-family: 'Titillium Web', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Spoqa Han Sans Neo', 'sans-serif';
font-family: "gotham", sans-serif;

*/

/* Body base */
html {
    overflow-x: hidden;
}
html, body {
    /* overflow-x: hidden; */
    /* overflow-y: auto; */
    height: 100%;
}
body {
    line-height: 1.6;
    font-family: 'Apple SD Gothic Neo', 'Roboto', 'Noto Sans KR', 'Malgun Gothic', '돋움', Dotum, sans-serif;
    font-size: 19px;
    color: #000;
    /* overflow-x: hidden; */
}
@media(max-width:991px){
    body {
        font-size:15px;
        line-height: 1.4;

    }
    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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    font-family: 'Roboto', sans-serif;
    font-size:15px;
    line-height: 20px;

}
 }
/* List reset */
ol, ul {
    list-style: none;
}

/* Link reset */
a {
    color: inherit;
    text-decoration: none;
}

/* Table reset */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Input / button reset */
input, button, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Image reset */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Box sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Placeholder */
::placeholder {
    color: #999;
    opacity: 1;
}
@media(max-width:1399px) {
    .container {
        width: auto;
    }
}
  @media (max-width: 767px) {
    .hidden-xs {
      display: none !important;
    }
  }
  @media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
      display: none !important;
    }
  }
  @media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
      display: none !important;
    }
  }
  @media (min-width: 1200px) {
    .hidden-lg {
      display: none !important;
    }
  }
