/*Color*/
:root {
  --color-title: #181818;
  --color-text: #181818;
  --color-primary: #101b58;
  --color-little: #fff7e4;
  --color-sub: #fed700;
  --color-mute: #888888;
  --color-dark: #000000;
  --color-light: #ffffff;
  --color-danger: #ea1818;
  --color-warning: #e9ac00;
  --color-success: #24b020;


  --gnb-font-color: var(--color-title);
  --gnb-bg-color: #ffffff;

  --body-bg-color: var(--color-white);
}

::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;
}

/*Layout*/
:root {
  --container-width: 1200px;
  --header-height: 100px;
  --divider-gap: 150px;
}

/*Grid*/
:root {
  --grid-num: auto;
  --grid-m-num: auto;
  --grid-t-num: auto;
  --grid-col: 1;
  --grid-gap: 20px;
  --row-gap: 20px;
  --grid-row: 1;
  --grid-order: 0;
  --grid-col-start: auto;
  --grid-row-start: auto;
}

/*Font*/
p, h1, h2, h3, h4, h5 {
}:root { --font-size-default: 20px; --btn-font-size: 22px; }

html { font-size: var(--font-size-default); }
p { font-size: var(--font-size-default); }
h1 { font-size: 55px; }
h2 { font-size: 40px; }
h3 { font-size: 35px; }
h4 { font-size: 26px; }
h5 { font-size: px; }

h1, h2, h3, h4, h5, h1 span, h2 span, h3 span, h4 span, h5 span { font-weight: 700; }

/* Desktop ( 1024px ~)*/
@media all and (min-width:1024px) {}

/* Laptop ( 1024px ~ 1200px)*/
@media all and (min-width:1024px) and (max-width:1200px) {
  :root {
    --font-size-default: 18px;
    --btn-font-size: 20px;
  }

  h3 {
    font-size: 32px;
  }
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width:768px) and (max-width:1023px) {
  :root {
    --divider-gap: 100px;
  }

  :root {
    --font-size-default: 18px;
    --btn-font-size: 20px;
  }

  h3 {
    font-size: 30px;
  }

  h4{
    font-size: 20px;
  }
}

/* Moble ( ~ 767px)*/
@media all and (max-width:767px) {
  :root {
    --divider-gap: 60px;
  }

  :root {
    --font-size-default: 15px;
    --btn-font-size: 17px;
  }

  h3 {
    font-size: 22px;
  }

  h4{
    font-size: 13px;
  }
}