/* Root */
:root {
	--transition-basic:all .3s;
	--transition-custom:all .4s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-custom2:all 1s ease-in-out;
	--transition-custom3:all 1.5s ease;
	--vh:1vh;
}

/* Reset */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	color: #191919;
	font-family: "Poppins", "Pretendard", sans-serif;
	font-size: 62.5% !important;
	letter-spacing: -0.006em;
	word-break: keep-all;
	word-wrap: break-word;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	-webkit-tap-highlight-color : transparent !important;
	animation:entry .4s ease forwards;
  opacity: 0;
}

html::-webkit-scrollbar {
	display: none;
}

html {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

body {
	font-size: 1.6rem;
}

a {
	color: inherit;
	outline: none;
	text-decoration: none;
}

ol, ul {
	list-style: none;
}

b, strong {
	font-weight: 700;
}

img {
	max-width: 100%;
	display: inline-block;
}

button {
	font-family: inherit;
	border: none;
	outline: none;
	cursor: pointer;
	color: inherit;
	-webkit-appearance: none;
	background: none;
}

select {
	outline: none;
	border: 1px solid transparent;
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
}

input, textarea {
	font-family: inherit;
	outline: none;
	border: 1px solid transparent;
}

:focus {
	outline: none;
}

::placeholder {
	color:#898989;
}

em, i {
	font-style: normal;
}

@-webkit-keyframes entry {
	to{opacity: 1;}
}

@keyframes entry {
	to{opacity: 1;}
}

@media screen and (max-width:1400px) {

}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Hidden */
.hidden {
	overflow: hidden;
}


/* Ellip */
.ellip {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}


/* Blind */
.blind {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}


/* Display */
.d-block {
	display: block;
}


/* Position */
.position-relative {
	position: relative;
}


/* Container */
.container {
	max-width: 1400px;
	width: 93.75%;
	margin: 0 auto;
	position: relative;
}

.container.w1720{
	max-width: 1720px;
}

/* Weight */
.w100 {
	weight: 100%;
}

/* Height */
.h100 {
	height: 100%;
}


/* Main */
#main {
  /* min-height: calc(100vh - 280px);
	overflow: hidden; */
}

@media screen and (max-width:1400px) {

}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* 헤더 */
/*header*/
#header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 101;
}

#header .container{
	display: flex;
	justify-content: center;
}

#header .logo img{
	filter: invert(1) brightness(0) invert(1);
	display: block;
}

#header .glo-box{
	position: relative;
}
#header .glo-box .glo-btn img{
	filter: invert(1) brightness(0) invert(1);
	display: block;
}

#header .head-air{
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#header .gnb{
	position: relative;
	z-index: 11;
}
#header .gnb > ul{
	display: flex;
	align-items: center;
	justify-content: center;
}

#header .gnb > ul > li {
	position: relative;
}

#header .gnb > ul > li > a{
	padding: 40px;
	display: block;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 600;
	text-transform: uppercase;
}

#header .depth02{
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.6rem;
	color: #444;
	width: 100%;
	text-align: center;
	padding: 10px 0;
}
#header .depth02 li a{
	padding: 15px 0;
	display: block;
}

#header .right-btn{
	display: flex;
	gap: 35px;
}

#header .glo-box .glo-list{
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	border-radius: 10px;
	background-color: #fff;
}

#header .glo-box .glo-list a{
	display: block;
	padding: 7px 20px;
	font-size: 1.6rem;
	font-weight: 800;
	color: #000;
}

#header .glo-box .glo-list .on a{
	color: #0051C7;
}
#header .ham-box{cursor: pointer;}

#header .ham-line {
	display:flex;
	position: relative;
	width: 24px;
	height: 24px;
	justify-content: flex-end;
	align-items: center;
}

#header .ham-line span,
#header .ham-line span::before,
#header .ham-line span::after {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
}


#header .ham-line span::before,
#header .ham-line span::after {
  content: '';
  position: absolute;
	right: 0;
}

#header .ham-line span {
	width: 18px;
	margin-left: auto;
	margin-right: 0;
}

#header .ham-line span::before {
  margin-top: -10px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
	transition-delay: 0.2s, 0s;
}

#header .ham-line span::after {
  margin-top: 10px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
	transition-delay: 0.2s, 0s;
}

