@charset "utf-8";


.headerfix {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px); /* Safari 지원용 */
	padding: 0 3rem;
	position: fixed;
	z-index: 9;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 0;
	width: 700px;
	height: 3.5rem;
	display: flex;
	align-items: center;
	-webkit-box-shadow: 0px 0px 7px 3px rgba(0,0,0,0.1);
	   -moz-box-shadow: 0px 0px 7px 3px rgba(0,0,0,0.1);
			box-shadow: 0px 0px 7px 3px rgba(0,0,0,0.1);		
}
.headerfix h1 a { display: block; }
.headerfix h1 a img.h1-logo { height: 2rem; }
.headerfix .menu-container {
	display: flex; 
	flex-wrap: wrap;
	gap: 2rem;
	margin-left: auto;
}
.headerfix .menu-container .languages {
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	font-family: 'Noto Sans';
}
.headerfix .menu-container .languages .select-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: left;
}
.headerfix .menu-container .languages .select-btn span {
	padding-left: 1.5rem;
	position: relative;
}
.headerfix .menu-container .languages .select-btn span::before {
	content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960'><path fill='%236b4f43' d='M480-132q-72 0-135.5-27.5T234-234q-47-47-74.5-110.5T132-480q0-72 27.5-135.5T234-726q47-47 110.5-74.5T480-828q72 0 135.5 27.5T726-726q47 47 74.5 110.5T828-480q0 72-27.5 135.5T726-234q-47 47-110.5 74.5T480-132Zm0-27q38-48 62-93t39-102H379q17 61 40 106t61 89Zm-35-3q-31-33-57-85.5T350-354H186q36 82 105 133t154 59Zm70 0q85-8 154-59t105-133H610q-17 55-43 107.5T515-162ZM175-382h169q-5-26-7-50.5t-2-47.5q0-23 2-47.5t7-50.5H175q-7 21-11 47t-4 51q0 25 4 51t11 47Zm197 0h216q5-26 7-49.5t2-48.5q0-25-2-48.5t-7-49.5H372q-5 26-7 49.5t-2 48.5q0 25 2 48.5t7 49.5Zm244 0h169q7-21 11-47t4-51q0-25-4-51t-11-47H616q5 26 7 50.5t2 47.5q0 23-2 47.5t-7 50.5Zm-6-224h164q-37-84-103.5-133T515-799q31 38 56 89t39 104Zm-231 0h202q-17-60-41.5-107.5T480-801q-35 40-59.5 87.5T379-606Zm-193 0h164q14-53 39-104t56-89q-90 11-156 60.5T186-606Z'/></svg>");
	position: absolute;
	top: 2px;
	left: -4px;
	width: 22px;
	height: 22px;
	transition: all 0.3s ease-in-out;
}
.headerfix .menu-container .languages .select-dropdown {
	display: none;
	overflow: hidden;
	position: absolute;
	z-index: 99;
	width: 14rem;
	right: -2.5rem;
	margin-top: 1.5rem;
}
.headerfix .menu-container .languages .select-dropdown .container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	padding: 1rem;
	place-items: center;
	background-color: #ffffff95;
	-webkit-box-shadow: 0 0 5px 0px rgba(0,0,0,0.1);
	   -moz-box-shadow: 0 0 5px 0px rgba(0,0,0,0.1);
			box-shadow: 0 0 5px 0px rgba(0,0,0,0.1);
}
.headerfix .menu-container .select-dropdown .flag img {
	height: 1.2rem;
	border: 1px solid #00000010;
}

@media (max-width: 568.98px) {
	.headerfix {
		top: 0.5rem;
		left: 0.5rem;
		right: 0.5rem;
		transform: translateX(0);
		padding: 0 1.2rem 0 1.5rem;
		width: calc(100% - 1rem);
	}
	.headerfix h1 a img.h1-logo { height: 2rem; }
	.headerfix .menu-container .txt { font-size: 0; }	
	.headerfix .menu-container .languages .select-btn span {
		width: 28px;
		height: 28px;
	}
	.headerfix .menu-container .languages .select-btn span::before {
		position: absolute;
		top: -2px;
		left: -2px;
		width: 30px;
		height: 30px;
	}
	.headerfix .menu-container .languages .select-dropdown {
		right: -1.2rem;
	}
}

.footerArea {
	position: relative;
	padding: 0 0 7rem;
	width: 700px;
	margin: 0 auto;
	color: #b3905c;
	font-family: 'Noto Sans';
	font-size: 0.8rem;
	text-transform: uppercase;
}
.footerArea .footer-info li { padding: 2px 0; }
.footerArea .footer-info .title { margin-right: 1rem; }
.footerArea .copyright { margin-top: 1rem; }

@media (max-width: 568.98px) {
	.footerArea {
		position: relative;
		padding: 0 2rem 6rem;
		width: 100%;
	}
}

.quick-menu {
	position: fixed;
	z-index: 99;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 700px;
	background-image: linear-gradient(125deg, rgb(217, 255, 0) 40%, rgb(136, 255, 0) 99%);
	text-align: center;
	-webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.1);
	   -moz-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.1);
			box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.1);
}
.quick-menu .quick-bar { 
	position: relative;	
	height: 3.5rem;
}
.quick-menu .quick-bar .main-button {
	position: relative;
	text-align: center;
	text-transform: capitalize;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-green);
	height: 3.5rem;
	line-height: 3.5rem;
	width: 100%;
	display: block;
}

@media (max-width: 567.98px) {
	.quick-menu {
		width: calc(100% - 1rem);
		bottom: 0.5rem;
	}
}