/**
* Template Name: Arsha - v2.3.0
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Noto Sans KR', sans-serif;
  color: #444444;
}

a {
  color: #47b2e4;
}

a:hover {
  color: #106eea;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans KR', sans-serif;
}

.container{
  margin-top: 40px;
}

html{
  scroll-behavior: smooth;
}



.pc{
  display: inline-block;
  position: relative;
}

.pc .translate-button {
  position: absolute;
  left: 100%;
  width: 85px;
  top: 50%;
  transform: translateY(-50%);
}

.mobile{
  display: none;
}

@media only screen and (min-width:100px) and (max-width:1200px){
  .pc{display: none;}
  .mobile{display: inline-block;}
}  

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}
@keyframes animate-preloader {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #106eea;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #106eea;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
}
#header .align-items-center{padding-right: 0;}
#header.header-scrolled, #header.header-inner-pages {
  background: rgba(6, 10, 24, 0.925);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
  padding: 0px;
}
#header .logo {
  height: 70px;
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo a {
  color: #fff;
  line-height: 62px;
}
#header .logo img {
  max-height: 40px;
}
/* @media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
  #header .logo {
    font-size: 28px;
  }
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 20px 7px 20px;
  } */


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu .pc ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

/* 가상메뉴 drop-down안씀*/
#header:hover{
  background: rgba(6, 10, 24, 0.925);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
}
.nav-menu .pc > ul > li > a {
  padding: 10px 20px;
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  text-transform: none;
  color: white;
  border-bottom: 3px solid transparent;
}
.nav-menu .pc > ul > li:hover > a {
  border-bottom: 3px solid #106eea;
  font-weight: 500;
  color: #e9e9e9;
}

.language_button {
  border: 2px solid transparent;
  font-weight: 500;
  font-size: 14px;
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  margin-left: 5px;
}
.language_button:hover {
  border: 2px solid white !important;
  background: white;
  color: #106eea;
}
.bi-globe{
  font-size: 24px;
  line-height: 20px;
}
.menubox_language_button {
  border: 2px solid white;
  border-radius: 50px;
  padding: 0 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 34px;
  display: inline-block;
  color: white;
}
.menubox_language_button:hover {
  border: 2px solid #106eea !important;
  background: #106eea;
  color: white;
}

/* 진짜메뉴 */
.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(6, 10, 24, 0.925);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}
.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}
.nav-menu .drop-down li:hover{
  background-color: white;
}
.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-transform: none;
  color: white;
}
.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  font-weight: bold;
  color: #106eea;
}
.nav-menu .drop-down:hover > a {padding-right: 20px;}
.nav-menu .drop-down:hover > a:after {
  content: "\ea99";
  /* content: "\eaa1"; 위로 */
  font-family: IcoFont;
  padding-left: 5px;
  padding-right: 10px;
}
.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}
.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}
.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}
.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

/* @media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
} */

/* mobile button */
  /* button*/
.mobile .laguagebox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile .laguagebox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
  .mobile .button{
    position: relative;
    width: 70px;
    height: 70px;
    z-index: 99999;
  }
  .mobile .button>span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 32px;
    height: 3px;
    background-color: white;
    transition: transform .5s, opacity 1s;
  }
  .mobile .button>span:nth-child(1){
    transform: translate(-50%, -50%) translateY(-10px);
  }
  .mobile .button>span:nth-child(3){
    transform: translate(-50%, -50%) translateY(10px);
  }

      /* view */
      .mobile.view .button>span:nth-child(1){
        transform: translate(-50%, -50%) rotate(-45deg);
      }
      .mobile.view .button>span:nth-child(2){
        opacity: 0;
      }
      .mobile.view .button>span:nth-child(3){
        transform: translate(-50%, -50%) rotate(45deg);
      }

  .mobile .menubox{
    position: fixed;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.936);
    transition:  opacity 1s;
    opacity:0;
    visibility: hidden;
}
.mobile.view .menubox{
    opacity: 1;
    visibility: visible;
}
.mobile .menubox .menubox-wrap{
    width: 100%;
    height: 100%;
    position: relative;
}
.mobile .menubox .menubox-wrap > ul{
    position: absolute;
    top: 0px;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: #24476a;
    transition: right 1.5s;
}
      /* menubox_logo*/
      .mobile .menubox .menubox-wrap>ul .m_logo{
          width: 100%;
          height: 80px;
          border-bottom: transparent;
          text-align: left;
      }
      .m-logo > a > h3{
          font-size: 20px;
          line-height: 80px;
          font-weight: bold;
          padding-left: 30px;
      }
