/****************** ��� ******************/
#header {
	position: fixed;
    top: 0;
    left: 0;
	width: 100%;

	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 999;
}
#header.basic {
	position: fixed;
	background: #fff;
}
#header.basic.scroll {
	position: fixed;
}
#header.scroll {
	background: #fff;
}

.nav-up {
	top: -100px;
}
.header-top {
	height: 48px;
}
.header-top ul {
	display: flex;
    align-items: center;
    justify-content: end;
    margin-left: auto;
    height: 48px;
}
.header-top li {
	margin-left: 20px;
	font-size: 15px;
	opacity: 0.8;
}
#header > .sec-in {
    position: relative;
    height: 100px;
}
#header > .sec-in > div {
	display: flex;
    align-items: center;
    justify-content: space-between;
	width: 100%;
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.logo {
    width: 550px;
    vertical-align: middle;
}
#header.white .logo a {
    display: block;
    height: 43px;
	background-image: url("../img/logo_w.svg");
	background-position: left center;
	background-size: 190px;
	background-repeat: no-repeat;

    text-indent: -9000px;
}
#header.white.basic .logo a, #header.hover .logo a, #header.scroll .logo a {
	background-image: url("../img/logo.svg");
}
#gnb {
    vertical-align: middle;
}
#gnb > ul {
	display: flex;
	align-items: center;
}
#gnb > ul > li {
	position: relative;
    display: inline-block;
    margin: 0 0 0 60px;
    font-size: var(--font-basic1);
	font-weight: 400;
	text-align: center;
	letter-spacing: 0.03em;
	/*text-transform: uppercase;*/
    cursor: pointer;
}
/* 2024-12-18 sean
#header.white #gnb > ul li > a {
	color: var(--white-color);
}
*/
#header.white #gnb > ul li > a {
	color: var(--white-color);
}
#header.white #gnb > ul li > a .black, #header.white.basic  #gnb > ul li > a .white, #header.scroll  #gnb > ul li > a .white  {
	display: none;
}

#header.white.basic  #gnb > ul li > a, #header.scroll  #gnb > ul li > a {
	color: var(--black-color);
}

#header.white.basic  #gnb > ul li > a,  #header.hover  #gnb > ul li > a {
	color: var(--black-color);
}

#header.white.basic  #gnb > ul li > a .black, #header.scroll  #gnb > ul li > a .black {
	display: block;
}
#header.white.basic  #gnb > ul li:hover > a, #header.scroll  #gnb > ul li:hover > a, #header.hover  #gnb > ul li:hover > a {
	color: var(--primary-color);
}
#gnb > ul .deps2 {
	display: block;
    margin: 0 auto;

    width: 100%;
	min-width: 136px;
	position: absolute;


    background: var(--white-color);
    overflow-x: hidden;
}
#gnb li.active .deps2 {
	display: block;
}

#header.white #gnb > ul .deps2 li a {
    font-size: 15px;
	color: var(--black-color);
	text-align: center;
	display: inline-block;
}
#header.white #gnb > ul .deps2 a:hover {
	font-weight: bold;
	text-decoration: unset;
	color: var(--primary-color);
}




#header #gnb > ul > li > ul {   height: 0; top:62px; overflow: hidden;   }
#header.hover #gnb > ul > li > ul { height: 190px; transition: height 0.3s ease; transition-delay:0.05s; }
#header #gnb { width: calc(100% - 360px); margin-left: auto; }
#header #gnb > ul > li > a { padding: 30px 30px; white-space: nowrap; transition: 0.3s ease;}
#header #gnb > ul > li { position: relative; margin: 0; flex: 1; }
#header #gnb > ul > li:first-child > ul { border-left:1px solid #efefef; }
#header #gnb > ul > li > ul {  border-right:1px solid #efefef; }
#header.hover #gnb > ul > li > ul { border-top: 2px solid #efefef; border-bottom: 1px solid #efefef; }
#header #gnb > ul > li:hover > ul { border-top: 2px solid var(--primary-color) !important; }
#header #gnb > ul > li > ul > li:first-child > a {
	padding-top: 35px ;
}
#header #gnb > ul > li > ul > li > a {
	padding: 15px 0;
}
#header #gnb > ul > li > ul > li > a > span {
	display: inline-block;
	position: relative;
}
#header #gnb > ul > li > ul > li > a > span:before {
	content: "";
	display: inline-block;
	width: 0%;
	position: absolute;
	height: 1px;
	background: var(--primary-color);
	bottom: 0;
	transition: width 0.5s ease;
}
#header #gnb > ul > li > ul > li:hover > a > span:before { width: 100%; }

