/*--- base ---*/
@-ms-viewport {
    width: device-width;
}

@o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

:root {
    /* brand color */
    --primary: #EE2624;
    --primary-a-80: rgba(238, 38, 36,.8);
    --primary-a-60: rgba(238, 38, 36,.6);
    --primary-a-40: rgba(238, 38, 36,.4);
    --primary-a-20: rgba(238, 38, 36,.2);
    /*color */
    --black: #1E1C1C;
    --black-a-80: rgba(0,0,0,.8);
    --black-a-60: rgba(0,0,0,.6);
    --black-a-40: rgba(0,0,0,.4);
    --black-a-20: rgba(0,0,0,.2);
    --white: #FFF;
    --white-a-80: rgba(255,255,255,.8);
    --white-a-60: rgba(255,255,255,.6);
    --white-a-40: rgba(255,255,255,.4);
    --white-a-20: rgba(255,255,255,.2);

    /* Text-size styles */
    --title-display-05: 46px;
    --title-display-04: 42px;
    --title-display-03: 38px;
    --title-display-02: 36px;
    --title-display-01: 32px;
    --title-03: 28px;
    --title-02: 26px;
    --title-01: 24px;
    --title-subtitle-02: 20px;
    --title-subtitle-01: 18px;
    --body-02: 18px;
    --body-01: 16px;
    --body-caption: 12px;

    /* ui */
    --transition: 0.2s ease-in-out;
    --w-1400: 1400px;
}

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,input,textarea,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,button {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

/* base */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    word-break: keep-all;
    font-size: 18px;
    color: var(--black);
    user-select: none;
    letter-spacing: -.5px;
    line-height: 1.45;
    text-transform: capitalize;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html{
    overflow-x: hidden;
}

::selection {
    background-color: var(--primary);
    color: var(--white);
}

a,
a:link,
a:visited {
    text-decoration: none;
    transition: var(--transition);
    color: inherit;
}

ul,
ol,
li {
    list-style: none;
}

button {
    border-color: transparent;
    cursor: pointer;
    font-weight: 600;
}