@font-face {
    font-family: 'S-CoreDream-6Bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'S-CoreDream-4Regular';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'S-CoreDream-5Medium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
     font-family: 'S-CoreDream-3Light';
     src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff') format('woff');
     font-weight: normal;
     font-style: normal;
}

@font-face {
     font-family: 'S-CoreDream-8Heavy';
     src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-8Heavy.woff') format('woff');
     font-weight: normal;
     font-style: normal;
}

.br{display:none;}

/* 전체레이아웃 */

body{
    margin: 0;
     padding: 0;
     font-family: 'S-CoreDream-4Regular';
}
.container{width: 1180px; margin: 0 auto;}
.container2{width: 1400px; margin: 0 auto;}
/* .room{margin-top:80px;} */

/* 로딩전 화면을 가리기 위한 */
#loadings {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 999999;
}

/* 로더 */
#loading_api {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(0, 0, 0, .1); /* 컬러 */
  border-radius: 50%;
  border-top-color: #343D92; /* 컬러 */
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* 로더 애니메이션 */
@keyframes spin {
  to {
      -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
      -webkit-transform: rotate(360deg);
  }
}


/* navigation */
 .navigation {
     position: fixed;
     width: 100%;
     height: 83px;
	 top:0;
     background: #fff;
     z-index: 999;
     box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.1);
}
 .brand {
     position: absolute;
     padding-left: 20px;
     float: left;
     line-height: 83px;
     text-transform: uppercase;
}

 .nav-container {
     max-width: 1250px;
     margin: 0 auto;
     
}
 nav {
     float: right;
}
 nav ul {
     list-style: none;
     margin: 0;
     padding: 0;
}
 nav ul li {
     float: left;
     position: relative;
     font-family: 'S-CoreDream-5Medium';
     
}


 nav ul li a,nav ul li a:visited {
     display: block;
     padding: 0 20px;
     line-height: 80px;
     color: #202020;
     text-decoration: none;
	 border-bottom:1px solid #f9f9f9
	 
}
 nav ul li a{
	position: relative;
     background: transparent;
     color: #202020;
     font-size: 17px;

}
 nav ul li a:hover, nav ul li a:visited:hover {
     color: #343d92;
}

 nav ul li a:hover{
	color: #343d92;
    transition: color .4s cubic-bezier(.37, .16, .12, 1)
}

nav ul li a::before{
  content: ' ';
  position: absolute; left:0; bottom: 0px;
  width: 100%; height: 3px;
  background-color: none;
  transform: scaleX(1);
  transform-origin: left top;
  transition: transform .6s cubic-bezier(.37, .16, .12, 1), background-color .8s cubic-bezier(.52, .08, .18, 1);
}