#header .header-right{
	width: 75px;
	display: flex;
	align-items: center;
	float: right;
	list-style: none;
	margin-left: 50px;
	color: #fff;
	margin-top: 2px;
}

#header.hover .header-right, #header.basic .header-right, #header.scroll .header-right{
	color: #000;
}

#header .header-right .login > img { margin-top: -2px; }

#header .login li {
	position: relative;
	padding-left: 24px;
}

#header .login li.btn-login::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;

	width: 16px;
	height: 16px;

	background: url('/img/login_w.svg') no-repeat center;
	background-size: contain;

	transform: translateY(-50%);
}

#header.hover .login li::before, #header.basic .login li::before, #header.scroll .login li::before{
	background: url('/img/login.svg') no-repeat center;
	background-size: contain;
}

#header .menu-bg {
	width: 100%;
	height: 0;
	background: #fff;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -10;
	transition: height 0.3s ease;
}
#header.hover .menu-bg .line { width: 100%;
	position: absolute;
	left: 0;
	height: 2px;
	background: #F0F0F0;
	top: 100px;
}
#header.hover .menu-bg {
	height: 291px;
	border-bottom: 1px solid #efefef;
}
#header .etc-link img:not(:first-child) { display: none; }
#header .etc-link img { top: -3px; position: relative; }
#header.basic .etc-link img { display: none; }

#header.hover #gnb > ul > li.etc-link > a > img,
#header.scroll #gnb > ul > li.etc-link > a > img{ display: none; }

#header.basic #gnb > ul > li.etc-link > a > img:nth-child(2),
#header.hover #gnb > ul > li.etc-link > a > img:nth-child(2),
#header.scroll #gnb > ul > li.etc-link > a > img:nth-child(2){ display: inline-block; }

#header.hover #gnb > ul > li.etc-link:hover > a > img { display: none; }
#header.hover #gnb > ul > li.etc-link:hover > a > img:nth-child(3) { display: inline-block }

/****************** ��� ******************/


/****************** ����� �޴� ******************/
.menu-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    padding: 80px 6% 0;
    background-color: var(--primary-color);
    transition: right 0.3s ease-in-out;
    box-sizing: border-box;
	overflow-y: auto;
    z-index: 999;
}
.mo-menu {
	padding-top: 30px;
}
.menu-wrap.show {
	right: 0;
}
.mo-menu .login { display: flex; gap:20px; color:#fff; }
.mo-menu .login li {list-style: none; position: relative; }
.mo-menu .login li.btn-login { padding-left: 20px; }
.mo-menu .login li.btn-login::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;

	width: 16px;
	height: 16px;

	background: url('/img/login_w.svg') no-repeat center;
	background-size: contain;

	transform: translateY(-50%);
}

