* {
    margin: 0px;
    padding: 0px;
}

.contact {
	width: 100%;
	height: 100vh;
	text-align: center;
	font-family: 'Rubik', sans-serif;
	background-color: #1C191A;
	position: relative;
}

.contact h1 {
	font-family: 'Rubik', sans-serif;
	font-weight: bold;
	font-size: 45px;
	color: #dca515;
}

.contact .contact-sub {
	font-family: 'Rubik', sans-serif;
	margin-bottom: 3%;
	font-weight: lighter;
	color: #fff;
  
  @media screen and (max-width: 768px) {
    .contact h1 {
    	margin-top: 30%;
    }
  }
	font-size: 25px;
}

.contact h3 {
	font-family: 'Rubik', sans-serif;
	font-weight: lighter;
	color: #fff;
	font-size: 23px;
}

.contact .text {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.logo {
    position: absolute;
    top: 10px;
    left: 20px;
}

.logo img {
	height: 100px;
	margin: 0px;
	padding: 0px;
}

.hamburger {
    position: fixed;
    top: 20px;
    right: 0;
    cursor: pointer;
    z-index: 1000;
    padding: 10px 15px 5px;
  }
  .hamburger span {
    vertical-align: middle;
  }
  .hamburger .bars {
    display: block;
    position: relative;
    width: 35px;
    height: 5px;
    background-color: #fff;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .hamburger .bars:before, .hamburger .bars:after {
    position: absolute;
    content: " ";
    width: 100%;
    height: 5px;
    background-color: #fff;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .hamburger .bars:before {
    top: 10px;
  }
  .hamburger .bars:after {
    bottom: 10px;
  }
  
  .open .hamburger .bars {
    background-color: transparent;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .open .hamburger .bars::before {
    top: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .open .hamburger .bars::after {
    bottom: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .menu {
    width: 45%;
    height: 100%;
    padding: 75px 20px 0;
    background-color: rgba(220, 165, 21, .9);
    position: fixed;
    right: -100%;
    top: 0;
    opacity: 0;
    z-index: 999;
    margin-top: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .menu a {
    color: #fff;
    font-size: 25px;
    font-family: 'Rubik', sans-serif;
	margin-bottom: 15%;
    font-weight: lighter;
    transition: all 300ms;
    text-decoration: none;
  }
  .menu a:hover {
    color: rgba(0, 0, 0, .6);
  }

  .menu ul {
      list-style-type: none;
  }

  .menu ul li {
    margin: 20px 0;
  }
  
  .open .menu {
    right: 0;
    opacity: 1;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  
  .menu:hover {
    overflow-y: auto;
  }

  @media screen and (max-width: 768px) {
    header .top .logo img {
		height: 50px;
	}
    
    .contact h1 {
    	margin-top: 30%;
    }
    
    .contact {
    	height: 150vh;
    }
  }