/* Splash */

.splash {
	position: relative;
	width: 100%;
	overflow: hidden;
}

@media (min-width: 1000px) {
	.splash__image {
		width: 100%;
	}

	.splash__overlay {
		position: absolute;
		display: inline-block;
		left: 0px;
		top: 20px;
		min-width: 30%;
		padding-top: 30px;
		padding-bottom: 30px;
		background-color: rgba(159, 173, 158, 0.9);
		text-align: center;
		border-radius: 0px 12px 12px 0px;
	}

	.splash__title {
		margin: 10px 100px;
		vertical-align: middle;
		font-size: 40px;
		line-height: 50px;
		color: #FFFFFF;
	}

	.splash__tag {
		vertical-align: middle;
		margin-left: 20px;
		padding-top: 20px;
		font-size: 30px;
		color: #FFFFFF;
		margin: 10px 100px;
	}
}

@media (max-width: 1000px) {
	.splash__image {
		width: 200%;
		transform: translate(-25%, 0);
	}

	.splash__overlay {
		position: absolute;
		display: inline-block;
		left: 0px;
		top: 20px;
		min-width: 30%;
		padding-top: 30px;
		padding-bottom: 30px;
		background-color: rgba(159, 173, 158, 0.9);
		text-align: center;
		border-radius: 0px 12px 12px 0px;
	}

	.splash__title {
		margin: 10px 60px;
		vertical-align: middle;
		font-size: 30px;
		line-height: 30px;
		color: #FFFFFF;
	}

	.splash__tag {
		vertical-align: middle;
		margin-left: 20px;
		padding-top: 10px;
		font-size: 24px;
		color: #FFFFFF;
		margin: 10px 60px;
	}
}

/* Experiences */

.title {
	font-size: 24px;
	padding-bottom: 20px;
}

.experiences__underline {
	height: 2px;
	width: 100px;
	background-color: #9fad9e;
	margin-left: 50px;
	margin-bottom: 20px;
}

.introduction {
	font-size: 15px;
	padding-left: 50px;
	padding-right: 50px;
}

.introduction--padding {
	padding-bottom: 20px;
}

.introduction--paddingextra {
	padding-bottom: 60px;
}

.experiences {
	width: 75%;
	margin: auto;
	margin-bottom: 40px;
	text-align: center;
}

.experiences__link {
	display: inline-block;
	margin: 10px;
	padding: 10px;
	cursor: pointer;
	font-size: 16px;
	border: 2px solid #FFFFFF;
}

	.experiences__link:hover {
		border-top: 2px solid #FFFFFF;
		border-left: 2px solid #FFFFFF;
		border-right: 2px solid #FFFFFF;
		border-bottom: 2px solid #9fad9e;
	}

.experiences__link--active {
	border: 2px solid #9fad9e;
}

.experiences__link--active:hover {
	border: 2px solid #9fad9e;
}

/* Experience */

@media (min-width: 1000px) {
	.experience {
		width: 90%;
		margin: auto;
		margin-bottom: 40px;
		border: 2px dashed #EEEEEE;
	}

	.experience__full {
		display: inline-block;
		vertical-align: top;
		width: 100%;
	}

	.experience__left {
		display: inline-block;
		vertical-align: top;
		width: 60%;
	}

	.experience__right {
		display: inline-block;
		vertical-align: top;
		width: 40%;
	}

	.experience__image {
		max-width: 97%;
		max-height: 97%;
		padding-top: 3%;
		padding-right: 3%;
	}

	.experience__bottomImage {
		display: inline-block;
		width: 30%;
		margin-left: 1.5%;
		margin-right: 1.5%;
		border-radius: 12px;
	}
}

@media (max-width: 1000px) {
	.experience {
		width: 80%;
		margin: auto;
		margin-bottom: 40px;
		border: 2px dashed #EEEEEE;
	}

	.experience__full {
		display: inline-block;
		vertical-align: top;
		width: 100%;
	}

	.experience__left {
		vertical-align: top;
		width: 90%;
		margin: auto;
	}

	.experience__right {
		vertical-align: top;
		width: 90%;
		margin: auto;
		margin-top: 20px;
	}

	.experience__image {
		max-width: 100%;
	}

	.experience__bottomImage {
		display: inline-block;
		width: 90%;
		margin-bottom: 10px;
		border-radius: 12px;
	}
}

.experience__title {
	font-size: 18px;
	padding-right: 10px;
	margin: 20px 20px 10px 20px;
}

.experience__titleUnderline {
	height: 2px;
	width: 100px;
	background-color: #9fad9e;
	margin-left: 20px;
	margin-bottom: 20px;
}

.experience__information {
	font-size: 16px;
	margin: 10px 20px 20px 20px;
}

.experience__bottom {
	text-align: center;
}

/* Points */

.points {
	width: 90%;
	margin-top: 20px;
	margin-bottom: 20px;
}

.point {
	margin-top: 5px;
}

.point__circle {
	display: inline-block;
	vertical-align: middle;
	width: 4px;
	height: 4px;
	margin-right: 6px;
	border-radius: 20px;
	background-color: #9fad9e;
}

.point__text {
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	width: 90%;
}

.point__text--indented {
	margin-left: 13px;
}

/* Enquiry */

.enquiry {
	width: 100%;
	height: 100%;
	background-color: #9fad9e;
	background: url(../img/main/overview/overview.jpg) #9fad9e;
	background-size: cover;
	background-repeat: no-repeat;
}

