/* Import Local SCSS file*/
/* Fontawesome */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");
/* Web fonts*/
/* NCLNeovibes-Demo */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "NCLNeovibes-Demo";
  src: url("../ncl_neovibes/NCLNeovibes-Demo.otf");
}
/* Noto+Sans+KR, Poppins */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 20px;
}

.inner {
  width: 1440px;
  margin: auto;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

button {
  cursor: pointer;
}

input {
  border: none;
}

li {
  padding: 0;
  list-style: none;
}

/* Font Family */
/* Font Size */
/* Gray Color*/
/* Object Color*/
/* box-shadow */
/* line */
/* padding & margin */
/* ############ Common CSS ############*/
* {
  font-family: "NCLNeovibes-Demo";
}

html {
  scroll-behavior: smooth;
}

.inner {
  width: 1440px;
  margin: auto;
}

.content-title {
  font-size: 2.4rem;
  font-family: "NCLNeovibes-Demo";
}

/* ############  section04(ABOUT) ############*/
.section04 {
  background: url(../images/section04-company.png) no-repeat;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.section04 .inner {
  height: 100vh;
  position: relative;
}
.section04 .inner .section04-title {
  margin-top: 130px;
  position: absolute;
  width: 100%;
}
.section04 .inner .section04-title span {
  font-family: "NCLNeovibes-Demo";
  color: #F34300;
  font-size: 200px;
  line-height: 0.8;
  letter-spacing: -5px;
}
.section04 .inner .section04-view-more {
  position: absolute;
  right: 0;
  top: 50%;
}
.section04 .inner .section04-view-more a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section04 .inner .section04-view-more a:hover img {
  -webkit-transform: translateX(-155px);
          transform: translateX(-155px);
}
.section04 .inner .section04-view-more a .arrow-wrap {
  width: 155px;
  overflow: hidden;
}
.section04 .inner .section04-view-more a .arrow-wrap img {
  margin-top: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.section04 .inner .section04-view-more a h4 {
  font-family: "NCLNeovibes-Demo";
  font-size: 1.8rem;
  color: #FFF;
  margin-left: 25px;
}

/* responsive Mobile */
@media (max-width: 767px) {
  * {
    font-size: 12px;
  }
  /* ############ Common CSS ############*/
  .inner {
    width: 90%;
  }
  /* ########## ABOUT ########## */
  .section04 .inner {
    width: 90%;
  }
  .section04 .inner .section04-title {
    width: 70%;
    position: absolute;
    margin-top: 0;
    top: 20%;
  }
  .section04 .inner .section04-title span {
    font-size: 66px;
  }
  .section04 .inner .section04-view-more {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
  .section04 .inner .section04-view-more a h4 {
    font-size: 18px;
  }
}