@charset "UTF-8";
header {
	display: flex;
	justify-content: space-between;
	position: fixed;
	background-color: rgba(255, 255, 255, 0.6);
	z-index: 1000;
	top: 0;
	width: 100%;
	height: 100px;
	border-bottom: 1px solid rgba(var(--marineblue), 0.5);
}

.logo {
	align-self: center;
}
.logo p {
	font-family: var(--Teko);
	font-size: var(--font36);
	padding: 0 20px;
	font-weight: normal;
	cursor: pointer;
	letter-spacing: 2px;
}
.logo p span {
	color: rgb(var(--marineblue));
}

/*햄버거 + 네비*/
.btn_container {
	position: absolute;
	top: 35px;
	right: 2%;
	height: 35px;
	width: 35px;
	cursor: pointer;
	z-index: 200;
	transition: opacity 0.25s ease;
	/* 햄버거메뉴(버튼) 막대기 만들기, span이라 class를 하나 더 만들어 주는 것이 좋다. */
}
.btn_container.active .top {
	transform: translateY(11px) translateX(0) rotate(45deg);
	background: rgba(var(--skyblue), 1);
}
.btn_container.active .middle {
	opacity: 0;
}
.btn_container.active .bottom {
	transform: translateY(-11px) translateX(0) rotate(-45deg);
	background: rgba(var(--blue), 1);
}
.btn_container span {
	background: rgb(var(--royalblue));
	border: none;
	height: 4px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.35s ease;
	cursor: pointer;
}
.btn_container span:nth-of-type(2) {
	top: 11px;
}
.btn_container span:nth-of-type(3) {
	top: 22px;
}

/* 메뉴버튼 활성화시 보여질 풀스크린 메뉴 만들기 */
.fullscreen {
	position: fixed;
	background: rgba(var(--royalblue), 0.9);
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s, visibility 0.35s, height 0.35s;
	overflow: hidden;
	z-index: 100;
	/* 풀스크린 메뉴 - 메뉴 */
}
.fullscreen.open {
	opacity: 1;
	visibility: visible;
	height: 100%;
	overflow: auto;
}
.fullscreen.open li {
	-webkit-animation: fadeInRight 0.5s ease forwards;
	        animation: fadeInRight 0.5s ease forwards;
	-webkit-animation-delay: 0.35s;
	        animation-delay: 0.35s;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.fullscreen.open li:hover {
	font-weight: bold;
}
.fullscreen nav {
	position: relative;
	top: 10%;
	text-align: center;
	padding: 0px 0 40px;
}
.fullscreen ul {
	width: 180px;
	margin: 0 auto;
	display: inline-block;
	position: relative;
	height: 100%;
	text-align: left;
}
.fullscreen ul li {
	text-align: left;
	padding: 5px 25px;
	color: rgb(var(--white));
	cursor: pointer;
	display: block;
	position: relative;
	opacity: 0;
}
.fullscreen ul h6 {
	font-size: var(--font24);
	padding: 50px 0px 10px 0;
	color: rgb(var(--white));
	font-weight: normal;
}
.fullscreen ul h6 span {
	font-size: var(--font16);
	padding-left: 5px;
}

/* 키프레임으로 메뉴들이 나타날때 효과를 줌 */
@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 20%;
	}
	100% {
		opacity: 1;
		left: 0;
	}
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 20%;
	}
	100% {
		opacity: 1;
		left: 0;
	}
}
/*로그인 모달*/
.loginModal {
	display: none;
	width: 500px;
	height: 350px;
	z-index: 300;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -175px;
	margin-left: -250px;
	background-color: rgb(var(--lightgray));
	border: 2px solid rgba(var(--marineblue), 0.8);
	border-radius: 100px 8px 8px 8px;
}
.loginModal .modal_inner {
	width: 380px;
	margin: 0 auto;
	padding: 70px 0;
	display: flex;
	flex-flow: column wrap;
}
.loginModal .modal_inner h5 {
	font-size: var(--font20);
	margin-bottom: 10px;
}
.loginModal .modal_inner input {
	width: 100%;
	padding: 10px;
	outline-color: rgb(var(--marineblue));
	margin-top: 5px;
}
.loginModal .modal_inner input[type=checkbox] {
	width: 10px;
	margin: 5px 5px 9px;
}
.loginModal .modal_inner label {
	padding: 10px 0;
	font-size: var(--font13);
}
.loginModal .modal_inner button {
	margin-top: 10px;
	padding: 10px 0;
	background-color: rgba(var(--royalblue), 0.8);
	outline: 0;
	border: 0;
	color: rgb(var(--white));
	font-size: var(--font20);
	cursor: pointer;
}
.loginModal .modal_inner button:hover {
	opacity: 0.9;
}
.loginModal .close_btn span {
	background: rgb(var(--royalblue));
	border: none;
	height: 2px;
	width: 20px;
	position: absolute;
	top: 0;
	right: 5px;
	transition: all 0.35s ease;
	cursor: pointer;
}
.loginModal .close_btn span:nth-of-type(2) {
	top: 11px;
}
.loginModal .close_btn span:nth-of-type(3) {
	top: 22px;
}
.loginModal .close_btn .top {
	transform: translateY(11px) translateX(0) rotate(45deg);
	background: rgb(var(--royalblue));
}
.loginModal .close_btn .middle {
	opacity: 0;
}
.loginModal .close_btn .bottom {
	transform: translateY(-11px) translateX(0) rotate(-45deg);
	background: rgb(var(--royalblue));
}

/*로그인 모달 끝 */
@media (max-width: 768px) {
	.logo p {
		font-size: var(--font26);
		padding: 0 10px;
	}

	.btn_container span {
		height: 2px;
	}

	.loginModal {
		width: 100%;
		height: auto;
		top: 25%;
		left: 0;
		margin-top: 0;
		margin-left: 0;
		border-radius: 35px 8px 8px 8px;
	}
	.loginModal .modal_inner {
		width: 85%;
		padding: 30px 0;
	}
	.loginModal .modal_inner h5 {
		font-size: var(--font16);
	}
}