@media (min-width: 1000px) {
	.enquiry__content {
		padding: 40px;
		background-color: rgba(159, 173, 158, 0.9);
	}

	.enquiry__left {
		display: inline-block;
		vertical-align: top;
		width: 60%;
	}

	.enquiry__right {
		display: inline-block;
		vertical-align: top;
		width: 40%;
	}

	.enquiry__padding {
		padding-left: 50px;
	}
}

@media (max-width: 1000px) {
	.enquiry__content {
		padding: 40px;
		background-color: rgba(159, 173, 158, 0.9);
		text-align: center;
	}

	.enquiry__left {
		width: 90%;
		margin: auto;
		margin-top: 30px;
	}

	.enquiry__right {
		width: 90%;
		margin: auto;
	}

	.enquiry__padding {
		padding-left: 0px;
	}
}

.enquiry__title {
	margin-top: 20px;
	font-size: 40px;
	text-align: center;
}

.enquiry__titleUnderline {
	width: 100px;
	height: 2px;
	background-color: white;
	margin: auto;
	margin-top: 30px;
	margin-bottom: 40px;
}

.enquiry__image {
	max-width: 90%;
	margin-top: 20px;
	border-radius: 6px;
}

.enquiry__prompt {
	font-size: 14px;
	margin-right: 10px;
}

/* Form */

@media (min-width: 1000px) {
	.experiencesForm__form {
		margin-top: 20px;
		width: 60%;
	}
}

@media (max-width: 1000px) {
	.experiencesForm__form {
		margin-top: 20px;
		width: 90%;
		margin: auto;
		text-align: center;
	}
}

.experiencesForm__text {
	margin-top: 20px;
	font-size: 16px;
}

.experiencesForm__text--small {
	margin-top: 10px;
}

.experiencesForm__box {
	border: 2px dashed #a7b3a4;
	width: 100%;
	margin-top: 20px;
	text-align: center;
}

.experiencesForm__text--box {
	margin: 5px;
}

.experiencesForm__input {
	padding: 4px;
	width: 100%;
	margin: 6px 4px;
	border: 1px solid #8a8a8a;
}

.experiencesForm__send {
	font-size: 18px;
}

.experiencesForm__button {
	box-shadow: none;
	border: 2px solid white;
	background-color: transparent;
	border-radius: 4px;
	padding: 4px 16px;
	color: white;
	font-size: 14px;
	margin-left: 4px;
	cursor: pointer;
}

	.experiencesForm__button:hover {
		border-color: black;
		color: black;
		background-color: white;
	}

/* Workshops */

.workshops {
	margin-top: 60px;
	margin-bottom: 60px;
}

.workshops__title {
	font-size: 40px;
	text-align: center;
}

.workshops__titleUnderline {
	width: 100px;
	height: 2px;
	background-color: #9fad9e;
	margin: auto;
	margin-top: 30px;
	margin-bottom: 40px;
}

@media (min-width: 1000px) {
	.workshop {
		display: inline-block;
		width: 27%;
		margin-left: 3%;
		margin-right: 3%;
		text-align: center;
		opacity: 1;
		transition: opacity 0.3s;
	}
}

@media (max-width: 1000px) {
	.workshop {
		width: 80%;
		margin-left: 10%;
		margin-right: 10%;
		margin-bottom: 60px;
		text-align: center;
		opacity: 1;
		transition: opacity 0.3s;
	}
}

	.workshop:hover {
		cursor: pointer;
		opacity: 0.8;
	}

.workshop__image {
	width: 100%;
}

.workshop__text {
	font-size: 20px;
	background-color: #9fad9e;
	border-radius: 0px 16px 0px 16px;
	display: inline-block;
	padding: 8px 20px;
	margin-top: 16px;
	color: white;
}

/* Reviews */

.reviews {
	width: 100%;
	border-top: 10px solid #9fad9e;
	padding-top: 60px;
	padding-bottom: 60px;
}

.reviews__title {
	font-size: 40px;
	text-align: center;
}

.reviews__titleUnderline {
	width: 100px;
	height: 2px;
	background-color: #9fad9e;
	margin: auto;
	margin-top: 30px;
	margin-bottom: 40px;
}

.review {
	width: 100%;
}

@media (min-width: 1000px) {
	.review__left {
		display: inline-block;
		vertical-align: top;
		width: 30%;
		margin-left: 10%;
		margin-right: 10%;
		margin-top: 20px;
	}

	.review__right {
		display: inline-block;
		vertical-align: top;
		width: 40%;
		margin-right: 10%;
		text-align: left;
		margin-bottom: 60px;
	}
}

@media (max-width: 1000px) {
	.review__left {
		width: 80%;
		margin-left: 10%;
		margin-right: 10%;
		margin-top: 20px;
		margin-bottom: 60px;
	}

	.review__right {
		width: 80%;
		margin-left: 10%;
		margin-right: 10%;
		text-align: left;
	}
}

.review__paragraph {
	font-size: 16px;
	margin-bottom: 20px;
}

.review__division {
	margin-bottom: 20px;
	width: 60%;
	height: 2px;
	background-color: #9fad9e;
}

.review__imageWrapper {
	position: relative;
	line-height: 0;
}

.review__imageDecorationLeft {
	position: absolute;
	top: -10px;
	left: -10px;
	background-color: #9fad9e;
	width: 70%;
	height: 70%;
}

.review__image {
	width: 100%;
	position: relative;
	border-radius: 0px 6px 6px 6px;
}

/* Controls */

.reviews__controls {
	margin-top: 20px;
	text-align: center;
}

.reviews__control {
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid #000000;
	cursor: pointer;
	margin-left: 5%;
	margin-right: 5%;
}

	.reviews__control:hover {
		background-color: #9fad9e;
	}

.reviews__controlImage {
	width: 40px;
	padding-left: 2px;
	padding-top: 13px;
}