
body, html {
    text-size-adjust:none !important;
    -webkit-text-size-adjust : none !important;  /* 크롬, 사파리, 오페라 신버전 */
    -ms-text-size-adjust : none !important;  /* IE */
    -moz-text-size-adjust : none !important;  /* 파이어폭스 */
    -o-text-size-adjust : none !important;  /* 오페라 구버전 */
}
body {
    cursor: url("/images/cursor.svg") 7 7, auto;
    word-break: keep-all;
     font-family: "Exo 2", sans-serif !important;
  font-optical-sizing: auto !important;
  font-weight: <weight> !important;
  font-style: normal !important;
}



a {
    cursor: url("/images/cursor.svg") 7 7, auto;
}

.label {
    opacity: 1;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0 32px;
    border-radius: 40px;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    color: white;
    transform-origin: center center;
    transition: opacity 0.3s ease-in-out;
}

.scrollbar-hide {
    /* Firefox */
    scrollbar-width: none;
    /* Safari and Chrome */
    -ms-overflow-style: none; /* IE and Edge */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.title-gradient {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 1) 50%);
    -webkit-background-clip: text;
    color: transparent;
}

.more-btn {
    position: relative;
    transition: 0.3s;
    background: linear-gradient(90deg, #6e2c82, #6e2c82);
}

.more-btn::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: linear-gradient(90deg, #6e2c82, #FF9900);
    position: absolute;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    background-size: 100%;
    background-position: 100%;
    left: 0;
    top: 0;
}

.more-btn:hover::after {
    opacity: 1;
    animation: changeGradient 0.8s forwards; /* 애니메이션을 hover 시에만 실행되도록 수정 */
}

@keyframes changeGradient {
    0% {
        background-size: 100%;
    }
    80% {
        background-size: 340%;
    }
    100% {
        background: #FF9900;
    }
}

.more-btn:hover {
    transform: scale(1.06);
}

.menu-item a:hover,
.button:hover,
.top-button:hover {
    opacity: 0.9;
}

.tag-purple {
    border: 1px solid #6e2c82;
    color: #6e2c82;
    display: inline-block;
   padding: 5px 12px;
    margin-right: 4px;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500 !important;
}

.tag {
    display: inline-block;
    border: 1px solid #6e2c82;
    color: #fff;
    background-color: #6e2c82;
    font-size: 15px;
    padding: 5px 12px;
    margin-right: 2px;
    margin-bottom: 6px;
    font-weight: 500 !important;
}

.tag-2 {
    display: inline-block;
    font-size: 14px;
    color: #8d8d8d;
    font-weight: 500;
    padding: 0 12px;
    margin-right: 2px;
    margin-bottom: 6px;
    height: 28px;
    line-height: 27px;
    border: 1px solid #8d8d8d;
    border-radius: 4px;
    font-weight: 500 !important;
}

.tag-accent:hover,
.tag-accent-purple:hover {
    border: 1px solid #6e2c82;
    background-color: #6e2c82;
    color: white;
}

.tag-circle {
    font-size: 14px;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 26px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid #6e2c82;
    color: #6e2c82;
    margin-right: 4px;
    margin-bottom: 6px;
    display: none;
}

.tag-circle:hover {
    border: 1px solid #6e2c82;
    background-color: #6e2c82;
    color: white;
}

.work-nav-button {
    display: inline-block;
    color: rgba(0, 0, 0, 0.2);
    position: relative;
    margin-right: 20px;
    margin-bottom: 16px;
}

.work-nav-button::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #6e2c82;
    bottom: 0px;
    left: 0;
    opacity: 0;
}

.work-nav-button:hover::after {
    opacity: 1;
}

.work-nav-button:hover {
    color: #6e2c82;
}

.work-nav-button.active {
    color: #6e2c82;
}

.work-nav-button.active::after {
    opacity: 1;
}

.image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    transition: clip-path 0.3s, transform 0.3s;
    clip-path: ellipse(100% 100% at 50% 50%);
    transform: rotate(-45deg);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s;
    transform: rotate(45deg);
}

.image-container-wrap {
    overflow: hidden;
}

.image-container-wrap:hover .image-container {
    clip-path: ellipse(55% 36% at 50% 50%);
}

.image-container-wrap:hover img {
    transform: rotate(45deg);
}

.image-container-wrap:not(:hover) .image-container {
    transition: clip-path 0.3s, transform 0.3s;
}

.mobile-menu {
    overflow-y:scroll;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease 0s;
}

.m-nav-wrap {
    overflow: hidden;
    display: block;
    padding-bottom: 0.1rem;
}

.m-nav {
    display: block;
    transition: transform 0.8s ease;
    transform: translateY(110%);
}
@media (max-width: 1024px) {
    .tag-circle {
        font-size: 11px;
        width: 24px;
        height: 24px;
        line-height: 22px;
        border-radius: 12px;
    }
    .work-nav-button {
        margin-right: 10px;
        margin-bottom: 8px;
    }
    
    .tag-purple, .tag, .tag-2 {
        font-size: 12px;
    }

}
.underline {
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
}

button {
    cursor: url("/images/cursor.svg"), url('/images/cursor.png') 7 7, auto !important;
}

.navbar_logo {
    will-change: width, height;
}

.navbar-section,
.m-navbar-section {
    will-change: margin-top;
}

.main-lang-btn:hover,
.lang-btn:hover {
    opacity: 1;
}
img {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
img{border-radius: 10px;position: relative;}
.difsec:before {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(45deg, #e1cca5, #e1cca5);
    opacity: .4;
}
.mainrow{margin-bottom: 0px;display: flex;}
.mainrow .difsec{width: 50%;float: left;padding: 30px;
    vertical-align: center;align-items: center;align-content: center;vertical-align: middle;}
.mainrow .difsec img{width: 100%;}

.contact_form{padding: 30px;}

.hiddenclasss {
    display: none;
    visibility: hidden;
}
.form-control {
 height: 60px;
}
.submitbtn {
    background: #6e2c82 !important;
    font-size: 20px;
    color: #fff !important;
    border: 2px solid #6e2c82 !important;
}
#works h2{padding-top: 50px;}
#aboutus .mainrow{margin-top: 40px;}
.mttt{margin-top: 15px;}
a:hover{color: #FFF;}

body h1{color: black;}
