:root {
    --primary: #c8da7d;
    --secondary: #0a1f44;
    --primary-invert: #fff;
    --secondary-invert: #fff;

    --gradient-primary: linear-gradient(230deg, #7445ff, #520df4);
    --gradient-secondary: linear-gradient(230deg, #0a1f44, #020024);

    /* DEFAULT COLOR OF TEXTS */
    --text-primary: #0a1f44;

    /* FOR BUTTONS & INPUTS */
    --elements-roundness: 10rem;

    --space-between-blocks: 5.3rem;
    /* for mobiles */
    --space-between-blocks-small-screens: 3rem;
  }

  body {
    font-family: "Roboto", sans-serif;
    color: var(--text-primary);
  }

  .space-between-blocks {
    padding-top: var(--space-between-blocks-small-screens);
    padding-bottom: var(--space-between-blocks-small-screens);
  }

  @media (min-width: 992px) {
    .space-between-blocks {
      padding-top: var(--space-between-blocks);
      padding-bottom: var(--space-between-blocks);
    }
  }

  /* Buttons */

  button {
    color: inherit;
    padding: 0;
    background: none;
    border: none;
  }

  button:focus {
    outline: none;
    box-shadow: none;
  }

  .btn {
    font-size: 0.87rem;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: var(--elements-roundness);
    transition: 0.2s all;
  }

  @media (min-width: 992px) {
    .btn {
      padding: 0.8rem 2rem;
    }
  }

  .btn,
  .btn:hover,
  .btn:focus {
    border: none;
    box-shadow: none;
    outline: none;
  }

  .btn:hover,
  .btn:focus {
    transform: scale(1.05);
  }

  .btn-primary,
  .btn-primary:hover,
  .btn-primary:focus {
    background: var(--primary);
    color: black;
    font-weight: bold;
    letter-spacing: 3px;
  }

  .btn-secondary,
  .btn-secondary:hover,
  .btn-secondary:focus {
    background: var(--gradient-secondary, --secondary);
    color: var(--secondary-invert);
  }

  .btn-primary--empty,
  .btn-primary--empty:hover,
  .btn-primary--empty:focus {
    color: var(--primary);
  }

  .btn-sm {
    padding: 0.8rem;
  }

  .highlight {
    color: var(--primary)
  }

  /* block header */

  .block__header {
    margin-bottom: 4rem;
  }

  .block__title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4;
  }

  @media(min-width: 992px) {
    .block__title {
      font-size: 2.5rem;
    }

    .block__title--big {
      font-size: 3rem;
      line-height: 1.1;
    }
  }

  @media(min-width: 1200px) {
    .block__title--big {
      font-size: 3.5rem;
      line-height: 1.2;
    }
  }

  .block__paragraph {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: .9;
  }

  @media(min-width: 992px) {
    .block__paragraph--big {
      font-size: 1.2rem;
      line-height: 1.6;
    }
  }

  /* Icons */

  .fr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 5px;
    background: rgba(0,0,0,0.04);
    margin-bottom: 1.5rem;
    transition: .5s;
  }

  .fr-icon--medium {
    font-size: 1.5rem;
    height: 3rem;
    width: 3rem;
  }

  .fr-icon--large {
    font-size: 1.2rem;
    height: 3.25rem;
    width: 3.25rem;
  }

  @media (min-width: 992px) {
    .fr-icon--large {
      height: 3.8rem;
      width: 3.8rem;
      font-size: 1.9rem;
    }
  }

  /* Put your blocks here */
