/* header start */
header{
  position: fixed;
  width:100%;
  height:100px;
  min-width:1400px;
  z-index: 9999;
  top:0;
  left:0;
  transition: all .3s ease-in-out;
  background-color:rgba(0, 0, 0, 0.4)
  /* border-bottom:1px solid #ccc; */
}
header.on{
  position: fixed;
  width:100%;
  min-width:1400px;
  top:0;
  left:0;
  background-color:rgba(0, 0, 0, 0.8);
  /* border-bottom:1px solid #ccc; */
}
header .logo h1{
  position: absolute;
  width:159px;
  height:29px;
  top:35px;
  left:0;
  transition:all .3s ease-in-out;
  background: url(../img/logo.png) 50% 50% no-repeat;
  background-size: 159px;
}
header .logo h1.on{background: url(../img/logo.png) 50% 50% no-repeat; background-size: 159px;}
header .logo h1 a{
  display: block;
  width:159px;
  height:29px;
}

/* header:hover{background-color: #fff; transition: all .3s ease-in-out;} */
header:hover .logo h1{background: url(../img/logo.png) 50% 50% no-repeat; background-size:159px; transition:all .3s ease-in-out;}
/* header:hover .gnb li a{color:#333;  transition:all .3s ease-in-out;} */

nav{
    width:100%;
    max-width:1400px;
    min-width:1400px;
    margin:0 auto;
    z-index: 999;
}
.gnb{
  font-size:0;
  width:100%;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: right;
  padding-right:200px;
}
.gnb > li{
  transition: all .2s ease-in-out;
  position: relative;
  text-align: center;
  display: table;
  margin-left:80px;
  height:100px;
}