.m-login {
	margin-bottom: 50px;
}
.m-login > a {
	margin-right: 5px;
	padding-right: 5px;
	border-right: 1px solid #ddd;
}
.m-login > a:last-child {
	border-right: 0;
}
.mo-menu .deps1 {
	width: 100%;
    height: 100%;
    padding: 20px 0;
	/*border-bottom: 1px solid rgba(255, 255, 255, 0.3);*/
	cursor: pointer;
}
.mo-menu .deps1:first-child {
	padding-top: 0;
}
.mo-menu .deps1 a {
	display: block;
	padding: 0;
	line-height: initial;
	color: var(--white-color);
	letter-spacing: 0.5px;
	opacity: 0.8;
}
.mo-menu .deps1 > a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 30px;
	font-weight: 500;
}
.mo-menu .deps1 > a .mArrow, .mo-menu .deps2 a .mArrow {
	float: right;
	margin-top: 12px;
	vertical-align: bottom;
	transition: all .4s ease-in;
}
/*
.mo-menu .deps1 > a.active .mArrow {
	transform: rotate(180deg);
}
*/
.mo-menu .deps1 > a.active {
	color: #00adec;
}
.mo-menu .deps1 span:first-child {
	display: block;
	font-size: 24px;
	font-weight: 500;
}
.mo-menu .deps1 span:last-child {
	display: none;
	font-size: 24px;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.5px;
	/*transform: rotate(0deg);*/
	transition: all .3s ease-in;
}
.mo-menu .deps1 > a.on span:first-child {
	display: none;
}
.mo-menu .deps1 > a.on span:last-child {
	display: block;
}
/*
.mo-menu .deps1:hover span:last-child {
	transform: rotate(360deg);
}
*/
.mo-menu .deps2 {
	display: none;
}
.mo-menu .deps2 li {
	width: 100%;
	display: block;
}
.mo-menu .deps2 a {
	margin: 14px 0;
	font-size: 20px;
}
.mo-menu .deps2 li:last-child a {
	margin-bottom: 0;
}
.mo-menu .deps2 .add > a {
	padding: 10px 0 4px;
    margin: 0;
}
.mo-menu .deps1 > a:after {
	content: "";
	display: block;
	clear: both;
}
.h-right {
	display: flex;
	align-items: center;
}
.tel {
	display: inline-block;
	margin-right: 25px;
	font-size: var(--font-basic);
	font-weight: bold;
	color: var(--primary-color);
}
.cont-btn {
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
	/*width: 136px;
	height: 44px;*/
	font-size: var(--font-small);
	color: var(--primary-color);
	/*border-radius: 25px;
	border: 1px solid var(--primary-color);
	background: var(--white-color);*/
	overflow: hidden;
	cursor: pointer;
	transition: all .3s ease-in;
}
.cont-btn:hover {
	font-weight: bold;
	background: #f5f5f5;
}
/****************** ����� �޴� ******************/


/****************** �ܹ��� �޴� ******************/
.ham-btn {
	display: none;
	position: absolute;
	top: 50%;
    right: 0;
	transform: translateY(-50%);
    z-index: 99;
}
.btn-in {
	display: block;
	position: relative;
	width: 26px;
    height: 18px;
	cursor: pointer;
}
.close .btn-in, .close .btn-in span {
	display: inline-block;
	box-sizing: border-box;
}
.btn-in span, .close .btn-in span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	border-radius: 0;
}
#header.white .btn-in span {
	background-color: var(--white-color);
}

#header.scroll .btn-in span, #header.hover .btn-in span {
	background-color: var(--white-color);
}
.btn-in.active.revers span {
	background: #fff;
}
header.basic .btn-in span, header.active .btn-in span, .header:hover .btn-in span, .close .btn-in span, #header.basic .btn-in span  {
	background-color: var(--black-color);
}
.btn-in span:nth-of-type(1), .close .btn-in span:nth-of-type(1) {
	top: 0;
}
.btn-in span:nth-of-type(2), .close .btn-in span:nth-of-type(2) {
	top: 9px;
}
.btn-in span:nth-of-type(3), .close .btn-in span:nth-of-type(3) {
	bottom: 0;
}
.btn-in span:nth-of-type(3) {
	bottom: -2px;
}
.btn-in.active span:nth-of-type(1), .close .btn-in span:nth-of-type(1) {
	-webkit-transform: translateY (10px) rotate (-45deg);
	transform: translateY(10px) rotate(-45deg);
	background: var(--white-color);
}
.btn-in.active span:nth-of-type(2), .close .btn-in span:nth-of-type(2) {
	opacity: 0;
}
.btn-in.active span:nth-of-type(3), .close .btn-in span:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
	background: var(--white-color);
}

.close-btn {
	position: fixed;
	top: 24px;
    right: 5%;
    z-index: 99;
}
/****************** �ܹ��� �޴� ******************/


/****************** Ǫ�� ******************/
footer.section {
	position: relative;
	padding: 0 0 50px 0;
	border-top: 1px solid #dbdbdb;
}
footer .wrap-in {
	justify-content: space-between;
}


footer .top {
	display: flex;
	justify-content: space-between;
	height: 80px;
}
footer .top ul {
	display: flex;
	align-items: center;
	gap: 15px;
}
footer .top li {
	font-size: var(--font-footer);
	color: var(--black-color);
}
footer .top li span {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--gray-color);
}


footer .line {
	width: 100%;
	height: 1px;
	background: var(--gray-color);
}

footer .bottom { margin-top: 40px; }

footer .left img {
	margin-bottom: 20px;
}
footer .f-info {
	flex-wrap: wrap;
	gap: 0 22px;
	font-size: var(--font-footer);
    line-height: 2;
	letter-spacing: 0.02rem;
}

