@import url('https://fonts.googleapis.com/css?family=Righteous|Roboto:300,400,500,700');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none !important;
}
body {
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	background: #fff;
	line-height: normal;
}
h1 {
	font-size: 55px;
	line-height: 68px;
	letter-spacing: 0.7rem;
	color: #092A5B;
	font-weight: normal;
	font-family: 'Righteous', cursive;
}
h2 {
	font-size: 40px;
	line-height: 55px;
	letter-spacing: 0.3rem;
	color: #092A5B;
	font-weight: normal;
	font-family: 'Righteous', cursive;
	margin: 0 0 45px;
}
h3 {
	font-size: 35px;
	line-height: 40px;
	letter-spacing: 0.27rem;
	color: #092A5B;
	font-weight: normal;
	font-family: 'Righteous', cursive;
	margin: 0 0 40px;
}
h4 {
	font-size: 30px;
	line-height: 35px;
	letter-spacing: 0.25rem;
	color: #092A5B;
	font-weight: normal;
	font-family: 'Righteous', cursive;
	margin: 0 0 40px;
}
h5 {
	font-size: 27px;
	line-height: 30px;
	letter-spacing: 0.22rem;
	color: #092A5B;
	font-weight: normal;
	font-family: 'Righteous', cursive;
	margin: 0 0 40px;
}
h6 {
	font-size: 24px;
	line-height: 28px;
	letter-spacing: 0.2rem;
	color: #092A5B;
	font-weight: normal;
	font-family: 'Righteous', cursive;
	margin: 0 0 40px;
}
.home h2 {
	margin: 0 0 45px
}
.our-story h3, .our-story h4, .our-story h5, .our-story h6 {
	color: #fff;
}
p {
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	line-height: 40px;
	margin: 0 0 45px;
	color: #092a5b;
	letter-spacing: 0.27rem;
}
p:empty {
	display: none;
}
.container {
	width: 100%;
	max-width: 1100px;
	padding: 0 20px;
	margin: 0 auto;
}
.container:after {
	clear: both;
	display: block;
	content: "";
}
a {
	text-decoration: none;
}
a:hover {
	color: #FFA065;
}
img, iframe {
	max-width: 100%;
	vertical-align: top;
	height: auto;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul li {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-view {
	display: none;
}
.btn {
	font-size: 18px;
	line-height: 45px;
	letter-spacing: 0.18rem;
	color: #FFA065;
	border: solid 2px #FFA065;
	padding: 0 25px;
	height: 50px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	display: inline-block;
	border-radius: 4px;
}
.btn:hover {
	background: #FFA065;
	color: #fff;
}
/*Header*/
.site-header {
	padding: 30px 0 0;
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 9999;
}
.site-header .main-logo {
	float: left;
}
.site-header .main-logo svg, .site-header .main-logo img {
	width: 96px;
}
.main-nav {
	float: right;
}
.main-nav ul {
	margin: 0;
	padding: 25px 0 0;
	list-style: none;
}
.static-header .main-nav ul.menu > li:nth-child(1) {
	display: none;
}
.main-nav ul li {
	margin: 0;
	padding: 0 20px;
	list-style: none;
	display: inline-block;
	position: relative;
}
.main-nav ul.menu > li:last-child {
	padding-right: 0;
}
.main-nav ul li a {
	font-size: 20px;
	line-height: 27px;
	letter-spacing: 0.3rem;
	color: #fff;
	text-decoration: none;
	padding: 0 0 10px;
	font-family: 'Righteous', cursive;
	position: relative;
}
.main-nav ul li a:before {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	content: "";
	background: #fff;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	opacity: 0;
}
.main-nav ul li a:hover:before, .main-nav ul li.current-menu-item > a:before {
	opacity: 1;
}
.main-nav ul li.current-menu-item > a {
	transition-delay: 0;
	-moz-transition-delay: 0;
	-webkit-transition-delay: 0;
}
.main-nav ul li.menu-item-has-children ul {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	padding: 15px 0 0;
	width: 240px;
}
.main-nav ul li.menu-item-has-children:hover ul {
	display: block;
}
.main-nav ul li.menu-item-has-children ul li {
	display: block;
}
.main-nav ul li li a {
	margin-bottom: 7px;
	display: inline-block;
}
.site-header.scroll-header {
	position: fixed;
	background: #fff;
	z-index: 9999;
	padding: 18px 0;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	top: -105px;
	border-bottom: solid 2px #eceff2;
}
.site-header.scroll-header.show-header {
	top: 0;
}
.open-left-panel .site-header.scroll-header, .open-left-panel .site-header.scroll-header .main-logo {
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
}
.open-left-panel .site-header.scroll-header.show-header {
	background: transparent;
	border-bottom: solid 2px transparent;
}
.open-left-panel .site-header.scroll-header.show-header .main-logo {
	opacity: 0;
	visibility: hidden;
	position: relative;
	z-index: -9999;
}
.site-header.scroll-header .main-logo img, .site-header.scroll-header .main-logo svg {
	width: 62px;
}
.site-header.scroll-header .trigger-menu {
	float: right;
	margin-top: 13px;
	width: 40px;
	height: 27px;
	position: relative;
	cursor: pointer;
}
.site-header.scroll-header .trigger-menu span {
	display: block;
	top: 50%;
	margin-top: 2px
}
.site-header.scroll-header .trigger-menu span, .site-header.scroll-header .trigger-menu span::before, .site-header.scroll-header .trigger-menu span::after {
	width: 46px;
	height: 6px;
	background-color: #092a5b;
	border-radius: 0px;
	position: absolute;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	transition-duration: .15s;
	transition-timing-function: ease
}
.site-header.scroll-header .trigger-menu span::before, .site-header.scroll-header .trigger-menu span::after {
	content: "";
	display: block
}
.site-header.scroll-header .trigger-menu span::before {
	top: -12px
}
.site-header.scroll-header .trigger-menu span::after {
	bottom: -11px
}
.site-header.scroll-header .trigger-menu span {
	transition-duration: .3s;
	transition-timing-function: cubic-bezier(0.55, .055, .675, .19)
}
.site-header.scroll-header .trigger-menu span::before {
	transition: top .1s .34s ease-in, opacity .1s ease-in
}
.site-header.scroll-header .trigger-menu span::after {
	transition: bottom .1s .34s ease-in, -webkit-transform .3s cubic-bezier(0.55, .055, .675, .19);
	transition: bottom .1s .34s ease-in, transform .3s cubic-bezier(0.55, .055, .675, .19);
	transition: bottom .1s .34s ease-in, transform .3s cubic-bezier(0.55, .055, .675, .19), -webkit-transform .3s cubic-bezier(0.55, .055, .675, .19)
}
.site-header.scroll-header .trigger-menu.active-menu-icon span {
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
	transition-delay: .14s;
	transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
}
.site-header.scroll-header .trigger-menu.active-menu-icon span::before {
	top: 0;
	opacity: 0;
	transition: top .1s ease-out, opacity .1s .14s ease-out
}
.site-header.scroll-header .trigger-menu.active-menu-icon span::after {
	bottom: 0;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	transition: bottom .1s ease-out, -webkit-transform .3s .14s cubic-bezier(0.215, .61, .355, 1);
	transition: bottom .1s ease-out, transform .3s .14s cubic-bezier(0.215, .61, .355, 1);
	transition: bottom .1s ease-out, transform .3s .14s cubic-bezier(0.215, .61, .355, 1), -webkit-transform .3s .14s cubic-bezier(0.215, .61, .355, 1)
}
.site-header.left-header {
	position: fixed;
	right: 0;
	left: auto;
	width: 26%;
	max-width: 600px;
	z-index: -9;
	background: #fff;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	padding: 0;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	border-left: solid 2px #eceff2;
}
.site-header.left-header.open-panel .container {
	padding: 0;
	height: 100%;
}
.site-header.left-header.open-panel .logo-close-outer {
	padding: 20px 130px;
	height: 104px;
}
.site-header.left-header .logo-close-outer {
	height: 85px;
	opacity: 0;
	visibility: hidden;
	z-index: -99;
	overflow: hidden;
}
.site-header.left-header.open-panel .logo-close-outer:after {
	clear: both;
	display: block;
	content: "";
}
.site-header.left-header.open-panel .logo-close-outer .close-menu {
	float: right;
	margin: 17px 0 0;
}
.site-header.left-header.open-panel .logo-close-outer .close-menu span {
	width: 30px;
	height: 28px;
	display: block;
	cursor: pointer;
	background: url(../images/close-icon.png) no-repeat center center;
}
.site-header.left-header.open-panel .main-logo img {
	width: 62px;
}
.site-header.left-header.open-panel .main-nav {
	width: 100%;
	overflow: auto;
	height: -webkit-calc(100% - 103px);
	height: -moz-calc(100% - 103px);
	height: calc(100% - 103px);
}
.site-header.left-header.open-panel ul {
	padding: 0;
}
.site-header.left-header.open-panel ul.menu > li {
	display: block;
	border-top: solid 2px #eceff2;
	padding: 50px 50px 45px 100px;
}
.site-header.left-header.open-panel ul.menu > li > a {
	display: inline-block;
}
.site-header.left-header.open-panel ul.menu li a {
	color: #092a5b;
}
.main-nav ul li li:last-child a {
	margin-bottom: 0;
}
.site-header.left-header.open-panel ul.menu li a:before {
	background: #092a5b;
}
.site-header.left-header.open-panel ul ul {
	display: block;
	position: relative;
	top: 0;
	width: 100%;
	padding: 15px 0 0;
}
.site-header.left-header.open-panel ul ul li {
	padding: 0;
}
/*Home Hero*/
.home-hero {
	padding: 130px 0 0;
	position: relative;
	margin-bottom: 145px;
}
.home-hero:before {
	position: absolute;
	right: 0;
	top: 0;
	content: "";
	width: 55%;
	height: 100%;
	background: #092a5b;
}
.home-hero:after {
	position: absolute;
	left: 0;
	bottom: -145px;
	content: "";
	width: 42%;
	height: 145px;
	background: #ffa065;
	border-radius: 0 0 5px 0;
}
.hero-title {
	position: relative;
	z-index: 99;
}
.hero-title h1 {
	max-width: 300px;
	padding: 75px 0 105px;
}
.hero-title h1 span {
	color: #ffa065;
}
.home-hero .hero-video {
	width: 35%;
	border-radius: 5px 0 0 5px;
	position: absolute;
	right: 0;
	top: 300px;
	overflow: hidden;
	z-index: 999;
}
.home-hero .hero-video .video-thum {
	position: relative;
	display: block;
}
.home-hero .hero-video .video-thum:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/video-icons.png) no-repeat center center;
	opacity: 0.6;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	background-size: 99px auto;
}
.home-hero .hero-video .video-thum:hover:before {
	opacity: 1;
}
.hero-video img, .hero-video iframe {
	width: 100%;
}
.hero-video .video-title a {
	background: #fff;
	padding: 25px 20px;
	font-size: 19px;
	font-family: 'Roboto', sans-serif;
	line-height: normal;
	margin: 0;
	color: #092a5b;
	position: relative;
	text-align: center;
	display: block;
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 0.1rem;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
}
.hero-video .video-title a:hover {
	color: #9eabbf;
}
.hero-video .video-title a:after {
	display: inline-block;
	content: "";
	background: url(../images/right-arrow.png) no-repeat;
	width: 20px;
	height: 19px;
	margin-left: 20px;
	position: relative;
	top: 5px;
	background-size: 20px auto;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
}
.hero-video .video-title a:hover:after {
	background: url(../images/right-arrow-h.png) no-repeat;
	background-size: 20px auto;
}
.our-philosophy {
	position: relative;
	z-index: 99;
	width: 90%;
	background: #ffa065;
	padding: 120px 0 0;
}
.our-philosophy:before {
	position: absolute;
	z-index: 99;
	width: 99999px;
	background: #ffa065;
	top: 0;
	height: 100%;
	right: 100%;
	content: "";
}
.our-philosophy h2 {
	color: #fff;
	max-width: 515px;
	margin: 0 0 70px;
}
.our-philosophy p {
	color: #fff;
	max-width: 530px;
}
.our-philosophy .btn {
	border: solid 2px #fff;
	color: #fff;
}
.our-philosophy .btn:hover {
	background: #fff;
	color: #ffa065;
}
/*how-work*/
.how-work {
	padding: 180px 0 240px;
}
.how-work .one-half-left {
	float: left;
	width: 42%;
}
.how-work .one-half-right {
	float: right;
	width: 45%;
	padding-top: 20px;
}
.how-work .one-half-right img {
	box-shadow: 30px 25px 0 #ffbd94;
	border-radius: 5px;
	max-width: 377px;
	width: 100%;
}
/*our-reviews*/
.our-reviews {
	padding: 170px 0 140px;
	background: #092a5b;
}
.our-reviews .one-half-left {
	float: right;
	width: 47%;
	padding: 22px 0 0;
}
.our-reviews .one-half-left .review-logos {
	padding: 20px 0 15px;
}
.our-reviews .one-half-left .review-logos a {
	display: inline-block;
	margin: 0 30px 30px 0;
}
.our-reviews .one-half-left h2 {
	color: #fff;
}
.our-reviews .one-half-left p {
	color: #fff;
}
.our-reviews .one-half-right {
	float: left;
	width: 45%;
	border-radius: 5px;
	overflow: hidden;
	z-index: 999;
	cursor: pointer;
	position: relative;
}
.our-reviews .one-half-right .video-thum {
	position: relative;
	display: block;
}
.our-reviews .one-half-right .video-thum:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/video-icons.png) no-repeat center center;
	opacity: 0.6;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	background-size: 99px auto;
}
.our-reviews .one-half-right .video-thum:hover:before {
	opacity: 1;
}
.our-reviews .one-half-right img, .our-reviews .one-half-right iframe {
	width: 100%;
	max-width: 477px;
}
.our-reviews .one-half-right .video-title a {
	background: #fff;
	padding: 25px 20px;
	font-size: 19px;
	font-family: 'Roboto', sans-serif;
	line-height: normal;
	margin: 0;
	color: #092a5b;
	position: relative;
	text-align: center;
	display: block;
	text-decoration: none;
	letter-spacing: 0.1rem;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	font-weight: 500;
}
.our-reviews .one-half-right .video-title a:hover {
	color: #9eabbf;
}
.our-reviews .one-half-right .video-title a:after {
	display: inline-block;
	content: "";
	background: url(../images/right-arrow.png) no-repeat;
	width: 20px;
	height: 19px;
	margin-left: 20px;
	position: relative;
	top: 5px;
	background-size: 20px auto;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
}
.our-reviews .one-half-right .video-title a:hover:after {
	background: url(../images/right-arrow-h.png) no-repeat;
	background-size: 20px auto;
}
.our-reviews .one-half-left p img {
	max-height: 37px;
	width: auto;
	margin-right: 30px;
}
/*school-support*/
.school-support {
	padding: 165px 0 155px;
}
.school-support .one-half-left {
	float: left;
	width: 50%;
}
.school-support .one-half-right {
	float: right;
	width: 42%;
	padding-top: 6px;
}
.school-support .one-half-right img {
	box-shadow: 30px 25px 0 #ffbd94;
	border-radius: 5px;
	max-width: 377px;
	width: 100%;
}
/*our-resources*/
.our-resources {
	padding: 170px 0 165px;
	background: #092a5b;
}
.our-resources .one-half-left {
	float: right;
	width: 49%;
	padding: 43px 0 0;
}
.our-resources .one-half-left h2 {
	color: #fff;
}
.our-resources .one-half-left p + p {
	margin-top: -29px;
}
.our-resources .one-half-left p {
	color: #fff;
	line-height: 36px;
	max-width: 460px;
}
.our-resources .one-half-right {
	float: left;
	width: 43%;
	padding-top: 0px;
}
.our-resources .one-half-right img {
	border-radius: 5px;
	width: 100%;
	max-width: 455px;
}
/*get-results*/
.get-results {
	padding: 115px 0 115px;
}
.get-results .one-half-left {
	float: left;
	width: 35%;
	padding-top: 60px;
}
.get-results .one-half-right {
	float: right;
	width: 61%;
}
.get-results .one-half-right img {
	border-radius: 5px;
	max-width: 650px;
	width: 100%;
}
.get-results .slick-slide {
	outline: none;
}
/*home-contact*/
.footer-contact {
	padding: 165px 0 208px;
	background: #092a5b;
}
.footer-contact .one-half-left {
	float: right;
	width: 50%;
	padding: 40px 0 0;
}
.footer-contact .one-half-left h2 {
	color: #fff;
}
.footer-contact .one-half-left a:not(.btn) {
	color: #fff;
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	line-height: 40px;
	margin: 0;
	letter-spacing: 0.27rem;
	display: block;
	text-decoration: none;
	font-weight: 500;
}
.footer-contact .one-half-left a:not(.btn):hover {
	color: #FFA065;
}
.footer-contact .one-half-left p {
	color: #fff;
	margin: 0 0 60px;
}
.footer-contact .one-half-right {
	float: left;
	width: 40.5%;
	padding-top: 0px;
	border-radius: 5px;
	overflow: hidden;
	position:relative;
}
.footer-contact .one-half-right img, .footer-contact .one-half-right iframe {
	border-radius: 5px;
	width: 100%;
	max-width: 430px;
	height: 330px;
	overflow:hidden;
}
/*site-footer*/
.site-footer {
	padding: 60px 0 15px;
	border-top: solid 2px #f2f4f6;
}
.footer-contact ~ .site-footer {
	border-top: none;
}
.site-footer .footer-logo {
	float: left;
	width: 70px;
}
.site-footer .footer-logo {
	width: 70px;
}
.site-footer .footer-nav {
	float: left;
	width: -webkit-calc(100% - 70px);
	width: -moz-calc(100% - 70px);
	width: calc(100% - 70px);
	padding: 0 60px 0 100px;
}
.site-footer .footer-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.site-footer .footer-nav ul li {
	display: inline-block;
	padding: 0 15px 38px;
	width: 24%;
}
.site-footer .footer-nav ul li a {
	font-size: 20px;
	line-height: 27px;
	letter-spacing: 0.3rem;
	color: #092a5b;
	text-decoration: none;
	padding: 0px;
	font-family: 'Righteous', cursive;
	position:relative;
}
.site-footer .footer-nav ul li a:before {
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 3px;
	content: "";
	background:#092a5b;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	opacity: 0;
}
.site-footer .footer-nav ul li a:hover:before {
	opacity: 1;
}

