@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 rgba(255, 255, 255, 0.2);
}

header.on {
  background-color: transparent;
}

header.hide {
  transform: translateY(-100%);
}

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: #fff;
}

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;
}

/* .main_visual */
.main_visual {
  width: 100%;
  height: calc(100vh - 40px);
  display: flex;
  position: relative;

}

.main_visual ul.slide li {
  width: 100%;
  height: 100%;
  background-size: cover;
  display: flex;

}

/* AstellnKern */
.main_visual ul.slide li.main_visual1 {
  background-image: url(../img/main_bnr_4.png);
}

/* IRIVER */
.main_visual ul.slide li.main_visual2 {
  background-image: url(../img/main_bnr_2.png);
}

/* ACTIVO */
.main_visual ul.slide li.main_visual3 {
  background-image: url(../img/main_bnr_5.png);
}

.main_visual ul.slide li .container a {
  width: 100%;
  height: 100%;
  display: block;

}

.main_visual ul.slide li .container a .main_txt {
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;

}

.main_visual ul.slide li .container a .main_txt p {
  font-size: 30px;
  padding-bottom: 50px;

}

.main_visual ul.slide li .container a .main_txt h3 {
  font-size: 70px;
  font-weight: 600;
  padding-bottom: 20px;
  line-height: 75px;
}

.main_visual ul.slide li .container a .main_txt span {
  font-size: 18px;
  line-height: 32px;
  /* padding-top: 10px; */

}


/* 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;
}


.swiper-button-next:after,
.swiper-button-prev:after {
  color: #fff;
}

.swiper-button-next:after {
  padding-right: 50px;
  font-size: 40px;
}

.swiper-button-prev:after {
  padding-left: 50px;
  font-size: 40px;
}