::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: 150px;
  --divider-t-gap: 120px;
  --divider-m-gap: 80px;
}

.divider-top {
  padding-bottom: 0;
  margin-bottom: 0;
}

.divider-bottom {
  padding-top: 0;
  margin-top: 0;
}

/*Grid*/
:root {
  --grid-gap: 30px;
  --grid-t-gap: 20px;
  --grid-m-gap: 20px;

  --row-gap: 30px;
  --row-t-gap: 20px;
  --row-m-gap: 20px;
}

/*Font*/
* {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

.pps {
  font-family: "Poppins", "Pretendard", "Noto Sans KR", sans-serif;
  font-weight: 600;
}

.f80 {
  font-size: var(--f80);
}

.btn.white {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

:root {
  --btn-height: 60px;
  --btn-font-size: 18px;

  --input-border: #e5e5e5;
  --input-border-radius: 50px;
  --input-padding: 0 18px;
  --input-font-size: 18px;
  --input-height: 60px;
  /* --input-background-color: #fff;
  --label-font-size: 16px;
  --label-top-margin: 10px;
  --placeholder-font-size: var(--input-font-size);
  --placeholder-color: #ccc;
  --form-group-gap: 35px;
  --input-grid-column-gap: 18px; */

  --letter-spacing: -0.6px;
  --font-size-default: 18px;

  --f18: 18px;
  --f22: 22px;
  --f28: 28px;
  --f36: 36px;
  --f46: 46px;
  --f55: 55px;
  --f80: 80px;
}

html {
  font-size: var(--font-size-default);
}

p {
  font-size: var(--f18);
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: var(--f55);
  line-height: 1.4545;
}

h3 {
  font-size: var(--f46);
}

h4 {
  font-size: var(--f36);
  line-height: 1.4;
}

h5 {
  font-size: var(--f22);
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
  :root {
    --f18: 16px;
    --f22: 20px;
    --f28: 24px;
    --f36: 32px;
    --f46: 38px;
    --f55: 48px;
    --f80: 70px;
  }
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  :root {
    --f18: 15px;
    --f22: 18px;
    --f28: 22px;
    --f36: 28px;
    --f46: 34px;
    --f55: 42px;
    --f80: 55px;
  }
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  :root {
    --f18: 14px;
    --f22: 15px;
    --f28: 20px;
    --f36: 22px;
    --f46: 24px;
    --f55: 28px;
    --f80: 36px;
  }
}