/*About US*/
.about-hero {
	padding: 130px 0 0;
	position: relative;
}
.about-hero:before {
	position: absolute;
	right: 0;
	top: 0;
	content: "";
	width: 55%;
	height: 880px;
	background: #ffa065;
}
.about-hero .container {
	position: relative;
}
.about-img {
	float: right;
	position: absolute;
	right: 15px;
	top: 75px;
	z-index: 999;
	border-radius: 5px;
	overflow: hidden;
}
.about-img img {
	max-width: 424px;
	width: 100%;
}
.our-story {
	position: relative;
	z-index: 99;
	width: 90%;
	background: #092a5b;
	padding: 120px 100px 100px 0;
	border-radius: 0 0 5px 0;
}
.our-story:before {
	position: absolute;
	z-index: 99;
	width: 99999px;
	background: #092a5b;
	top: 0;
	height: 100%;
	right: 100%;
	content: "";
}
.about-img .video-title a {
	background: #fff;
	padding: 25px 20px;
	font-size: 19px;
	font-family: 'Roboto', sans-serif;
	line-height: normal;
	margin: 0;
	color: #092a5b;
	position: relative;
	text-align: center;
	display: block;
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 0.1rem;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
}
.about-img .video-title a:hover {
	color: #9eabbf;
}
.about-img .video-title a:after {
	display: inline-block;
	content: "";
	background: url(../images/right-arrow.png) no-repeat;
	width: 20px;
	height: 19px;
	margin-left: 20px;
	position: relative;
	top: 5px;
	background-size: 20px auto;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
}
.about-img .video-title a:hover:after {
	background: url(../images/right-arrow-h.png) no-repeat;
	background-size: 20px auto;
}
.our-story h2 {
	color: #fff;
	margin: 0 0 44px;
}
.our-story p {
	color: #fff;
	font-size: 16px;
	letter-spacing: 0.23rem;
	line-height: 38px;
	margin: 0 0 38px;
}
.how-work.about-work-sec {
	padding: 140px 0 110px;
}
.how-work.about-work-sec .one-half-right {
	width: 38%;
}
.how-work.about-work-sec .one-half-right img {
	max-width: 390px;
}
.about-work-sec.how-work .one-half-left {
	padding-top: 40px;
	width: 72%;
	margin-right: -15%;
}
/*Contact Us*/
.contact-hero {
	padding: 130px 0 0;
	position: relative;
}
.contact-hero:before {
	position: absolute;
	right: 0;
	top: 0;
	content: "";
	width: 55%;
	height: 880px;
	background: #ffa065;
}
.contact-hero .container {
	position: relative;
}
.contact-img {
	float: right;
	position: absolute;
	right: 0;
	top: 75px;
	z-index: 999;
	border-radius: 5px;
	overflow: hidden;
}
.contact-img iframe {
	width: 425px;
	max-width: 100%;
	height: 490px;
}
.let-talk {
	position: relative;
	z-index: 99;
	width: 90%;
	background: #092a5b;
	padding: 110px 100px 100px 0;
    border-radius: 0 0 5px 0;
}
.let-talk:before {
	position: absolute;
	z-index: 99;
	width: 99999px;
	background: #092a5b;
	top: 0;
	height: 100%;
	right: 100%;
	content: "";
}
.let-talk h2 {
	color: #fff;
}
.let-talk p {
	color: #fff;
	max-width: 510px;
}
ul.contact-infos {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.contact-infos li {
	display: block;
}
ul.contact-infos a {
	display: inline-block;
	position: relative;
	padding: 0 0 0 85px;
	text-decoration: none;
	margin: 0 0 35px;
}
.let-talk .contact-infos p {
    margin: 0;
}
ul.contact-infos a img {
	position: absolute;
	left: 0;
	top: 7px;
	max-width: 27px;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
}
ul.contact-infos a img.hover-img, ul.contact-infos a:hover img.main-icon {
	opacity: 0;
}
ul.contact-infos a:hover img.hover-img {
	opacity: 1;
}
ul.contact-infos a span {
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	line-height: 40px;
	margin: 0;
	color: #fff;
	letter-spacing: 0.27rem;
	display: block;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
}
ul.contact-infos a:hover span, ul.contact-infos a:hover span p {
	color: #ffa065;
}
.how-work.contact-Request-sec {
	padding: 140px 0 130px;
}
.how-work.contact-Request-sec .one-half-right {
	width: 40%;
}
.how-work.contact-Request-sec .one-half-right img {
	width: 100%;
	max-width: 377px;
}
.how-work.contact-Request-sec .one-half-left {
	padding-top: 40px;
	width: 50%;
}
ul.contact-form:after {
	clear: both;
	display: block;
	content: "";
}
ul.contact-form li {
	margin: 0 0 20px;
}
ul.contact-form li:not(.submit-btn) input {
	border: solid 1px #8494ad;
	box-shadow: none;
	width: 100%;
	height: 55px;
	border-radius: 5px;
	font-size: 18px;
	font-weight: 400;
	color: #092a5b;
	font-family: 'Roboto', sans-serif;
	padding: 0 30px;
	letter-spacing: 0.2rem;
}
ul.contact-form li textarea {
	border: solid 1px #8494ad;
	box-shadow: none;
	width: 100%;
	height: 155px;
	border-radius: 5px;
	font-size: 18px;
	font-weight: 400;
	color: #092a5b;
	font-family: 'Roboto', sans-serif;
	padding: 20px 30px;
	letter-spacing: 0.2rem;
}
ul.contact-form li:nth-child(1) {
	width: -webkit-calc(50% - 10px);
	width: -moz-calc(50% - 10px);
	width: calc(50% - 10px);
	float: left;
}
ul.contact-form li:nth-child(2) {
	width: -webkit-calc(50% - 10px);
	width: -moz-calc(50% - 10px);
	width: calc(50% - 10px);
	margin-left: 20px;
	float: left;
}
ul.contact-form li:nth-child(3) {
	clear: left;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
 color: #8494ad;
}
::-moz-placeholder { /* Firefox 19+ */
 color: #8494ad;
}
:-ms-input-placeholder { /* IE 10+ */
 color: #8494ad;
}
:-moz-placeholder { /* Firefox 18- */
 color: #8494ad;
}
ul.contact-form li.submit-btn input {
	font-size: 18px;
	line-height: 45px;
	letter-spacing: 0.18rem;
	color: #FFA065;
	border: solid 2px #FFA065;
	padding: 0 35px;
	height: 50px;
	font-weight: normal;
	text-decoration: none;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	display: inline-block;
	border-radius: 4px;
	box-shadow: none;
	background: none;
	cursor: pointer;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
ul.contact-form li.submit-btn input:hover {
	background: #FFA065;
	color: #fff;
}
ul.contact-form li span.wpcf7-not-valid-tip {
	display: none
}
ul.contact-form li input.wpcf7-not-valid {
	border: solid 1px #f00;
}
div.wpcf7-response-output {
	padding: 10px 15px;
}
div.wpcf7-validation-errors {
    border: none;
    padding: 0;
    text-align: left;
    color: #f00;
    font-weight: 600;
    font-size: 17px;
    margin-top: 0;
}
/*About US*/
.review-hero {
	padding: 130px 0 0;
	position: relative;
	overflow: hidden;
}
.review-hero .container {
	position: relative;
}
.review-hero .hero-title h1 {
	padding: 75px 0 236px;
}
.review-video {
	position: relative;
	width: 63%;
	border-radius: 0 0 5px 0;
	background: #ffa065;
	padding: 160px 130px 160px 0;
}
.review-video:before {
	position: absolute;
	z-index: 99;
	width: 99999px;
	background: #ffa065;
	top: 0;
	height: 100%;
	right: 100%;
	content: "";
}
.review-video img {
	position: relative;
	z-index: 999;
	border-radius: 5px;
}
.value-feedback {
	position: absolute;
	z-index: 99;
	right: 0;
	top: -130px;
	width: 57%;
	background: #092a5b;
	padding: 350px 0px 130px 175px;
}
.value-feedback:before {
	position: absolute;
	left: 100%;
	top: 0;
	content: "";
	width: 99999px;
	height: 100%;
	background: #092a5b;
}
.value-feedback h2 {
	color: #fff;
	margin: 0 0 43px;
}
.value-feedback p {
	color: #fff;
}
.review-hero .review-video .video-thum {
	position: relative;
	display: block;
	z-index: 999;
	border-radius: 5px;
	overflow: hidden;
}
.review-hero .review-video .video-thum:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/video-icons.png) no-repeat center center;
	opacity: 0.6;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	background-size: 99px auto;
	z-index: 9999;
}
.review-hero .review-video .video-thum:hover:before {
	opacity: 1;
}
.value-feedback p img {
	max-height: 37px;
	width: auto;
	margin-right: 30px;
	margin-top: 35px;
}
.review-sec {
	padding: 167px 0 130px;
}
.review-sec .one-half-left {
	width: 50%;
	float: right;
	text-align: center;
	max-width: 430px;
	padding-right: 30px;
}
.review-sec .one-half-right {
	width: 46.5%;
	float: left;
	padding-top: 5px;
}
.review-sec .one-half-left img {
	width: 240px;
	border-radius: 100%;
	margin-bottom: -56px;
}
.review-sec .review-comment {
	background: #092a5b;
	padding: 80px 34px 20px;
	border-radius: 110px 110px 5px 5px;
}
.review-comment p {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.23rem;
	margin: 0 0 25px;
}
.review-comment .student-name {
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.23rem;
}
.review-sec:nth-child(2n+2) {
	background: #092a5b;
}
.review-sec:nth-child(2n+2) .review-comment {
	background: #fff;
}
.review-sec:nth-child(2n+2) .review-comment p, .review-sec:nth-child(2n+2) .review-comment .student-name {
	color: #092a5b;
}
.review-sec:nth-child(2n+2) .one-half-right p {
	line-height: 35px;
	color: #fff;
}
.review-sec:nth-child(2n+2) .one-half-right h2 {
	color: #fff;
}
.review-sec .one-half-right p + p {
	margin-top: -10px;
}
.review-sec:nth-child(2n+2) .one-half-right {
	float: right;
}
.review-sec:nth-child(2n+2) .one-half-left {
	float: left;
}
/*home-school-support*/
.how-work.lasting-impact {
	padding: 110px 0 76px;
}
.home-school-support .about-img img {
	max-width: 460px;
}
.home-school-support .hero-title h1 {
	padding-bottom: 65px;
}
.home-school-support .our-story h2 {
	max-width: 540px;
}
.home-school-support .our-story p {
	max-width: 540px;
	font-size: 18px;
	letter-spacing: 0.27rem;
	line-height: 40px;
	margin: 0 0 45px;
}
.lasting-impact.how-work .one-half-left {
	width: 48%;
	padding-top: 28px;
}
.lasting-impact.how-work .one-half-right img {
	max-width: 400px;
}
.lasting-impact.how-work .one-half-right {
	padding-top: 0;
}
/*Price*/
.prices-hero .our-story p {
	max-width: 540px;
}
.prices-hero .our-story p:nth-of-type(1) {
	max-width: 450px;
}
.prices-hourly {
	width: 100%;
	max-width: 380px;
	padding: 42px 50px 8px;
	background: #092a5b;
	border-radius: 5px;
}
.prices-hourly h3 {
	display: block;
	text-align: center;
	color: #fff;
	font-size: 22px;
	font-weight: 500;
	font-family: 'Roboto', sans-serif;
	margin: 0 0 45px;
	letter-spacing: 0.25rem;
}
.prices-hourly ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.prices-hourly ul li:after {
	clear: both;
	display: block;
	content: "";
}
.prices-hourly ul li {
	display: block;
	margin: 0 0 38px;
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	line-height: 40px;
	color: #fff;
	letter-spacing: 0.27rem;
	font-weight: 500;
	padding-right: 25px;
}
.prices-hourly ul li span {
	font-family: 'Roboto', sans-serif;
	color: #ffa065;
	float: right;
	font-weight: 500;
	font-size: 24px;
}
.prices-dis.how-work .one-half-left {
	width: 55%;
}
.prices-dis.how-work .one-half-right {
	width: 39%;
	padding-top: 55px;
}
.prices-dis.how-work {
	padding: 150px 0 160px;
}
/*resources*/
.resources-hero .video-title {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
.resources-hero .hero-title h1 {
	padding: 100px 0 145px;
}
.resources-hero .about-img {
	top: 100px;
}
.resources-hero .our-story p {
	max-width: 455px;
}
.resources-dis.how-work .one-half-left {
	width: 55%;
}
.resources-dis.how-work .one-half-right {
	width: 40%;
	margin-right: 4%;
	padding-top: 95px;
}
.resources-dis .sample-resources ul:after {
	clear: both;
	display: block;
	content: "";
}
.resources-dis .sample-resources ul li {
	float: left;
	text-align: center;
	width: 50%;
	margin-bottom: 43px;
}
.resources-dis .sample-resources ul li img {
	box-shadow: none;
	max-width: 94px;
	margin-bottom: 12px;
	border-radius: 0;
}
.resources-dis .sample-resources span {
	display: block;
	font-size: 20px;
	font-family: 'Roboto', sans-serif;
	line-height: normal;
	color: #092a5b;
	letter-spacing: 0.1rem;
	font-weight: 500;
}
.resources-dis .sample-resources a:hover span {
	color: #FFA065;
}
.how-work.resources-dis {
	padding: 150px 0 140px;
}
.how-work.resources-dis a.btn {
	margin-top: 20px;
}
/*Resources Library*/
.resources-library-hero .container {
	position: relative;
}
.resources-library-hero .hero-video {
	background: #092a5b;
	padding: 45px 60px 45px 45px;
	top: 90px;
	overflow: visible;
}
.resources-library-hero .hero-video:before {
	position: absolute;
	content: "";
	background: url(../images/round-1.jpg);
	width: 16px;
	height: 16px;
	left: -11px;
	bottom: 156px;
	z-index: 999999;
}
.resources-library-hero .library-list {
	border-radius: 5px;
	overflow: hidden;
}
.resources-library-hero .library-list li {
	display: block;
}
.resources-library-hero .library-list li a {
	background: #fff;
	display: block;
	border-bottom: solid 2px #092a5b;
	color: #092a5b;
	font-size: 22px;
	text-transform: uppercase;
	text-align: center;
	font-family: 'Roboto', sans-serif;
	line-height: 70px;
	letter-spacing: 0.22rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
}
.resources-library-hero .library-list li:last-child a {
	border: none;
}
.resources-library-hero .library-list li a:hover, .resources-library-hero .library-list li a.active {
	background: #ffa065;
	color: #fff;
}
.resources-library-hero .hero-title h1 {
	padding: 99px 0 135px;
}
.resources-library-hero .our-philosophy {
	width: 84%;
	border-radius: 0 5px 5px 0;
	padding: 87px 0 45px;
	margin-bottom: -100px;
}
.resources-library-hero .resources-library-curve {
	position: absolute;
	background: url(../images/round-1.jpg);
	width: 16px;
	height: 16px;
	right: -5px;
	top: 164px;
	z-index: 999999;
	display: block;
}
.resources-library-hero .our-philosophy h2 {
	margin: 0 0 44px;
}
.resources-library-hero.home-hero {
	margin-bottom: 100px;
	padding-bottom: 1px;
}
.resources-library-hero.home-hero:after {
	display: none;
}
/*.resources-library-hero .our-philosophy:after {
    position: absolute;
    z-index: 99;
    width: 193px;
    background: #ffa065;
    bottom: 0;
    height:193px;
    left: 100%;
    content: "";
	border-radius: 0 5px 5px 0;
}*/
.resources-library-hero form#login-form {
	width: 100%;
	max-width: 310px;
	position: relative;
	margin: -7px 0 0;
	padding-right: 40px;
}
.resources-library-hero form#login-form input[type="password"] {
	border: solid 0px #8494ad;
	box-shadow: none;
	width: 100%;
	height: 50px;
	border-radius: 5px;
	font-size: 18px;
	font-weight: 400;
	color: #092a5b;
	font-family: 'Roboto', sans-serif;
	padding: 0 50px 0 26px;
	letter-spacing: 0.15rem;
	background: #fff;
	outline: none;
}
.resources-library-hero form#login-form input[type="submit"] {
	position: absolute;
	right: 40px;
	width: 50px;
	top: 0;
	height: 50px;
	font-size: 0;
	background: url(../images/right-arrow.png) no-repeat center left 7px;
	box-shadow: none;
	border: none;
	z-index: 99;
	cursor: pointer;
	background-size: 21px auto;
	outline: none;
}
.resources-library-hero form#login-form p.status {
	margin: 10px 0 0;
	font-size: 17px;
	letter-spacing: 0.15rem;
	line-height: 27px;
	margin-right: -45px;
	font-weight: 600;
}
.resources-library-hero form#login-form p.status.error {
	color: #f00;
}
.resources-library-hero form#login-form p.status.success {
	color: #092a5b;
}
.already-login-message {
	background: #fff;
	display: inline-block;
	padding: 15px 20px;
	border-radius: 5px;
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	line-height: normal;
	letter-spacing: 0.27rem;
	font-weight: 500;
	color: #092a5b;
}
.resources-library-contact {
	padding: 120px 0 208px;
	background: #fff;
}
.resources-library-contact.footer-contact .one-half-left {
	float: left;
}
.resources-library-contact.footer-contact .one-half-left h2, .resources-library-contact.footer-contact .one-half-left p, .resources-library-contact.footer-contact .one-half-left a:not(.btn) {
	color: #092a5b;
}
.resources-library-contact.footer-contact .one-half-left p a:hover {
	color: #FFA065;
}
.resources-library-contact .one-half-right img {
	box-shadow: 30px 25px 0 #feb283;
}
.resources-library-contact .one-half-right {
	float: right;
	width: 43%;
}
.resources-library-contact .one-half-right iframe {
    max-width: 100%;
}
.resources-library-contact.footer-contact ~ .site-footer {
	border-top:solid 2px #f2f4f6;
	margin-top: 4px;
}
/*Singls resource*/
.library-outer {
	padding: 135px 0 70px;
}
.libarary-inner {
	border: solid 1px #092a5b;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 50px;
}
.libarary-inner .libarary-title:after {
	clear: both;
	display: block;
	content: "";
}
.libarary-inner .libarary-title {
	background: #092a5b;
	padding: 15px 110px 15px 95px;
}
.libarary-inner .libarary-title h3 {
	color: #fff;
	float: left;
	font-size: 22px;
	margin: 0;
	letter-spacing: 0.25rem;
	font-family: 'Roboto', sans-serif;
	line-height: normal;
	font-weight: 500;
}
.libarary-inner .libarary-title .trigger-action {
	color: #fff;
	float: right;
	font-size: 16px;
	letter-spacing: 0.23rem;
	padding-right: 60px;
	position: relative;
	line-height: 30px;
}
.libarary-inner .libarary-title .trigger-action:before {
	background: #fff url(../images/expand-icon.png) no-repeat right center;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 100%;
	width: 30px;
	height: 30px;
	content: "";
}
.libarary-inner .libarary-title .trigger-action.minus:before {
	background: #fff url(../images/expand1-icon.png) no-repeat right center;
	background-size: 100% auto;
}
.libarary-inner div.ui-accordion h3.ui-accordion-header:after {
	display: block;
	clear: both;
	content: "";
}
.libarary-inner div.ui-accordion h3.ui-accordion-header {
	margin: 0;
	border: none;
	background: none;
	color: #092a5b;
	border-top: solid 1px #092a5b;
	padding: 16px 110px 16px 95px;
	font-size: 20px;
	letter-spacing: 0.23rem;
	border-radius: 0;
	outline: none !important;
	font-family: 'Roboto', sans-serif;
	line-height: normal;
}
.libarary-inner div.ui-accordion h3.ui-accordion-header:nth-of-type(1) {
	border-top: none;
}
.libarary-inner div.ui-accordion h3.ui-accordion-header .ui-accordion-header-icon {
	width: 30px;
	height: 30px;
	float: right;
	background: #092a5b url(../images/arr-butt.png) no-repeat center center;
	background-size: 100% auto;
	border-radius: 100%;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	outline: none;
}
.libarary-inner div.ui-accordion h3.ui-accordion-header.ui-state-active .ui-accordion-header-icon {
	transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	border-bottom: none;
}
.libarary-inner div.ui-accordion div.ui-accordion-content {
	border: none;
	box-shadow: none;
	padding: 25px 110px 35px 95px;
}
.libarary-inner div.ui-accordion div.ui-accordion-content ul li {
	float: left;
	width: 90px;
	text-align: center;
	margin: 0 1.5% 60px;
}
.libarary-inner div.list ul li {
	float: left;
	width: 90px;
	text-align: center;
	margin: 0 1.5% 60px;
}
.libarary-inner div.ui-accordion div.ui-accordion-content ul li img, .libarary-inner div.list ul li img {
	width: 50px;
	display: block;
	margin: 0 auto;
}
.libarary-inner div.ui-accordion div.ui-accordion-content ul li p, .libarary-inner div.list ul li p {
	display: block;
	text-align: center;
	color: #092a5b;
	font-size: 9px;
	letter-spacing: 0.1rem;
	margin: 11px 0 0;
	line-height: 14px;
}
.libarary-inner div.ui-accordion div.ui-accordion-content ul li a:hover p, .libarary-inner div.list ul li a:hover p { color:#FFA065}
/*Forum*/
.forums .hero-title {
	max-width: 300px;
	float: left;
	padding-bottom: 50px;
}
.forums.about-hero:before {
	height: 840px;
}
.forums .our-story {
	clear: both;
	width: 100%;
	padding: 75px 80px 80px 0;
	border-radius: 0 5px 5px 0;
	min-height:400px;
}
.forums .about-img {
	position: relative;
	top: 0;
	right: 0;
	width: 45%;
	float: right;
	padding: 70px 0 0;
}
.forums .about-img h2, .forums .about-img p {
	color: #fff;
}
.forums .our-story div#bbpress-forums {
	margin: 0;
	overflow:visible;
}
.forums #bbpress-forums .bbp-forums, .forums #bbpress-forums .bbp-topics {
	background: none;
	border: none;
	margin: 0;
	padding: 0;
}
.forums #bbpress-forums .bbp-search-form{
	display: none;
}
.forums #bbpress-forums .bbp-breadcrumb {
    display: block;
    margin-bottom: 45px;
    padding: 0 15px;
    margin-top: -40px;
    position: relative;
    background: #fff;
    width: 100%;
    padding: 5px 15px;
    border-radius: 5px;
}
.forums #bbpress-forums .bbp-breadcrumb p {
    margin: 0;
    color: #092a5b;
}
.forums #bbpress-forums .bbp-breadcrumb a {
    color: #092a5b;
    text-decoration: underline;
}
.forums #bbpress-forums .bbp-breadcrumb a:hover{
    color: #ffa065;
}
.forums #bbpress-forums li.bbp-header {
	background: none;
	border: none;
	padding: 0;
}
.forums #bbpress-forums li.bbp-header ul li {
	color: #fff;
	padding: 0 30px 35px;
	font-weight: 500;
	font-size: 25px;
	letter-spacing: 0.25rem;
	text-align: left;
}
.forums #bbpress-forums li ul li:nth-child(1) {
	width: 38%;
}
.forums #bbpress-forums li ul li:nth-child(2) {
	width: 18%;
}
.forums #bbpress-forums li ul li:nth-child(3) {
	width: 18%;
}
.forums #bbpress-forums li ul li:nth-child(4) {
	width: 26%;
}
.forums #bbpress-forums li.bbp-body > ul {
	background: #fff !important;
	border: none;
	border-radius: 5px;
	overflow: hidden;
	margin: 0 0 20px;
	padding: 0;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-pack: space-between;
}
.forums #bbpress-forums li.bbp-body > ul > li {
	padding: 20px 40px 18px;
	border-right: solid 1px #092a5b;
}
.forums #bbpress-forums li.bbp-body > ul > li.bbp-forum-freshness, .forums #bbpress-forums li.bbp-body > ul > li.bbp-topic-freshness {
	border: none;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
	-ms-flex-pack: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	text-align: left;
}
.forums #bbpress-forums li.bbp-body ul li {
	color: #092a5b;
	font-size: 16px;
	line-height: 32px;
	letter-spacing: 0.25rem;
	font-weight: 500;
}
.forums #bbpress-forums li.bbp-body ul > li.bbp-forum-topic-count, .forums #bbpress-forums li.bbp-body ul > li.bbp-forum-reply-count, .forums #bbpress-forums li.bbp-body ul > li.bbp-topic-voice-count, .forums #bbpress-forums li.bbp-body ul > li.bbp-topic-reply-count {
	font-size: 22px;
	font-weight: 600;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}
