@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
/* 사이트에 사용될 폰트 */

@font-face {
    font-family: 'PyeojinGothic';
    src: url('/fonts/PyeojinGothic-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PyeojinGothic';
    src: url('/fonts/PyeojinGothic-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PyeojinGothic';
    src: url('/fonts/PyeojinGothic-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PyeojinGothic';
    src: url('/fonts/PyeojinGothic-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PyeojinGothic';
    src: url('/fonts/PyeojinGothic-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PyeojinGothic';
    src: url('/fonts/PyeojinGothic-Extrabold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PyeojinGothic';
    src: url('/fonts/PyeojinGothic-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


/* box-sizing 규칙을 명시합니다. */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 폰트 크기의 팽창을 방지합니다. */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    font-family: 'PyeojinGothic', sans-serif;
    font-weight: 400;
    background-color: #0F111C;
    color: #fff;
    scroll-behavior: smooth;
}

/* 기본 여백을 제거하여 작성된 CSS를 더 잘 제어할 수 있습니다. */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* list를 role값으로 갖는 ul, ol 요소의 기본 목록 스타일을 제거합니다. */
ul,
ol,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 핵심 body의 기본값을 설정합니다. */
body {
    margin: 0;
}

/* 제목 요소와 상호작용하는 요소에 대해 line-height를 더 짧게 설정합니다. */
h1,
h2,
h3,
h4,
button,
input,
label {
    line-height: 1.1;
}

/* 제목에 대한 text-wrap을 balance로 설정합니다. */
h1,
h2,
h3,
h4 {
    text-wrap: balance;
}

/* 클래스가 없는 기본 a 태그 요소는 기본 스타일을 가져옵니다. */
a:not([class]) {
    text-decoration-skip-ink: auto;
    color: currentColor;
}

/* 이미지 관련 작업을 더 쉽게 합니다. */
img,
picture {
    width: 100%;
    display: block;
}

/* input 및 button 항목들이 글꼴을 상속하도록 합니다. */
input,
button,
textarea,
select {
    font: inherit;
}

/* 행 속성이 없는 textarea가 너무 작지 않도록 합니다. */
textarea:not([rows]) {
    min-height: 10em;
}

/* 고정된 모든 항목에는 여분의 스크롤 여백이 있어야 합니다. */
:target {
    scroll-margin-block: 5ex;
}

a {
    display: block;
    text-decoration: none;
}

button {
    all: unset;
}

.d_n {
    display: none !important;
}

/* 커서 */
.cursor {
    width: 10px;
    height: 10px;
    background-color: #d6ef4c;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    /* 클릭 방해 금지 */
    z-index: 99999999999;
    transform: translate(-50%, -50%);
    /* 중심점 맞추기 */
    transition: transform 0.1s ease-out, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

/* 확장되었을 때의 스타일 */
.cursor.expand {
    width: 50px;
    height: 50px;
    background-color: transparent;
    /* 색상 변경(선택사항) */
    border: 1px solid #d6ef4c;
}

/* aos */
[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos],
[data-aos][data-aos][data-aos-duration="2000"],
body[data-aos-duration="2000"] [data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 문의하기 버튼 */
.contact_fix_btn {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 40px;
    border-radius: 50px;
    border: 1px solid #ffffff57;
    color: #fff !important;
    background-color: #ffffff30;
    backdrop-filter: blur(5px);
}


@media(max-width:950px) {
    .contact_fix_btn {
        bottom: 20px;
        right: 20px;
    }
}