@charset "utf-8"; 
@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=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Icon Font CDN */
@import url('https://fonts.googleapis.com/icon?family=Material+Icons+Outlined'); /* font-family: 'Material Icons Outlined'; */
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'); /* font-family: fontawesome; */
@import url('http://cdn.jsdelivr.net/npm/xeicon@2.3.3/xeicon.min.css');  /* font-family: xeicon;  */


*{  /* 전체선택자(모든 태그에 여백을 빼줌 */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body{
  width: 100%;
  height: 100%;
}
html{
  overflow-y:scroll;  /* 문서전체에 세로 스크롤바자국 항상 표시 */
  overflow-x:hidden;  /* 문서전체에 가로 스크롤바자국 항상 숨김 */
}

body{
  font-family: 'Noto Sans KR', sans-serif;
}
/* 시멘틱태그를 지원하지 않는 브라우저에서 inline로 인식하기 때문에 block로 변경해줌 */
article,aside,details,summary,figcaption,figure,
footer,header,hgroup,main,nav,section{ 
	display:block;  
}

li{list-style-type: none;}  /*목록에 점 없애기 */

a{
  text-decoration: none;   /*하이퍼링크 밑줄 없애기*/
  color: inherit;  /*하이퍼링크의 글자색 부모한테 상속받기*/
}

img{
	vertical-align:top; /*이미지에 원치 않는 여백이 생성되는 브라우저 오류가 발생하는 경우가 있음*/
	font-size:0;  /*폰트 크기 초기화*/
	border:0; /* 이미지 링크시 기본적으로 나타나는 테두리 제거 */
}

.clear:after{    /* float문제해결 */
	content:"";
	display:block;
	clear:both;
}

.indent{   /* 글자 안보이게 밀어놓기 */
	display:block;
	text-indent:-9999px;
}