:root {
  --black: rgba(0,0,0,1);
  --white: rgba(255, 255, 255, 1);
  --color1: rgba(255, 80, 0, 1);
  --color2:  rgba(83, 255, 122, 1);
  
  --font-size-h1: 70px;
  --font-size-h3: 60px;
  --font-size-h2: 30px;
  --font-size-p: 18px;
  
  --border-width: 2px;
  --header-nav-margin: 20px;
  
  }
  
  @font-face {
      font-family: "GTAmerica";
      src: url("../fonts/GT-America-Standard-Regular.otf");
      font-weight: 400;
  }
  
  @font-face {
      font-family: "GTAmerica";
      src: url("../fonts/GT-America-Standard-Medium.otf");
      font-weight: 500;
  }
  
  @font-face {
      font-family: "GTAmericaCondensed";
      src: url("../fonts/GT-America-Condensed-Bold.otf");
      font-weight: 600;
  }

  body {
      overflow-x: hidden;
  }

  
  h1 {
      font-family: "GTAmericaCondensed";
      font-size: var(--font-size-h1);
      text-transform: uppercase;
      line-height: 85%;
      margin: 0px;
  }

  h1.seo-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
  }

  h3 {
    font-family: "GTAmericaCondensed";
    font-size: var(--font-size-h3);
    text-transform: uppercase;
    line-height: 95%;
    margin: 0px;
  }
  
  h2 {
      font-family: "GTAmerica";
      font-weight: 500;
      font-size: var(--font-size-h2);
      letter-spacing: -1px;
      line-height: 95%;
      margin: 0px;
  }
  
  p {
      font-family: "GTAmerica";
      font-weight: 400;
      font-size: var(--font-size-p);
      line-height: 120%;
      padding: 0px;
      margin: 0px;
  }
  
  /* NAV */
  
  .nav-header {
      position: fixed;
      top: var(--header-nav-margin);
      right: var(--header-nav-margin);
      z-index: 1;
  
      width: 100%;
      display: flex;
      justify-content: end;
      text-align: end;
      text-decoration: none;
  }
  
  ul {
      margin: 0px;
      padding: 0px;
  }
  
  li {
      list-style: none;
      margin-bottom: var(--border-width);
  }
  
  li a {
      text-decoration: none;
  
      font-family: "GTAmerica";
      font-weight: 500;
      font-size: var(--font-size-p);
      line-height: 120%;
      color: black;
      padding: 0px 5px;
      border-width: var(--border-width);
      border-style: solid;
      border-color: black;
      background-color: white;
  }
  
  li a:hover {
      background-color: var(--color2);
  }
  
  /* HEADER */
  
  .header-wrapper {
      /*padding: var(--header-nav-margin);*/
      height: 90vh;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      background-color: white;
      z-index: 2;
      border-bottom: 10vh solid var(--color1); 
  }

  .header-content {
      width: 100%;
      padding: 0px 10px; 
  }

  .header-border-bottom {
    position: absolute; 
    top: 0; 
    margin: 0; 
    width: 100vw; 
    height: 90vh; 
    border-bottom: 10vh solid var(--color1)
  }

    
  /* LOGO */

  .logo {
    transform-origin: top left;
    transform: scale(1.1);
    position: sticky; 
    top: 0; 
    z-index: 3; 
    margin-top: -1px
  }

  .logo img {
    width: 100%;
    position: absolute; 
    top: 0; 
    left: 0
  }
  
  /* CONTENT */
  
  .content-wrapper {
      width: 100%;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin: 100px 0 100px 0;
  }
  
  .text-container {
      padding: 10% 20%;
  }
  
  .width-80 {
      width: 80%;
      display: flex;
  }

  .width-50 {
    width: 50%;
  }
  
  .headline-container {
      display: flex;
      justify-content: flex-start;
      margin-bottom: 3rem;
  }
  
  .copy-container {
      display: flex;
      justify-content: flex-end;
      margin-bottom: 3rem;
  }

  .title {
    font-size: 20px; 
    margin-bottom: 10px
  }

  /* BUTTONS */

  .link-button {
    border: 2px solid black;
    padding: 2px 6px;
    background-color: white;
    display: flex;
    align-items: center;
    font-family: "GTAmerica";
    font-weight: 500;
    font-size: 32px;
    text-align: center;
   }

   .link-button a {
    text-decoration: none; 
    color: black;
    white-space: nowrap;
    display: flex; 
    align-items: center; 
   }

   .link-button a img {
    height: 30px;
    margin-left: 20px;
   }

   .name-list {
    font-size: 32px; 
    font-weight: 500;
   }


  /* CTA */
  
  .cta-wrapper {
      background-color: var(--color2);
      z-index: 4;
  }
  
  .option-button {
      background-color: white;
      font-family: "GTAmerica";
      font-weight: 500;
      font-size: 48px;
      line-height: 95%;
      text-align: left;
      border: 3px solid black;
      margin: 0px;
      padding: 30px;

      align-items: start;
      text-align: start;
      
  }
  .option-button a {
    display: flex;
    
    text-decoration: none; 
    color: black; 
  }

  .option-button a img {
    width: 50px;
    height: 50px;
  }
  
  .option-button:hover {
      background-color: var(--color1);
  }

  .display-none {
      display: none;
  } 

  .display-flex {
    display: flex;
  }
  
  .cta-content {
    padding: 30px;
  }

  .cta-copy {
    padding: 0 20%; flex-wrap: wrap
  }

  .cta-button-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 2rem 0; 

  }

  .cta-button {
    font-family: "GTAmerica";
    font-weight: 500;
    font-size: 32px;
    color: black;
    background-color: white;
    border: none;
    transition: transform .2s ease-in-out;
  }

  .cta-button a {
    color: inherit; /* blue colors for links too */
    text-decoration: inherit; /* no underline */
  }

  .cta-button:hover {
    border: none;
    color: white;
    background: black;
    transform: rotate(-20deg);
  }
  
  /* FOOTER */
  
  .footer-container {
      display: flex;
      align-items: flex-end;
      margin: 30px;
  }
    
  /* RESPONSIVE DESIGN FOR DESKTOP*/
  
  @media only screen and (min-width: 1000px) {
      :root {    
          --font-size-h1: 185px;
          --font-size-h2: 70px;
          --font-size-h3: 108px;
          --font-size-p: 26px;
  
          --border-width: 3px;
      }    
  }