*{padding:0; margin:0; font-family: 'Pretendard-Regular';}


@font-face {
font-family: 'Pretendard-Thin';
src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Thin.woff') format('woff');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Pretendard-ExtraLight';
src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraLight.woff') format('woff');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Pretendard-Light';
src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Light.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Pretendard-Regular';
src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Pretendard-Medium';
src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Medium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Pretendard-SemiBold';
src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff') format('woff');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'Pretendard-Bold';
src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff') format('woff');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Pretendard-ExtraBold';
src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraBold.woff') format('woff');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'Pretendard-Black';
src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Black.woff') format('woff');
font-weight: 900;
font-style: normal;
}



body{
 font-family: 'Pretendard-Regular';
}



/* ÀüÃ¼·¹ÀÌ¾Æ¿ô */

#wrap{overflow:hidden;}
.container {
    width: 1220px;
    margin: 0 auto;
}



/* ·ÎµùÀü È­¸éÀ» °¡¸®±â À§ÇÑ */
#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: #0b318f; /* ÄÃ·¯ */
  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: 100px;
	 top:0;
     background: #fff;
     z-index: 999;
     box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.1);
}
 .brand {
     position: absolute;
     padding-left: 10px;
     float: left;
     line-height: 100px;
     text-transform: uppercase;
}

        .brand img {
            width: 220px;
            height: 70px;
        }


 .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;
     
}


 nav ul li a,nav ul li a:visited {
     display: block;
     padding: 0 20px;
     line-height: 97px;
     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: #073190;
}

 nav ul li a:hover{
	color: #073190;
    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: #073190;
  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;
}




/* 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: #0b318f;
     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);
}
 }



#section01{width:100%; margin-top:100px;}
.sec1_main{
	background:url(/img/main_img_01.png) no-repeat;
	width:100%;
	height:730px;
	background-size:cover;
	background-position:center;

}

.main_bar{width:100%; height:50px; background:#0b318f; }
.main_bar h2{color:#ccc; text-align: center; line-height:3.5;}
/* section02 */

#section02{
  overflow: hidden;
  background: url(/img/section04_banner.png) no-repeat;
  padding: 2% 0 4% 0;
}
#section02 .sec2_tit{text-align: center; margin-bottom: 3%; margin-top:2%}
#section02 .sec2_tit ul{}
#section02 .sec2_tit ul h2{font-size: 46px; font-family: 'Pretendard-ExtraBold';}
#section02 .sec2_tit ul li{font-size: 17px; color:#666;}


:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
}



.page-content {
  display: grid;
  grid-gap: 1rem;
  padding: 1rem;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .page-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 800px) {
  .page-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}
@media (min-width: 600px) {
  .card {
    height: 350px;
  }
}
.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}
.card:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}
.card:nth-child(1):before {
  background-image: url(/img/card_01.png);
}
.card:nth-child(2):before {
  background-image: url(/img/card_02.png);
}
.card:nth-child(3):before {
  background-image: url(/img/card_03.png);
}
.card:nth-child(4):before {
  background-image: url(/img/card_04.png);
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}
.content > * + * {
  margin-top: 1rem;
}

.title {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
}

.copy {
  font-size: 14px;
  font-style: italic;
  line-height: 1.35;
}

.card .btn {
  cursor: pointer;
  margin-top: 1.5rem;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: white;
  background-color: #0b318f;
  border: none;
  border-radius:10px;
}
.btn:hover {
  background-color: #0d0d0d;
}



.main_cont_img{overflow:hidden;}
.main_cont_img img{width:100%; display:block;}



/* section03 */
#section03{
  overflow: hidden;
  position: relative;
  width: 100%; height: 400px;
  background: url(/img/section03_banner.png) no-repeat;
}

.sec3{
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}


.sec3 ul{}
.sec3 ul h2{font-size: 36px;margin-bottom:8px; font-family: 'Pretendard-ExtraBold';}
.sec3 ul p{font-size: 18px; color: #fff; line-height:1.5;}
.sec3 ul a{
  padding: 10px 20px;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  line-height: 6;
  text-decoration: none;
  transition:ease all .5s;
}

.sec3 ul a:hover{
  border: 1px solid #ccc;
  background:#202020;
  transition:ease all .5s;
}





/* section04 */
#section04{
  overflow: hidden;
  position: relative;
  padding: 1% 0;
}





/* section05 */
  #section05{overflow: hidden;}
  #section05 img{width: 100%;}

  #section05 .sec5_layout02_right{overflow: hidden; background: #f9f9f9; padding: 2% 0;}
  #section05 .sec5_layout02_right .sec5_ri_box01{width: 50%; margin-right: 2%; float: left;}
  #section05 .sec5_layout02_right .sec5_ri_box02{width: 48%;  margin-top: 30px;  border-radius: 20px; float: left; overflow: hidden; background:#ccc}
  
  #section05 .sec5_layout02_right .sec5_ri_box01 figure{padding: 50px 40px;}
  #section05 .sec5_layout02_right .sec5_ri_box01 figure p{font-size: 17px; color: #666; margin-bottom:2px;}
  #section05 .sec5_layout02_right .sec5_ri_box01 figure h2{font-size: 42px; color: #202020; font-family: 'Pretendard-ExtraBold';}
  #section05 .sec5_layout02_right .sec5_ri_box01 figure ul{margin-top: 20px; color: #666;}
  #section05 .sec5_layout02_right .sec5_ri_box01 figure ul li{font-size: 15px; line-height:1.8;}


  #section05 .sec5_layout_left{overflow: hidden; padding: 2% 0; }
  #section05 .sec5_layout_left .sec5_box01{width: 48%;  margin-top: 30px; border-radius: 20px; ;margin-right: 2%; float: left; overflow: hidden;}
  #section05 .sec5_layout_left .sec5_box02{width: 50%;  float: left;}
  #section05 .sec5_layout_left .sec5_box02 figure{padding: 50px 40px;}

  #section05 .sec5_layout_left .sec5_box02 figure p{font-size: 17px; color: #666; margin-bottom:2px;}
  #section05 .sec5_layout_left .sec5_box02 figure h2{font-size: 38px; font-family: 'Pretendard-ExtraBold';}
  #section05 .sec5_layout_left .sec5_box02 figure ul{margin-top: 20px;}
  #section05 .sec5_layout_left .sec5_box02 figure ul li{font-size: 15px; line-height:1.8;}



  .sec5_txt a{
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 30px;
    color: #7f7f7f;
    line-height: 10;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
	transition:ease all .5s;
  }

 .sec5_txt a:hover{
    border-radius: 30px;
    color: #fff;
	background:#0b318f;
	transition:ease all .5s;
  }




/* Slider */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}






#footer{width: 100%; background: #202020; border-top:1px solid #ccc; float: left;}
#footer .f_logo{width: 10%; margin-top: 70px; float: left;}
#footer .f_logo img{width: 100px; height: 70px;}

#footer .f_right{width: 70%; float: left;}
#footer .f_right ul{padding: 40px; margin-left: 50px;}
#footer .f_right ul h2{color: #fff; margin-bottom: 5px; font-size: 17px; font-family: 'Pretendard-Bold';}
#footer .f_right ul li{color: #666; font-size: 12px; line-height: 1.6;}
#footer ul{padding: 25px 0 25px 0; }
#footer .f_right ul li a{color: #f2d121;}


.f_wiget{width: 20%; float: right; overflow: hidden;  margin-top: 20px;}
.f_wiget ul{}
.f_wiget ul li{display: inline-block;}
.f_wiget ul li a{margin-right: 10px;}
.f_wiget ul li a img{width: 40px; height: 40px;}













