	/* ***************************** 전체적용 */
	body, div, header,footer {
    font-family: 'Noto Sans KR', sans-serif;
	}
	body{
		margin: 0; 
		padding: 0; 
		overflow-x:hidden;
	}

  /* ***************************** 상단 메뉴 */
  .head {
	  /* position: absolute; */
	  position: relative;
	  z-index: 1000;
	  position: fixed;
	  top: 0px;
	  width: 100%;
	  padding: 15px 0;
	  background-color: rgb(255, 255, 255);
	  box-shadow: 0px 3px 5px 0px rgba(0,0,0, 0.1);
		transition: all 1s ease-in-out;
		/* border-bottom: 1px solid #e4e3e3; */
  }
  
  .head.show {
	  color: rgb(32, 30, 30);
	  background-color: rgb(255, 255, 255);
	  padding: 0px;
	  transition: all 1s ease-in-out;
  }
  
  .cont {
	  display: flex;
	  justify-content: flex-end;
  }
  
  .menu > li a {
	  display: block;
	  text-align: center;
	  
	  height: 55px;
	  line-height: 55px;
	  font-size: 15px;
	  color: rgb(0, 0, 0);
	  font-family: 'Noto Sans KR', sans-serif;
  }
  
  ul.menu {
	  position: relative;
	  display: flex;
      flex-wrap: wrap;
      width: 70%;
  }
  
  .menu > li {
	  overflow: hidden;
		width: 20%;
		/* border-right: 1px solid rgb(193, 199, 212); */
	}
	/* .menu > li:nth-of-type(5) {
		border-right: none;
	} */
  
  .menu > li >a:before {
	  position: absolute;
	  display: block;
	  content: '';
	  width: 55px;
	  height: 2px;
	  transform: translateX(0px);
	  top: 10px;
	  opacity: 0;
	  background-color: black;
	  transition: all 1s ease-in-out;
  }
  
  .menu > li:hover a::before {
	  opacity: 1;
	  transform: translateX(50px);
	  transition: all 1s ease-in-out;
  }
  
  .logo {
	  position: absolute;
	  top: 10px;
	  left: 10px;
	  width: 210px;
  }
  
  .logo > img {
	  width: 100%;
  }
  
  .head-fix {
	  position: fixed;
	  visibility: hidden;
	  z-index: 100;
	  width: 100%;
	  margin: 0;
	  background-color: rgb(50, 50, 83);
	  transform: translateY(-80px);
	  transition: all 0.5s ease-in;
  }
  
  .head-fix.show {
	  visibility: visible;
	  transform: translateY(0px);
	  transition: all 1s ease-in;
  }
  
  /* 드롭메뉴 */
  .m-submenu {
  }
  
  .s-submenu {
	  position: absolute;
	  overflow: hidden;
		top: 55px;
	  opacity: 0;
	  transform: translateX(-1300px);
	  background-color: transparent;
	  transition: all 1s ease-in-out;
	}
	
  .m-submenu:hover .s-submenu {
	  opacity: 1;
	  transform: translateX(-150px);
	  transition: all 1s ease-in-out;
  }
  
  .s-submenu > ul {
	  position: relative;
	  display: flex;
	  justify-content: flex-start;
	  align-content: flex-start;
	  padding: 0px 0px;
  }
  
  .s-submenu > ul > li > a {
	  text-align: center;
	  display: block;
	  padding: 0 0px;
	  margin: 0 1px 0 0;
	  width: 150px;
	  height: 35px;
	  font-size: 13px;
	  line-height: 35px;
	  color: #ffffff;
	  background-color: rgb(44, 44, 44);
	  transition: all 0.5s ease-in;
  }
  
  .s-submenu > ul > li:hover a {
	  color: rgb(50, 50, 83);
	  background-color: rgb(255, 255, 255);
  }
  
  
  /* 미디어 쿼리 */
  @media screen and (max-width: 919.99px) {
	  nav {
		  display: none;
		  transition: all 0.5s ease-in;
	  }
  }
  
  @media screen and (max-width: 1023.99px) {
	  .logo {
		  display: none;
		}

		ul.menu {
				width: 100%;
		}
  }
  
  .s-submenu > ul > li > a {
	  font-family: 'Noto Sans KR', sans-serif;
	  font-size: 13px;
	  font-weight: 300;
  }
  
  /* ***************************** 상단 메뉴 끝 */
  
  
  /* ***************************** 모바일 메뉴  */
	.mo-menu {
		display: block;
		border: 0;
		width: 40px;
		height: 25px;
		background-color: transparent;
		cursor: pointer;
		position: absolute;
	  top: 7px;
	  right: 10px;
	  z-index: 700;
	}
	
	.mo-menu .bar,
	.mo-menu .bar:before,
	.mo-menu .bar:after {
		display: block;
		position: absolute;
		width: 30px;
		height: 2px;
		background-color: rgb(0, 0, 0);
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	
	.mo-menu .bar {
		top: 10px;
		left: 0;	
	}
		
	.mo-menu .bar:before {
		position: absolute;
		content: '';
		top: 7px;
		left: 0;
	}
	
	.mo-menu .bar:after {
		position: absolute;
		content: '';
		top: -7px;	
		left: 0;
	}
  
	.top-bg {
		position: fixed;
		z-index: 700;
		background-color: rgb(255, 255, 255);
		width: 100%;
		height: 36px;
		top: 0;
	}
  
	.top-bg > p {
		position: relative;
		display: flex;
		justify-content: flex-start;
		margin-left: 20px;
		font-size: 15px;
		font-weight: 300;
		line-height: 36px;
	  color: rgb(34, 34, 34);
	}
	
	.logo1 {
		padding-top: 5px;
	}

	.logo1 > img {
		vertical-align: top !important;
	}
	
	.show .mo-menu .bar {
		background-color: transparent;	
	}
	
	.show .mo-menu .bar:before {
		top: 0;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);	
	}
	
	.show .mo-menu .bar:after {
		top: 0;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);	
	}
	
	.overlay {
	  width: 0;
	  height: 100%;
	  overflow: hidden;
	  position: fixed; 
	  top: 0;
	  left: 0;
	  transition: width 0.3s ease-in;
	  background-color: rgba(255, 255, 255, 0.8);
	  z-index: 500;
	}
	
	.show .overlay {
	  position: fixed;
	  width: 100%;
	  height: 100%;
	}
	
	.monav ul {
	  list-style-type: none;
	  position: relative;
	  /* top: 50px; */
	  opacity: 0;
	  transform: translateX(-100px);
	  transition: all 0.5s 0.2s ease-out;
	  }
	
	.show .monav ul {
	  opacity: 1;
	  transform: translateX(0);
	}
  
	.monav {
		margin-top: 50px;
	}
	
	.monav a {
	  display: block;
	  width: 100%;
	  text-align: center;
	  font-size: 14px;
	  font-family: 'Noto Sans KR', sans-serif;
	  line-height: 42px;
	  text-decoration: none;
	  color: rgb(0, 0, 0);
	  }
  
	.monav a:hover {
		background-color: rgba(255, 255, 255, 0.8);
	}
  
  .mo-submenu > li > a {
	  font-family: 'Noto Sans KR', sans-serif;
	  font-size: 13px;
	  font-weight: 300;
  }
	#about {
		position: relative;
		z-index: 20;
	  }
  
	  .mo-sub1 {
		  position: relative;
		  z-index: 1;
		  overflow: hidden;
		  background-color: rgba(255, 255, 255, 0.5);
		  /* display: none; */
		  height: 0px;
		}
		
		.mo-sub2 {
		  position: relative;
		  z-index: 1;
		  overflow: hidden;
		  background-color: rgba(255, 255, 255, 0.5);
		  /* display: none; */
		  height: 0px;
	  }
  
	  .mo-sub1 > li > a {
		  position: relative;
		  line-height: 35px;
		  top: -150px;
	  }
  
	  #about:hover .mo-sub1{
		  height: 105px;
		}
		
	  #about:hover .mo-sub1 > li > a {
		  top: 0px;
		  transition: all 1s ease-in-out;
		}
		
		#about:hover .mo-sub2{
		  height: 160px;
		}
		
		#about:hover .mo-sub2 > li > a {
		  top: 0px;
		  transition: all 1s ease-in-out;
		}
  
	@media screen and (min-width: 920px) {
  .mosec {
	  display: none;
  }
  }
  /* ***************************** 모바일 메뉴 끝 */
	  