@charset "utf-8";
/* CSS Document */


body{
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
}

.body{
	position: relative;
	top: 0vh;
	min-height: 100vh;
}

.main-content{
	display: grid;
	grid-template-columns: 50% 50%;
	grid-template-rows: 100%;
	height: 100%;
}

.main-text{
	padding: 10vh 7vw 10vh 4vw;
	align-self: center;
	
}

.main-text h2{
	padding-bottom: 5vh;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	color: #2d545e;
}

.main-text p{
	font-family: 'Montserrat', sans-serif;
	color: #999999;
}

.main-img{
	align-self: center;
}

.main-img img{
	width:100%;
	
}


/* MOBILE */

@media screen and (max-width: 767px){
	.body{
		height: auto;
	}
	
	
	.main-content{
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto;
	height: 100%;
}
	
	.main-text{
	padding: 0 7vw 0 9vw;
	margin-top:8vh;
}

}


/* TABLET */

@media screen and (max-width: 1201px) and (min-width: 767px) {
		.body{
		height: auto;
	}
	
	
	.main-content{
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto;
	height: 100%;
}
	
	.main-text{
	padding: 0 7vw 0 5vw;
	margin-top:8vh;
}
	
	.main-text h2{
	text-align: center;
}
}