* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	min-height: 100%;
	background-color: white;
	font-size: 16px;
	font-style: normal;
	font-family: Lato, sans-serif;
	letter-spacing: 0px;;
}
.wrapper {
	min-height: 100%;
}
.inner {
	width:1200px;
	margin: 0 auto;
}

/*main begins here*/
.main {
	padding:10px 0;
}
.main .aboutMe {
	display: flex;
	padding-top: 10px;
}
.main .photo {
	display: flex;
	justify-content: center;
	margin-right: 100px;
}
.main .photo img {
	width:350px;
	border-radius: 15px;
	object-fit: cover;
	-webkit-box-shadow: 10px 10px 56px 0px rgba(0,0,0,0.54);
	-moz-box-shadow: 10px 10px 56px 0px rgba(0,0,0,0.54);
	box-shadow: 10px 10px 56px 0px rgba(0,0,0,0.54);
}

#aboutMeName {
	font-weight: normal;
	padding: 5px;
	color:#42474c;
}
.aboutMeTitles {
	font-weight: normal;
	padding: 5px;
	color: #5b6066;
}

.aboutMeP {
	color: #42474c;
	margin: 5px 0 0 5px;
	position: relative;
	font-size: 24px;
}
.highlightWithIcon {
	text-indent: 20px;
}
.highlightWithIcon::before {
	content:"";
	width: 16px;
	height: 16px;
	position: absolute;
	left:0px;
	top:3px;
	background-size: cover;
	background-image: url(../images/gui-check-yes.svg);
}
.educationP {
	margin-top:10px;
	font-size: 20px;
	font-weight: bold;
}
.greenText {
	color:#63d2af;
	text-align: center;
}

.highlightWithIconEducation {
	text-indent: 24px;
}
.highlightWithIconEducation::before {
	content:"";
	width: 20px;
	height: 20px;
	position: absolute;
	left:0px;
	top:3px;
	background-size: cover;
	background-image: url(../images/education-cap.svg);
}
.aboutMeSighUp {
	padding: 5px;
	width:100%;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.signUpButton {
	width: 300px;
	padding:15px;
	background-color: #63d2af;
	text-align: center;
	border-radius: 5px;
	color:white;
	cursor: pointer;
	display: block;
	text-decoration: none;
	color:white;
	font-size: 20px;
}
.signUpButton a {
	text-decoration: none;
	color:white;
	font-size: 20px;
}

/*end of AboutMe section*/
/*routesSubjects begins here*/

.routesSubjects {
	margin-top: 100px;
}
.routesSubjectsHead {
	font-size: 30px;
	text-align: center;
	padding: 30px;
}
.routesLists {
	display: flex;
	border-radius: 20px;
	overflow: hidden;
}
.routeList {
	width:50%;
	padding: 30px 30px 30px 50px;
}
.routeList .routeHead {
	font-size: 30px;
	color: white;
	padding-bottom: 20px;
}
.routeAdults {
	background: linear-gradient(180deg, rgba(101,218,189,1) 0%, rgba(86,176,210,1) 100%);
}

.routeChildren {
	background: linear-gradient(0deg, rgba(101,218,189,1) 0%, rgba(86,176,210,1) 100%);
}
.routeList .routeListItem {
	padding: 10px 5px;
	border-bottom: 1px solid white;
	color: #42474c;
	font-weight: bold;
	line-height: 150%;
}
.routeList .routeListItem:last-child {
	border: 0px;
}

/*routesSubjects ends here*/

.separator {
	width: 80%;
	height: 1px;
	background-color: #63d2af;
	margin: 50px auto;
}
/*routesBlocks begin here*/

.routesBlocks {
	display: flex;
	flex-wrap: wrap;
} 
.routeBlock {
	width:33%;
	height: 380px;
	display: flex;
	flex-direction: column;
}
.routeBlockImg {
	width: 340px;
	height: 220px;
	object-fit: cover;
	border-radius: 5px;
}
.routeBlockTitle {
	font-size: 24px;
	color:#56b0d2;
	margin: 20px 0;
}

.routeBlockButton {
	padding: 10px 15px;
	background-color: #56b0d2;
	color: #fff;
	display: block;
	width: fit-content;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s;
}
.routeBlockButton:hover {
	background-color: #63d2af;
}

/*routesBlocks ends here*/
/*feedbackForm starts here*/

.feedback {
	padding-top: 50px;
	background: linear-gradient(0deg, rgba(101,218,189,1) 0%, rgba(86,176,210,1) 100%);
	min-height: 400px;
}
.feedbackFormHead {
	text-align: center;
	font-size: 30px;
	color:#fff;
}

#feedbackForm {
	display: flex;
	flex-direction: column;
}
#feedbackForm .formLineWrapper {
	display: flex;
	margin:50px 0px 25px;
}
#feedbackForm .inputSpanWrapper {
	display: flex;
	flex-direction: column;
	margin-right: 70px;

}
.feedback span {
	padding: 5px 15px;
	color: white;
	font-size: 16px;
	line-height: 30px;
}
.inputSpanWrapper input[type='text'] {
	border-radius: 5px;
	padding: 10px 15px;
	border: 1px solid #c5cbcf;
	width: 400px;
	background-color: rgba(30, 36, 40, 0.2);
	color: white;
	font-size: 16px;
	line-height: 30px;
}
.inputSpanWrapper input[type='text']::placeholder {
	color: white;
	font-size: 14px;
	line-height: 30px;
}
.inputSpanWrapper input:focus {
	outline: 1px solid #fff;
}

