/* Shared
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button {
    border-radius: 100px;
  }
  
  /* Sections
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .section {
    padding: 8rem 0 7rem;
    text-align: center;
  }
  .section-heading
  {
    color: rgb(202, 163, 33);
    margin-bottom: 1.2rem;
  }

  .section-description {
    color: rgb(226, 206, 21);
    margin-bottom: 1.2rem;
  }

  .section-description2 {
    color: rgb(202, 163, 33);
    margin-bottom: 1.2rem;
  }
  
  /* Hero
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .mainLogos {
    position: relative;
  }
  .mainLogo {
    position: relative;
    max-width: 135%;
    margin: 50px -175px 15px 20px;
  }
  .mainLogo + .mainLogo {
    display: none;
  }
  
  /* Values
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .values {
    background-image: url('../imgs/background.jpg');
    background-size: cover;
    color: rgb(255, 206, 45);
    padding-bottom: 5rem;
  }
  .value-multiplier {
    margin-bottom: .5rem;
    color: #11DFC7;
  }
  .value-heading {
    margin-bottom: .3rem;
  }
  .value-description {
    opacity: .8;
    font-weight: 300;
  }
  
  /* Help
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .get-help {
    border-bottom: 1px solid #ddd;
    background-color: #292c33;
  }
  
  /* Categories
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .categories {
    background-color: #292c33;
    background-size: cover;
    color: rgb(255, 206, 45);
  }
  .categories .section-description { 
    margin-bottom: 4rem;
  }
  
  /* Bigger than 550 */
  @media (min-width: 550px) {
    .section {
      padding: 12rem 0 11rem;
    }
    .hero {
      background-color: #292c33;
      color: rgb(202, 163, 33);
      padding-bottom: 12rem;
      text-align: left;
      height: 165px;
    }
    .hero2 {
      background-color: #464950;
      color: rgb(202, 163, 33);
      padding-bottom: 12rem;
      text-align: left;
      height: 165px;
    }    
    .mainLogo {
      position: absolute;
      top: -7rem;
      right: 3rem;
      max-height: 362px;
      z-index: 3;
    }
    .mainLogo + .mainLogo {
      top: -6rem;
      display: block;
      max-width: 73.8%;
      right: 0;
      z-index: 2;
      max-height: 338px;
    }
    .hero-heading {
      font-size: 2.0rem;
    }
  }
  
  /* Bigger than 750 */
  @media (min-width: 750px) {
    .hero {
      height: 190px;
    }
    .hero-heading {
      font-size: 2.0rem;
    }
    .section {
      padding: 14rem 0 15rem;
    }
    .hero {
      padding: 16rem 0 14rem;
    }
    .section-description {
      max-width: 60%;
      margin-left: auto;
      margin-right: auto;
    }
    .section-description2 {
      max-width: 60%;
      margin-left: auto;
      margin-right: auto;
    }
    .mainLogo {
      top: -14rem;
      right: 5rem;
      max-height: 510px;
    }
    .mainLogo + .mainLogo {
      top: -12rem;
      max-height: 472px;
    }
    .categories {
      padding: 15rem 0 8rem;
    }
  }
  
  /* Bigger than 1000 */
  @media (min-width: 1000px) {
    .section {
      padding: 20rem 0 19rem;
    }
    .hero {
      padding: 22rem 0;
    }
    .hero-heading {
      font-size: 2.5rem;
    }
    .mainLogo {
      top: -16rem;
      max-height: 615px;
    }
    .mainLogo + .mainLogo {
      top: -14rem;
      max-height: 570px;
    }
  }

  /* Navbar */
  .topnav {
    display: block;
    z-index: 99;
    position: fixed;
    top: 0;
    overflow: hidden;
    width: 100%;
    background-color: rgba(24, 24, 24, 0.849);
  }
  
  .topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .topnav a:hover {
    background-color: rgb(211, 179, 0);
    color: black;
  }
  
  .topnav a.active {
    background-color: #d89504;
    color: rgb(48, 48, 48);
  }