nav ul li a:hover::before{
  transform: scaleX(0);
  transform-origin: right top;
  transition: transform .3s cubic-bezier(.37, .16, .12, 1), background-color .4s cubic-bezier(.37, .16, .12, 1);
}
nav ul li a::after{
  content: ' ';
  position: absolute; left:0; bottom: -4px;
  width: 100%; height: 3px;
  background-color: #343d92;
  transform: scaleX(0);
  transform-origin: right top;
  transition: transform .3s cubic-bezier(.37, .16, .12, 1);
}
nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left top;
    transition: transform .6s cubic-bezier(.37, .16, .12, 1);
  }



 .navbar-dropdown li a{
}
 nav ul li a:not(:only-child):after, nav ul li a:visited:not(:only-child):after {
     padding-left: 4px;
     content: '';
}
 nav ul li ul li {
     min-width: 190px;
}
 nav ul li ul li a {
     padding: 15px;
     line-height: 20px;
}
 .navbar-dropdown {
     position: absolute;
     display: none;
     z-index: 1;
     background: rgba(255,255,255,.9);
     margin-top: 1px;
}






 .caption .btn {
    display: inline-block;
    padding: 13px 20px;
    color: #fff;
    text-decoration: none;
    position: relative;
    background: transparent;
    border: 1px solid #e1e1e1;
    font: 12px/1.2 "Oswald", sans-serif;
    letter-spacing: 0.4em;
    text-align: center;
    text-indent: 2px;
    text-transform: uppercase;
    transition: color 0.1s linear 0.05s;
  }
   .caption .btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e1e1e1;
    z-index: 1;
    opacity: 0;
    transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
  }
   .caption .btn::after {
    transition: border 0.1s linear 0.05s;
  }
   .caption .btn .btn-inner {
    position: relative;
    z-index: 2;
  }
   .caption .btn:hover {
    color: #373737;
    transition: color 0.1s linear 0s;
  }
   .caption .btn:hover::before {
    top: 0;
    height: 100%;
    opacity: 1;
    transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
  }
   .caption .btn:hover::after {
    border-color: #373737;
    transition: border 0.1s linear 0s;
  }
  
  .slideshow {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 97vh;
    z-index: 1;
  }
  .slideshow .slideshow-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .slideshow .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .slideshow .slide {
    display: none;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .slideshow .slide.is-active {
    display: block;
  }
  .slideshow .slide.is-loaded {
    opacity: 1;
  }
  .slideshow .slide .caption {
    padding: 0 100px;
  }
  .slideshow .slide .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    z-index: 1;
    background-size: cover;
    image-rendering: optimizeQuality;
  }
  .slideshow .slide .image-container::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .slideshow .slide .image {
    width: 100%;
    width: 100%;
    object-fit: cover;
    height: 100%;
  }
  .slideshow .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .slideshow .slide .title {
    margin: 0 auto 15px;
    max-width: 1000px;
    font: 300 50px/1.2 "Oswald", sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'S-CoreDream-8Heavy';
  }
  .slideshow .slide .title span{font-family: 'S-CoreDream-3Light';}
  .slideshow .slide .text {
    margin: 0 auto;
    max-width: 1000px;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.1em;
	font-family: 'S-CoreDream-3Light';
	color:#f7f7f7
  }
  .slideshow .slide .btn {
    margin: 15px 0 0;
    border-color: #fff;
  }
  .slideshow .slide .btn::before {
    background: #fff;
  }
  .slideshow .pagination {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    height: 12px;
    cursor: default;
    z-index: 2;
    text-align: center;
  }
  .slideshow .pagination .item {
    display: inline-block;
    padding: 15px 5px;
    position: relative;
    width: 46px;
    height: 32px;
    cursor: pointer;
    text-indent: -999em;
    z-index: 1;
  }
  .slideshow .pagination .item + .page {
    margin-left: -2px;
  }
  .slideshow .pagination .item::before {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 5px;
    width: 36px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.2s ease;
  }
  .slideshow .pagination .item::after {
    width: 0;
    background: #fff;
    z-index: 2;
    transition: width 0.2s ease;
  }
  .slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
    background-color: #fff;
  }
  .slideshow .arrows .arrow {
    margin: -33px 0 0;
    padding: 20px;
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 3;
  }
  .slideshow .arrows .prev {
    left: 30px;
  }
  .slideshow .arrows .prev:hover .svg {
    left: -10px;
  }
  .slideshow .arrows .next {
    right: 30px;
  }
  .slideshow .arrows .next:hover .svg {
    left: 10px;
  }
  .slideshow .arrows .svg {
    position: relative;
    left: 0;
    width: 14px;
    height: 26px;
    fill: #fff;
    transition: left 0.2s ease;
  }




/* section02 */
#section02{padding: 50px 0 80px 0; overflow: hidden; }
#section02 .sec2_title{padding-bottom: 30px ;}
#section02 .sec2_title h2{font-size: 32px; position: relative;}
#section02 .sec2_title h2:after{
  content: '';
  width: 4px;
  height: 50px;
  background: #343D92;
  position: absolute;
  top: 0; left: 0;
}
#section02 .sec2_title h2 span{font-size: 32px; font-family: 'S-CoreDream-6Bold'; color: #343D92; margin-left: 15px;}
#section02 .sec2_box01{width: 24%; height: 350px; float: left; margin-right: 1%; border-radius: 10px;  box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.1); transition: all .5s ease-in-out;}
#section02 .sec2_box02{width: 24%; height: 350px;  float: left;  margin-right: 1%; border-radius: 10px; box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.1); transition: all .5s ease-in-out;} 
#section02 .sec2_box03{width: 24%; height: 350px;  float: left;  margin-right: 1%; border-radius: 10px; box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.1); transition: all .5s ease-in-out;}
#section02 .sec2_box04{width: 24%; height: 350px;  float: left;  margin-right: 0%; border-radius: 10px; box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.1); transition: all .5s ease-in-out;}