.feedback textarea {
	color: white;
	font-size: 16px;
	line-height: 30px;
	border-radius: 5px;
	border: 1px solid #c5cbcf;
	background-color: rgba(30, 36, 40, 0.2);
	width: 100%;
	height: 150px;
	padding: 10px 15px;
	resize: none;
}
.feedback textarea:focus {
	outline: 1px solid #fff;
}
.feedback textarea::placeholder {
	color: white;
	font-size: 14px;
	line-height: 30px;
}
.feedback input[type='submit'] {
	color: #2a93c9;
	background-color: #fff;
	padding: 24px 50px;
	width: fit-content;
	margin:50px auto;
	border: 0px;
	border-radius: 5px;
	font-weight: bold;
	transition: color 0.3s, background-color 0.3s;
}
.feedback input[type='submit']:hover {
	color: #fff;
	background-color: #2a93c9;
}
/*feedback ends here*/

.googleMaps {
	height: 700px;
}
.googleMaps .inner {
	padding: 100px 0 10px;
}


@media (max-width: 1200px) {
	.inner {
		width: 100%;
	}
	.routesBlocks {
		justify-content: space-evenly;
	}
	.routeBlock {
		width: 35%;
	}
	.formLineWrapper {
		flex-direction: column;
	}
	.formLineWrapper .inputSpanWrapper input {
		width: 70%;
	}
	.googleMaps iframe {
		width: 100%;
	}
}
@media (max-width: 768px) {
	.main .aboutMe {
		display: flex;
		flex-direction: column;
	}
	.main .aboutMe .photo {
		margin: 0;
		margin-bottom: 10px;
	}
	#photoDaria {
		width: 60%;
	}
	.main .aboutMe h1 {
		text-align: center;
	}
	.main .aboutMe #aboutMeText {
		padding-left: 5%;
	}
	.main .aboutMe #aboutMeText > * {
		margin-bottom: 10px;
	} 
	.highlightWithIconEducation {
		margin-bottom: 10px;
	}
	/*about me end	*/
	.routesSubjects {
		margin: 0;
	}
	.routeBlock {
		height: auto;
		min-height: 280px;
	}
	.routeList {
		padding: 30px 5px 30px 5px;
	}
	.routeBlockTitle {
		font-size: 16px;
	}
	.routeBlockImg {
		width: 100%;
		height: auto;
		object-fit: contain;
	}
}