footer .f-info span {
	display: inline-block;
	margin-right: 22px;
	color: #d1a779;
}
footer .f-info:last-child li {
	letter-spacing: 0.03em;
}
footer .right .flex {
	justify-content: end;
	gap: 30px;
}
footer .right li {
	cursor: pointer;
}
footer .btn-o {
	display: flex;
    align-items: center;
    justify-content: center;
	margin: 15px 0 0 auto;
    width: 100px;
    height: 40px;
    background: #6b6660;
	font-size: var(--font-footer);
	color: var(--white-color);
	cursor: pointer;
	transition: all .3s ease-in;
}
footer .btn-o:hover {
	background: #6f6b67;
}
footer .copy {
	display: block;
	margin-top: 30px;
	font-size: var(--font-footer);
	line-height: 1.4;
	text-align: right;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.03em;
}

.floating-btn.call {
	display: none;
	bottom: 80px;
	background: var(--primary-color);
}
/* 2024-12-18 sean
.floating-btn {
	position: fixed;
	right: 30px;
	bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 130px;
	height: 44px;
	background: var(--primary-color);
	border-radius: 30px;
	font-size: var(--font-small);
	color: var(--white-color);
	cursor: pointer;
	z-index: 9;
	transition: all .3s ease-in;
}

.floating-btn:hover {
	background: var(--primary-h-color);
}
*/
.floating-btn {
	position: fixed;
	right: 30px;
	bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 130px;
	height: 44px;
	background: var(--orange-color);
	border-radius: 30px;
	font-size: var(--font-small);
	color: var(--white-color);
	cursor: pointer;
	z-index: 999;
	transition: all .3s ease-in;
}

.floating-btn:hover {
	background: var(--orange-h-color);
}

.floating-btn.top-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50px;
	border: 1px solid rgba(255,255,255,0.2);
	bottom: 50px;
	background: var(--primary-color);
	transform: translateY(-50px);
	visibility: hidden;
	opacity: 0;
	transition: transform .5s ease-in;
}
.floating-btn.top-btn img {
	width: 14px;
}
.floating-btn.top-btn:hover {
	background: #24348f;
}
.floating-btn.top-btn.on {
	transform: translateY(0px);
	visibility: visible;
	opacity: 1;
}

/* floating-quick new  */
.quick-menu{
	position:fixed;
	right:30px;
	bottom:50px;
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:12px;
	z-index:999;
}

.quick-menu .quick-btn{
	display:flex;
	align-items:center;
	justify-content:center;

	color:#fff;
	text-decoration:none;
	border:0;
	cursor:pointer;
	transition:all .3s ease;
}

.quick-menu .remote-btn{
	flex-direction:column;
	width:74px;
	height:74px;
	gap:3px;
	border-radius:50%;
	font-size:13px;
	line-height:1.1;
	background:#00b0dd;
}

.quick-menu .remote-btn:hover{
	background:#02bcec;
}

.quick-menu .remote-btn .quick-icon{
	display:flex;
	align-items:center;
	justify-content:center;
}

.quick-menu .remote-btn .quick-icon svg {
	width: 20px;
	height: 20px;
}

.quick-menu .top-btn{
	width:74px;
	height:74px;
	border-radius:50%;
	opacity:0;
	visibility:hidden;
	transform:translateY(20px);
	background:#00000073;

	transition: transform .5s ease-in;
}

.quick-menu .top-btn.on{
	opacity:1;
	visibility:visible;
	transform:translateY(0);
}

.quick-menu .top-btn img{
	width:14px;
}




