


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
        font-family: 'Source Sans Pro', sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    align-items:center;
    background-color: #00FF5E;
    padding: 3px 32px;
    border-bottom: 3px solid #13DD63;
    border-radius: 11px;
}

.searchbar {
    width: 25%;
    max-width: 300px;
    display: inline-flex;
}

.searchbar--max-width {
    max-width: 100%;
}

.searchbar__input {
    flex-grow: 1;
    padding: 10px;
    outline: none;
    border: 1px solid #13DD63;
    border-radius: 5px 0 0 5px;
    background: #F4FAF9;
    transition: 0.25s, box-shadow 0.25s;
}

.searchbar__input:focus {
    background: white;
    box-shadow: 0 0 2px #8CC6BA;
}

.searchbar__input::placeholder {
    color: #8CC6BA;
}

.searchbar__button {
    width: 40px;
    background: #13DD63;
    color: #ffffff;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    user-select: none;
}

.searchbar__button:active {
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.25);
}

img {
  max-width: 100%;
 max-height: 100%;
}

.hamburger {
    display: block;
    position: relative;
    z-index: 1;
    user-select: none;
    appearance: none;
    border: none;
    background: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background-color: white;
    border-radius: 6px;
    z-index: 1;
    transform-origin: 0 0;
    transition: 0.4s;
}



.hamburger:hover span:nth-child(2) {
    transform: translateX(10px);
    background-color: #13DD63;
}

.hamburger.is-active span:nth-child(1) {
    transform: translate(0px, -2px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX(15px);
}

.hamburger.is-active span:nth-child(3) {
    transform: translate(-3px, 3px) rotate(-45deg);
}

.hamburger.is-active:hover span {
    background-color: #13DD63;
}

.card {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
  }
  
  /* On mouse-over, add a deeper shadow */
  .card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }
  
  /* Add some padding inside the card container */
  .container {
    padding: 2px 16px;
  }



.menu {
    display: none;
    flex: 1 1 0%;
    justify-content: flex-end;
    margin: 0 - 13px;
    font-weight: 100%;
}


.mobile-menu {
    border-radius: 10px 10px 10px 10px;
    position: fixed;
    top: 0;
    left: 50%;
    width: 50%;
    height: 70%;
    z-index: 98%;
    padding-top: 6rem;
    opacity: 0;
    transform: translateY(-100%);
    border-bottom: 3px solid #13DD63;
    background-color:#00FF5E;
    color: #fff;
    transition: 0.4s;
    font-size: 20px;
}

.mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a{
  display: block;
  padding: 1rem;
  color:#fff;
  text-align: right;
  text-decoration: none;
  transition: 0.4s;

}

.mobile-menu a:hover{
  padding: 10px;
  color: #F4FAF9;
  background-color: #13DD63;
}


.menu a {
    color: #fff;
    margin: 0 16px;
    text-decoration: none;
    transition: 0.4s;
    padding: 8px 16px;
    border-radius: 8px;

}

.menu a.is-active, .menu a:hover {
    background-color: #13DD63;
}



@media (min-width: 968px) {
    .mobile-menu, .hamburger {
        display: none;
    }
    .menu {
        display: flex;
    }
}

@media screen and (max-height: 601px) {
    .mobile-menu {
      font-size: 15px;
    }
  }

@media screen and (max-height: 500px) {
    .mobile-menu {
      font-size: 12px;
    }
  }

  @media screen and (max-height: 380px) {
    .mobile-menu {
      font-size: 7px;
    }
  }
  

.heading {
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
  }
  
  
  