.forums #bbpress-forums li.bbp-body ul > li .bbp-forum-title, .forums #bbpress-forums .bbp-forums li.bbp-body > ul > li.bbp-forum-freshness a, .forums #bbpress-forums li.bbp-body ul > li .bbp-topic-permalink, .forums #bbpress-forums .bbp-forums li.bbp-body > ul > li.bbp-topic-freshness a, .forums #bbpress-forums li.bbp-body > ul > li.bbp-topic-freshness a {
	color: #092a5b;
	font-weight: 500;
}
.forums #bbpress-forums li.bbp-body ul > li .bbp-forums-list, .forums #bbpress-forums li.bbp-body ul > li .bbp-forum-content, .forums #bbpress-forums li.bbp-body ul > li .bbp-topic-meta {
	display: none;
}
.forums #bbpress-forums li.bbp-footer {
	display: none;
}
.forums #bbpress-forums div.bbp-template-notice.info, .forums #bbpress-forums #subscription-toggle, .forums #bbpress-forums .bbp-pagination {
	display: none;
}
.forums #bbpress-forums p > input:not([type="checkbox"]) {
	border: solid 1px #8494ad;
	box-shadow: none;
	width: 100%;
	height: 55px;
	border-radius: 5px;
	font-size: 18px;
	font-weight: 400;
	color: #092a5b;
	font-family: 'Roboto', sans-serif;
	padding: 0 30px;
	letter-spacing: 0.2rem;
	width: 100% !important;
}
.forums #bbpress-forums select {
	border: solid 1px #8494ad;
	box-shadow: none;
	width: 100%;
	height: 55px;
	border-radius: 5px;
	font-size: 18px;
	font-weight: 400;
	color: #092a5b;
	font-family: 'Roboto', sans-serif;
	padding: 0 30px;
	letter-spacing: 0.2rem;
	width: 100% !important;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.forums #bbpress-forums textarea {
	border: solid 1px #8494ad;
	box-shadow: none;
	width: 100%;
	height: 155px;
	border-radius: 5px;
	font-size: 18px;
	font-weight: 400;
	color: #092a5b;
	font-family: 'Roboto', sans-serif;
	padding: 20px 30px;
	letter-spacing: 0.2rem;
}
.forums .bbp-topic-form, .forums .bbp-reply-form {
	background: #fff;
	border-radius: 5px;
	padding: 20px 30px 35px 30px;
}
.forums #bbpress-forums fieldset.bbp-form {
	border: none;
	padding: 0;
	margin-bottom: 0;
}
.forums #bbpress-forums p {
	position: relative;
}
.forums #bbpress-forums p > input[type="checkbox"] {
	position: absolute;
	margin: 13px 0 0;
	z-index: 9999;
	left: 0;
}
.forums #bbpress-forums p > input[type="checkbox"] + label {
	width: 100%;
	padding-left: 25px;
}
.forums #bbpress-forums fieldset.bbp-form legend {
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	line-height: 40px;
	margin: 0 0 5px;
	color: #092a5b;
	letter-spacing: 0.27rem;
}
.forums #bbpress-forums fieldset.bbp-form label {
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	line-height: 40px;
	margin: 0;
	color: #092a5b;
	letter-spacing: 0.27rem;
}
.forums div.bbp-template-notice p {
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	line-height: normal;
	margin: 0;
	color: #092a5b;
	letter-spacing: 0.27rem;
	padding: 0 15px !important;
}
.forums #bbpress-forums fieldset.bbp-form .bbp-submit-wrapper button {
	font-size: 18px;
	line-height: 45px;
	letter-spacing: 0.18rem;
	color: #FFA065;
	border: solid 2px #FFA065;
	padding: 0 35px;
	height: 50px;
	font-weight: normal;
	text-decoration: none;
	transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	display: inline-block;
	border-radius: 5px;
	box-shadow: none;
	background: none;
	cursor: pointer;
	outline: none;
}
.forums #bbpress-forums fieldset.bbp-form .bbp-submit-wrapper button:hover {
	background: #FFA065;
	color: #fff;
}
.forums #bbpress-forums fieldset.bbp-form .bbp-submit-wrapper {
	float: left;
}
.forums #bbpress-forums ul.bbp-replies {
	border: none;
}
.forums #bbpress-forums ul.bbp-replies li.bbp-header div {
	color: #fff;
	padding: 0 30px 15px;
	font-weight: 500;
	font-size: 25px;
	letter-spacing: 0.25rem;
}
.forums .our-story div#bbpress-forums .bbp-topic-tags p a {
	color: #fff;
}
.forums .our-story div#bbpress-forums span#favorite-toggle a.favorite-toggle {
	color: #fff;
}
.forums .our-story div#bbpress-forums .bbp-topic-tags {
	margin-bottom: 15px;
}
.forums #bbpress-forums ul.bbp-replies li div .bbp-reply-post-date {
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	line-height: normal;
	margin: 0;
	color: #092a5b;
	letter-spacing: 0.27rem;
}
.forums #bbpress-forums ul.bbp-replies li div .bbp-meta {
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	line-height: normal;
	margin: 0;
	color: #092a5b;
	letter-spacing: 0.17rem;
}
.forums #bbpress-forums ul.bbp-replies li div .bbp-meta a {
	color: #092a5b;
}
.forums #bbpress-forums ul.bbp-replies li .topic-author {
	padding: 0 30px;
}
.forums #bbpress-forums ul.bbp-replies li .bbp-reply-author {
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	line-height: normal;
	margin: 0;
	color: #092a5b;
	letter-spacing: 0.17rem;
}
.forums #bbpress-forums ul.bbp-replies li, .forums #bbpress-forums ul.bbp-replies li p, .forums #bbpress-forums ul.bbp-replies li .bbp-reply-author a, .forums #bbpress-forums ul.bbp-replies li .bbp-reply-author span {
	color: #092a5b;
}
.forums #bbpress-forums ul.bbp-replies > li {
    border-radius: 5px;
    overflow: hidden;
}
.forums #bbpress-forums ul.bbp-replies > li div.bbp-reply-header {
    padding: 8px 15px;
}
.forums #bbpress-forums ul.bbp-replies li div .bbp-meta .bbp-admin-links a {
    letter-spacing: 0.15rem;
}
.forums #bbpress-forums ul.bbp-replies li .bbp-reply-author a.bbp-author-avatar {
	display: block;
	margin-bottom: 15px;
}
.forums #bbpress-forums ul.bbp-replies li .bbp-reply-author a.bbp-author-avatar + br {
	margin-bottom: 15px;
}
.forums #bbpress-forums li.bbp-body ul li.bbp-forum-info, .forums #bbpress-forums li.bbp-body ul li.bbp-topic-title {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
	-ms-flex-pack: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}