.contact {
	background: #f8f8f8;
}
.contact .sec-in {
	padding: 170px 0;
}
.contact .sec-title, .contact .sec-txt {
	text-align: center;
}
.contact .sec-txt p span {
	display: block;
}
.contact .form {
	flex-wrap: wrap;
}
.contact .form > li {
	display: flex;
	align-items: center;
	width: calc(50% - 20px);
	margin: 10px 0;
	box-sizing: border-box;
}
.contact .form > li:nth-child(odd) {
	margin-right: 40px;
}
.contact .form > li > span {
	position: relative;
	display: inline-block;
	min-width: 150px;
	font-size: var(--font-basic);
}
.contact .form > li span span {
	display: inline-block;
    margin-left: 8px;
	position: absolute;
    top: 0;
	font-size: 8px;
	color: var(--primary-color);
}
.contact .form > li input[type='text'] {
    width: 100%;
    height: 54px;
	background: #edeae7;
    box-sizing: border-box;
    padding: 10px;
    font-size: var(--font-small);
	border: none;
}
.contact .w-50 {
	width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
	box-sizing: border-box;
}
.contact .w-50 li {
    position: relative;
    width: 49%;
    cursor: pointer;
}
.contact select {
    width: 100%;
    height: 54px;
    padding: 0 10px;
    font-size: var(--font-small);
    background: url("../img/main/down.png") no-repeat right 10px top 21px, #edeae7;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background-size: 12px;
	border: none;
}
.contact .w-50 input[type="radio"] + label span {
    display: inline-block;
	margin-top: -18px;
    width: 100%;
    height: 54px;
    line-height: 54px;
    text-align: center;
    font-size: var(--font-small);
    color: #a09d9b;
    background: #eee;
    box-sizing: border-box;
    cursor: pointer;
}
.contact .w-50 input[type="radio"]:checked + label span {
    border: 1px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
    font-weight: 500;
}
.contact .form > li.full {
	width: 100%;
}
.contact .form > li.full:nth-child(odd) {
	margin-right: 0;
}
.contact .form > li.full textarea {
    padding: 10px;
	width: 100%;
    height: 160px;
    font-size: var(--font-small);
	background: #edeae7;
    box-sizing: border-box;
	border: none;
}
.contact .check {
	padding-left: 150px;
}
.contact .check label {
	font-size: 15px;
}
.contact .check input[type="checkbox"] {
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    margin-right: 5px;
    width: 20px;
    height: 20px;
	background: #edeae7;
    outline: none;
    vertical-align: middle;
    cursor: pointer;
}
.contact .check input[type="checkbox"]:checked {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}
.contact .check input[type="checkbox"]:checked::before {
    content: "\2713";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(1) translate(-50%, -50%);
}
.contact .btn-wrap {
	text-align: center;
}
.contact button {
	margin: 60px auto 0;
	width: 260px;
	height: 64px;
	background: var(--primary-color);
	font-size: var(--font-medium);
	color: var(--white-color);
	transition: all .3s;
}
.contact button:hover, .contact button:focus, .contact button:active {
	background: var(--primary-h-color);
}
.contact .sec-in .sec-l-title {
	text-align: center;
}
.contact .sec-in.on .hidden .sec-l-title, .contact .sec-in.on .hidden .sec-title, .contact .sec-in.on .hidden .sec-txt {
	transform: translateY(0);
	opacity: 1;
    visibility: visible;
}
/****************** Ǫ�� ******************/

.btn-wrap { display: flex; justify-content: center; }

.btn-wrap a {
	position: relative;
	display: inline-block;
	padding: 10px 25px;
	width: 190px;
	height: 60px;
	border: 1px solid #fff;
	border-radius: 30px;
	font-size: 1.4rem;
	font-weight: 500;
	color: #fff;
	transition: 0.2s linear;
	z-index: 100;
	font-size: var(--font-small);
}
.btn-wrap a span{
	line-height: 37px;
}


.btn-wrap a:after {
	content: '';
	width: 22px;
	height: 14px;
	position: absolute;
	right: 23px;
	top: 50%;
	transform: translateY(-50%);
	background: url(/img/ico_arrow.svg) no-repeat;
	transition: 0.2s linear;
}