.mobile .menubox .menubox-wrap > ul > li{
  width: 100%;
  list-style: none;
  font-weight: 400;
}
.mobile .menubox .menubox-wrap > ul > li:hover{
  font-weight: 400;
  color: white;
}
.mobile .menubox .menubox-wrap > ul > li:hover > a{
  border-bottom: 3px solid #106eea;
}
.mobile .menubox .menubox-wrap > ul > li > a{
  border-bottom: 3px solid transparent;
  font-size: 20px;
  line-height: 60px;
  color: white;
}
.mobile.view .menubox .menubox-wrap>ul{
  right: 0px;
}
.mobile.view .menubox .menubox-wrap > ul > li{
  width: 100%;
  list-style: none;
}


/* Get Startet Button */
/* .get-started-btn {
  margin-left: 25px;
  color: #fff;
  border-radius: 50px;
  padding: 6px 25px 7px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #106eea;
  font-weight: 600;
}
.get-started-btn:hover {
  background: #106eea;
  color: #fff;
}*/

/* Mobile Navigation */
/* .mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}
.mobile-nav-toggle i {
  color: #fff;
}
.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}
.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav a {
  display: block;
  position: relative;
  color: #37517e;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  font-weight: bold;
  color: #106eea;
  text-decoration: none;
}
.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}
.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}
.mobile-nav .drop-down > a {
  padding-right: 35px;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
.mobile-nav .drop-down li {
  padding-left: 20px;
}
.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 58, 90, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}
.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
} */


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/* swiper */
#hero .hero{
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 2;
}
.swiper-wrapper{
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-slide{
  flex-shrink: 0;
  width: 100%; 
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}
.slide01{background-image: url(../img/main_bg004.png);
  background-position: left;
}
.slide02{background-image: url(../img/main_bg005_1.png);
  background-position: right;
}
.slide03{background-image: url(../img/main_bg008.jpeg);}

.slide-text-box{
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 450px;
  z-index: 9999;
}
.slide-text-box.com{
  width: 60%;
  left: 35%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slide-dti{
  line-height: 75px;
  display: inline-block;
  width: 160px;
  height: 60px;
  background-image: url(../img/dti.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size:100% auto;
}


#hero {
  width: 100%;
  height: 100%;
  background-color: #000;
  padding: 0px 0px;
}
#hero .container, #hero .container-fluid {
  padding-top: 84px;
}
#hero h1 {
  margin: 0;
  font-size: 57px;
  font-weight: 500;
  line-height: 75px;
  color: white;
  z-index: 999;
  display: inline;
}
#hero h1.h1 {font-size: 50px;}
#hero h2 {
  color: rgb(143, 176, 233);
  margin: 10px 0;
  font-size: 40px;
  line-height: 45px;
  z-index: 999;
}
#hero h3 {
  color: white;
  font-size: 36px;
  line-height: 45px;
  margin: 4px 0;
  z-index: 999;
}
#hero h4 > sup{font-size: 14px; font-weight: 500;}
#hero h4 {
  padding-top: 16px;
  font-size: 23px;
  color: gray;
}
#hero h5 {
  font-size: 37px;
  font-weight: bold;
  color: #15284e;
  padding: 10px 0;
}
#hero h6 {
  font-size: 25px;
  line-height: 35px;
  color: #0e40b3;
  font-weight: 700;
}
#hero ul {
  margin: 0;
  padding: 0;
}
#hero ul li {
  font-size: 30px;
  line-height: 42px;
  color: #0e40b3;
  font-weight: 700;
}
#hero ul li.emerging {
  font-size: 24px;
  line-height: 35px;
  color: #000;
}
#hero ul li.emerging::marker {
  display: none !important;
}
#hero .grid {
  display: grid;
  grid-template-columns: auto 2fr;
  grid-gap: 10px;
}
.br{
  display: none;
}

