:root {
    --body-bg-color: #000;

    --ntcube-color: #f4c51e;
    --ntcube-bg: #000;

    --staynt-color: #fff;
    --staynt-bg: #56a8fd;

    --dsoh-color: #000;
    --dsoh-bg: #f0f0f0;
}

* {
    color: var(--color-text);
}

.ntcube {
    --brand-color: var(--ntcube-color);
    --brand-bg: var(--ntcube-bg);
}

.staynt {
    --brand-color: var(--staynt-color);
    --brand-bg: var(--staynt-bg);

}

.dsoh {
    --brand-color: var(--dsoh-color);
    --brand-bg: var(--dsoh-bg);
}

::selection {
    background-color: var(--color-primary);
    color: #fff;
}

/*scrollbar custom*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 40px;
}

/* slide */
:root {
    --arrow-width: 20px;
    --arrow-height: auto;
    --arrow-ratio: 1/2;
    --arrow-position: 50px;
    --arrow-image: url("/assets/images/icons/slide_arrow.svg");

    --dot-position: -25px;
    --dot-width: 8px;
    --dot-height: 8px;
    --dot-gap: 10px;
    --dot-color: #ddd;
    --dot-active-color: var(--color-primary);
}

/*Layout*/
:root {
    --container-width: 1440px;
    --container-scale: 90;

    --divider-gap: 180px;
    --divider-t-gap: 100px;
    --divider-m-gap: 75px;
}

/*Grid*/
:root {
    --grid-gap: 40px;
    --grid-t-gap: 30px;
    --grid-m-gap: 30px;

    --row-gap: 40px;
    --row-t-gap: 30px;
    --row-m-gap: 30px;
}

/*Font*/
* {
    font-family: "Montserrat", "Pretendard", sans-serif;
}

:root {
    --letter-spacing: -0.5px;
    --font-size-default: 18px;

    --f65: 65px;
    --f55: 55px;
    --f46: 46px;
    --f36: 36px;
    --f32: 32px;
    --f26: 26px;
    --f20: 20px;
    --f18: 18px;
    --f16: 16px;
}

h1,
h2,
h3,
h4,
h5 {
    --letter-spacing: -1.2px;
}

html {
    font-size: var(--font-size-default);
}

p {
    font-size: var(--font-size-default);
}

h1 {
    font-size: 65px;
}

h2 {
    font-size: var(--f65);
}

h3 {
    font-size: var(--f46);
}

h4 {
    font-size: var(--f36);
}

h5 {
    font-size: var(--f26);
    font-weight: 600;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
    :root {
        --f46: 42px;
        --f20: 18.5px;
    }
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
    :root {
        --font-size-default: 16px;

        --f65: 55px;
        --f55: 42px;
        --f46: 34px;
        --f36: 28px;
        --f32: 26px;
        --f26: 22px;
        --f20: 18px;
        --f18: 16px;
        --f16: 14px;
    }
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
    :root {
        --font-size-default: 14px;

        --f65: 38px;
        --f55: 32px;
        --f46: 26px;
        --f36: 24px;
        --f32: 22px;
        --f26: 18px;
        --f20: 15px;
        --f18: 14px;
        --f16: 12px;
    }
}