@charset "utf-8";

/*
	** LAYOUT CSS
*/


.container {
	max-width: 1640px;
	padding: 0 20px;
	margin: 0 auto;
}


.header {
  background: #fff8;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100px;
}
.header .logo {
  font-size: var(--font-size-22);
  font-weight: 700;
  word-break: keep-all;
}
.gnb-list {
	display: flex;
	align-items: center;
	gap: 40px;
}
@media all and (max-width: 767px) {
  .header .logo {
    width: 120px;
    font-size: var(--font-size-20);
  }
}


.footer {
  background: #1f2732;
  padding: 60px 0 40px;
  color: #565f6c;
  text-align: right;
}
.footer .copy {
  font-size: var(--font-size-14);
  margin-top: 10px;
}