/* media */
@media (max-width: 1799px) and (min-width: 1200px) {
  .swiper-slide{height:auto;}
  .slide-text-box{width:70%; height:320px; text-align:center!important;}
  .slide-text-box.com{width:78%; left:50%;}
  .slide-dti{width:120px;height: 50px;}
  #hero .hero{height:800px;}
  #hero h1 {font-size:50px; line-height:65px;}
  #hero h1.h1 {font-size:45px; line-height:50px;}
  #hero h2 {margin:10px 0; font-size: 35px; line-height:40px;}
  #hero h3 {font-size:30px; line-height:35px; margin: 15px 0 4px 0;}
  #hero h4 > sup{font-size:12px; font-weight:500;}
  #hero h4 {padding-top:16px; font-size:20px; color:lightgray;}
  #hero h5 {font-size:30px; line-height:45px;}
  #hero h6 {font-size:25px; line-height:34px;}
  #hero ul li {font-size:25px; line-height:32px;}
  #hero ul li.emerging {font-size:22px; line-height:30px;}
}
@media (max-width: 1199px) and (min-width: 800px) {
  .swiper-slide{height:auto;}
  .slide-text-box{width:70%; height:320px; text-align:center!important;}
  .slide-text-box.com{width:75%; left:50%;}
  .slide-dti{width:120px;height: 50px;}
  #hero .hero{height:800px;}
  #hero h1 {font-size:42px; line-height:58px;}
  #hero h1.h1 {font-size:38px; line-height:50px;}
  #hero h2 {margin:10px 0; font-size: 28px; line-height:35px;}
  #hero h3 {font-size:25px; line-height:30px; margin: 15px 0 4px 0;}
  #hero h4 > sup{font-size:10px; font-weight:500;}
  #hero h4 {padding-top:16px; font-size:18px; color:lightgray;}
  #hero h5 {font-size:24px; line-height:40px;}
  #hero h6 {font-size:18px; line-height:28px;}
  #hero ul li {font-size:18px; line-height:24px;}
  #hero ul li.emerging {font-size:18px; line-height:22px;}
}
@media (max-width:799px){
  .br{display:inline;}
  .swiper-slide{height:auto;}
  .slide-text-box{width:80%; height:400px; text-align:center!important;}
  .slide-text-box.com{width:80%; left:50%;}
  .slide-dti{width:100px;height: 40px;}
  #hero .hero{height:800px;}
  #hero h1 {font-size:32px; line-height:50px;}
  #hero h1.h1 {font-size:30px; line-height:45px;}
  #hero h2 {margin:10px 0; font-size:24px; line-height:32px;}
  #hero h3 {font-size:22px; line-height: 30px; margin:10px 0 4px 0;}
  #hero h4 > sup{font-size:8px; font-weight:500;}
  #hero h4 {padding-top:12px; font-size:17px; color:lightgray;}
  #hero h5 {font-size:23px; line-height:28px;}
  #hero h6 {font-size:15px; line-height:24px;}
  #hero ul li {font-size:15px; line-height:20px;}
  #hero ul li.emerging {font-size:14px; line-height: 16px;}
  #hero .grid {display:inline-block;}
}
@media (max-width:400px){
  .br{display:inline;}
  .swiper-slide{height:auto;}
  .slide-text-box{width:80%; height:230px; text-align:center!important;}
  .slide-text-box.com{width:80%; left:50%;}
  .slide-dti{width:80px;height: 30px;}
  #hero .hero{height:500px;}
  #hero h1 {font-size:24px; line-height:40px;}
  #hero h1.h1 {font-size:22px; line-height:30px;}
  #hero h2 {margin:0px 0; font-size:17px; line-height:26px;}
  #hero h3 {font-size:15px; line-height: 20px; margin:10px 0 4px 0;}
  #hero h4 > sup{font-size:8px; font-weight:500;}
  #hero h4 {padding-top:12px; font-size:14px; color:lightgray;}
  #hero h5 {font-size:16px; line-height:22px;}
  #hero h6 {font-size:14px; line-height:28px; padding:0;}
  #hero ul li {font-size:14px; line-height:18px; padding:0;}
  #hero ul li.emerging {font-size:12px; line-height: 15px;}
  #hero .flex {grid-gap: 5px;}
}