/*404 Page*/
section.error-404.not-found {
	padding: 340px 15px 230px;
	text-align: center;
	max-width: 1100px;
	margin: 0 auto;
}
section.error-404 h1.page-title {
	font-size: 50px;
	letter-spacing: 0.5rem;
	margin-bottom: 50px;
}
/*.error404 header.site-header {
    border-bottom: solid 2px #eceff2;
}
*/
.error404 header.site-header.static-header .main-nav ul li a {
	color: #092A5B;
}
.home-hero-curve {
	position: absolute;
	width: 20px;
	height: 20px;
	border-top: solid 5px #ffa065;
	display: block;
	top: 100%;
	z-index: 9;
	left: 42%;
	border-radius: 100%;
	margin: -6px 0 0 -3px;
	transform: rotate(-21deg);
	-moz-transform: rotate(-21deg);
	-webkit-transform: rotate(-21deg);
	-ms-transform: rotate(-21deg);
}
.prices-hero .about-img .video-title a:after {
	transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
}
nav.pagination {
	text-align: center;
	padding-bottom: 20px;
}
nav.pagination * {
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 3px;
	display: inline-block;
	line-height: 50px;
	font-size: 22px;
	overflow: hidden;
	vertical-align: top;
	color: #092a5b;
	margin: 0 4px;
	font-weight: 600;
}
nav.pagination a.next.page-numbers {
	font-size: 0;
	background: #fff url(../images/right-arrow.png) no-repeat center center;
	background-size: auto 21px;
}
nav.pagination a.prev.page-numbers {
	font-size: 0;
	background: #fff url(../images/right-arrow-left.png) no-repeat center center;
	background-size: auto 21px;
}

