@media only screen and (orientation: portrait) {
	#banner{
		background-image: url(images/about/mobilebanner.png);
	}
	#team, #advisors{
		display: block;
	}
		#teamcontent, #advisorscontent{
			display: flex;
			justify-content: space-between;
			flex-wrap: wrap;
		}
			.teammember{
				margin: 5vw;
				width: 30vw;
				text-align: center;
			}
				.teamimage{
					height: 30vw;
					width: 30vw;
				}
				.teamheading{
					margin-top: 1vw;
					font-weight: 600;
				}
				.teamtext{
					width: 10;
				}
	
}

@media only screen and (orientation: landscape) {
	#banner{
		background-image: url(images/about/banner.png);
	}
	#team, #advisors{
		display: block;
	}
		#teamcontent, #advisorscontent{
			display: flex;
			justify-content: space-between;
			flex-wrap: wrap;
		}
			.teammember{
				width: 20vw;
				text-align: center;
			}
				.teamimage{
					height: 6vw;
					width: 6vw;
					border-radius: 0.2vw;
				}
				.teamheading{
					margin-top: 1vw;
					font-weight: 600;
				}
				.teamtext{
					width: 10;
				}
}