/*--------------------------------------------------------------
# Sections DTI
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
.section-bg {
  background-color: #f3f5fa;
}
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title > h1 {
  color: skyblue; 
  font-size:26px;
}
.section-title > p.dti-title {
  font-size:40px; 
  font-weight: 500; 
  line-height: 45px;
  padding-bottom: 20px;
  color: white; 
}
.section-title > span {
  font-size: 18px;
  line-height:25px; 
  color:#c7c7c7; 
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #051829;
}
.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #106eea;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title p {
  margin-bottom: 0;
}


#dti{
  height: 100% !important;
}
.section01{
  background-color: #040914;
}
.section01 .section-content{
  width: 100%;
}
.section01 .dti{
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 700px;
  margin:0;
  padding:0;
}
.section01 ul.dti > li:nth-child(1){
  width: 280px;
  transform: translate(-50%, -50%) translateX(-145%);
} 
.section01 ul.dti > li:nth-child(3){
  width: 270px;
  transform: translate(-50%, -50%) translateX(150%);
}
.section01 ul.dti>li{ 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 700px;
}
.section01 ul.dti>li .dti-box{
  width: 100%;
  height:700px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 90%;
}
.section01 ul.dti>li .dti-box.dtiimg01{
  background-image: url(../img/bg_circle.png);
  animation: field02 20s ease-in infinite alternate-reverse both;
}
.section01 ul.dti>li .dti-box.dtiimg02{
  background-image: url(../img/bg_dti_title.png);
  z-index: 4;
}
@keyframes field02{
  0%{transform: translate(-50%, -50%);}
  25%{transform: translate(-50%, -50%) rotate(45deg);}
  75%{transform: translate(-50%, -50%) rotate(-45deg);}
  100%{transform: translate(-50%, -50%)rotate(0deg)}
}

.dti-text-box{list-style: none; padding-inline-start: 0px;}
.dti-text01{
  font-size: 14px;
  color: rgb(172, 198, 210);
}
.dti-text02{
  font-size: 30px;
  font-weight: 500;
  line-height: 50px;
  color: #92eaff;
  padding-bottom: 20px;
}
.dti-text03>ul{list-style: none; padding-inline-start: 5px;}
.dti-text03>ul>li{
  list-style-type : circle;
  margin:2px 0px;
  color: #eeeeee;
  font-size: 15px;
  font-weight: 300;
  line-height: 30px;
  list-style-position: inside;

}

/* SOAR */
.soar-up{
  width: 100%;
  height: 50px;
  position: relative;
}
.soar-up > .soar-up-text{
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 33px;
    font-weight: 500;
    color: #ff4780;
    text-align: center;
    text-shadow: 2px 2px 2px #0e172b;
}
.soar-up > .soar-up-img{
    position: absolute;
    top: -135px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 195px;
    background-image: url(../img/soar-up.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 140px auto;
  }
  .soar-up > .soar-up-img-text{
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-size: 29px;
    color: skyblue;
  }
  .soar{
    display: grid;
    grid-template-columns: 1fr 60px 1fr 60px 1fr;
    grid-gap: 5px;
    padding: 40px 0 80px 0;
  }
  .soar > li > .span{
    width: 100%;
    height: 60px;
    margin-top: 120px;
    background-image: url(../img/line.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
  }
  .soar > li{
    list-style: none;
    text-decoration: none;
    width: 100%;
    height: auto;
  }
  .soar > li > div{
    background-size: auto 300px;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 300px;
  }
  .soar > li > .soar-bg01{background-image: url(../img/bg_soar.png);}
  .soar > li > .soar-bg02{background-image: url(../img/bg_soar02.png);}
  .soar > li > .soar-bg03{background-image: url(../img/bg_soar03.png);}
  .soar > li ol.soar-box{
    padding: 0 0;
  }
  .soar > li ol.soar-box > li{
    list-style: none;
    text-decoration: none;
    color: white;
  }
  .soar > li ol.soar-box > li.soar-title{
    font-size: 28px;
    font-weight: 500;
    padding-bottom: 7px;
    text-align: center;
  }
  .soar > li ol.soar-box > li.soar-subtext{
    font-size: 16px;
    line-height: 30px;
    padding: 5px 5px;
  }
  .soar > li ol.soar-box > li.soar-subtext > ul >mark{
    padding: 0.2em;
    background-color: #24628f;
    color: white;
    line-height: 50px;
  }
  .soar > li ol.soar-box > li.soar-subtext > ul{
    padding-right: 20px;
    font-size: 20px;
    line-height: 35px;
    text-align: center;
    color:#307281;
  }
  .soar > li ol.soar-box > li.soar-subtext > ul >li {
    list-style-type : circle;
    margin: 5px 0px;
    font-weight: 300;
    font-size: 16px;
    color: #eeeeee; 
    text-align: left;
  }
  .soar-span{
    display: none;
  }
  .soar-span-li{
    height: 40px !important;
  }

/* media */
@media (max-width: 1199px) and (min-width: 900px) {
  .section-title{text-align: center !important;}
  .section-title > h1 {font-size:23px;}
  .section-title > p.dti-title {font-size:37px; line-height: 42px; padding-bottom: 18px;}
  .section-title > span {font-size: 15px; line-height:22px;}
  .section01 ul.dti>li .dti-box{height:500px;}
  .section01 ul.dti > li:nth-child(1){width: 270px; transform: translate(-50%, -50%) translateX(-110%);} 
  .section01 ul.dti > li:nth-child(3){width: 260px; transform: translate(-50%, -50%) translateX(120%);}
  .dti-text03>ul{padding-inline-start: 2px;}
  .dti-text03>ul>li{margin:2px 0px;font-size: 14px;}

  /* soar-up */
  .soar-up > .soar-up-text {font-size:30px;}
  .soar-up > .soar-up-img{top:-135px; height:130px; background-size:120px auto;}
  .soar-up > .soar-up-img-text{top: 0px;}

  /* soar */
  .soar{display: block;margin: 0 60px;}
  .soar > li{display: grid; grid-template-columns: 1fr 2fr; grid-gap: 0px;}
  .soar > li > div{background-size: auto 200px; height: 200px;}
  .soar > li ol.soar-box{display: flex; flex-direction: column; justify-content: center;}
  .soar > li > .span{height: 45px; margin-top: 0px; background-size: 50px auto; transform: rotate(90deg);}
  .soar-span{display: block;}
  .soar > li ol.soar-box > li.soar-subtext > ul{text-align: left;}
}

@media (max-width:899px){
  .section-title{text-align: center !important;}
  .section-title > h1 {font-size:20px;}
  .section-title > p.dti-title {font-size:33px; line-height: 40px; padding-bottom: 15px;}
  .section-title > span {font-size: 14px; line-height:20px;}
  .section01 ul.dti>li .dti-box{height:500px;}
  .section01 ul.dti > li:nth-child(1){width: 240px; height: 300px; top: 75%; left:50%;transform: translate(-50%, -50%) translateX(-42%);} 
  .section01 ul.dti > li:nth-child(2){top: 28%;transform: translate(-50%, -50%);}
  .section01 ul.dti > li:nth-child(3){width: 240px;height: 300px;top: 75%;left: 50%;transform: translate(-50%, -50%) translateX(50%);}
  .dti-text02{font-size:28px; line-height: 40px; padding-bottom: 10px;}
  .dti-text03>ul{padding-inline-start: 2px;}
  .dti-text03>ul>li{margin:2px 0px; font-size: 14px; line-height: 24px;}

  /* soar-up */
  .soar-up{height:100px; margin-bottom:30px;}
  .soar-up > .soar-up-text {width:300px;top: -10px; font-size:25px;}
  .soar-up > .soar-up-img{top:70%; transform: translate(-50%, -50%);height:100px; background-size:80px auto;}
  .soar-up > .soar-up-img-text{top: 110px; font-size: 18px;}

  /* soar */
  .soar{display: block; margin: 0 60px;}
  .soar > li > div{background-size: auto 200px;background-position: center;background-repeat: no-repeat;width: 100%;height: 200px;}
  .soar > li ol.soar-box{display: flex;flex-direction: column;justify-content: center;}
  .soar > li ol.soar-box > li.soar-subtext{margin:2px 0px;font-size: 15px;}
  .soar > li ol.soar-box > li.soar-subtext > ul >li {font-size: 14px;line-height: 26px;}
  .soar > li > .span{height: 45px;margin-top: 0px;background-size: 50px auto;}
  .soar-span{display: block;}
}
@media (max-width:400px){
  .section-title{text-align: center !important;}
  .section-title > h1 {font-size:18px;}
  .section-title > p.dti-title {font-size:28px; line-height: 36px; padding-bottom: 10px;}
  .section-title > span {font-size: 14px; line-height:20px;}
  .section01 ul.dti>li .dti-box{height:370px;}
  .section01 ul.dti > li:nth-child(1){width: 200px; height: 300px; top: 75%; left:50%;transform: translate(-50%, -50%) translateX(-41%);} 
  .section01 ul.dti > li:nth-child(2){top: 28%;transform: translate(-50%, -50%);}
  .section01 ul.dti > li:nth-child(3){width: 200px;height: 300px;top: 75%;left: 50%;transform: translate(-50%, -50%) translateX(41%);}
  .dti-text02{font-size:20px; line-height: 30px; padding-bottom: 5px;}
  .dti-text03>ul{padding-inline-start: 2px;}
  .dti-text03>ul>li{margin:2px 0px; font-size: 12px; line-height: 22px;}

  /* soar-up */
  .soar-up{height:100px; margin-bottom:30px;}
  .soar-up > .soar-up-text {width: 100%; top: -10px; font-size:20px;}
  .soar-up > .soar-up-img{top:70%; transform: translate(-50%, -50%);height:100px; background-size:80px auto;}
  .soar-up > .soar-up-img-text{top: 110px; font-size: 16px;}

  /* soar */
  .soar{display: block; margin: 0 60px;}
  .soar > li > div{background-size: auto 200px;background-position: center;background-repeat: no-repeat;width: 100%;height: 200px;}
  .soar > li ol.soar-box{display: flex;flex-direction: column;justify-content: center;}
  .soar > li ol.soar-box > li.soar-subtext{margin:2px 0px;font-size: 14px;}
  .soar > li ol.soar-box > li.soar-subtext > ul >li {font-size: 14px;}
  .soar > li ol.soar-box > li.soar-subtext > ul >mark{line-height: 30px;font-size: 16px;}
  .soar > li ol.soar-box > li.soar-subtext > ul >.none{display: none;}
  .soar > li > .span{height: 45px;margin-top: 0px;background-size: 50px auto;}
  .soar-span{display: block;}
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box-wrap {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  grid-gap: 20px;
  padding: 0;
  margin: 0 0 20px 0;
}
.services .icon-box-wrap02 {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 1fr;
  padding: 0;
  grid-gap: 20px;
  margin: 0 0 20px 0;
}
.services .icon-box {
  list-style: none;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box .icon {
  width: 100%;
  height: 170px;
  margin-bottom: 10px;
  background-size: 65% auto;
  background-position: center;
  background-repeat: no-repeat;
}
.services .icon-box .icon.icon_01 {background-image: url(../img/icon_01.png);}
.services .icon-box .icon.icon_02 {background-image: url(../img/icon_02.png);}
.services .icon-box .icon.icon_03 {background-image: url(../img/icon_03.png);}
.services .icon-box .icon.icon_04 {background-image: url(../img/icon_04.png);}
.services .icon-box .icon.icon_05 {background-image: url(../img/icon_05.png);}


.services .icon-box .icon i {
  color: #106eea;
  font-size: 36px;
  transition: 0.3s;
}
.services .icon-box > div > h4 {
  width: 100%;
  margin: 14px 0;
  font-weight: 500;
  font-size: 21px;
  text-align: center;
  /*Todo V2 작업시 아래 내용 삭제*/
  color: #051829;
  transition: ease-in-out 0.3s;

 }
/*.services .icon-box > div > h4 > a {
  color: #051829;
  transition: ease-in-out 0.3s;
  width: 100%;
} */
.services .icon-box p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 24px;
  color: #666;
  text-align: center;
}
.services .icon-box:hover {
  transform: translateY(-10px);
}
.services .icon-box:hover h4 a {
  color: #106eea;
}

/* media */
@media (max-width: 1199px) and (min-width: 800px) {
  .services .icon-box-wrap {display: block;}
  .services .icon-box-wrap > li {margin-top: 20px;}
  .services .icon-box-wrap02 {display: block;}
  .services .icon-box-wrap02 > li{margin-top: 20px;}
  .services .icon-box{display: grid;grid-template-columns: 300px auto;padding: 20px 30px;} 
  .services .icon-box .icon {width: 100%;height: 160px;margin-bottom: 0;background-size: auto 100%;}
  .services .icon-box > div{display: flex;flex-direction: column;justify-content: center;}
  .services .icon-box > div > h4 {text-align: left;}
  .services .icon-box p {margin-bottom: 26px;text-align: left;}
}
@media (max-width:799px){
  .services .icon-box-wrap {display: block;}
  .services .icon-box-wrap > li {margin-top: 20px;}
  .services .icon-box-wrap02 {display: block;}
  .services .icon-box-wrap02 > li{margin-top: 20px;}
  .services .icon-box > div{display: block;}
  .services .icon-box{display: block;padding: 20px 30px;} 
  .services .icon-box .icon {width: 100%;height: 130px;margin-bottom: 0;background-size: auto 100%;}
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.card {
  color: black;
  cursor: pointer;
  box-shadow: 0px 0 5px 0 rgb(0 0 0 / 10%);
}
.card:hover {
  color:black;
}
.card .card-img-box {
  overflow: hidden;
  width: 100%;
  height: 220px;
}
.card .card-body .card-title{height: 55px;}
.card .card-body .card-text,
.card .card-body .card-title{
   width: 100%;
   text-overflow: ellipsis;
   overflow: hidden;
   word-break: break-word;
    
   display: -webkit-box;
   -webkit-line-clamp: 2; 
   -webkit-box-orient: vertical
}
.card .card-img-box > img.card-img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.card:hover .card-img-box > img.card-img{
  transform: scale(1.05);
  transition: transform .4s;
}
.mySwiper.news {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  margin: 0 0;
  padding: 0 0;
}
.mySwiper.news > .swiper-wrapper > .swiper-slide{
  height: 500px;
}

.swiper-button-next.news{right: -45px;}
.swiper-button-prev.news{left: -45px;}

/* media */
@media (max-width: 1199px) and (min-width: 800px) {
  .card .card-img-box {height: 200px;}
@media (max-width:799px){
    .card .card-img-box {height: 220px;}}
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  /* background: linear-gradient(rgba(40, 58, 90, 0.39), rgba(40, 58, 90, 0.589)), url("../img/cta-bg.jpg") fixed center center no-repeat;  */
  background: linear-gradient(rgba(40, 58, 90, 0.39), rgba(40, 58, 90, 0.589)), url("../img/cta03.jpg") fixed center center no-repeat; 
  background-size: cover;
  background-repeat: no-repeat;

  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}
.cta h3>span {
  font-weight: 400;
  font-size: 20px;
}
.cta p {
  color: #fff;
  font-size: 18px;
}
.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #106eea;
  border: 2px solid #106eea;
}

/* media */
@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
  }
}
@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/
#player{width: 100%;height: 700px;}
@media (max-width: 1199px) and (min-width: 800px) {
  #player{width: 100%;height: 500px;}
}
@media (max-width:799px){
  #player{height: 300px;}
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.location-label{
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  color: #012970;
  margin-top: 25px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background: #f2f5f9;
}
.footer .footer-top {
  background: white url(../img/footer-bg.png) no-repeat right top;
  background-size: contain;
  border-top: 1px solid #e1ecff;
  border-bottom: 1px solid #e1ecff;
  padding: 30px 0 90px 0;
}
.footer .footer-top .footer-info > a {
  justify-content: flex-start;
}
.footer .footer-top .footer-info {
  margin-bottom: 30px;
  text-align: left;
}

.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}
.footer .footer-top .footer-info > p {
  padding: 0;
  margin: 0;
  line-height: 20px;
}

.footer .footer-top .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
  text-align: center;
  display: inline-block;
}


