@font-face {
  font-family: "Suit";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Thin.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: "Suit";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: "Suit";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Suit";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2") format("woff2");
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: "Suit";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Suit";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Suit";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Suit";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Suit";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Heavy.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}

:root {
  /* Brand */
  --brand-blue: #0064d8;
  --brand-teal: #1ac697;

  /* Accent */
  --accent-magenta: #db2cca;
  --accent-sky: #1890e1;

  --header-height: 100px;
  --header-height-mobile: 80px;
}

/* "Space Grotesk", sans-serif; */
.font-grotesk {
  font-family: "Space Grotesk", sans-serif;
}

body {
  font-family: "Suit";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.065em;
  color: #2e2e2e;
  line-height: 1.2;
}

/* Layout - Inner Width */
.inner1200 {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.inner1500 {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

/* Utility - Flex Box */
.flex-box {
  display: flex;
}
.flex-box.aligncenter {
  align-items: center;
}
.flex-box.justifycenter {
  justify-content: center;
}
.flex-box.column {
  flex-direction: column;
}
.flex-box.spacebetween {
  justify-content: space-between;
}

/* Component - Button */
.component-btn {
  display: flex;
}
.component-btn a,
.component-btn button {
  color: #fff;
  font-family: SUIT;
  font-size: 16px;
  height: 51px;
  line-height: 51px;
  border-radius: 51px;
  padding: 0 24px;
  font-weight: 600;
  background: var(--brand-blue);
  display: block;
}

.component-btn a.bg-white,
.component-btn button.bg-white {
  background: #fff;
  color: #000;
}