#section02 .box:hover{
  transform: scale(0.96);
  transition: all .5s ease-in-out;
}


#section02 .box figure{ padding: 20px; }

#section02 .sec2_box01 figure .bx01_circle{
  position: relative;
  width: 150px; height: 150px;
  background: #F5F5F5; border-radius: 100%; 
}
#section02 .sec2_box01 figure .bx01_circle::before{
  content: '';
  width: 80px; height: 80px;
  position: absolute;
  top: 25%; left: 25%;
  background: url(/img/icon01.png) no-repeat;
  background-position: center;
}


#section02 .sec2_box02 figure .bx02_circle{
  position: relative;
  width: 150px; height: 150px;
  background: #F5F5F5; border-radius: 100%; 
}

#section02 .sec2_box02 figure .bx02_circle::before{
  content: '';
  width: 80px; height: 80px;
  position: absolute;
  top: 25%; left: 25%;
  background: url(/img/icon02.png) no-repeat;
  background-position: center;
}



#section02 .sec2_box03 figure .bx03_circle{
  position: relative;
  width: 150px; height: 150px;
  background: #F5F5F5; border-radius: 100%; 
}

#section02 .sec2_box03 figure .bx03_circle::before{
  content: '';
  width: 80px; height: 80px;
  position: absolute;
  top: 25%; left: 25%;
  background: url(/img/icon03.png) no-repeat;
  background-position: center;
}



#section02 .sec2_box04 figure .bx04_circle{
  position: relative;
  width: 150px; height: 150px;
  background: #F5F5F5; border-radius: 100%; 
}

#section02 .sec2_box04 figure .bx04_circle::before{
  content: '';
  width: 80px; height: 80px;
  position: absolute;
  top: 25%; left: 25%;
  background: url(/img/icon04.png) no-repeat;
  background-position: center;
}


#section02 .box figure ul{text-align: center; padding: 20px 0; }
#section02 .box figure ul h2{font-size: 28px; font-family: 'S-CoreDream-6Bold'; margin-bottom:10px;}
/* #section02 .box figure ul li{font-size: 17px;} */
#section02 .box figure ul a{
  padding: 5px 20px;  line-height: 4;
  border: 1px solid #ccc;
  transition: ease all .5s;
  font-weight: bold;
  border-radius: 10px;
  font-size:14px
}
#section02 .box figure ul a:hover{
  background: #343D92;
  transition: ease all .5s;
  color: #fff;
  border: none;
  
}















/* section03 */
#section03{
  padding: 50px 0; overflow: hidden;
  background: url(/img/sec3_bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment:fixed;
}
#section03 .sec3{text-align: center;}
#section03 .sec3 ul{display: inline-block; padding: 40px 0 0px 0;}
#section03 .sec3 ul p{font-size: 12px; color: #ccc; font-family: 'S-CoreDream-4Regular'; margin-top: -5px; margin-bottom: 20px;}
#section03 .sec3 ul h2{color: #fff; font-family: 'S-CoreDream-6Bold'; font-size: 6vh;}
#section03 .sec3 ul li{color: #fff; font-size: 17px;}
#section03 .sec3 ul a{padding: 10px 30px ; background: #fff; color: #000; line-height: 6; font-size: 18px; transition: ease all 1s; font-weight: bold;}
#section03 .sec3 ul a:hover{background: #343D92; color: #fff; transition: ease all 1s; border: 2px;  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.1);}



/* section04 */
#section04{
  padding: 50px 0; overflow: hidden;
  background: url(/img/sec4_bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment:fixed;
}


/* section05 */
#section05{
  padding: 50px 0; overflow: hidden;
  background: #fff;
}
#section05 .sec5{}
#section05 .sec5 .sec5_left{
  width: 48%; height: 400px;float: left;
  margin-right: 2%;
}
#section05 .sec5 .sec5_left ul{}
#section05 .sec5 .sec5_left ul h2{font-size: 34px; line-height: 1.5; margin-top: 30px; color: #264994; font-family: 'S-CoreDream-6Bold'; position: relative; }
#section05 .sec5 .sec5_left ul h2 span{margin-left:15px;}
#section05 .sec5 .sec5_left ul h2:after{
  content: '';
  width: 4px;
  height: 50px;
  background: #343D92;
  position: absolute;
  top: 0; left: 0;
}


