@media only screen and (orientation: portrait) {
	#banner{
		background-image: url(images/contact/mobilebanner.png);
	}
	#pitchdeck{
		margin-top: 10vw;
	}
	#form{
		margin-top: 10vw;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
		#formbutton{
			margin: auto;
			margin-top: 2vw;
		}
	#jobbutton{
		margin: auto;
		margin-top: 12vw;
	}
	#info{
		text-align: center;
	}
		#map{
			margin-top: 10vw;
			height: 80vw;
			border-radius: 1vw;
		}
}

@media only screen and (orientation: landscape) {
	#banner{
		background-image: url(images/contact/banner.png);
	}
	#form{
		margin-top: 5vw;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
		.halfinput{
			width: 14vw;
		}
		#formbutton{
			margin: auto;
			margin-top: 2vw;
		}
	#jobbutton{
		margin: auto;
		margin-top: 5vw;
	}
	#pitchdeck{
		width: 20vw;
		margin: auto;
		margin-top: 3vw;
	}
	#info{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
		#map{
			width: 40vw;
			height: 30vw;
			border-radius: 0.5vw;
		}
}