/* header start */
header{
  position: fixed;
  width:100%;
  height:80px;
  min-width:1300px;
  z-index: 9999;
  top:0;
  left:0;
  transition: all .3s ease-in-out;
  background-color:#fff;
  border-bottom:1px solid #ccc;
}
header.on{
  position: fixed;
  width:100%;
  min-width:1300px;
  top:0;
  left:0;
  background-color: #fff;
  border-bottom:1px solid #ccc;
}
header .logo h1{
  position: absolute;
  width:228px;
  height:53px;
  top:10px;
  left:0;
  transition:all .3s ease-in-out;
  background: url(../img/logo.png) 50% 50% no-repeat;
  background-size: 228px;
}
header .logo h1.on{background: url(../img/logo.png) 50% 50% no-repeat; background-size: 228px;}
header .logo h1 a{
  display: block;
  width:228px;
  height:53px;
}

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:228px; transition:all .3s ease-in-out;}
header:hover .gnb li a{color:#333;  transition:all .3s ease-in-out;}

.top_icon{
  position: absolute;
  top:25px;
  right:200px
}
.top_icon li {display: inline-block;}
.top_icon li a img{width:40px; transition: all .5s ease-in-out;}
.top_icon li a{
  display: block;
  margin:0 5px;
  transition: all .5s ease-in-out;
}
.top_icon li a:hover img{
  transition: all .5s ease-in-out;
  transform: translateY(-35%)
}
nav{
    width:100%;
    max-width:1300px;
    min-width:1300px;
    margin:0 auto;
    z-index: 999;
}
.gnb{
    font-size:0;
    width:100%;
    padding-left:295px;
}
.gnb > li{
    display:inline-block;
    width:150px;
    transition: all .2s ease-in-out;
    text-align: center;
}

/* .gnb > li:hover{background-color: rgba(191, 11, 1, .1); transition: all .2s ease-in-out;}
.gnb > li:hover .sub_menu li{background-color: rgba(191, 11, 1, .1); transition: all .2s ease-in-out;} */
.gnb > li > a:hover:before,
.gnb > li > a:hover:after{width:100%;}
.gnb > li > a.on{color:#333;}

.gnb > li > a{
    color:#333;
    font-size:18px;
    height:80px;
    line-height: 80px;
    position: relative;
}
.gnb > li > a:after{content:'';
    display:block;
    width:0;
    height:2px;
    position: absolute;
    bottom:-10px;
    right:50%;
    transform: translateX(50%);
    background-color: #1b428e;
    transition: all .3s ease-in-out;
}
.sub_menu{
    font-size:0;
    display:none;
    position: absolute;
    z-index:99;
    /* margin-top:10px; */
}
.main_bg{
  position: absolute;
  left: 0;
  top: 79px;
  width: 100%;
  height: 249px;
  display: none;
  z-index: 9;
  background-color: #fff;
  /* box-shadow:0 3px 5px #eee; */
  border-top:1px solid #ccc;
  border-bottom:3px solid #1b428e;
}
.sub_menu li{width:150px; transition: all .2s ease-in-out;}
.sub_menu a{
  font-size:15px;
  font-weight: 400;
  color: #464243 !important;
  line-height: 35px;
  display: block;
  position: relative;
  transition: all .2s ease-in-out;
  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: #bf0b2c; */
  background-color: #1b428e;
  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 !important; transition: all .2s ease-in-out;}

.consulting{
  position: absolute;
  top:15px;
  right:0;
  z-index: 9999;
}
.consulting a{
  display:block;
  width:230px;
  font-size:16px;
  color: #fff !important;
  height:50px;
  line-height: 50px;
  text-align: left;
  padding-left:55px;
  border-radius: 10px;
  transition: all .3s ease-in-out;
  position: relative;
  background-color: #1b428e;
  background-image:url(../img/phone.png);
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: 5% 50%;
}
.consulting a span{
  display: block;
  font-size:16px;
  color:#fff;
  font-weight: 200;
}
.consulting a:hover{
  background-color: #fff;
  background-image:url(../img/phone_h.png);
  background-size: 40px;
  color: #1b428e !important;
}
.consulting a:hover .consulting_box{width:90%; transition: all .3s ease-in-out;}
.consulting_box{
  width:0;
  height:2px;
  background-color: #1b428e;
  position: absolute;
  left:15px;
  bottom:0px;
  transition:all 0.3s ease-out;
}

/* 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: #1b428e;}

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 */

/* header end */

/* visual swiper start */
.visual{
    width:100%;
    /* height:800px; */
    height:883px;
    min-width:1300px;
    margin-top:80px;
}
.visual .typo_wrap{
  width:1300px;
  height:800px;
  margin:0 auto;
  position: absolute;
  z-index: 99;
}
.typo{
    position: absolute;
    top:28%;
    left:0;
    width:100%;
    z-index: 99;
    text-align: left;
}

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

.typo span{
    display:block;
    color:#fff;
    /* font-weight: bolder;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(-225deg, #ccc 0%, #e9e9e9 35%, #fff 100%); */
    /* opacity:0; */
    /* transform:translate(0,100%); */
    transition:all 1s ease-in-out;
}
.typo span:first-child{
    font-size:20px;
    transition-delay:0s;
    font-family: 'S-CoreDream-3Light';
}
.typo span:nth-child(2){
    font-size:64px;
    transition-delay:0.5s;
    padding:40px 0;
    font-family: 'S-CoreDream-3Light';
}
.typo span:last-child{
    font-size:32px;
    transition-delay:1s;
    font-family: 'S-CoreDream-3Light';
}
.typo span strong{color:#fff; font-weight: 800;}
.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 .swiper-slide.swiper-slide-active .typo > span.up{opacity:1; transform:translate(0,0);} */

.visual .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active span:first-child{animation:top 1s .2s both;}
.visual .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active span:nth-child(2){animation:middle 1s .4s both;}
.visual .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active span:last-child{animation:bottom 1s .6s both;}

@keyframes top{
    0%{opacity: 0; transform:translateX(-300px);}
    100%{opacity: 1; transform: translateX(0);}
}
@keyframes middle{
  0%{opacity: 0; transform:translateX(-300px);}
  100%{opacity: 1; transform: translateX(0);}
}
@keyframes bottom{
  0%{opacity: 0; transform:translateX(-300px);}
  100%{opacity: 1; transform: translateX(0);}
}

.typo_line_wrap{
  width:1300px;
  height:800px;
  margin:0 auto;
  position: absolute;
  z-index: 99;
}
.typo_line{
  position: absolute;
  width:4px;
  height:350px;
  background-color: #fff;
  top:30%;
  right:0;
}
.typo_line::after{
  content: '';
  position: absolute;
  top:0;
  right:0;
  width:1000px;
  height:4px;
  background-image: linear-gradient(-225deg, #ccc 0%, #e9e9e9 35%, #fff 100%);
}
.typo_line::before{
  content: '';
  position: absolute;
  top:350px;
  right:0;
  width:1300px;
  height:4px;
  background-image: linear-gradient(-225deg, #ccc 0%, #e9e9e9 35%, #fff 100%);
}
.visual .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active .typo_line_wrap{animation:line 1s .6s both;}
@keyframes line{
  0%{opacity: 0; transform:translateX(300px);}
  100%{opacity: 1; transform: translateX(0);}
}

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

.visual .swiper-slide {
  width:100%;
  text-align: center;
  font-size: 18px;
  background: #fff;
  overflow: hidden;
  position: relative;
  z-index: 0;

  /* 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-slide::before{
  position: absolute;
  content: '';
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
} */

.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: #fff;
}
.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 */

/*****************  버튼 공통 *****************/
.button_wrap{
  margin:30px 0;
  text-align: left;
}
.button_text{
  width:220px;
  height:50px;
  line-height: 50px;
  border-radius: 5px;
  border:1px solid #000;
  text-transform: uppercase;
  font-size:18px;
  font-weight: 500;
  cursor: pointer;
  z-index: 1;
  position: relative;
  overflow: hidden;
  transition: all .6s;
  background-color:transparent;
}
.button_text:before,
.button_text:after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: #1b428e; /* onhover background color */
  z-index: -1;
  transition: all .6s;
}
.button_text{transform-style: preserve-3d;}
.button_text:before,
.button_text:after{transform-origin: center center; transform: scale(1,0);}
.button_text:hover:before,
.button_text:hover:after{transform: scale(1); border-radius: 0;}
.button_text:hover{transition:all 1s ease; color:#fff;}
.button_text span{transition:all 1s ease; transform: rotate(90deg); display:inline-block; font-size:18px;}
.button_text:hover span{transition:all 1s ease; transform: rotate(-90deg); color:#fff;}
/*****************  버튼 공통 *****************/

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

.show_img01{animation-name: show_img01;}
@keyframes show_img01{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
.show_img02{animation-name: show_img02;}
@keyframes show_img02{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
.show_img03{animation-name: show_img03;}
@keyframes show_img03{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
.show_img04{animation-name: show_img04;}
@keyframes show_img04{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
.show_img05{animation-name: show_img05;}
@keyframes show_img05{
    0%{opacity: 0; transform: translate3d(0, 100%, 0);}
}
.show_img06{animation-name: show_img06;}
@keyframes show_img06{
    0%{opacity: 0; transform: translate3d(0, -100%, 0);}
}
/* image_show_wrap 공통 */

/* ------------------------------------- section ------------------------------------- */
/* section 1 */
.core_center{padding:60px 0;}
.core_center h2{
  font-size:48px;
  color:#000;
  text-align: center;
  position: relative;
  padding-bottom:30px;
}
.core_center h2::before{
  position: absolute;
  content: '';
  bottom:0;
  left:50%;
  transform: translateX(-50%);
  width:60px;
  height:1px;
  background-color: #000;
  opacity: .8;
}
.core_center > p{
  font-size:18px;
  color:#333;
  text-align: center;
  padding:30px;
}

.core_center .core_b_box{display: flex; align-items: center; transition: all .3s ease-in-out;}

.core_center .core_b_box li{position: relative; width:50%;}
.core_center .core_b_box .core_s_box1{position: absolute; background-color: rgba(0, 0, 0, 0.8); width:200px; height:100px; right:0; bottom:0;}
.core_center .core_b_box .core_s_box2{position: absolute; background-color: rgba(0, 0, 0, 0.8); width:200px; height:100px; left:0; bottom:0;}
.core_center .core_b_box .core_s_box3{position: absolute; background-color: rgba(0, 0, 0, 0.8); width:200px; height:100px; right:0; top:0;}
.core_center .core_b_box .core_s_box4{position: absolute; background-color: rgba(0, 0, 0, 0.8); width:200px; height:100px; left:0; top:0;}

.core_center .core_b_box li a{display: block; transition: all .3s ease-in-out;}

.core_center .core_b_box .core_b_box_img{
  overflow: hidden;
  background-color: #000;
}
.core_center .core_b_box .core_b_box_img img{transition: all .3s ease-in-out;}

.core_center .core_b_box .core_s_box h3{
  font-size:16px;
  font-weight: 200;
  color:#fff;
  text-align: center;
  margin-top:20px;
  opacity: .8;
  font-family: 'S-CoreDream-3Light';
}
.core_center .core_b_box .core_s_box h3 span{
  font-weight: 200;
}
.core_center .core_b_box .core_s_box p{
  font-size:24px;
  color:#fff;
  text-align: center;
  margin-top:10px;
  font-family: 'S-CoreDream-3Light';
}

.core_center .core_b_box li a:hover .core_b_box_img img{transform: scale(1.1); opacity: .8;}
.core_center .core_b_box li a:hover .core_s_box{background-color: #1b428e;}
/* section 1 */

/* section 2 */
.special01{margin-top:60px;}
.special01 img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.special01 ul{
  display: flex;
  align-items: center;
  width:100%;
}
.special01 ul li{
  width:50%;
  position: relative;
}
.special01_img .image_show_wrap,
.special01_img .image_show_wrap2{
    position: relative;
    top: 0px;
    left: 0%;
    width: 100%;
}
.special01_img .image_show_wrap{overflow: hidden; animation-duration: 1.4s;}
.special01_img .image_show_wrap2{animation-duration: 1.4s;}

/* .special01_text{
  position: absolute;
  top:75px;
  right:0;
} */
.special01_text span{
  display: block;
  font-size:14px;
  color:#1b428e;
  /* color:#e1aa52; */
  text-align: left;
  font-weight: 800;
  padding-left:8px;
}
.special01_text h2{
  font-size:48px;
  color:#333;
  text-align: left;
  padding:20px 0;
}
.special01_text p{
  font-size:24px;
  color:#333;
  text-align: left;
  padding:10px 0;
}
.special01_text p strong{
  font-size:24px;
  color:#1b428e;
}
.special01_text button{
  margin-top:60px;
}
.special01_text button span{
  display: inline-block;
  font-size:18px;
  color:#333;
  height:50px;
  line-height: 50px;
}
/* section 2 */

/* section 3 */
.special02{
  position: relative;
  padding:60px 0;
  background-color: #eee;
}
/* .special02::before{
  position: absolute;
  content: '';
  background: url(../img/section3/section3_bg.jpg) no-repeat 50% fixed;
  background-size: cover;
  width:100%;
  height:100%;
  top:0;
  left:0;
  opacity: .1;
} */
.special02_text{
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  left:0;
}
.special02_text span{
  display: block;
  font-size:14px;
  color:#e1aa52;
  text-align: left;
  font-weight: 800;
  padding-left:8px
}
.special02_text h2{
  font-size:48px;
  color:#333;
  text-align: left;
  padding:20px 0;
}
.special02_text h2 strong{
  font-size:48px;
  color:#1b428e;
}
.special02_text p{
  font-size:24px;
  color:#333;
  text-align: left;
  padding:10px 0;
}
.special02_text p strong{
  font-size:24px;
  color:#1b428e;
}
/* .special02_text button{
  margin-top:60px;
} */
.special02_text button span{
  display: inline-block;
  font-size:18px;
  color:#333;
  height:50px;
  line-height: 50px;
}
.special02_box ul li{
  display: flex;
  align-items: center;
  justify-content: start;
  background-color: #fff;
  width:100%;
  height:120px;
  border-radius: 20px;
  margin-bottom:20px;
  position: relative;
  box-shadow:2px 2px 5px rgba(0,0,0,0.3);
}
.special02_box ul li span{
  display: block;
  font-size:66px;
  color:#1b428e;
  margin:0 40px;
}
.special02_box ul li p{
  font-size:24px;
  line-height: 40px;
  color:#333;
  text-align: left;
}

.special02_move_wrap{
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin-top:30px;
}
.special02_move {
  width: 100%;
  height: 90px;
  background-color: #eee;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.move_text {
  position: absolute;
  display: inline-block;
  white-space: nowrap;
  background: none;
  width: 6440px;
  overflow: hidden;
  animation: slidemarquee 100s linear infinite;
}
.move_text2 {
  animation-delay: -40s;
}
.move_text span {
  display: inline-block;
  box-sizing: border-box;
  color: #1b428e;
  font-size: 64px;
  font-weight: 800;
  margin-right: 10px;
  font-family: 'S-CoreDream-3Light';
}

@keyframes slidemarquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* section 3 */

/* section 4 */
.main_map{padding-bottom:60px;}
.map_wrap{
  width:100%;
  display: flex;
  align-items: center;
  background-color: #2d343e;
}
.map_wrap li{
  width:50%;
  position: relative;
}
.map_wrap li .map_text_wrap{
  position: absolute;
  top:-100px;
  right:0;
  width:650px;
}
.map_text span{
  font-size:18px;
  color:#fff;
  text-align: left;
  font-weight: 600;
}
.map_text h3{
  font-size:48px;
  color:#e1aa52;
  font-weight: 800;
  text-align: left;
}
.map_text h3 strong{
  font-size:36px;
  color:#fff;
}
.map_icon ul{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top:60px;
}
.map_icon a{
  display: block;
  font-size:18px;
  height:30px;
  line-height: 30px;
  color:#fff;
  text-align: left;
  transition: all .3s ease-in-out;
}
.map_icon a img{
  padding-top:3px;
  margin-right:10px;
  transition: all .3s ease-in-out;
}
.map_icon a:hover{color:#e1aa52;}
.map_icon a:hover img{transform: scale(1.1);}
/* section 4 */

/* section 5 */
.main_information{padding:60px 0;}
.main_information > .inner > ul{
  display: flex;
  align-items: center;
}
.main_information > .inner > ul > li{
  text-align: center;
  width:33.333%;
  position: relative;
  padding:10px;
  height:350px;
  background-color: #fff;
}
.main_information > .inner > ul > li::before{
  position: absolute;
  content: '';
  right:0;
  border:1px dashed #ccc;
  height:300px;
  top:50%;
  transform: translateY(-50%);
}
.main_information > .inner > ul > li:first-child p{
  font-size:24px;
  color:#000;
  margin-top:20px;
}
.main_information > .inner > ul > li:last-child::before{border:none;}

.main_information > .inner > ul > li .main_information_icon{
  width:100px;
  height:100px;
  border-radius: 50%;
  margin:0 auto;
  position: relative;
  background-color: #1b428e;
}
.main_information > .inner > ul > li .main_information_icon img{
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
}
.main_information > .inner > ul > li h3{
  font-size:32px;
  color:#333;
  text-align: center;
  padding:20px 0;
  position: relative;
}
.main_information > .inner > ul > li h3 strong{
  font-size:32px;
  color:#1b428e;
}
.main_information > .inner > ul > li h3::before{
  position: absolute;
  content: '';
  width:80px;
  height:1px;
  background-color: #ccc;
  left:50%;
  transform: translateX(-50%);
  bottom:0;
}
.main_information > .inner > ul > li > span{
  display: block;
  font-size:16px;
  line-height: 32px;
  color:#000;
  opacity: .8;
  margin-top:20px;
}
.main_information > .inner > ul > li:nth-of-type(2) > span{
  text-align: left;
  margin-left:75px;
}

.main_information > .inner > ul > li:nth-of-type(2) > table{width:80%; margin:0 auto; margin-top:20px;}
.main_information > .inner > ul > li:nth-of-type(2) > table tr th{font-size:16px; padding:5px; text-align:left;}
.main_information > .inner > ul > li:nth-of-type(2) > table tr td{font-size:16px; padding:5px; text-align: left;}

.main_information > .inner > ul > li:nth-of-type(2) > table tr:nth-of-type(1) th{letter-spacing: 14px;}
.main_information > .inner > ul > li:nth-of-type(2) > table tr:nth-of-type(2) th{letter-spacing: 2px;}
.main_information > .inner > ul > li:nth-of-type(2) > table tr:nth-of-type(3) th{letter-spacing: 1px;}
.main_information > .inner > ul > li:nth-of-type(2) > table tr:nth-of-type(4) th{letter-spacing: 14px;}

.main_information > .inner > ul > li:nth-of-type(2) > table tr:nth-of-type(1) td:last-child{padding-left:30px;}
.main_information > .inner > ul > li:nth-of-type(2) > table tr:nth-of-type(2) td:last-child{padding-left:30px;}
.main_information > .inner > ul > li:nth-of-type(2) > table tr:nth-of-type(3) td:last-child{padding-left:30px;}
.main_information > .inner > ul > li:nth-of-type(2) > table tr:nth-of-type(4) td:last-child{font-size:18px; color:#ee2248;}

.main_information_sicon{margin-top:20px;}
.main_information_sicon ul{
  display: flex;
  align-items: center;
  justify-content : center;
}
.main_information_sicon ul li{margin-right:20px; text-align: center;}
.main_information_sicon ul li:last-child{margin-right:0px;}
.main_information_sicon a{
  display: block;
  transition: all .3s ease-in-out;
}
.main_information_sicon a img{transition: all .3s ease-in-out;}
.main_information_sicon a p{
  font-size:16px;
  color:#333;
  text-align: center;
  margin-top:10px;
  transition: all .3s ease-in-out;
}

.main_information_sicon a:hover img{transform: translateY(-20px) rotateY(-180deg);}
.main_information_sicon a:hover p{color:#1b428e}
/* section 5 */

/* footer */
.footer{
  padding:30px 0;
  background-color: #666;
  overflow: hidden;
}
.footer li img{width:300px;}
.footer li p{
  font-size:13px;
  color:#ccc;
}
/* footer */

/* q_menu */
.q_menu{
  position: fixed;
  top:150px;
  right:60px;
  z-index: 99999999;
}
.q_menu li{margin-bottom:10px;}
.q_menu .icon img{width:100px; transition: all .3s ease-in-out;}
.q_menu a:hover .icon img{transform: scale(1.1);}

/* q_menu */
/* ------------------------------------- section ------------------------------------- */


/* top_btn */
.topbtn{
    position: fixed;
    bottom:60px;
    right:60px;
    z-index:9999999999999;
    width:50px;
    height:50px;
    border-radius: 40px;
    background-color:  #1b428e;
    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 */