/* GLOBAL STYLES */

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* BODY STYLES */

body {
  background-color: #FEDCD6;
  margin-top: 75px;
}

main {
	padding-top: 25px;
}


/* MAIN CONTENT STYLES */

/*.back-arrow {
	display: block;
	text-align: left;
}

.back-arrow img {
	width: 100px;
}

.back-arrow a {
	line-height: 0; 
    font-size: 0;
    color: transparent;
}*/

.nav-arrows {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.nav-arrow {
	display: block;
	text-align: left;
	margin-left: 10px;
}

.nav-arrow-next {
	margin-right: 10px;
}
.nav-arrow a {
	font-size: 1.8em;
	color: #000;
}

.nav-arrow span {
	font-size: .8em;
}

.content-wrapper {
	width: 95%;
	border: solid 3px #000;
	margin: 50px auto;
	margin-top: 10px;
	font-family: 'Hind', sans-serif;
	color: #000;
}

.content-header {
	background-color: #fff;
	padding: 20px 10px 60px 10px;
	border-bottom: solid 3px #000;
}

.content-header h1 {
	margin: 0;
	font-family: 'Delius', cursive;
	font-size: 2.2em;
}

.content-header h2 {
	font-size: 1.2em;
}

.topic-icon {
	width: 120px;
	margin-top: -60px;
}

.content-body {
	/*background-color: #FCAC9D;*/
	margin-top: -60px;
}

.lesson-button {
	display: inline-block;
	width: 250px;
	padding: 10px;
	margin-top: 85px;
	margin-bottom: 10px;
	/*border: solid 1px #FA5B3D;*/
	border-radius: 10px;
	/*background: linear-gradient(#ff8068, #FA5B3D);
	box-shadow: inset 1px 1px #ffc0b5, 2px 2px 5px #b12e15;*/
	/*color: #FEDCD6;*/
	/*text-shadow: 1px 1px #b12e15;*/
}

.inner-content {
	width: 90%;
	margin: 0 auto;
}

/*.lesson-button:hover {
	color: #FEDCD6;
	box-shadow: inset 1px 1px #ffc0b5, 2px 2px 10px #b12e15 ;
}*/

.video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	margin-top: 35px;
	margin-bottom: 10px;
}
.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

hr {
	color: #000;
	background-color: #000;
}

.content-body h2 {
	font-size: 1.2em;
}

.book,
.book-one {
	display: inline-block;
	color: #000;
	font-size: 1.7em;
	margin: 0 auto;
	margin-bottom: 20px;
}

.book:hover,
.book-one:hover {
	color: #000;
}

.book img,
.book-one img {
	display: block;
	width: 250px;
}

.book img {
	margin: 0 20px;
}

.book-one img {
	margin: 0 auto;
}


/*RESPONSIVE RULES */

@media only screen and (min-width: 710px) {
	
/*	.back-arrow a {
		line-height: auto; 
    	font-size: 1.7em;
    	color: #000;
	}*/

	.content-wrapper {
		width: 80%;
	}

	.content-header h1 {
		font-size: 3.5em;
	}

	.content-header h2 {
		font-size: 1.7em;
	}

	.lesson-button {
		font-size: 1.2em;
	}

	.inner-content {
		width: 75%;
	}

	p {
		font-size: 1.3em;
	}

	.content-body h2 {
		font-size: 2em;
	}


}

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


}