body {
    font-family: 'Noto Sans KR', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* text-color - 글자색상 */
.text-yello {
    color: yellow;
}

/* border - 테두리 */
.bor-1-d {
    border: 1px solid #ddd;
}

/* w - 너비 */
.w-60 {
    width: 60%!important;
}

.w-80 {
    width: 80%!important;
}

.w-100 {
    width: 100%!important;
}

/* 부드러운 스크롤 */

#company_icon {
    width: 60px !important;
    height: 50px !important;
}

#about_img1,
#about_img2,
#about_img3,
#about_img4,
#about_img5 {
    width: 60% !important;
}

.chartDiv {
    width: 100% !important;
}

#place-img {
    width: 40% !important;
}

#brand-img {
    width: 60% !important;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.arrow-shape {
    clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 로딩 스피너 */
.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}