html,body {
	font-size: 18px;
}
h1 {
	line-height: 36px;
}
h2 {
	line-height: 5.8vw;
	margin-top: 0px;
	margin-bottom: 10px;
}
.comp {
	display: none;
}
.phone {
	display: block;
}
.hamburger {
	float: right;
	margin-top: 5px;
	width: 50px;
	position: relative;
	margin-bottom: 5px;
	margin-right: 2%;
	z-index: 99;
}
.hamburger .menu {
	width: 50px;
	position: absolute;
	left: 0px;
	top: 1px;
	height: 40px;
	z-index: 10;
}
.hamburger .line{
	width: 40px;
	height: 3px;
	background-color: #030;
	display: block;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin-top: 8px;
	margin-right: auto;
	margin-bottom: 8px;
	margin-left: auto;
}
.hamburger:hover{
  cursor: pointer;
}
#hamburger-1.is-active .line:nth-child(3){
  opacity: 0;
}
#hamburger-1.is-active .line:nth-child(2){
  -webkit-transform: translateY(11px) rotate(45deg);
  -ms-transform: translateY(11px) rotate(45deg);
  -o-transform: translateY(11px) rotate(45deg);
  transform: translateY(11px) rotate(45deg);
}
#hamburger-1.is-active .line:nth-child(4){
  -webkit-transform: translateY(-11px) rotate(-45deg);
  -ms-transform: translateY(-11px) rotate(-45deg);
  -o-transform: translateY(-11px) rotate(-45deg);
  transform: translateY(-11px) rotate(-45deg);
}