::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;
}

section {
  position: relative;
  overflow: hidden;
}

:root {
  --input-border: #e5e5e5;
  --input-border-radius: 5px;
  --input-padding: 0 12px;
  --input-font-size: 14px;
  --input-height: 45px;
  --label-font-size: 15px;
  --placeholder-font-size: var(--input-font-size);
  --placeholder-color: #ccc;
  --form-group-gap: 25px;

  --btn-height: 45px;
  --btn-font-size: 14px;
}

/* 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: 150px;
  --divider-t-gap: 100px;
  --divider-m-gap: 60px;
}

/*Grid*/
:root {
  --grid-gap: 20px;
  --grid-t-gap: 20px;
  --grid-m-gap: 20px;

  --row-gap: 20px;
  --row-t-gap: 20px;
  --row-m-gap: 20px;
}

/*Font*/
* {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

:root {
  --font-size-default: 17px;
}

html {
  font-size: var(--font-size-default);
}

p {
  font-size: 17px;
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 23px;
}

h5 {
  font-size: 19px;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {}