@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&display=swap');
*{
    scrollbar-width: none;
    -webkit-text-size-adjust: 100%;
}
::selection{
  background:#ff9a41;
  color:#fff;
}
/*COMMON : S */
.center_wrap{
    max-width:1240px;
    margin:0 auto;
    width:100%
}
.flex_wrap{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 100%;
}
.swal-title{
  font-size:20px;
  padding:10px;
  letter-spacing: 2px;
}
/*COMMON : E */
  
  /* HEADER : S */
  header{
    /*   background:#0b4e81; */
    background:rgba(11, 78, 129, 0.9);
    padding:1.5% 0;
  }
  header h1{
    width:80px;
    height:80px;
  }
  header h1 a{
    font-size:0;
    height:100%;
    display: block;
    background:url(/images/w_logo.png) no-repeat center center;
    background-size:contain;
  }
  /* HEADER : E */
  
  /* FOOTER : S */
  footer{
    border-top:3px #0b4e81 solid;
    padding:2% 0;
  }
  footer p{
    font-size:12px;
    letter-spacing: 2px;
    font-weight:400
  }
  /* FOOTER : E */


/*   CONTENT : S */
#content{
  height: 100%;
}
/*   CONTENT : E */


  /* GNB : S */
  #cm_gnb_btn{
    position: fixed;
    right:2%;
    top:2%;
    font-size:0;
    cursor: pointer;
    z-index: 2;
  }
  #cm_gnb_btn span{
    display: block;
    width:40px;
    margin:13px auto 0 auto;
    height:3px;
    background:#333;
    border-radius:20px;
    transition:all 0.5s;
  }
  #cm_gnb_btn:hover span{
    width:50px
  }
  #cm_gnb_btn span.long{
    width:50px;
  }
  #cm_gnb_btn:hover span.long{
    width:40px;
  }
  #cm_gnb_btn span:first-child{
    margin:0 auto;
  }
  .gnb_box{
    position: absolute;
    width:100%;
    height: 100%;
    background: #fff;
    padding:5% 0;
    opacity: 0;
    transition:all 0.8s;
  }
  .gnb_box.on{
    opacity: 100;
  }
  .gnb_box ul{
    display: flex;
    flex-wrap:wrap;
    align-content: center;
    height:100%;
    width:50%;
    margin:0 auto;
  }
  .gnb_box ul li{
    display: block;
    width:100%;
    margin:10% 0 0 0;
    text-align:left;
  }
  .gnb_box ul li:first-child{
    margin:0;
  }
  .gnb_box ul li a{
    display: block;
    color:#333;
    text-transform: uppercase;
    font-size:26px;
    line-height:130%;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing:2px;
  }
  .gnb_box ul li em{
    display: inline-block;
    vertical-align:bottom;
    font-style:normal;
    width:20px;
    height:20px;
    text-align:center;
    background:#333;
    color:#fff;
    font-weight:600;
    line-height:22px;
    border-radius: 5px;
    font-size:10px;
    margin:0 5px 0 0;
  }
  .gnb_box ul li a{
    display: inline-block;
    vertical-align:top;
    line-height: 100%;
  }
  
  /* GNB : E */
  
/* LOADING: S */
#loading{
  position: fixed;
  width:100%;
  height:100%;
  z-index: 99;
  background:rgba(0,0,0,.8);
  display: none;
}
  .loader {
    box-sizing: border-box;
    display: inline-block;
    width: 50px;
    height: 80px;
    border-top: 5px solid #fff;
    border-bottom: 5px solid #fff;
    position: relative;
    background: linear-gradient(#FF3D00 30px, transparent 0) no-repeat;
    background-size: 2px 40px;
    background-position: 50% 0px;
    animation: spinx 5s linear infinite;
  }
  .loader:before, .loader:after {
    content: "";
    width: 40px;
    left: 50%;
    height: 35px;
    position: absolute;
    top: 0;
    transform: translatex(-50%);
    background: rgba(255, 255, 255, 0.4);
    border-radius: 0 0 20px 20px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: 0 0px;
    animation: lqt 5s linear infinite;
  }
  .loader:after {
    top: auto;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    animation: lqb 5s linear infinite;
  }
/* LOADING: E */

/* ANIMATION: S */

  @keyframes lqt {
    0%, 100% {
      background-image: linear-gradient(#FF3D00 40px, transparent 0);
      background-position: 0% 0px;
    }
    50% {
      background-image: linear-gradient(#FF3D00 40px, transparent 0);
      background-position: 0% 40px;
    }
    50.1% {
      background-image: linear-gradient(#FF3D00 40px, transparent 0);
      background-position: 0% -40px;
    }
  }
  @keyframes lqb {
    0% {
      background-image: linear-gradient(#FF3D00 40px, transparent 0);
      background-position: 0 40px;
    }
    100% {
      background-image: linear-gradient(#FF3D00 40px, transparent 0);
      background-position: 0 -40px;
    }
  }
  @keyframes spinx {
    0%, 49% {
      transform: rotate(0deg);
      background-position: 50% 36px;
    }
    51%, 98% {
      transform: rotate(180deg);
      background-position: 50% 4px;
    }
    100% {
      transform: rotate(360deg);
      background-position: 50% 36px;
    }
  }

  @keyframes fadein {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
  
  .fadeIn {
    -webkit-animation-name: fadein;
    animation-name: fadein;
  }
  /* ANIMATION : E*/