@font-face {
  font-family: 'SimKyungha';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2202-2@1.0/SimKyungha.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


.section1 h3{
  font-family: 'SimKyungha';
}


/* Slider */
  .slider-wrap{
    position: relative;
    padding:0;
    width:100%;
    max-width:2540px;
  }
  .slider-container{
    position: relative;
  }
  
  .slider-item{
    padding:0;
    transition: all ease-in-out .7s;
    /* cursor:pointer; */
    max-width:600px;
    width:25vw;
  }
  .landscape{
    width:100%;
    overflow: hidden;
  }
  .landscape img{
    opacity: 0.6;
    transform: scale(1);
    transition: all ease-in-out .3s;
  }
  .landscape img:hover{
    transform: scale(1.04);
  }
  .slick-center img{
    opacity: 1;
  }

  .slider-item p{
    text-align:center;
    padding-top:16px;
  }
  
  .slick-arrow{
    z-index: 2;
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    width:40px;
    height:40px;
    text-indent: -9999em;
    border:2px solid rgba(0,0,0,0.2);
    background-color:rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor:pointer;
    transition: all ease-in-out .3s;
    opacity: 0.7;
  }
  .slick-arrow:hover{
    border:2px solid rgba(0,0,0,0.5);
    background-color:rgba(255,255,255,0.4);
    opacity: 0.9;
  }
  .slick-next{
    right: 25px;
    background-image: url(../img/background/icon_arrow_next.svg);
  }
  .slick-prev{
    left: 25px;
    background-image: url(../img/background/icon_arrow_back.svg);
  }


  .bg-person{
    position: absolute;
    left:50%;
    top:0;
    transform: translateX(-50%);
    font-size: 0;
    /* display: none; */
    max-width:600px;
  }
  .bg-person img{
    width:100%;
  }




 /* section2 */
  .section2{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section2 ul li{
    float: left;
    padding:1.2rem;
    height: 91px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }


  @media (max-width: 900px) { 
    .slider-item{
      width:60vw;
    }
    .section2 ul li{
      width:25%;
    } 

  }