/*Responsive*/
@media only screen and (min-width: 992px) {
.open-left-panel .site-header.scroll-header.show-header + .open-panel {
	z-index: 9991;
	opacity: 1;
	visibility: visible;
}
}

@media only screen and (max-width: 1500px) {
.site-header.scroll-header .trigger-menu {
	margin-right: 60px;
}
.site-header.left-header.open-panel ul.menu > li {
    padding: 22px 50px 17px 100px;
}
}
@media only screen and (max-width: 1350px) {
.home-hero .hero-video {
	width: 40%;
}
.site-header.scroll-header .trigger-menu {
	margin-right: 0px;
}
}
 @media only screen and (max-width: 1199px) {
.main-nav ul li {
	padding: 0 10px;
}
.how-work .one-half-right img, .school-support .one-half-right img {
	box-shadow: 15px 15px 0 #ffbd94;
}
.how-work {
	padding: 100px 0 150px;
}
.how-work .one-half-left {
	width: 47%;
}
.how-work .one-half-right {
	width: 50%;
	padding-right: 15px
}
.our-reviews {
	padding: 110px 0 100px;
}
.home-hero {
	margin-bottom: 100px;
}
.home-hero:after {
	bottom: -100px;
	height: 100px;
}
.our-resources {
	padding: 120px 0 100px;
}
.get-results {
	padding: 90px 0;
}
.footer-contact {
	padding: 100px 0 110px;
}
.footer-contact .one-half-right {
	width: 44%;
}
.home h2 {
	margin: 0 0 20px;
}
.school-support {
	padding: 100px 0;
}
.school-support .one-half-right {
	padding-right: 15px;
}
.about-img {
	width: 39%;
}
.value-feedback {
	width: 61%;
	border-radius: 0 0 0 5px;
	padding: 310px 20px 120px 160px;
}
.resources-library-contact .one-half-right img {
	box-shadow: 15px 15px 0 #feb283;
}
.site-header.left-header{ width:40%;}
}
@media only screen and (max-width:991px) {
h1 {
	font-size: 50px;
	line-height: 63px;
	letter-spacing: 0.4rem;
}
.hero-title h1 {
	max-width: 280px;
}
h2 {
	font-size: 35px;
	line-height: 48px;
}
p {
	line-height: 35px;
	letter-spacing: 0.2rem;
}
.container {
	padding: 0 30px;
}
.site-header.scroll-header .container {
	padding: 0 35px;
}
header.site-header.static-header {
	display: none;
}
.site-header.scroll-header {
	top: 0;
}
.home-hero .hero-video {
	width: 45%;
	top: 180px;
}
.site-footer .footer-nav {
	padding: 0 10px 0 20px;
}
.site-footer .footer-nav ul li {
	padding: 0 15px 20px;
}
.site-footer {
	padding: 50px 0 20px;
}
.site-header.left-header {
	width: 100%;
	max-width: 100%;
	border-left: none;
}
.site-header.left-header.open-panel .logo-close-outer {
	padding: 20px 30px;
}
.site-header.left-header.open-panel ul.menu > li {
	padding: 32px 20px 25px 40px;
}
.site-header.left-header.open-panel ul ul {
	padding: 17px 0 0;
}
.main-nav ul li li:last-child a {
	margin-bottom: 0 !important;
}
.site-header.left-header.open-panel ul.menu li li a {
	margin-bottom: 17px;
}
.home-hero {
	margin-bottom: 70px;
}
.home-hero:after {
	bottom: -70px;
	height: 70px;
}
.how-work {
	padding: 70px 0 80px;
}
.our-reviews {
	padding: 80px 0 70px;
}
.open-left-panel .site-header.scroll-header.show-header .main-logo {
	opacity: 1;
	visibility: visible;
	position: relative;
	z-index: 1;
}
.open-left-panel .site-header.scroll-header.show-header {
	background: #fff;
	border-bottom: solid 2px #eceff2;
}
.site-header.left-header.open-panel ul.menu > li:nth-child(1) {
	border-top: none;
}
.site-header.left-header.open-panel .logo-close-outer {
	height: 98px;
}
.our-story p br, .how-work.about-work-sec p br {
	display: none;
}
.how-work.about-work-sec .one-half-right {
	padding-right: 5px;
}
.about-work-sec.how-work .one-half-left {
	width: 60%;
	margin-right: 0;
}
.how-work.about-work-sec {
	padding: 60px 0 40px;
}
.our-story p:nth-of-type(1) {
	max-width: 490px;
}
.contact-img iframe {
	height: 380px;
	width: 370px;
}
.how-work.contact-Request-sec {
	padding: 90px 0 80px;
}
.let-talk {
	padding-bottom: 50px;
}
.prices-dis.how-work {
	padding: 70px 0 80px;
}
.prices-dis.how-work .one-half-right {
	width: 40%;
	padding-right: 0;
}
.prices-hourly {
	padding: 42px 30px 8px;
}
.home-school-support .our-story p {
	font-size: 16px;
	letter-spacing: 0.23rem;
	line-height: 38px;
	margin: 0 0 38px;
}
.our-story {
	padding-bottom: 50px;
}
.how-work.lasting-impact {
	padding: 70px 0 80px;
}
.how-work.resources-dis {
	padding: 70px 0 80px;
}
.resources-dis.how-work .one-half-right {
	margin-right: 0;
}
.review-sec {
	padding: 70px 0 80px;
}
.value-feedback {
	width: 53%;
	padding: 300px 20px 50px 60px;
}
.review-video {
	width: 59%;
	padding: 160px 80px 160px 0;
}
.resources-library-hero .hero-video {
	padding: 20px 30px 30px 30px;
	width: 40%;
	top: 110px;
}
.libarary-inner .libarary-title {
	padding: 15px 60px 15px 45px;
}
.libarary-inner div.ui-accordion div.ui-accordion-content {
	padding: 25px 60px 35px 45px;
}
.library-outer {
	padding: 95px 0 30px;
}
.forums .our-story {
	padding: 75px 30px 80px 0;
}
.forums #bbpress-forums li.bbp-body > ul > li {
	padding: 20px 30px 18px;
}
.forums #bbpress-forums li.bbp-header ul li {
	padding: 0 25px 30px;
	font-size: 21px;
}
.site-header.left-header.open-panel ul.menu > li.home-link {
	display: none;
}
.site-header.left-header.open-panel ul.menu > li.home-link + li {
	margin-top: 0;
	border-top: none;
}
.resources-library-hero .hero-video:before {
	bottom: 146px;
}
.resources-library-hero .resources-library-curve {
	top: 154px;
}
.site-header.left-header.open-panel {
	z-index: 9991;
	opacity: 1;
	visibility: visible;
}
}
@media only screen and (max-width: 767px) {
br {
	display: none !important;
}
h1 {
	letter-spacing: 0.25rem;
	font-size: 38px;
	line-height: 48px;
}
h2 {
	font-size: 27px;
	line-height: 40px;
	margin: 0 0 27px;
	letter-spacing: 0.15rem;
}
.home h2 {
	margin: 0 0 27px;
}
.home p {
	margin: 0 0 25px;
}
p {
	margin: 0 0 15px;
	font-size: 14px;
	line-height: 30px;
	letter-spacing: 0.17rem;
}
.desktop-view {
	display: none !important;
}
.mobile-view {
	display: block;
}
.btn {
	height: 36px;
	line-height: 34px;
	font-size: 14px;
	letter-spacing: 0.1rem;
	padding: 0 15px;
}
.home-hero:before {
	opacity: 0;
}
.site-header.scroll-header {
	box-shadow: none;
	border-bottom: solid 1px #eceff2;
}
.site-header.scroll-header .main-logo img, .site-header.scroll-header .main-logo svg {
	width: 47px;
}
.site-header.scroll-header .trigger-menu span, .site-header.scroll-header .trigger-menu span::before, .site-header.scroll-header .trigger-menu span::after {
	width: 36px;
	height: 6px;
}
.site-header.scroll-header {
	padding: 18px 0 13px;
}
.site-header.scroll-header .trigger-menu span::before {
	top: -9px;
}
.site-header.scroll-header .trigger-menu span::after {
	bottom: -9px;
}
.site-header.scroll-header .trigger-menu {
	margin-top: 6px;
	width: 34px;
	height: 26px;
}
.home-hero {
	padding: 80px 0 0;
	margin-bottom: 53px;
}
.home-hero .container {
	position: relative;
}
.hero-title {
	position: relative;
	z-index: 99;
	width: 56%;
	max-width: 200px;
	float: left;
}
.hero-title h1 {
	max-width: 300px;
	padding: 53px 0 53px;
	min-height: 250px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.video-title {
	display: none;
}
.our-philosophy {
	padding: 32px 30px 0;
	width: calc(100% + 60px);
	width: -webkit-calc(100% + 60px);
	width: -moz-calc(100% + 60px);
	margin: 0 -30px;
	clear: both;
}
.home-hero:after {
	bottom: -53px;
	height: 54px;
	width: 60%;
}
.our-philosophy .btn {
	margin: 2px 0 -18px;
}
.home-hero:before {
	display: none;
}
.home-hero .hero-video {
	float: right;
	width: 38%;
	margin: 0;
	top: 35px;
	right: 0;
	max-height: 182px;
}
.home-hero .hero-video img {
	max-height: 182px;
	object-fit: cover;
}
.home-hero .hero-video .video-thum:before {
	background-size: 33px auto;
}
.how-work .one-half-left {
	width: 100%;
}
.home .how-work .one-half-right {
	width: calc(100% - 150px);
	width: -webkit-calc(100% - 150px);
	width: -moz-calc(100% - 150px);
	margin-top: -63px;
	text-align: center;
	padding-top: 0;
	float: right;
	text-align: left;
}
.home .how-work .one-half-right img {
	max-width: 100%;
}
.our-reviews .one-half-left, .school-support .one-half-left, .our-resources .one-half-left, .footer-contact .one-half-left {
	width: 100%;
	padding: 0;
}
.our-reviews .one-half-right, .school-support .one-half-right, .our-resources .one-half-right, .get-results .one-half-right {
	padding: 0;
	width: 100%;
}
.get-results .one-half-left {
	width: 100%;
	padding: 0 0 35px;
}
.get-results .one-half-right .slick-list {
	max-width: 280px;
	margin: 0 auto;
}
.site-footer .footer-nav {
	float: left;
	width: -webkit-calc(100% - 160px);
	width: -moz-calc(100% - 160px);
	width: calc(100% - 160px);
	padding: 0;
	margin-top: -3px;
}
.site-footer .footer-nav ul li a {
	font-size: 15px;
	line-height: 15px;
	letter-spacing: 0.2rem;
	display: inline-block;
}
.site-footer .footer-logo {
	width: 110px;
	margin-right: 50px;
}
.site-footer .footer-nav ul li {
	padding: 0 0 20px;
	width: 100%;
	display:block;
}
.site-footer {
	padding: 35px 0 25px;
}
.our-resources {
	padding: 33px 0 35px;
}
.footer-contact .one-half-right {
	width: 100%;
	margin-top: 40px;
	border-radius:5px !important;
	-webkit-border-radius:5px !important;
	overflow:hidden;
	display:block;
	overflow:hidden !important;
	position:relative;
	
}
.footer-contact .one-half-right img {
	width: 100%;
	max-width: 100%;
}
.footer-contact a.btn {
	height: 36px;
	line-height: 34px;
	font-size: 14px;
}
.footer-contact {
	padding: 30px 0 45px;
	position: relative;
}
.footer-contact .one-half-left h2 {
	margin-bottom: 27px;
}
.footer-contact .one-half-left a:not(.btn) {
	font-size: 14px;
	line-height: 35px;
}
.get-results {
	padding: 35px 0;
}
.our-resources .mobile-view {
	padding-bottom: 25px;
}
.our-resources .mobile-view img {
	width: 100%;
	border-radius: 5px
}
.our-resources .one-half-left p + p {
	margin-top: 0;
}
.our-resources .one-half-left p {
	margin-top: 0;
	max-width: 100%;
	line-height: 30px;
}
.our-resources .one-half-left p:nth-of-type(1) {
	margin: 0 0 13px;
}
.school-support {
	padding: 30px 0 35px;
}
.school-support .mobile-view {
	padding-bottom: 15px;
	float: right;
	width: 42%;
	margin-left: 15px;
}
.school-support .mobile-view img {
	box-shadow: 8px 10px 0 #ffbd94;
    border-radius: 4px;
}
.our-reviews .one-half-right .video-title a:after {
	margin-left: 5px;
	background-size: 9px auto;
	top: 11px;
}
.our-reviews .one-half-right .video-title a {
	font-size: 11px;
	padding: 6px 15px 11px;
}
.our-reviews .one-half-right {
	border-radius: 3px;
}
.our-reviews {
	padding: 33px 0 35px;
}
.our-reviews .one-half-right.mobile-view {
	margin-bottom: 30px;
}
.our-reviews .one-half-right .video-thum:before {
	background-size: 70px;
}
.how-work {
	padding: 35px 0 45px;
}
.how-work .one-half-right img, .school-support .one-half-right img {
	box-shadow: 10px 10px 0 #ffbd94;
}
.site-header.left-header.open-panel .logo-close-outer {
	padding: 17px 30px;
	height: 80px;
	overflow: hidden;
}
.our-story {
	padding: 32px 30px 40px;
	width: calc(100% + 60px);
	width: -webkit-calc(100% + 60px);
	width: -moz-calc(100% + 60px);
	margin: 0 -30px;
	clear: both;
}
.about-img {
	float: right;
	width: 38%;
	margin: 0;
	top: 35px;
	right: 0;
	max-height: 182px;
	border-radius: 5px 0 0 5px;
}
.about-img img {
	max-height: 182px;
	object-fit: cover;
	height: 182px;
	object-position: 0 50%;
}
.about-hero:before {
	display: none;
}
.our-story h2 {
	margin: 0 0 27px;
}
.our-story p {
	margin: 0 0 15px;
	font-size: 14px;
	line-height: 30px;
	letter-spacing: 0.17rem;
}
.our-story a.btn {
	margin-top: 10px;
}
.our-story p:nth-of-type(1), .our-philosophy p {
	max-width: 100%;
}
.about-work-sec.how-work .one-half-left {
	width: 100%;
	margin-right: 0;
	padding-top: 0;
}
.how-work.about-work-sec .one-half-right {
	width: 100%;
	padding: 15px 0 0;
}
.how-work.about-work-sec {
	padding: 35px 0 50px;
}
.about-hero {
	padding: 80px 0 0;
}
.how-work.about-work-sec .one-half-right img {
	max-width: 100%;
}
.let-talk {
	padding: 32px 30px 40px;
	width: calc(100% + 60px);
	width: -webkit-calc(100% + 60px);
	width: -moz-calc(100% + 60px);
	margin: 0 -30px;
	clear: both;
}
.contact-img {
	float: right;
	width: 38%;
	margin: 0;
	top: 35px;
	right: 0;
	max-height: 182px;
	border-radius: 5px 0 0 5px;
}
.contact-img iframe {
	max-height: 182px;
	width: 100%;
}
.contact-hero:before {
	display: none;
}
.let-talk h2 {
	margin: 0 0 27px;
}
.let-talk p {
	margin: 0 0 15px;
	font-size: 14px;
	line-height: 30px;
	letter-spacing: 0.17rem;
}
.contact-hero {
	padding: 80px 0 0;
}
.let-talk p {
	max-width: 100%;
}
ul.contact-infos a {
	padding: 0 0 0 45px;
	margin: 0 0 15px;
}
ul.contact-infos a span {
	font-size: 14px;
	line-height: 30px;
	letter-spacing: 0.17rem;
}
ul.contact-infos a img {
	top: 9px;
	max-width: 20px;
}
.how-work.contact-Request-sec .one-half-left {
	padding-top: 0;
	width: 100%;
}
.how-work.contact-Request-sec {
	padding: 35px 0 50px;
}
.contact-Request-sec .mobile-view {
	padding-bottom: 25px;
}
.contact-Request-sec .mobile-view img {
	width: 100%;
	border-radius: 5px;
}
ul.contact-form li:not(.submit-btn) input {
	height: 40px;
	font-size: 14px;
	padding: 0 15px;
	letter-spacing: 0.17rem;
}
ul.contact-form li textarea {
	height: 120px;
	font-size: 14px;
	padding: 13px 15px;
	letter-spacing: 0.17rem;
}
ul.contact-form li.submit-btn input {
	height: 36px;
	line-height: 34px;
	font-size: 14px;
	letter-spacing: 0.1rem;
	padding: 0 15px;
}
.prices-hero .our-story p:nth-of-type(1), .prices-hero .our-story p {
	max-width: 100%;
}
.prices-dis.how-work .one-half-left {
	width: 100%;
}
.prices-dis.how-work .one-half-right {
	width: 100%;
	padding-top: 40px;
}
.prices-hourly {
	max-width: 100%;
}
.prices-hourly ul li {
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 30px;
	letter-spacing: 0.17rem;
	padding-right: 0;
}
.prices-hourly ul li span {
	font-size: 18px;
}
.prices-hourly h3 {
	margin: 0 0 35px;
	font-size: 20px;
}
.prices-dis.how-work {
	padding: 35px 0 45px;
}
.our-reviews .one-half-right img, .our-reviews .one-half-right iframe {
	width: 100%;
	max-width: 100%;
}
.home-school-support .our-story p {
	max-width: 100%;
	font-size: 14px;
	letter-spacing: 0.17rem;
	line-height: 30px;
	margin: 0 0 15px;
}
.how-work.lasting-impact {
	padding: 35px 0 45px;
}
.lasting-impact.how-work .one-half-left {
	width: 100%;
	padding-top: 0;
	padding-bottom: 20px;
}
.how-work .one-half-right {
	width: 100%;
	padding-right: 0;
}
.lasting-impact.how-work .one-half-right img {
	max-width: 100%;
}
.resources-hero .hero-title h1 {
	padding: 53px 0 53px;
}
.resources-hero .about-img {
	top: 35px;
}
.resources-hero .our-story p {
	max-width: 100%;
}
.resources-dis.how-work .one-half-left {
	width: 100%;
}
.resources-dis.how-work .one-half-right {
	width: 100%;
	padding-top: 50px;
}
.resources-dis .sample-resources span {
	font-size: 16px;
}
.how-work.resources-dis {
	padding: 35px 0 45px;
}
.resources-dis .sample-resources ul li img {
	max-width: 80px;
}
.review-hero {
	padding: 80px 0 0;
	margin-bottom: 0;
}
.review-hero .container {
	position: relative;
}
.hero-title, .review-hero .hero-title {
	position: relative;
	z-index: 99;
	width: 56%;
	max-width: 200px;
	float: left;
}
.hero-title h1, .review-hero .hero-title h1 {
	max-width: 300px;
	padding: 53px 0 53px;
	min-height: 250px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.video-title {
	display: none;
}
.value-feedback {
	padding: 32px 30px 40px;
	width: calc(100% + 60px);
	width: -webkit-calc(100% + 60px);
	width: -moz-calc(100% + 60px);
	margin: 0 -30px;
	clear: both;
	position: static;
	border-radius: 0;
}
.review-hero .review-video .video-thum:before {
	background-size: 33px auto;
}
.review-hero:after {
	bottom: -53px;
	height: 54px;
	width: 60%;
}
.value-feedback .btn {
	margin: 12px 0 -18px;
}
.review-hero:before {
	display: none;
}
.review-hero .review-video {
	float: right;
	width: 38%;
	margin: 0;
	top: 35px;
	right: 0;
	max-height: 182px;
	padding: 0;
	position: absolute;
	background: none;
}
.review-hero .review-video img {
	max-height: 182px;
	object-fit: cover;
	height: 182px;
	object-position: left center;
	-webkit-object-position: left center;
	border-radius: 0;
}
.review-video:before {
	display: none;
}
.value-feedback p img {
	margin-top: 10px;
}
.review-comment p {
	font-size: 14px;
	letter-spacing: 0.17rem;
	margin: 0 0 20px;
}
.review-comment .student-name {
	font-size: 14px;
}
.review-sec .one-half-left {
	width: 100%;
	float: none !important;
	max-width: 380px;
	padding-right: 0;
	display: block;
	margin: 0 auto 30px;
}
.review-sec .one-half-right {
	width: 100%;
}
.review-sec {
	padding: 35px 0 40px;
}
.value-feedback h2 {
	margin: 0 0 27px;
}
.review-sec .one-half-left img {
	width: 200px;
}
.resources-library-hero.home-hero .hero-video {
	max-height: 100%;
	padding: 32px 30px 40px;
	width: calc(100% + 60px);
	width: -webkit-calc(100% + 60px);
	width: -moz-calc(100% + 60px);
	margin: 0 -30px;
	clear: both;
	position: static;
	border-radius: 0;
}
.resources-library-hero .our-philosophy {
	padding: 32px 30px 40px;
	width: calc(100% + 60px);
	width: -webkit-calc(100% + 60px);
	width: -moz-calc(100% + 60px);
	margin: 0 -30px;
	clear: both;
	border-radius: 0;
}
.resources-library-hero .hero-title {
	max-width: 260px;
	width: 100%;
}
.resources-library-hero .hero-title h1 {
	padding: 69px 0 59px;
	min-height: 0;
}
.resources-library-hero .our-philosophy h2 {
	margin: 0 0 27px;
}
.resources-library-hero form#login-form {
	margin-top: 30px;
}
.resources-library-hero .library-list li a {
	font-size: 16px;
	letter-spacing: 0.15rem;
	line-height: 46px;
}
.resources-library-hero.home-hero .hero-video {
	padding: 35px 30px 35px;
}
.resources-library-hero.home-hero {
	margin-bottom: 0;
}
.footer-contact .one-half-left p {
	margin: 0 0 25px;
}
.resources-library-contact .one-half-right img {
	box-shadow: 10px 9px 0 #feb283;
}
.resources-library-hero .library-list {
	max-width: 185px;
	margin: 0 auto;
}
.library-outer h2 {
	font-size: 25px;
	line-height: 31px;
}
.libarary-inner .libarary-title .trigger-action:before {
	width: 10px;
	height: 10px;
}
.libarary-inner .libarary-title .trigger-action {
	font-size: 10px;
	letter-spacing: 0.1rem;
	padding-right: 15px;
	line-height: 11px;
}
.libarary-inner .libarary-title h3 {
	font-size: 14px;
	letter-spacing: 0.18rem;
	font-weight: 400;
}
.libarary-inner .libarary-title {
	padding: 5px 20px 6px 25px;
}
.library-outer {
	padding: 35px 0 15px;
}
.libarary-inner div.ui-accordion h3.ui-accordion-header .ui-accordion-header-icon {
	width: 12px;
	height: 12px;
	margin-top: 0;
}
.libarary-inner div.ui-accordion h3.ui-accordion-header {
	font-size: 12px;
	letter-spacing: 0.18rem;
	font-weight: 400;
	padding: 6px 20px 5px 25px;
	line-height: normal;
}
.libarary-inner div.ui-accordion div.ui-accordion-content ul li {
	width: 88px;
	text-align: center;
	margin: 0 1% 30px;
}
.libarary-inner div.ui-accordion div.ui-accordion-content {
	padding: 15px 15px 15px 15px;
}
.libarary-inner {
	margin-bottom: 30px;
}
.forums .hero-title {
	padding-bottom: 0;
}
.forums .our-story {
	padding: 32px 30px 40px;
	width: calc(100% + 60px);
	width: -webkit-calc(100% + 60px);
	width: -moz-calc(100% + 60px);
	margin: 0 -30px;
	clear: both;
	border-radius: 0;
}
.forums .about-img {
	padding: 35px 30px 35px;
	width: calc(100% + 60px);
	width: -webkit-calc(100% + 60px);
	width: -moz-calc(100% + 60px);
	margin: 0 -30px;
	background: #ffa065;
	border-radius: 0;
	height: auto;
	max-height: 100%;
}
.forums #bbpress-forums li.bbp-header ul li {
	padding: 0 15px 25px;
	font-size: 12px;
	letter-spacing: 0.12rem;
	text-align: left;
}
.forums #bbpress-forums li.bbp-body ul li {
	font-size: 12px;
	line-height: 22px;
	letter-spacing: 0.12rem;
}
.forums #bbpress-forums li.bbp-body > ul > li {
	padding: 15px 15px 13px;
}
.forums #bbpress-forums li.bbp-body ul > li.bbp-forum-topic-count, .forums #bbpress-forums li.bbp-body ul > li.bbp-forum-reply-count, .forums #bbpress-forums li.bbp-body ul > li.bbp-topic-voice-count, .forums #bbpress-forums li.bbp-body ul > li.bbp-topic-reply-count {
	font-size: 15px;
	margin-top: 0 !important;
}
.forums #bbpress-forums li.bbp-body > ul {
	margin-bottom: 15px;
}
.forums .bbp-topic-form, .forums .bbp-reply-form {
	padding: 20px 20px 35px;
}
.forums #bbpress-forums fieldset.bbp-form legend, .forums div.bbp-template-notice p {
	font-size: 14px;
	line-height: 26px;
	letter-spacing: 0.17rem;
}
.forums #bbpress-forums fieldset.bbp-form label {
	font-size: 14px;
	line-height: 25px;
	letter-spacing: 0.15rem;
}
.forums #bbpress-forums p > input:not([type="checkbox"]), .forums #bbpress-forums select {
	height: 40px;
	font-size: 14px;
	padding: 0 15px;
	letter-spacing: 0.17rem;
}
.forums #bbpress-forums fieldset.bbp-form .bbp-submit-wrapper button {
	height: 36px;
	line-height: 34px;
	font-size: 14px;
	letter-spacing: 0.1rem;
	padding: 0 15px;
}
.home-hero-curve {
	left: 60%;
}
.footer-contact .one-half-right img, .footer-contact .one-half-right iframe {
	width: 100%;
	max-width: 100%;
	border:none !important;
	border-radius:5px;
}
section.error-404 h1.page-title {
	font-size: 34px;
	letter-spacing: 0.25rem;
	margin-bottom: 30px;
}
section.error-404.not-found {
	padding: 160px 15px 100px;
}
.main-nav ul li a {
	padding: 0 0 11px;
}
.site-header.left-header.open-panel ul.menu {
	padding-top: 15px;
}
.site-header.left-header.open-panel ul.menu > li {
	padding: 34px 20px 23px 20px;
}
.review-hero .review-video .video-thum {
	border-radius: 5px 0 0 5px;
	overflow: hidden;
}
.resources-library-hero .hero-video:before, .resources-library-hero .resources-library-curve {
	display: none;
}
div.wpcf7-response-output {
	font-size: 16px;
}
nav.pagination * {
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	margin: 0 3px;
}
nav.pagination a.next.page-numbers, nav.pagination a.prev.page-numbers {
	background-size: auto 14px;
}
.forums #bbpress-forums p > input[type="checkbox"] {
	margin: 8px 0 0;
}
.let-talk .contact-infos p br {
    display: block !important;
}
.forums #bbpress-forums ul.bbp-replies li .bbp-reply-author a {
    font-size: 14px;
}
.forums #bbpress-forums ul.bbp-replies li .topic-author {
    padding: 0 20px;
}
.forums #bbpress-forums .bbp-breadcrumb{ margin-top:0;}
.forums #bbpress-forums ul.bbp-replies li.bbp-header div {
    padding: 0 15px 15px;
    font-size: 17px;
    letter-spacing: 0.2rem;
	text-align:left;
}
.forums #bbpress-forums ul.bbp-replies li.bbp-header div.bbp-reply-content {
    margin-left: 100px;
}
.forums #bbpress-forums ul.bbp-replies li div .bbp-reply-post-date{
	letter-spacing:0.2rem;
	}
}
@media only screen and (max-width: 480px) {
.site-header.left-header.open-panel .logo-close-outer {
	padding: 20px 20px;
}
.site-header.left-header.open-panel ul.menu > li {
	padding: 34px 20px 23px 20px;
}
.resources-hero .hero-title h1 {
	font-size: 31px;
	line-height: 39px;
}
.footer-contact .one-half-right img, .footer-contact .one-half-right iframe {
	height: 250px;
}
#bbpress-forums div.bbp-reply-author img.avatar{ position:static !important;}

}
@media only screen and (max-width: 360px) {
h1 {
	font-size: 34px;
	line-height: 43px;
}
h2 {
	line-height: normal;
}
.container {
	padding: 0 20px;
}
.hero-title h1 {
	padding: 56px 0 55px;
}
.our-philosophy {
	padding: 32px 20px 0;
	width: calc(100% + 40px);
	width: -webkit-calc(100% + 40px);
	width: -moz-calc(100% + 40px);
	margin: 0 -20px;
}
.our-story {
	padding: 32px 20px 40px;
	width: calc(100% + 40px);
	width: -webkit-calc(100% + 40px);
	width: -moz-calc(100% + 40px);
	margin: 0 -20px;
}
.let-talk {
	padding: 32px 20px 40px;
	width: calc(100% + 40px);
	width: -webkit-calc(100% + 40px);
	width: -moz-calc(100% + 40px);
	margin: 0 -20px;
}
.value-feedback {
	padding: 32px 20px 40px;
	width: calc(100% + 40px);
	width: -webkit-calc(100% + 40px);
	width: -moz-calc(100% + 40px);
	margin: 0 -20px;
}
.resources-library-hero .our-philosophy {
	padding: 32px 20px 40px;
	width: calc(100% + 40px);
	width: -webkit-calc(100% + 40px);
	width: -moz-calc(100% + 40px);
	margin: 0 -20px;
}
.resources-library-hero.home-hero .hero-video {
	padding: 35px 20px 35px;
	width: calc(100% + 40px);
	width: -webkit-calc(100% + 40px);
	width: -moz-calc(100% + 40px);
	margin: 0 -20px;
}
.forums .our-story {
	padding: 35px 20px 35px;
	width: calc(100% + 40px);
	width: -webkit-calc(100% + 40px);
	width: -moz-calc(100% + 40px);
	margin: 0 -20px;
}
.forums .about-img {
	padding: 35px 20px 35px;
	width: calc(100% + 40px);
	width: -webkit-calc(100% + 40px);
	width: -moz-calc(100% + 40px);
	margin: 0 -20px;
}
.home-school-support .our-story {
	padding-bottom: 30px;
}
.site-footer .footer-logo {
	margin-right: 35px;
}
.resources-hero .hero-title h1 {
	font-size: 27px;
	line-height: 35px;
}
.resources-hero .our-story {
	padding: 32px 20px 25px;
}
.libarary-inner div.ui-accordion div.ui-accordion-content ul li {
	width: 77px;
	margin: 0 1% 20px;
}
.libarary-inner div.ui-accordion div.ui-accordion-content ul li p, .libarary-inner div.list ul li p {
	letter-spacing: 0.05rem;
}
.forums #bbpress-forums li.bbp-header ul li {
	padding: 0 5px 20px;
	font-size: 11px;
	letter-spacing: 0.1rem;
}
.forums #bbpress-forums li.bbp-body > ul > li {
	padding: 13px 10px 11px;
	margin-top: 0;
}
.forums #bbpress-forums li.bbp-body ul li {
	font-size: 11px;
	line-height: 20px;
}
.forums #bbpress-forums ul.bbp-replies li.bbp-header div{ font-size:14px;}
.forums #bbpress-forums ul.bbp-replies li div .bbp-reply-post-date{ font-size:16px; letter-spacing: 0.2rem;}
}