.gnb > li:hover > a:before,
.gnb > li:hover > a:after{width:100%;}
.gnb > li > a.on{color:#fff;}

.gnb > li > a{
  vertical-align: middle;
  display: table-cell;
  color:#fff;
  font-size:18px;
  font-weight: 400;
  position: relative;
}
.gnb > li > a:before{content:'';
  display:block;
  width:0;
  height:2px;
  position: absolute;
  bottom:20px;
  left:50%;
  transform: translateX(-50%);
  background-color: #fa002d;
  transition: all .3s ease-in-out;
}
.sub_menu{
  font-size:0;
  display:none;
  position: absolute;
  z-index:99;
  top:100px;
  left:50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  border-bottom:3px solid #fa002d;
}
.sub_menu.on{
  background-color: rgba(0, 0, 0, 0.8);
}

.sub_menu a{
  font-size:16px;
  color:#fff;
  display: block;
  padding:5px 0;
  text-align: center;
  width:200px;
  transition: all .2s ease-in-out;
  position: relative;
  letter-spacing: -.5px;
  overflow: hidden;
}
.sub_menu a::before{
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 130%;
height: 200%;
border-radius: 50%;
transform: translate3d(-50%,-50%,0) scale3d(0,0,0);
transition: opacity .4s cubic-bezier(.19,1,.22,1),transform .75s cubic-bezier(.19,1,.22,1);
background-color: #fa002d;
opacity: 0;
z-index: -1;
transition: all .2s ease-in-out;
}
.sub_menu a:hover::before{
  opacity: 1;
  transition-duration: .85s;
  transition: all .2s ease-in-out;
  transform: translate3d(-50%,-50%,0) scale3d(1,1,1);
}
.sub_menu a:hover{color:#fff;}

.menu_btn{
  position: absolute;
  top:0;
  right:0;
}

.top_menu{
  position: fixed;
  width:100%;
  height:100%;
  top:0;
  left:0;
  background-color: #172238;
  z-index: 999999999999;
  /* transition: all 3s ease-in-out; */
  display: none;
}
.top_menu .top_menu_box{
  position: absolute;
  top:40%;
  left:50%;
  transform: translate(-50%, -50%);
  width:1200px;
}
.top_menu .top_menu_box > ul{
  display: flex;
  align-items: top;
  justify-content: space-between;
  margin-top:80px;
}
.top_menu .top_menu_box > ul li a{
  display: block;
  font-size:20px;
  color:#fff;
  width:200px;
  text-align: center;
  transition: all .3s ease-in-out;
}
.top_menu .top_menu_box > ul li a:hover{color:#fa002d;}

.top_menu .top_menu_box > ul li .top_menu_sub{
  margin-top:30px;
}
.top_menu .top_menu_box > ul li .top_menu_sub li{text-align: center;}
.top_menu .top_menu_box > ul li .top_menu_sub li a{
  display: inline!important;
  font-size:16px;
  line-height: 36px;
  color:#ccc;
  text-align: center;
  position: relative;
  padding-bottom:10px;
}
.top_menu .top_menu_box > ul li .top_menu_sub li a::before{
  content: '';
  position: absolute;
  bottom:0;
  left:0;
  width:0;
  height:1px;
  background-color: #fa002d;
  transition: all .3s ease-in-out;
}
.top_menu .top_menu_box > ul li .top_menu_sub li a:hover::before{width:100%;}

.top_menu_close{
  position: absolute;
  top:0;
  right:0;
  z-index: 99999999999999999999;
}
.top_menu_close a{
  font-size:18px;
  color:#fff;
  display: block;
  width:40px;
  height:40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  border:1px solid #fff;
  transition: all .3s ease-in-out;
}
.top_menu_close a:hover{
  background-color: #fa002d;
  color:#fff;
  border:1px solid #172238;
}

/* header menu active */
header.active1 .gnb > li:nth-child(1) > a,
header.active2 .gnb > li:nth-child(2) > a,
header.active3 .gnb > li:nth-child(3) > a,
header.active4 .gnb > li:nth-child(4) > a,
header.active5 .gnb > li:nth-child(5) > a,
header.active6 .gnb > li:nth-child(6) > a{color: #fa002d;}

header.active1 .gnb > li:nth-child(1) > a::after,
header.active2 .gnb > li:nth-child(2) > a::after,
header.active3 .gnb > li:nth-child(3) > a::after,
header.active4 .gnb > li:nth-child(4) > a::after,
header.active5 .gnb > li:nth-child(5) > a::after,
header.active6 .gnb > li:nth-child(6) > a::after{width:100%;}
/* header end */

/* visual swiper start */
.visual{
    width:100%;
    min-width:1200px;
    height:957px;
}

.typo{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width:100%;
    z-index: 99999;
}

/* .typo > span.up{opacity:1; transform:translate(0,0);} */

.typo span{
    color:#fff;
    display:block;
    opacity:0;
    transform:translate(0,100%);
    transition:all 1s ease-in-out;
    font-family:'GmarketSansMedium';
}

.typo span:nth-of-type(1){
    font-size:64px;
    transition-delay:0s;
}
.typo span:nth-of-type(2){
    font-size:24px;
    font-weight: 200;
    transition-delay:0.5s;
}
/* .typo span:nth-of-type(3){
    font-size:30px;
    transition-delay:1s;
} */
.visual .swiper-slide > img{width:100%; transform:scale(1.1); transition:all 5s ease;}
.visual .swiper-slide.swiper-slide-active > img.zoom{transform:scale(1);}

.visual .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active span.up{opacity:1; transform:translate(0,0);}

/* .visual .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active span:first-child{animation:text 1s .2s both;}
.visual .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active span:nth-child(2){animation:text 1s .3s both;}
.visual .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active span:last-child{animation:text 1s .4s both;}

@keyframes text{
    0%{opacity: 0; transform:translateX(-1920px);}
    100%{opacity: 1; transform: translateX(0);}
} */

.visual .swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.visual .swiper-slide {
  width:100%;
  height:100%;
  text-align: center;
  font-size: 18px;
  background: #fff;
  overflow: hidden;

  /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.visual .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual .swiper .swiper-pagination span{margin:0 3px;}

.visual .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border:1px solid #fff;
    background: none;
    border-radius: 100%;
}

.visual .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fa002d;
}
.visual .swiper .swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
    left:50%;
    bottom:50px;
    transform: translate(-50%, 100%);
}
.visual .swiper-button-prev,
.visual .swiper-container-rtl .swiper-button-next {
    /* background-image: url("../img/swiper_prev.png"); */
    left: 10px;
    right: auto;
    width:20px;
    color:#fff;
}
.visual .swiper-button-next,
.visual .swiper-container-rtl .swiper-button-prev {
    /* background-image: url("../img/swiper_next.png"); */
    right: 10px;
    left: auto;
    width:20px;
    color:#fff;
}
.visual .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{font-size:44px;}
.visual .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{font-size:44px;}

.visual .swiper-button-next,
.visual .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 60px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 40px 60px;
    background-position: center;
    background-repeat: no-repeat
}
/* visual swiper end */

/* image_show_wrap 공통 */
section .image_show_wrap,
section .image_show_wrap2{
    position: relative;
    top: 0px;
    left: 0%;
    width: 100%;
}
section .image_show_wrap{overflow: hidden; animation-duration: 1.4s;}
section .image_show_wrap2{animation-duration: 1.4s;}

section .show_img01{animation-name: show_img01;}
@keyframes show_img01{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
section .show_img02{animation-name: show_img02;}
@keyframes show_img02{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
section .show_img03{animation-name: show_img03;}
@keyframes show_img03{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
section .show_img04{animation-name: show_img04;}
@keyframes show_img04{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
section .show_img05{animation-name: show_img05;}
@keyframes show_img05{
    0%{opacity: 0; transform: translate3d(0, 100%, 0);}
}
section .show_img06{animation-name: show_img06;}
@keyframes show_img06{
    0%{opacity: 0; transform: translate3d(0, -100%, 0);}
}
/* image_show_wrap 공통 */
/********************************************************************** section **********************************************************************/
/* section1 */
.business{padding:120px 0;}
.business h2{
  font-size:48px;
  color:#000;
  text-align: center;
}
.business p{
  font-size:18px;
  color:#333;
  text-align: center;
}
.business_box{margin-top:60px;}
.business_box ul{
  display: flex;
  align-items: top;
  justify-content: space-between;
}
.business_box li{margin-right:30px; position: relative;}
.business_box li:nth-of-type(1){width:25%}
.business_box li:nth-of-type(2){width:25%}
.business_box li:nth-of-type(3){width:50%; margin-right:0;}

.business_box li a{
  display: block;
  transition: all .3s ease-in-out;
  position: relative;
  background-color: #000;
  transition: all .3s ease-in-out;
}
.business_box li a::after{
  position: absolute;
  content: '';
  width:100%;
  height:100%;
  top:0;
  left:0;
  background-color: rgba(0, 0, 0, 0.3);
}
.business_box li a::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: #fa002d;
}
.business_box li a:hover::before{opacity: .5; animation: flipInX 1.5s .3s both;}
.business_box li a:hover > .box_icon{transform: scale(1.1) translateX(-50%);}

.business_box li a > img{width:100%; height:376.88px; transition: all .3s ease-in-out;}
.business_box li a .box_tit{
  position: absolute;
  bottom:100px;
  left:50%;
  transform: translateX(-50%);
  font-size:32px;
  font-weight: 800;
  color:#fff;
  z-index: 9;
}
.business_box li a .box_icon{
  position: absolute;
  bottom:40px;
  left:50%;
  transform: translateX(-50%);
  width:40px;
  height:40px;
  line-height: 40px;
  border-radius: 50%;
  border:1px solid #ccc;
  padding:10px;
  text-align: center;
  transition: all .3s ease-in-out;
  z-index: 9;
}

.business_box li .video{
  position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
/* .business_box li .video::before{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: transparent;
} */
.business_box li .video iframe,
.business_box li .video object,
.business_box li .video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.business_box .youtube{margin-top:30px;}
.business_box .youtube .video{
  position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.business_box .youtube .video iframe,
.business_box .youtube .video object,
.business_box .youtube .video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* section1 */

/* section2 */
.example{padding-bottom:120px 0;}
.example h2{
  font-size:48px;
  color:#000;
  text-align: center;
}
.example p{
  font-size:18px;
  color:#333;
  text-align: center;
}
.example .button a{
  display: block;
  width:180px;
  margin:40px auto 0 auto;
  font-size:16px;
  text-align: center;
  color:#333;
  padding:15px 0;
  border:1px solid #ccc;
  transition: all .3s ease-in-out;
}
.example .button a:hover{background-color: #fa002d; border:1px solid #fa002d; color:#fff;}


.example .board{margin-top:50px;}
.example_img{
  display: block;
  overflow: hidden;
  background-color: #000;
  transition: all .3s ease-in-out;
  position: relative;
  padding-top:70%;
}
.example_img img{
  transition: all .3s ease-in-out;
  width:100%;
  height:100%;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.example_tit p{
  font-size:18px;
  color:#000;
  text-align: center;
  padding:10px 0 30px 0;
  transition: all .3s ease-in-out;
}

.example li:hover a img{transform: translate(-50%, -50%) scale(1.1); opacity: .8;}
.example li:hover a p{color:#fa002d;}
/* section2 */

/* section3 */
/* section3 */
/* section4 */
/* section4 */

/* footer */
.footer{
  padding:30px 0;
  background-color: #172238;
}
.footer_top{
  padding:20px;
  border-bottom:1px solid #ccc;
}
.footer_bottom{padding-top:20px;}
.footer_bottom ul{
  display: flex;
  align-items: center;
}
.footer_bottom li{
  font-size:13px;
  line-height: 26px;
  color:#fff;
  text-align: left;
}
.footer_bottom li:nth-of-type(1){width:15%}
.footer_bottom li:nth-of-type(2){width:85%}
/* footer */
/********************************************************************** section **********************************************************************/

/* top_btn */
.topbtn{
  position: fixed;
  bottom:60px;
  right:60px;
  z-index:9999999999999;
  width:50px;
  height:50px;
  border-radius: 40px;
  background-color:  #fa002d;
  transition: all 0.5s ease;
  opacity: 0;
}
.topbtn.on{opacity: 1;}

.topbtn img{
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width:30px;
}

.topbtn:hover{
  transition: all 0.5s ease;
  background-color: #151515;
}
/* top_btn */