@media screen and (max-width: 1070px) {
	h1, h2, h3 {
	font-size: 25px;
	}
	
	.navlogo {
		display: none;
	}
	
	.moblogo {
		display: flex;
		align-items: center;
		cursor: pointer;
	}
	
	.navbar {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
	}
	
  #navbar{
	position: sticky;
	top: 0px;
	z-index:1000;
	transition: all 750ms cubic-bezier(0.84, 0, 0.07, 1) 0ms;
	margin-bottom: 10px;
	grid-column: 2;
	height: 80px;
	padding: 15px;
	}
  
  body{
	grid-template-columns: 0% 100%;
    grid-template-rows: 75px auto;
  }

  .navbar__container {
    justify-content: space-between;
    height: 80px;
    z-index: 100;
    width: 100%;
    max-width: 1300;
	justify-content: center;
	
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    position: absolute;
    top: -1000px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    height: 50vh;
    z-index: -1;
    background: #e2ddb8;
	box-shadow: rgba(0, 0, 0, .25) 10px 3px 11px 0;
	align-items: center;
	list-style: none;
	text-align: center;
	width: 100%;
	left: 0;
  }

  .navbar__menu.active {
    top: 80px;
    opacity: 1;
    transition: all 0.5 ease;
    height: 80vh;
    font-size: 1.6rem;
    z-index: -100;
	width: 100%;
	left: 0;
  }

  .navbar__toggle .bar {
    width: 50px;
    height: 4px;
    margin: 10px auto;
    transition: all 0.3s ease-in-out;
    background: #008062;
	display: block;
    cursor: pointer;
  }

  .navbar__item {
    width: 100%;
	font-size: 1.4rem; 
  }

  .navbar__links {
    text-align: center;
    padding: 16px;
    width: 100%;
    display: table;
    transition: all 0.5s ease-in-out;
  }
  
  .navbar__links:hover {
    padding-left: 40px;
  }

  #mobile-menu {
    position: absolute;
    top: 5%;
    transform: translate(5%, 20%);
	right: 5%;
  }
  
  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(14px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-14px) rotate(-45deg);
  }
  
  
}