.btn-wrap a:hover {
	background-color: var(--primary-color, #853625);
	color: rgb(255, 255, 255);
	border: 1px solid var(--primary-color, #853625);
}

.btn-wrap a:hover:after {
	width: 37px;
	background: url(/img/ico_arrow_hover.svg) no-repeat;
}

.paging {
	display: flex;
	justify-content: center;
	margin: 80px auto 0;
	gap: 10px;
}
.paging a {
	margin: 0 10px;
	font-size: var(--font-body1);
	opacity: 0.7;
	cursor: pointer;
}
.paging li.on a {
	font-weight: 800;
	color: var(--primary-color);
	opacity: 1;
}
@media all and (max-width:1501px){
	#header.white .logo a, #header.white.basic .logo a {background-size: 160px;}

}

@media all and (max-width:1281px){
	/*#header > .sec-in { width:98% !important; height: 90px; }*/

	#header #gnb { width: calc(100% - 270px); }
	#header.white .logo {width: 270px;}
	#header.white .logo a, #header.white.basic .logo a {background-size: 160px;}

	#header.white .logo a { background-image: url("../img/logo_w.svg");}
	#header.hover .logo a, #header.scroll .logo a { background-image: url("../img/logo.svg");}
	#header.white.hover .logo a { background-image: url("../img/logo.svg");}
	#header.white.hover.scroll .logo a { background-image: url("../img/logo.svg");}


	#header.scroll .btn-in span {
		background-color: var(--black-color);
	}


	#header #gnb > ul > li > ul { top: 61px; }
	#header #gnb > ul > li > a { padding: unset; }
	#header #gnb > ul > li:last-child > a { padding-left: 8px; }

	/*.logo a, .menu-wrap .logo a {width: 160px; background-size: 160px;}*/
	
	.contact .sec-in {padding: 120px 0;}
	.cont-btn {width: 120px;}
	.cont-btn img {width: 10px;}
	.tel {margin-right: 15px;}
}


@media all and (max-width:1025px) {
	.contact .sec-in {padding: 90px 0;}
	.contact .form > li {width: 100%;}
	.contact .form > li:nth-child(odd) {margin-right: 0;}

	#header #gnb { width: calc(100% - 270px); }
	#header.white .logo {width: 270px;}
	#header.white .logo a, #header.white.basic .logo a {background-size: 180px;}

	#header.white:not(.basic) .logo a, #header.hover:not(.basic) .logo a, #header.white.hover:not(.basic) .logo a { background-image: url("../img/logo_w.svg");}
	#header.scroll .logo a { background-image: url("../img/logo.svg") !important;}

	#gnb, .header-top {display: none;}
	.ham-btn {display: block;}
	.cont-btn {display: none;}
	.tel {margin-right: 50px;}
	.mo-menu .deps1 > a.cont-btn.mobile {width: 150px;position: absolute; bottom: 50px; left: 50%; justify-content: center; transform: translateX(-50%); color: var(--primary-color); z-index: 99;}
	.mo-menu .deps1:last-child {border-bottom: none;}

	#header .header-right { display: none; }

	#header.hover .menu-bg { display: none; }
	#header.hover #gnb > ul > li > ul { display: none; }

	#footer .left, #footer .right {float: none;}
	footer .right .flex {margin-top: 20px; justify-content: start; gap: 20px;}
	footer .copy {margin-top: 30px; text-align: left;}

	.btn-wrap a { width: 150px; height: 50px; padding: 5px 25px; }


	.quick-menu{
		right:20px;
		bottom:40px;
		gap:14px;
	}

	.quick-menu .remote-btn, .quick-menu .top-btn{
		width:66px;
		height:66px;
		font-size:14px;
	}
}

@media all and (max-width:768px) {
	#header > .sec-in {height: 80px;}
	.contact .form > li > span {min-width: 100px;}
	.contact .check {padding-left: 100px;}
}

@media all and (max-width:641px) {
	.contact button {width: 200px; height: 58px;}
	#header > .sec-in {height: 60px;}
	#header.white .logo {width: 240px;}
	#header.white .logo a, #header.white.basic .logo a {background-size: 145px;}
	/*
	.floating-btn {width: 40px; height: 40px; border-radius: 10px;}
	.floating-btn img {width: 24px;}
	.floating-btn.call {display: flex;}
	*/

	.sec-4 .sec-in { padding: 30px 0; }
	.sec-4 .contents { flex-direction: column; align-items: center; }
	.sec-4 .contents > div:first-child{ margin-bottom: 20px; }
	.sec-4 .contents > div+div { margin-left: inherit; }

	.contact .form > li {flex-direction: column; align-items: baseline;}
	.contact .form > li > span {display: block; margin-bottom: 10px;}
	.contact .check {padding-left: 0;}

	.floating-btn.top-btn {width: 44px; height: 44px; bottom: 54px;}
	.floating-btn.top-btn img {}

	.quick-menu{
		right:15px;
		bottom:24px;
		gap:10px;
	}

	.quick-menu .remote-btn, .quick-menu .top-btn{
		width:56px;
		height:56px;
		font-size:12px;
	}

	.quick-menu .remote-btn .quick-icon svg {
		width: 15px;
		height: 15px;
	}

	.quick-menu .top-btn img{
		width:12px;
	}
}