/* 모바일 플로팅 */
#mobile-bottom {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
        background: #fff;
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.28s ease;
    }

    #mobile-bottom.is-show {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    #mobile-bottom.is-hide {
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
    }

    #mobile-bottom .wrap {
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
        
    }

    #mobile-bottom .box {
        text-align: center;
        padding: 15px 0 15px;
        
       

    }
    #mobile-bottom .box p {
        padding: 0;
        margin: 0;
        color: #000;
        /* font-size:12px; */
    }
    #mobile-bottom .box:first-child  {
        background: #edf6fe;
        color: #3a81c0;
        border-top: 1px #d7f1ff solid;
       
    }
    #mobile-bottom .box:last-child  {
        background: #f6feed;
        color: #75a73e;
            border-top: 1px #e6facf solid;
            
    }

    #mobile-bottom .box  {
        letter-spacing: 0;
        font-size:14px;
        font-weight:700;
        line-height: 18px;
        display:block;
       
    }
    #mobile-bottom .call-btn {
         position: absolute;
         display:flex;
         justify-content: center;
         align-items: center;
         margin-top: 11px;

    }
    #mobile-bottom .call-btn img {
        width: 42px;
        padding: 10px;
        background: #fff;
        border-radius: 50%;
        /* border: 1px #ddd solid; */
    }
/* 유튜브  */
.youtube-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.youtube-layer .popup {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.youtube-layer .popup .close-btn {
    position: absolute;
    top: -30px;
    right: -30px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}
/* 유튜브 마감 */

/* animation */
@media(min-width:992px) {
    .wiz_animation,
    .wiz_swiper {
        opacity: 0 !important;
    }

    .wiz_active {
        transform: translateX(0) !important;
        opacity: 1 !important;
    }
}
@media(max-width:991px) {
    .wiz_animation,
    .wiz_swiper {
        transform: translateX(0) !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
    }

}
/* animation end */
.scale {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1); 
    transition: all 0.3s ease-in-out;
    /* 부드러운 모션을 위해 추가*/
}

.scale:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
/* bottton */
.btns{
  background: none;
  border: 1px solid #ddd;
  padding: 12px 20px;
  min-width: 200px;
  cursor: pointer;
  transition: color 0.4s linear;
  position: relative;
}

.btns:hover{
  color: #fff
}

.btns::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: -1;
  transition: transform 0.4s;
  transform-origin: 0 0;
  /* transition-timing-function: cubic-bezier(0.5,1.6,0.4,0.7); */

}

.btns1::before{
  transform: scaleX(0);
}
.btns2::before{
  transform: scaleY(0);
}

.btns1:hover::before{
  transform: scaleX(1);
}

.btns2:hover::before{
  transform: scaleY(1);
}

