@charset "UTF-8";

.headline{
    font-size: clamp(30px, 4.6vw, 62px);
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.highlight{
    background: linear-gradient(100deg, #B499FF 3.13%, #2D68FF 141.61%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.highlight2{
    background: linear-gradient(101deg, #0065D3 -15.34%, #A25AFF 142.65%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.highlight3{
    background: linear-gradient(94deg, #A172FF 8.32%, #4A5FFF 95.74%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-wrap{
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.text-wrap .text {
    display: block;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    width: 100%;
    text-align: center;
    font-weight: 600;
}
.text-wrap .text.top {
    transform: translateY(0%);
    opacity: 1;
}
.text-wrap .text.bottom {
    transform: translateY(100%);
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
}
.btn-text-ani:hover .text.top {
  transform: translateY(-100%);
  opacity: 0;
}
.btn-text-ani:hover .text.bottom {
  transform: translateY(0%);
  opacity: 1;
}

/* 문의하기 버튼 */
.jsBtnContact{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 142px;
    height: 56px;
    border-radius: 40px;
    background: linear-gradient(98deg, #A87DFF -4.92%, #7384FF 33.51%);
    font-weight: 600;
}

/* 푸터 버튼 애니메이션*/
.link-animation{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    min-width: 140px;
    width: 240px;
    height: 56px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 100px;
    border: 2px solid #fff;
    outline: 2px solid transparent;
    overflow: hidden;
    user-select: none;
    white-space: nowrap;
}
.link-animation span{
    color: #fff;
}
.link-animation::before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    top: 50%;
    background: #fff;
    border-radius: 100px;
    left: -20px;
}
.link-animation::after{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    transform: translate(50%, -50%);
    top: 50%;
    background: #fff;
    border-radius: 100px;

    right: -20px;
}
.link-animation span{}
.link-animation:hover::before{
    animation: 0.8s ease 0s 1 alternate both running criss-cross-left;
}
@keyframes criss-cross-left{
    0%{
        left: -20px;
    }
    50%{
        height: 20px;
        left: 50%;
        width: 20px;
    }
    100%{
        height: 375px;
        left: 50%;
        width: 375px;
    }
}
.link-animation:hover::after{
    animation: 0.8s ease 0s 1 alternate both running criss-cross-right;
}
@keyframes criss-cross-right{
    0%{
        right: -20px;
    }
    50%{
        height: 20px;
        right: 50%;
        width: 20px;
    }
    100%{
        height: 375px;
        right: 50%;
        width: 375px;
    }
}
.link-animation:hover span{
    z-index: 2;
    position: relative;
    color: #000;
}



@media(max-width:767px){
    .headline{
        font-size: 24px;
        line-height: 1.36;
    }
}