.footer .footer-top h4 > .bi{
  line-height: 15px;
}
.footer .footer-top h4 {
  font-size: 18px;
  font-weight: bold;
  color: #012970;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}
.footer .footer-top .footer-contact{
  padding: 0 0;
  text-align: left;
} 
.footer .footer-top .footer-contact address, 
.footer .footer-top .footer-contact p {
  line-height: 26px;
  padding: 0;
  margin-bottom: 0;
}


.footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #1b2f59;
} 
.footer .copyright {text-align: center;}
.br02{display: none;}

@media (max-width: 992px) {
  .footer .footer-top {background-position: center bottom;}
  .footer .footer-top .footer-info > a {justify-content: center;}
  .footer .footer-top .footer-info {margin-bottom: 30px;text-align: center;}
  .footer .footer-top .footer-contact{text-align:center; margin-bottom: 20px;}
}
@media (max-width: 768px) {
  .footer .footer-bottom {padding-top: 20px;padding-bottom: 20px;}
  .footer .copyright, #footer .credits {text-align: center;float: none;}
  .footer .credits {padding-top: 4px;}
  .footer .footer-top .footer-info > a {justify-content: center;}
  .footer .footer-top .footer-info {margin-bottom: 30px;text-align: center;}
  .footer .footer-top .footer-contact{text-align: center; margin-bottom: 35px;}
  .br02{display: block;}
}

