@charset "utf-8";
@import url('https://cdn.rawgit.com/moonspam/NanumSquare/master/nanumsquare.css');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* 
 font-family: "Kaushan Script", cursive;
 font-family: "Montserrat", sans-serif;
*/

body {
  font-family: 'Montserrat', 'NanumSquare', sans-serif;
  color: #222;
}

.container {
  width: 1280px;
  margin: 0 auto;
  display: flex;
}


/* header */
header {
  width: 100%;
  height: 80px;
  color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
  z-index: 10;
  border-bottom: 1px solid #dfdfdf;
}

/* 스크롤 시 기본 흰색 */
header.scroll {
  background-color: #fff;
}

header.on {
  background-color: transparent;
}

header.hide {
  transform: translateY(-100%);
}

/* 다시 나타날 때 배경 컬러 */
header.show {
  background-color: rgba(255, 255, 255, 0.8);
  /* 원하는 컬러 */
}

header>.container {
  justify-content: space-between;
  height: 100%;
}

header h1 {
  width: 130px;
  height: 100%;
  display: flex;
  align-items: center;
}

header ul.gnb {
  width: 850px;
  height: 100%;
  display: flex;
  justify-content: space-around;
}

header ul.gnb>li {
  flex: 1;
  position: relative;
}

header ul.gnb>li>a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #222;
}

header ul.gnb>li>.depth {
  position: absolute;
  width: 50%;
  display: none;
  color: #222;
}

header ul.gnb>li:hover>.depth {
  display: block;
}


header ul.gnb>li>ul {
  width: 100%;
  position: absolute;
  left: 25%;
  top: 80px;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 15px;
}

header ul.gnb>li>ul>li {
  height: 35px;
  line-height: 35px;
  text-align: center;
}

header ul.gnb>li>ul>li:hover>a {
  font-weight: bold;
}


header .h_right {
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

header .h_right a i {
  width: 100%;
  height: 100%;
  color: #fff;
}

header .h_right ul.down {
  position: absolute;
  left: 0;
  top: 75px;
  width: 50px;
  height: 100px;
  text-align: center;
  padding-top: 5px;
  background: #222;
  cursor: pointer;
  display: none;
}

header .h_right:hover ul.down {
  display: block;
}

header .h_right ul.down>li:hover>a {
  font-weight: bold;
}

header .h_right ul.down li {
  height: 30px;
  line-height: 30px;
  color: #fff;
}

.company-wrap {
  flex-direction: column;
  padding-top: 80px;
}

/* VISUAL */
.visual {
  width: 100%;
  height: 500px;
  background: url('../img/company_tit_img.png') center/cover no-repeat;
  position: relative;
}

.visual-text {
  height: 100%;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.visual-text h2 {
  font-size: 65px;
  font-weight: 700;
}

/* ABOUT */
.about {
  padding: 150px 0 120px 0;
  flex-direction: column;
}

.section-title {
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 60px;
}

.about-txt {
  font-size: 18px;
  line-height: 32px;
  color: #222;
}

/* slogan */
.slogan-txt {
  width: 100%;
  font-size: 95px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 40px;
  color: #f8F8F8;
}

/* VISION & MISSION */
.vm {
  width: 100%;
  display: flex;
  padding: 120px 0;
  background-color: #f8f8f8;
}

.section-title {
  flex: 1;
}

.vm-left h2 {
  font-size: 28px;
}

.vm-right {
  flex: 1;
}

.vm-box {
  margin-bottom: 60px;
}

.vm-box:nth-child(2) {
  margin-bottom: 0;
}

.vm-box h4 {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}

.vm-box h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 475px;
  height: 1px;
  background: #ddd;
}

.vm-box p {
  font-size: 18px;
  color: #666;
}

/* CORE VALUE */
.core {
  padding: 120px 0 180px 0;
  text-align: center;
}

.core h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 50px;
}

.core-txt {
  font-size: 20px;
  line-height: 30px;
  margin: 0 auto 120px;
  color: #222;
}

.core-txt span {
  display: block;
  margin-top: 10px;
  color: #222;
}

.core-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.core-item {
  width: 600px;
  display: flex;
}

.core-item img {
  width: 60px;
  height: 60px;
}

.core-item .right-txt {
  margin-left: 20px;
  text-align: left;
}

.core-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.core-item p {
  font-size: 16px;
  line-height: 26px;
  color: #666;
  position: relative;
  padding-left: 10px;
}

.core-item .right-txt p::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
}


/* footer */
footer {
  width: 100%;
  height: 100%;
  background-color: #222;
}

footer .container {
  color: #fff;
  font-size: 14px;
  display: block;
}

footer .container .f_top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  padding-top: 50px;
}

footer .container .f_top .f_left ul {
  display: flex;
  flex-direction: row;
}

footer .container .f_top .f_left ul li {
  display: flex;
}

footer .container .f_top .f_left ul li p {
  padding-right: 50px;
}

footer .container .f_top .f_left ul li p span {
  font-weight: 700;
}

footer .container .f_top .f_right a b {
  font-weight: 800;
}


footer .container .f_bottom {
  padding-top: 15px;
  padding-bottom: 50px;
  border-top: 1px solid #666;
}