.c-nav {
    display: none;
    justify-content: space-between;
    align-items: center;
 }
    @media only screen and (max-width: 1440px) {
      .c-nav {
        margin: 0; } }
    @media (min-width: 75em) {
      .c-nav {
        display: flex; } }
    .c-nav__items {
      display: flex; }
      .c-nav__items li {
        list-style-type: none;
        padding: 0rem 1rem;
        display: flex;
        align-items: center; }
        .c-nav__items li:last-of-type {
          padding-right: 0; }
    .c-nav__link {
      position: relative;
      text-decoration: none;
      color: black;
      transition: ease 0.3s; }
      .c-nav__link:not(.c-btn):after {
        content: '';
        background-color: black;
        bottom: -5px;
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        transform-origin: center;
        transform: scale(0);
        transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
      .c-nav__link:not(.c-btn):hover {
        color: black;
        text-decoration: none;
        transform: translateY(-5px); }
        .c-nav__link:not(.c-btn):hover:after {
          transform: scale(1); }
      .c-nav__link--active:before {
        content: '';
        background-color: #61b27b;
        height: 20px;
        width: 20px;
        border-radius: 999px;
        display: block;
        position: absolute;
        z-index: -1;
        left: -0.8rem;
        top: 0rem; }
    .c-nav__mobile {
      display: flex;
      justify-content: center;
      position: fixed;
      top: 0;
      left: 0;
      content: '';
      width: 100vw;
      height: 100vh;
      transition: all 500ms ease-in-out;
      clip-path: circle(30px at calc(100% - 65px) calc(65px));
      visibility: hidden;
      background-color: white; }
      @media (min-width: 75em) {
        .c-nav__mobile {
          display: none; } }
      .c-nav__mobile.active {
        visibility: visible;
        clip-path: circle(100%); }
        .c-nav__mobile.active::before {
          visibility: visible;
          clip-path: circle(100%); }
      .c-nav__mobile ul {
        list-style-type: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        justify-content: center; }
      .c-nav__mobile--toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 99;
        top: 30px;
        right: 30px;
        width: 70px;
        height: 70px;
        border: none;
        border-radius: 50%;
        padding: 0;
        line-height: 0.6;
        text-align: center;
        background: none; }
        .c-nav__mobile--toggle:hover span::before, .c-nav__mobile--toggle:hover span::after {
          width: 34px;
          left: 0; }
        .c-nav__mobile--toggle span {
          display: inline-block;
          position: relative;
          height: 2px;
          width: 34px;
          border-radius: 1px;
          background: #293335;
          vertical-align: middle;
          z-index: 99999; }
          .c-nav__mobile--toggle span:before, .c-nav__mobile--toggle span:after {
            display: inline-block;
            position: absolute;
            content: '';
            height: 2px;
            border-radius: 1px;
            background: #293335;
            transition: all 200ms; }
          .c-nav__mobile--toggle span:before {
            top: -11px;
            left: 3px;
            width: 28px; }
          .c-nav__mobile--toggle span:after {
            top: 11px;
            left: 6px;
            width: 22px; }
        .c-nav__mobile--toggle.toggled span {
          height: 0; }
          .c-nav__mobile--toggle.toggled span::before, .c-nav__mobile--toggle.toggled span::after {
            top: 0px;
            left: 0;
            width: 34px; }
          .c-nav__mobile--toggle.toggled span::before {
            transform: rotate(45deg); }
          .c-nav__mobile--toggle.toggled span::after {
            transform: rotate(-45deg); }
  
  .c-btn {
    display: inline-flex;
    color: white;
    transition: 0.3s;
    position: relative;
    flex-grow: 0;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    white-space: nowrap; }
    .c-btn span {
      transition: all 0.3s ease; }
    .c-btn:hover span {
      transform: translateX(-0.5rem); }
    .c-btn--light {
      background: #61b27b !important; }
    .c-btn--dark {
      background: #61b27b !important; }
    .c-btn--large {
      padding: 1rem 2rem; }
      .c-btn--large:hover span {
        transform: translateX(-0.75rem); }
    .c-btn--left::before {
      content: url(../img/landing/chevron-left.svg);
      width: 1rem;
      height: 1rem;
      display: block;
      position: absolute;
      left: 0;
      opacity: 0;
      transition: all 0.3s ease; }
    .c-btn--left:hover span {
      transform: translateX(0.75rem); }
    .c-btn--left:hover::before {
      left: 1rem;
      opacity: 1; }
    .c-btn--right::after {
      content: url(../img/landing/chevron-right.svg);
      width: 1rem;
      height: 1rem;
      display: block;
      position: absolute;
      right: 0;
      opacity: 0;
      transition: all 0.3s ease; }
    .c-btn--right:hover::after {
      opacity: 1;
      right: 1rem; }