#welcome-banner{
	height: 100vh;
	position: relative;
	overflow: hidden;
	background-image: url("./img/welcome-background2.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}

#welcome-image {
	width: 50%;
	float: left;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

#welcome-image > img {
	position: relative;
	height: 70%;
}

#welcome-text {
	width: 50%;
	float : right;
	height: 100%;
	padding: 50px 50px 50px 0px;
	display: flex;
	flex-direction: column;
}

#welcome-text > .flex-item{
	flex: auto;
}

#welcome-text > img{
	height: 20%;
}

#welcome-text > button{
	padding-left: 50px;
	padding-right: 50px;
}

@media only screen and (max-width: 768px) {
  #welcome-text {
    width: 100%;
	height:50%;
	text-align: center;

  }
  #welcome-image {
    width: 100%;
	height:50%;
  }

  #welcome-banner {
	display: flex;
	flex-direction: column;
	height: 200vh;

  }

}