main {
	height: calc(100vh - 60px);
	width: 100%;
	margin-top: 60px;
	justify-content: center;
	background-image: url("../images/main-intropic.png"), url("../images/index-mainbackground.png");
	background-size: 55vw, cover;
	background-repeat: no-repeat;
	background-position: right, center;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-left: 60px;
}

p {
	font-size: 18px;
	line-height: 24px;
}

.main-intro p {
	color: #FFFFFF;
	margin: 40px 0;
}

.main-intro a {
	font-size: 18px;
	display: block;
	background-color: #FFFFFF;
	padding: 10px 20px;
	color: #00B3FF;
	font-weight: 900;
	width: fit-content;
	border-radius: 20px;
	transition: all ease-in-out 200ms;
	margin-top: 30px;
}

.main-intro a:hover {
	background-color: #00B3FF;
	color: #FFFFFF;
}

.intro-mobile {
	display: none;
}

.classes {
	display: flex;
	margin: 40px 60px;
	align-items: center;
}

.classes h2 {
	color: #9154A2;
}


.classes img {
	padding-right: 60px;
}

.classes-text {
	width: 50%;
}

.classes-text-stars {
	margin-top: 30px;
}

.classes-text-stars p {
	font-size: 12px;
	line-height: 24px;
	font-weight: 600;
	color: #EC008C;
}

.camps {
	background-color: #9d4dbb;
	display: flex;
	height: 100%;
	align-items: center;
	padding-top: 30px;
	padding-bottom: 30px;
}

.camps-text {
	margin-left: 60px;
	width: 65%;
}

.camps p {
	color: #FFFFFF;
}

.camps-pic {
	margin-right: 60px;
	padding-left: 60px;
	width: 80%;
}

.camps a {
	font-size: 18px;
	display: block;
	background-color: #FFFFFF;
	padding: 10px 20px;
	color: #00B3FF;
	font-weight: 900;
	width: fit-content;
	border-radius: 20px;
	transition: all ease-in-out 200ms;
	margin-top: 30px;
}

.camps a:hover {
	background-color: #00B3FF;
	color: #FFFFFF;
}

.location {
	margin: 30px 60px 30px;
	display: flex;
	flex-direction: column;
}

.location h2, p {
	color: #9154A2;
}

.location-map {
	text-align: center;
	margin-top: 20px;
}

.quotes {
	background-color: #F3F3F3;
	align-items: center;
	padding-top: 30px;
	padding-bottom: 60px;
	padding-left: 60px;
	padding-right: 60px;
}

.quotes h2 {
	color: black;
	margin-bottom: 10px;
}

/* MOBILE VERSION*/

@media only screen and (max-width: 768px) {
	
	main {
		height: calc(100vh - 50px);
		width: 100%;
		margin-top: 50px;
		background-color: #9154A1;
		justify-content: center;
		background-image: url("../images/main-intropic.png"), url("../images/index-mainbackground-mobile.png");
		background-size: 50vh, cover;
		background-repeat: no-repeat;
		background-position: bottom, center;
		padding-left: 0px;
		align-items: flex-start;
		text-align: center;
	}
		
	.main-intro {
		margin: 20px 10px 0;
	}
	
	.main-intro a {
		margin: 0 auto;
	}
	
	.intro {
		display: none;
	}
	
	.intro-mobile {
		display: contents;
	}
	
	.intro-mobile p {
		font-size: 18px;
		line-height: 24px;
	}
	
	h1 {
		font-size: 32px;
		line-height: 40px;
	}

	h2 {
		font-size: 32px;
		line-height: 40px;
	}
	
	.classes {
		flex-direction: column-reverse;
		margin: 20px 30px;
	}

	.classes img {
		padding-right: 0px;
		margin-top: 20px;
	}

	.classes-text {
		width: 100%;
		text-align: center;
	}
	
	.camps {
		flex-direction: column;
		text-align: center;
	}
	
	.camps h2 {
		margin-bottom: 10px;
	}

	.camps-text {
		margin-left: 30px;
		margin-right: 30px;
		width: 90%;
	}

	.camps-pic {
		margin-right: 0px;
		padding-left: 0px;
		margin-top: 30px;
		width: 90%;
	}

	.camps a {
		margin: 30px auto 0;
	}
	
	.location {
		margin: 30px 30px 30px;
		text-align: center;
	}
	
	.quotes {
		flex-direction: column;
		text-align: center;
	}
}

@media only screen and (min-width: 992px) {
	
}