@charset "utf-8";

@font-face {
  font-family: 'netmarbleB';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.1/netmarbleB.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* 넷마블 B */

@font-face {
  font-family: 'netmarbleM';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.1/netmarbleM.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* 넷마블 M */

/* noto sans */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

/* noto sans */

* {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  list-style: none;
}

.inner {
  width: 1200px;
  margin: 0 auto;
}

body {
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

@keyframes up-down {
  from {
    transform: translatey(0px);
  }

  to {
    transform: translatey(-30px);
  }
}

/* ALL SET */

header {
  width: 100%;
}

header .top_navi {
  width: 100%;
  height: 120px;
  position: absolute;
  font-family: 'netmarbleB';
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 1000;
}

header nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header nav h1 a img {
  width: 120px;
}

header nav ul {
  display: flex;
  font-size: 17px;
}

header nav ul li {
  padding: 15px 40px;
}

header nav ul li:last-child {
  width: 160px;
  padding: 10px 0px;
  margin-left: 75px;
  border: 3px solid transparent;
  border-radius: 30px;
  background-image: linear-gradient(#311a4c, #311a4c), linear-gradient(to left, #4fe040, #40e0d0);
  background-origin: border-box;
  background-clip: content-box, border-box;
  text-align: center;
  padding: 0;
  line-height: 51px;
  box-sizing: border-box;
  transition: all 0.3s;
}

header nav ul li:last-child:hover {
  border: 3px solid transparent;
  background: linear-gradient(to left, #4fe040, #40e0d0);
}

/* header_nav */


/* footer */
footer {
  width: 100%;
  height: 220px;
  position: relative;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #323232;
  color: #fff;
  border-top: 3px solid rgba(255, 255, 255, 0.3);
}

.footer_cont {
  display: flex;
  align-items: center;
  font-size: 15px;
}

.footer_adress {
  display: flex;
}

.footer_adress div {
  padding-right: 30px;
}

.footer_text {
  padding-left: 120px;
}

footer div:nth-child(1) img {
  width: 120px;
}

footer button {
  display: black;
  width: 8%;
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 5px 5px;
  outline: none;
  margin-left: 18%;
}

@media (max-width:640px){
  .footer_cont {
    justify-content: space-between;
  }
  footer button {
    display: block;
  }
}

footer .copy_right {
  width: 1200px;
  margin: 0 auto;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
  padding-top: 20px;
}

/* banner */
.banner {
  width: 100%;
  height: 500px;
  background: url(../images/sub03_main_bg.png);
  position: relative;
}

.banner img {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* banner */

/* aside */
aside div {
  position: fixed;
  bottom: 20px;
  right: 60px;
  z-index: 5000;
  animation: up-down 1.5s infinite ease-in-out alternate;
}

aside div img {
  width: 80px;
}
/* aside */

/* section01 */
.sec01 {
  position: relative;
  margin-bottom: 150px;
}

.sec01>div:nth-child(1) {
  margin-top: 120px;
}

.sec01 ul {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  /* right: -800px; */
  margin-left: 150px;
}

.sec01 ul li {
  margin-left: 104px;
  margin-top: 100px;
  transition: all 0.8s;
}

.sec01 ul li:hover {
  transform: scale(1.08);
}

.sec01_bg_cont div{
  position: absolute;
}

.sec01_bg_cont div:nth-child(1) {
  top: 780px;
  left: 120px;
  animation: up-down 1.3s infinite ease-in-out alternate;
}

.sec01_bg_cont div:nth-child(2) {
  bottom: 750px;
  left: 580px;
  animation: up-down 1.3s infinite ease-in-out alternate;
}
/* section01 */

/* section02 */
.sec02 {
  width: 100%;
  position: relative;
  bottom: -4px;
}

.sec02 div:nth-child(1) img {
  width: 100%;
}

.sec02_bg_cont {
  position: absolute;
  top: -200px;
  left: 300px;
  animation: up-down 1.3s infinite ease-in-out alternate;
}
/* section02 */