#section05 .sec5 .sec5_left ul p{font-size: 17px; margin-bottom: 20px; color: #ccc; font-family: 'S-CoreDream-3Light';}
#section05 .sec5 .sec5_left ul .sec5_li{font-size: 14px; margin: 30px 0px; line-height: 1.7; color: #666;}
#section05 .sec5 .sec5_left ul a{padding: 10px 20px; background: #264994; border-radius: 30px; color: #fff; line-height: 4;}

#section05 .sec5 .sec5_right{
  width: 50%;
  margin-right: 0; float: left;
  border-radius: 20px;
  
}
#section05 .sec5 .sec5_right img{width: 100%; display: block; transition: ease all 1s; border-radius: 10px;}
#section05 .sec5 .sec5_right img:hover{
  transition: ease-in-out all 1s;
  transform: scale(1.02);
}




/* slider */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.slider::before, .slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.slider .slide {
  height: 100px;
  width: 250px;
}







/* footer */
#footer{padding: 0; background: #202020; overflow: hidden;}
#footer .f_top{color: #fff; font-size: 17px; text-align: center; border-bottom: 1px solid #444444; padding: 20px 0 ;}
#footer .f_top a{padding: 5px 10px; }
#footer .f_top a span{color: #5969ff;}
#footer .f_bottom{padding: 30px 0;}
#footer .f_bottom ul{text-align: center;}
#footer .f_bottom ul li{color: #888; line-height: 2; font-size: 17px;}
#footer .f_bottom ul li img{}
























.go-top {
  font-family: 'S-CoreDream-5Medium';
	position: fixed;
	bottom: 2em;
	right: 2em;
	text-decoration: none;
	color: white;
	background-color: rgba(0, 0, 0, 0.3);
	font-size: 12px;
	padding: 1em;
	display: none;
}

.go-top:hover {
	background-color: #343D92;
  transition: ease-in all .4s;
}


/* Mobile navigation */
 .nav-mobile {
     display: none;
     position: absolute;
     top: 0;
     right: 0;
     
     height: 80px;
     width: 70px;
}
 @media only screen and (max-width: 800px) {
     .nav-mobile {
         display: block;
    }
     nav {
         width: 100%;
         padding: 80px 0 15px;
    }
     nav ul {
         display: none;
    }
     nav ul li {
         float: none;
    }
     nav ul li a {
         padding: 15px;
         line-height: 20px;
         background: #fff;
    }
     nav ul li ul li a {
         padding-left: 30px;
    }
     .navbar-dropdown {
         position: static;
}
 @media screen and (min-width:800px) {
     .nav-list {
         display: block !important;
    }
}
 #navbar-toggle {
     position: absolute;
     left: 18px;
     top: 30px;
     cursor: pointer;
     padding: 10px 35px 16px 0px;
}
 #navbar-toggle span, #navbar-toggle span:before, #navbar-toggle span:after {
     cursor: pointer;
     border-radius: 1px;
     height: 3px;
     width: 30px;
     background: #343d92;
     position: absolute;
     display: block;
     content: '';
     transition: all 300ms ease-in-out;
}
 #navbar-toggle span:before {
     top: -10px;
}
 #navbar-toggle span:after {
     bottom: -10px;
}
 #navbar-toggle.active span {
     background-color: transparent;
}
 #navbar-toggle.active span:before, #navbar-toggle.active span:after {
     top: 0;
}
 #navbar-toggle.active span:before {
     transform: rotate(45deg);
}
 #navbar-toggle.active span:after {
     transform: rotate(-45deg);
}
 }





 /* 1240px */
 @media (max-width: 1240px) {
  .container{width: 100%;}
  .container2{width: 100%;}
  .row{padding: 20px;}
  .br{display:block;}

.slideshow {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 75vh;
    z-index: 1;
}


  #section02 .sec2_box01{
    width: 49%;
    height: 270px;
    float: left;
    margin-right: 2%;
    box-shadow: 2px 2px 9px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
  }
  #section02 .sec2_box02{
    width: 49%;
    height: 270px;
    float: left;
    margin-right: 0%;
    box-shadow: 2px 2px 9px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
  }
  #section02 .sec2_box03{
    width: 49%;
    height: 270px;
    float: left;
    margin-right: 2%;
    box-shadow: 2px 2px 9px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
  }
  #section02 .sec2_box04{
    width: 49%;
    height: 270px;
    float: left;
    margin-right: 0%;
    box-shadow: 2px 2px 9px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
  }


  #section02 .box figure{
    padding: 10px;
    text-align: center;
  }


  #section02 .sec2_box01 figure .bx01_circle{
    display: inline-block;
    width: 90px;
    height: 90px;
    margin-top: 20px;
  }

  #section02 .sec2_box02 figure .bx02_circle{
    display: inline-block;
    width: 90px;
    height: 90px;
    margin-top: 20px;
  }

  #section02 .sec2_box03 figure .bx03_circle{
    display: inline-block;
    width: 90px;
    height: 90px;
    margin-top: 20px;
  }

  #section02 .sec2_box04 figure .bx04_circle{
    display: inline-block;
    width: 90px;
    height: 90px;
    margin-top: 20px;
  }

  #section02 .box figure ul {
    text-align: center;
    padding: 20px 0;
}


  #section02 .box figure ul h2{
    font-size: 20px;
    font-weight: bold;
  }


 #section05 .sec5{
    border-top: 1px solid #f7f7f7;
  }
  #section05 .sec5 .sec5_left{
    width: 100%;
    text-align: center;
  }
  #section05 .sec5 .sec5_right{
    width: 100%;
    text-align: center;
    margin-top: 40px;
  }