#header.active .ham-line span {
  background-color: rgba(0, 0, 0, 0) !important;
  transition-delay: 0.2s;
}

#header.active .ham-line span::before {
	margin-top: 0;
	transform: rotate(45deg);
	transition-delay: 0s, 0.2s;
}

#header.active .ham-line span::after {
	margin-top: 0;
	transform: rotate(-45deg);
	transition-delay: 0s, 0.2s;
}

#header.active {
	background-color: #fff;
}
#header.active .logo img,
#header.active .glo-box .glo-btn img{
	filter: none;
}

#header.active .ham-line span,
#header.active .ham-line span::before,
#header.active .ham-line span::after {
	background-color: #222;
}

#header.active .gnb > ul > li > a{
	color: #222;
}
#header.active .header-bg{
	border-top: 1px solid #eee;
	position: absolute;
	width: 100%;
	top: 100%;
	left: 0;
	height: 450px;
	background-color: #fff;
	content: '';
}


/*moblie*/
#header .m_btn {
  display: none;
  width: 24px;
  margin: 0 auto;
  text-align: right;
  cursor: pointer;
}

#header .m_btn i {
  display: inline-block;
  width: 100%;
  height: 2px;
  margin: 3px 0;
  background: #000;
  transition: all 0.5s;
}

#header .m_btn i:nth-of-type(2) {
  width: 84%;
}

#header .m_btn.on i:nth-of-type(1) {
  margin: 11px 0 -2px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

#header .m_btn.on i:nth-of-type(2) {
  width: 0;
  margin: 0;
}

#header .m_btn.on i:nth-of-type(3) {
  margin: 0 0 11px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.m_menu_bg {
  z-index: 101;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  cursor: pointer;
}

.m_menu {
  z-index: 102;
  position: fixed;
  right: -100%;
  top: 0;
  width: 500px;
  max-width: 80%;
  height: 100%;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.5s;
  overflow-y: auto;
}

.m_menu.on {
  right: 0;
}

.m_menu .top_box {
  position: relative;
  padding: 10px;
  box-sizing: border-box;
}

.m_menu .top_box .close_btn {
  position: absolute;
  right: 20px;
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
}

.m_menu .top_box .close_btn i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
}

.m_menu .top_box .close_btn i:first-of-type {
  -webkit-transform: rotate(45deg) translate(9px, 9px);
  -moz-transform: rotate(45deg) translate(9px, 9px);
  -ms-transform: rotate(45deg) translate(9px, 9px);
  -o-transform: rotate(45deg) translate(9px, 9px);
  transform: rotate(45deg) translate(9px, 9px);
}

.m_menu .top_box .close_btn i:last-of-type {
  -webkit-transform: rotate(-45deg) translate(-7px, 8px);
  -moz-transform: rotate(-45deg) translate(-7px, 8px);
  -ms-transform: rotate(-45deg) translate(-7px, 8px);
  -o-transform: rotate(-45deg) translate(-7px, 8px);
  transform: rotate(-45deg) translate(-7px, 8px);
}

.m_menu .login_box {
  padding: 20px 0;
  background-color: #292929;
  text-align: center;
}

.m_menu .login_box a {
  position: relative;
  padding: 0 30px;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.04em;
}

.m_menu .login_box a:first-of-type:before {
  content: '';
  position: absolute;
  right: -1px;
  top: calc(50% - 7px);
  width: 2px;
  height: 15px;
  background-color: #fff;
}

.m_menu .gnb_box {
  border-top: 1px solid #ddd;
}

.m_menu .gnb_box > ul > li {
  border-bottom: 1px solid #dddddd;
}

.m_menu .gnb_box > ul > li > a {
  position: relative;
  display: block;
  padding: 20px 20px;
  font-size: 20px;
  font-weight: bold;
  color: #222222;
  letter-spacing: -0.04em;
  box-sizing: border-box;
}

.m_menu .gnb_box .depth02 {
  display: none;
  padding: 10px 0;
  background-color: #000;
}

.m_menu .gnb_box .depth02 li a {
  position: relative;
  display: block;
  padding: 7px 20px;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.04em;
  box-sizing: border-box;
}

@media all and (max-width: 1024px) {
  #header .m_btn {
    display: inline-block;
  }
  #header .gnb {
    display: none;
  }
}