@charset "utf-8";
/** Reset **/
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, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, section, summary, textarea,
time, mark, audio, video, select, button, input {
  color: #202124;
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  line-height: 1.4em;
  font-family: 'Pretendard GOV', '-apple-system', 'BlinkMacSystemFont', 'Apple SD Gothic Neo', 'Segoe UI', 'Roboto', sans-serif;
}

html {scroll-behavior: smooth;}
body { overflow-x: hidden;}
* { position: relative; box-sizing: border-box; background-repeat: no-repeat !important; }

article, aside, details, figcaption, figure, footer, header, 
hgroup, menu, main, nav, section { display: block; }

a { text-decoration: none; }
ul { list-style-type: none; }
em { font-style: normal; }
img { max-width: 100%;vertical-align: top; }
table { border-collapse: collapse; border-spacing: 0;}

/* Drag selection color */
input::placeholder { color: #999; opacity: 1; }
input::-webkit-input-placeholder { color: #999; }
input:-ms-input-placeholder { color: #999; }
input:-mos-input-placeholder { color: #999; }
textarea::placeholder { color: #999; opacity: 1; }
/*::selection { color: #FFF; background: #78C3C6; }*/

.blind { position: absolute; clip: rect(0 0 0 0); width: 1px; height: 1px; margin: -1px; overflow: hidden }

/* Variable */
:root {
  --primary: #1C6BFF;
  --dark: #212326;
  --blue100: #F4F7FC;
  --blue200: #EDF2FB;
  --blue300: #DFE9FF;
  --gray100: #F2F4F6;
  --gray200: #E1E2E4;
  --gray300: #D2D5DA;
  --gray400: #9A9A9A;
  --gray500: #686868;
  --barlow: 'Barlow', sans-serif;
}

/* Animate */
.visible {
  opacity: 1;
  transform: translateY(0);
  transition: var(--move);
}

.invisible {
  opacity: 0;
  transform: translateY(32px);
  transition-delay: .2s;
}