#section05 .sec5 .sec5_left ul h2 span{margin-left:15px;}
#section05 .sec5 .sec5_left ul h2:after{
  display:none;
}
#section05 .sec5 .sec5_left ul p{font-size: 14px;}
#section05 .sec5 .sec5_left ul .sec5_li{font-size: 16px;}
#section05 .sec5 .sec5_left ul a{padding: 10px 20px; background: #264994; border-radius: 30px; color: #fff; line-height: 4;}






 }
 /* 768px */
 @media (max-width: 768px) {
   

   .brand img{
     width:80%;
}


  .slideshow .arrows .next{right: 0;}
  .slideshow .arrows .prev{left: 0;}
  .slideshow .slide .caption{padding: 0 50px;}
  .slideshow .slide .title {    
    max-width: 1000px;
    font-size: 36px;
    letter-spacing: 0em;
    text-transform: uppercase;
    font-family: 'S-CoreDream-6Bold';
  }

  .slideshow .slide .text{
    margin: 0 auto;
    max-width: 1000px;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.1em;
  }

#section02 .sec2_title h2{font-size: 24px; }
#section02 .sec2_title h2 span{font-size: 24px; }
#section02 .sec2_title h2:after{
  content: '';
  width: 4px;
  height: 40px;
}


#section02 .sec2_box01 figure .bx01_circle::before{
  content: '';
  width: 80px; height: 80px;
  position: absolute;
  top: 5%; left: 5%;
  background: url(/img/icon01.png) no-repeat;
  background-position: center;
  background-size:80%
}


#section02 .sec2_box02 figure .bx02_circle::before{
  content: '';
  width: 80px; height: 80px;
  position: absolute;
  top: 5%; left: 5%;
  background: url(/img/icon02.png) no-repeat;
  background-position: center;
  background-size:80%
}


#section02 .sec2_box03 figure .bx03_circle::before{
  content: '';
  width: 80px; height: 80px;
  position: absolute;
  top: 5%; left: 5%;
  background: url(/img/icon03.png) no-repeat;
  background-position: center;
  background-size:80%
}


#section02 .sec2_box04 figure .bx04_circle::before{
  content: '';
  width: 80px; height: 80px;
  position: absolute;
  top: 5%; left: 5%;
  background: url(/img/icon04.png) no-repeat;
  background-position: center;
  background-size:80%
}



  

  /* #section03 */
  #section03 {
    padding: 50px 0;
    overflow: hidden;
    background: url(/img/sec3_bg.png) no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: none;
}
  #section03 .sec3 ul h2{font-size: 5vh;}
  #section03 .sec3 ul li{font-size: 12px;}

#section03 .sec3 ul a {
    padding: 5px 15px;
    background: #fff;
    line-height: 6;
    font-size: 14px;
    transition: ease all 1s;
    font-weight: bold;
}



   #section04 {
    padding: 0;
    overflow: hidden;
    background: url(/img/sec4_bg.png) no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: none;

	}



#section05 {
    padding: 20px 0;
    overflow: hidden;
}





#footer .f_top{font-size: 17px;}


 }
