@charset "utf-8";
@import url("common.css");
@import url("main.css");

@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@1,400;1,500;1,600;1,700&display=swap');



* {margin: 0; padding: 0;}
* {box-sizing: border-box;}
* ::selection {background: #fff;}
li {list-style: none;}
a {text-decoration: none; color: #333;}
html {
  scroll-behavior: smooth;
}

/* cursor */
/* cursor */
/* cursor */

.cursor {
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 1000;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition-property: background, transform;
  transform-origin: 100% 100%;
  background-size: cover;
  border-radius: 100px;
  background-color: rgba(0, 0, 0, .3);
  transition: all 50ms ease-in-out;
  top: 0;
  left: 0;
}
.cursor-grow {
  transform: scale(2);
  background-color: var(--color-texta);
}
.cursor.link-grow {border: 0;}

/* header */
/* header */
/* header */

header {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.header {
  max-width: 1800px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
  font-family: 'Lato', sans-serif;
}
.header .logo {
  position: absolute;
  top: 38px;
  left: 12px;
  font-size: 20px;
  z-index: 9;
  color: #fff;
  cursor: pointer;
  animation: hinghing 10s linear infinite;
  transform-origin: 50% 50%;  
}
.header .gnb {
  transition: all .5s;
  float: right;
}
.header nav ul {
  text-align: left;
}
.header nav ul li {
  /* margin-bottom: 40px; */
  display: block;
  /* font-family: 'Quicksand', sans-serif; */
}
.header nav ul li a {
  display: inline-block;
  letter-spacing: 2px;
  transition: .5s;
  position: relative;
  z-index: 88;
}
/* .header nav ul li a span {position: relative;}
.header nav ul li a span::before {
  position: absolute;
  content:'';
  width: 0%;
  height: 3px;
  background-color: #F69069;
  opacity: 0;
  top: 19px;
  left: 0;
  transition: all .5s;
  transition: .5s;
}
.header nav ul li a span:hover::before {
  opacity: 1;
  width: 100%;
} */

/* nav effect */
/* nav effect */
/* nav effect */

nav a {
  position: relative;
  margin-bottom: 25px;
  transition: all .2s;
  overflow: hidden;
}
nav a::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -100%;
  width: 100%;
  height: 100%;
  /* background:rgba(255, 217, 0, 0.411); */
  /* background: #ffb6b6; */
  background: mintcream;
  z-index: 99;
  transition: all .4s cubic-bezier(0.7, 0, 0.3, 1);
}
nav a:hover::before {
  left: 100%;
}  
/* nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  margin-top: -2px;
  left: 100%;
  width: 100%;
  height: 2px;
  background:rgba(255, 217, 0, 0.89);
  transition: all .3s;
  transition-delay: .4s;
}
nav a:hover::after {
  left: 0%;
} */

.fixed {
  position: fixed;
  top: 0;
  right: 55px;
  margin-top: 40px;
  margin-bottom: 40px;
  transition: all .5s;
  z-index: 15;
}
.fixed .header nav ul li a::before {top: -4px;}

/* footer */
/* footer */
/* footer */

footer {
  /* background-color: #fff; */
  position: fixed;
  bottom: 13px;
  right: 62px;
  color: #333;
}
footer p {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;  
  font-weight: 500;
}
