*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
  }
  
.wrapper  {
	width: 100%;
	background-color: #ddd;
	min-height: 100vh;
	overflow: hidden;
}

.section  {
	width: 100%;
	display: block;
	margin: 20px auto;
}

.left-section  {
	width: 60%;
	float: right;
	padding-right: 50px;
}
.content  {
	text-align: center;
	position: absolute;
	top:25%;
	left: 30%;
	right: 5%;
}

.image-section  {
	float: left;
	width: 40%;
}
.image-section img {
	max-width: 50%;
	height: auto;
}
.image-section img:hover {
	opacity: 0.5;
}

.content .title h2  {
	color: #1c1c1c;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	text-align: center;
}
.content .title h3  {
	padding: 15px;
	color: #a5a1a3;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	text-align: left;
}
.content p  {
	font-family: 'Montserrat', sans-serif;
	color: #1e1e1e;
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 1.5;
	text-align: left;
	padding: 10px;
}
.content .button  {
	padding-top: 40px;
}
.content .button a {
	text-decoration: none;
	padding: 10px 20px;
	font-size: 16px;
	color: #fff;
	background-color: purple;
	letter-spacing: 1px;
	font-family: 'Montserrat', sans-serif;
	text-transform: lowercase;
}
.content .button a:hover {
	background-color: blue;
	transition: 2s ease;
	color: #fff;
}
.content .social {
	padding-top: 40px;
}
.content .social a {
	color: #2f7ff7;
	font-size: 24px;
	padding: 0px 5px;
	font-family: 'Montserrat', sans-serif;
}
.content .social a:hover {
	color: gray;
}
@media screen and (max-width: 768px) {
	body{
		height: 100%;
		position: absolute;
		top: 10%;
	}
	.wrapper {
		top: 5vh;
		flex-direction: column;
		align-items: center;
		width: 40%;
	}
	.left-section {
		width: 50%;
		padding-right: 0px;
	}
	.content h2 {
		text-align: center;
	}
	.content .button {
		text-align: center;
	}
	.content .social {
		text-align: center;
	}
	.image-section {
		width: 100%;
		display: block;
		margin: 50px auto;
	}
	.image-section img {
		width: 100%;
	}	
	/* footer */
	.footer	{
		position: absolute;
		top: 80%;
		background-color: #9b2e66;
		color:#a5a1a3;
		height: 300px;
		position: relative;
	}

	.footer .footer-content {
		border: 2px solid #918f90;
		height: 250px;
		display: flex;
		text-decoration: none;
		font-size: 15px;
	}

	.footer .footer-section li {
		list-style: none;
		text-decoration: none;
	}

	.footer .footer-content .footer-section {
		flex: 1;
		padding:25px;
	}
			
	.footer .footer-bottom {
		background-color: #8b2c5d;
		color:#a5a1a3;
		height: 50px;
		width: 100%;
		text-align: center;
		position: absolute;
		bottom: 0px;
		left: 0px;
		padding-top:20px;
		font-size: 10px;

	}
}
