* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  background-color: #000;
  background-image: url("/img/bg-img.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  font-family: var(--font-family-base);
  font-size: clamp(15px, 0.938vw, 21px);
  font-weight: var(--fw-400);
  line-height: var(--lh-15);
  color: var(--primary);
}

.content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 30px;

  h1,
  a {
    grid-column: 4/6;
  }
  h1 {
    font-size: 16px;
    margin-top: 50px;
  }

  a {
    text-decoration: none;
    justify-self: end;
  }
}

.policy-links {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  text-align: center;
  a {
    color: #fff;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }
}

#cc-main .cm--bottom {
  bottom: 30px !important;
}

:root {
  --font-family-base: "Poppins", sans-serif;
  --font-jost: "Jost", sans-serif;

  --black: #000;
  --white: #fff;

  --gray: #545454;
  --gray-50: rgba(30, 31, 32, 0.5);
  --gray-100: #92949f;
  --gray-150: #eaeaec;

  --primary: #fafafa;
  --dark: #1e1f20;

  --green: #1a6820;
  --orange: #fddc8b;
  --blue: #28d0e8;

  --bg-main: #141414;
  --bg-grey: #45474f;

  --gradient: linear-gradient(90deg, var(--orange) 0%, var(--blue) 100%);

  /* Border */
  --border-white: 1px solid var(--primary);
  --border-gray: 1px solid var(--bg-grey);
  --border-orange: 1px solid var(--orange);

  /* Font Weight */
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /* Font Size */
  --text-10: 10px;
  --text-13: 13px;
  --text-14: 14px;
  --text-15: 15px;
  --text-22: 22px;
  --text-27: 27px;
  --text-33: 33px;
  --text-40: 40px;
  --text-42: 42px;
  --text-60: 60px;
  --text-75: 75px;
  --text-96: 96px;

  /* Line Height */
  --lh-085: 0.85;
  --lh-1: 1;
  --lh-12: 1.2;
  --lh-14: 1.4;
  --lh-15: 1.5;
  --lh-17: 1.7;
  --lh-18: 1.8;
  --lh-225: 2.25;

  /* Transition */
  --transition: 0.3s ease-in-out;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 260px;
  width: 100%;
  padding: 12px 20px;
  font-size: var(--text-14);
  font-weight: var(--fw-600);
  line-height: var(--lh-17);
  text-transform: uppercase;
  color: currentColor;
  overflow: hidden;
  cursor: pointer;
}

.btn-gradient {
  background: var(--primary);
  color: var(--dark);

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-in-out;
    z-index: 0;
  }

  &:hover {
    &::before {
      transform: scaleX(1);
    }
  }

  span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
  }
}

.arrow-animate .arrow {
  display: flex;
  animation: arrow-move 1.5s infinite ease-in-out;
  transition: transform 0.3s ease;
}

@keyframes arrow-move {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}
@media (max-width: 1200px) {
  .content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 30px;
    padding-inline: 20px;

    h1,
    a {
      grid-column: 1/-1;
    }

    .btn {
      max-width: 200px;
    }
  }
}
