/*=== HEADER ===*/
#header {
    height: 53px;
}
.header-wrapper {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}

.top-bar {
	text-transform: uppercase;
	color: #fff;
	background-color: #162543;
}
.top-bar:before {
	content: "";
	display: block;
	height: 3px;
	background: #87d010;
	background: -moz-linear-gradient(left, #87d010 0%, #357939 100%);
	background: -webkit-linear-gradient(left, #87d010 0%,#357939 100%);
	background: linear-gradient(to right, #87d010 0%,#357939 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#87d010', endColorstr='#357939',GradientType=1);
}
.top-bar .cell:first-child {
	padding-right: 168px;
}
.top-bar .cell:last-child {
	padding: 0 30px 0 168px;
	text-align: right;
}
.top-bar p {
    margin-bottom: 0;
	font: 14px/28px 'Montserrat-Bold';
	color: #5eb438;
}
.top-bar a[href^="tel:"] {
	color: #fff;
}
.top-menu {
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}
.top-menu li {
	display: inline-block;
	position: relative;
}
.top-menu a {
	position: relative;
	min-width: 144px;
  padding: 16px 15px 15px;
  text-align: left;
	font-size: 16px;
}
.top-menu a:after {
	opacity: 0;
    visibility: hidden;
}
.top-menu a:hover:after {
	opacity: 1;
	visibility: visible;
}
.top-menu a.login {
	padding-left: 60px;
	background-color: #5eb438;
}
.top-menu a.login:hover {
	background-color: #101a30;
}
.top-menu .open-login a.login:hover:after {
	opacity: 0;
	visibility: hidden;
}
.top-menu a.login:before,
.top-menu a.login:after {
	content: "";
	position: absolute;
	left: 36px;
	width: 12px;
	height: 15px;
	background: url(../images/icons/login.png) no-repeat;
}
.top-menu a.login:after {
	background: url(../images/icons/login-hov.png) no-repeat;
}
.top-menu a.cart {
	background-color: #101a30;
}
.top-menu a.cart:hover {
	background-color: #5eb438;
}
.top-menu a.cart:before,
.top-menu a.cart:after {
	content: "";
	display: inline-block;
	width: 18px;
	height: 14px;
	background: url(../images/icons/cart.png) no-repeat;
	padding-right: 6px;
}
.top-menu a.cart:after {
	background: url(../images/icons/cart-hov.png) no-repeat;
	position: absolute;
	left: 15px;
	top: 18px;
}

.search-btn {
	position: relative;
    width: 50px;
    height: 50px;
	vertical-align: middle;
}
.search-btn:before,
.search-btn:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 17px;
	height: 17px;
	margin-top: -9px;
	background: url(../images/icons/search.png) no-repeat;
}
.search-btn:after {
	background: url(../images/icons/search-hov.png) no-repeat;
	opacity: 0;
	visibility: hidden;
}
.search-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: #357939;
    z-index: 25;
    opacity: 0;
    visibility: hidden;
}
.search-box.show,
.search-btn:hover:after {
	opacity: 1;
	visibility: visible;
}
.search-box .search-form {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 60px;
    background: url(../images/icons/search-lg.png) no-repeat left center;
}
.search-box ::-webkit-input-placeholder {
  	color: #fff;
}
.search-box :-moz-placeholder {
	color: #fff;
}
.search-box ::-moz-placeholder {
	color: #fff;
}
.search-box :-ms-input-placeholder {
	color: #fff;
}
.search-box input {
	display: inline-block;
	vertical-align: middle;
}
.search-box input[type=text] {
    width: calc(100% - 23px);
    border: none;
    line-height: 32px;
	font-size: 20px;
    color: #fff;
    background-color: transparent;
}
.close-search {
    width: 18px;
    vertical-align: middle;
    text-align: right;
    font: 24px/32px 'Montserrat-SemiBold';
}

/*=== LOGIN POP OUT ===*/
.mobile-login {
	height: 0;
}
#login-container {
	position: absolute;
	left: -320px;
	width: 464px;
	background: #357939 url(/images/layout/login-bg.png) no-repeat center center scroll;
	background-size: cover;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease 0s;
	z-index: 99;
}

.open-login #login-container {
	opacity: 1;
	visibility: visible;
}

.open-login .login {
	background-color: #357939 !important;
	color: #357939 !important;
}

.open-login .login:before {
	content: 'CLOSE  X' !important;
	background: none !important;
	color: #fff !important;
	width: 80px !important;
	transition: all 0s ease 0s;
	white-space: pre;
}
.login-close-btn {
	display: none;
}

#login-container>.cell {
	padding: 50px 70px !important;
	text-align: center;
}

#login-container h3 {
	margin-bottom: 20px;
}

#login-container input::placeholder {
	color: #9f9f9f;
}

#login-container input {
	display: block;
	border-radius: 16px;
	font-size: 16px;
	text-align: center;
	padding: 15px;
	height: 60px;
	width: 100%;
}

#login-container input+input {
	margin-top: 20px;
}

#login-container a {
	border-radius: 16px;
	display: block;
	text-align: center;
}

#login-container .login-btn {
	background: #5eb438 url(../images/icons/login.png) no-repeat 36% center;
	width: 70%;
	margin: auto;
	padding: 16px 5px 15px 26px;
	height: auto;
	font: 16px 'Montserrat-Regular';
}

#login-container .login-btn:hover {
	background-color: #101a30;
}

#login-container a.forgot-btn {
	text-decoration: underline;
	text-transform: capitalize;
	font-size: 16px;
	margin-bottom: 5px;
}

#login-container a.new-btn {
	background-color: #101a30;
	width: 70%;
	margin: 20px auto 0;
}

#login-container a.new-btn:hover {
	background-color: #5eb438;
}

#login-container .login-error {
	display: none;
	color: darkred;
	font-size: 12pt;
	padding: 0 5px 27px;
	font-weight: bold;
}

/*=== ACCOUNT NAV ===*/

.top-account-nav > .sub-menu a {
	padding: 0;
}

/*=== MAIN NAVIGATION ===*/
.header-menu {
	background-color: rgba(22,37,67,.65);
}
.header-menu .logo {
    display: block;
	width: 306px;
	height: 153px;
	margin: -53px 0 -31px 0;
	padding: 5px 0 0;
	-webkit-border-radius: 0 0 50% 50% / 0 0 100% 100%;
    -moz-border-radius: 0 0 50% 50% / 0 0 100% 100%;
	border-radius: 0 0 50% 50% / 0 0 100% 100%;
	text-align: center;
	background-color: #101a30;
}
.header-menu .logo:after {
	content: none;
}

.logo-mobile,
#nav-btn,
#nav-close-btn {
	display: none;
	font-size: 35px;
}
.nav-menu {
    text-align: center;
	font-size: 0;
}
.nav-menu > li {
    display: inline-block;
    padding: 0 0.5px;
    vertical-align: middle;
}
.nav-menu > li:last-child {
	margin-right: 0;
	padding-right: 0;
}
.nav-menu > li:first-child {
	padding-left: 0;
}
li.has-child {
    position: relative;
}
.nav-menu > li > a {
	position: relative;
	padding: 25px 10px;
	white-space: nowrap;
	text-transform: uppercase;
	font-size: 16px;
    color: #fff;
}
.nav-menu > li:last-child > a {
	padding: 25px 0 25px 10px;
}
.nav-menu > li:first-child > a {
	padding: 25px 10px 25px 0;
}
.nav-menu > li > a:after {
	content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: #87d010;
	background: -moz-linear-gradient(left, #87d010 0%, #357939 100%);
	background: -webkit-linear-gradient(left, #87d010 0%,#357939 100%);
	background: linear-gradient(to right, #87d010 0%,#357939 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#87d010', endColorstr='#357939',GradientType=1);
	opacity: 0;
	visibility: hidden;
}
.nav-menu > li:last-child > a:after {
	width: calc(100% + 10px);
	right: -10px;
}
.nav-menu > li:first-child > a:after {
	width: calc(100% + 10px);
	left: -10px;
}

.sub-menu {
	position: absolute;
    top: 100%;
    left: 50%;
    width: 250px;
    padding: 32px 10px 12px 32px;
    text-align: left;
    background-color: #fff;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    z-index: 5;
}
.sub-menu li {
    margin-bottom: 9px;
}
.sub-menu li a {
	position: relative;
    display: block;
    line-height: 28px;
    text-transform: uppercase;
    font-size: 16px;
    color: #101a30;
}
.sub-menu li a:before {
	content: "";
	position: absolute;
	top: 4px;
	left: 0;
	width: 9px;
	height: 9px;
	border: 5px solid rgba(255,255,255,.72);
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #5eb438;
    opacity: 0;
    visibility: hidden;
}
.sub-menu li a:hover {
	padding-left: 27px;
}
.nav-menu > li.active > a:after,
.nav-menu > li > a:hover:after,
li.has-child:hover > a:after,
li.has-child:hover .sub-menu,
.sub-menu li a:hover:before {
	opacity: 1;
	visibility: visible;

	-webkit-transition: all 0.5s ease 0s;
	   -moz-transition: all 0.5s ease 0s;
		-ms-transition: all 0.5s ease 0s;
		 -o-transition: all 0.5s ease 0s;
			transition: all 0.5s ease 0s;
}

/*=== FIXED & INNER HEADER STYLES ===*/
#inner #header {
	height: 122px;
}
.fixed .header-wrapper,
#inner .header-wrapper {
    -webkit-box-shadow: 0 2px 10px -3px rgba(16,26,48,0.2);
    -moz-box-shadow: 0 2px 10px -3px rgba(16,26,48,0.2);
    box-shadow: 0 2px 10px -3px rgba(16,26,48,0.2);
}
.fixed .header-menu,
#inner .header-menu {
	background-color: #fff;
}
.fixed .nav-menu > li > a,
#inner .nav-menu > li > a {
	color: #101a30;
}

/*=== TOP BANNER ===*/
.banner {
	position: relative;
	min-height: 500px;
}
.banner .top-slider {
	height: 100%;
    z-index: 1;
}
.banner .single-banner {
	height: 100%;
	background-attachment: fixed;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
.safari .banner .single-banner {
	background-attachment: scroll;
}
.banner .single-banner:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../images/layout/bg-texture.png);
}
.banner .container {
	z-index: 2;
}
.banner-text {
    max-width: 630px;
    width: 100%;
    color: #fff;
}
.banner-text p {
	line-height: 28px;
}
.banner-text .btn {
    margin-top: 5px;
	color: #fff;
}
.large-text {
	text-transform: uppercase;
	letter-spacing: -0.5px;
	font: 70px/64px 'AsapCondensed-Bold';
}
.large-text span {
	display: block;
    margin-bottom: 10px;
    font: 16px/24px 'Montserrat-Regular';
}
.banner-content {
    margin: 12px 0 20px;
    font-size: 20px;
}
.banner .slick-list,
.banner .slick-track {
	height: 100%;
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-o-transform: none !important;
	transform: none !important;
}
.banner .slick-dots {
	position: static;
    display: inline-block !important;
    width: auto;
    height: auto;
}
.banner .slick-dots li {
	display: block;
	margin: 11px 0;
}
.move-down {
    position: absolute;
    bottom: 66px;
    left: 50%;
    width: 40px;
    height: 40px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(../images/icons/move-down.png) no-repeat center center;
    z-index: 2;
}

.sub-banner {
	position: relative;
	height: 300px;
}

/*=== BREADCRUMBS ===*/
.breadcrumbs {
	margin-bottom: 45px;
}
.breadcrumbs li {
    display: inline-block;
    line-height: 24px;
    text-transform: uppercase;
    font-size: 12px;
}
.breadcrumbs li:after {
	content: "\f105";
    display: inline-block;
    margin: 0 4px -1px 5px;
    vertical-align: text-bottom;
    font: 18px Font Awesome\ 5 Pro;
    font-weight: bold;
    color: #5eb438;
}
.breadcrumbs li:last-child:after {
    content: none;
}

/*=== ABOUT SECTION ===*/
.about-wrapper .container {
	position: relative;
	top: -48px;
	margin-bottom: -48px;
	z-index: 2;
}
.about-wrapper .table {
    height: 534px;
}
.about-wrapper .cell {
	padding: 60px 60px 60px 65px;
}
.about-wrapper .cell:first-child {
	-webkit-border-radius: 12px 0 0 12px;
    -moz-border-radius: 12px 0 0 12px;
    border-radius: 12px 0 0 12px;
}
.about-wrapper .cell:last-child {
	-webkit-border-radius: 0 12px 12px 0;
    -moz-border-radius: 0 12px 12px 0;
    border-radius: 0 12px 12px 0;
}

/*=== QUICK LINKS & CHOOSE SECTIONS ===*/
.quick-links-wrapper {
	padding-bottom: 70px;
    text-align: center;
}
.quick-links-wrapper .circle-link {
	margin-top: -22px;
}

.choose-wrapper .table {
	height: 580px;
}
.choose-wrapper h2 {
	margin-bottom: 10px;
}

/*=== TESTIMONIALS SECTION ===*/
.testimonials-wrapper {
	text-transform: uppercase;
	font-size: 18px;
	color: #fff;
}
.testimonials-wrapper:after {
	content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(16,26,48,.8);
}
.testimonials-wrapper .slick-slider {
	z-index: 1;
}
.testimonials-wrapper .table.page {
	height: 414px;
}
.testimonials-wrapper .cell {
	padding: 50px 20px;
}
.testimonials-wrapper .text-box:before {
	content: "";
	display: block;
	width: 62px;
	height: 72px;
	margin: 0 auto 40px;
	background: url(../images/icons/quote.png) no-repeat;
}
.testimonials-wrapper p {
	line-height: 31px;
}
.testimonials-wrapper .author {
	margin: 28px 0 0;
	text-transform: uppercase;
	font: 14px/24px 'Montserrat-SemiBold';
}
.testimonials-wrapper .author span {
	display: block;
	font: 24px/31px 'AsapCondensed-Bold';
	color: #5eb438;
}
#home .testimonials-wrapper .table.page {
	height: 510px;
}

/*=== CALLOUT SECTION ===*/
.bar-callout {
	min-height: 400px;
	padding: 105px 0 70px;
	text-align: right;
	background-attachment: fixed;
}
.cta-banner {
	display: inline-block;
	width: 395px;
    margin-right: 50px;
	padding: 50px 50px 70px;
	-webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    letter-spacing: -0.8px;
    text-align: left;
	background-color: rgba(255,255,255,.9);
}
.cta-banner.horizontal {
	width: 670px;
	padding: 50px 40px;
}
.cta-banner h2 {
	margin-bottom: 20px;
	line-height: 54px;
}
.cta-banner h6 {
	display: inline-block;
	width: 54%;
	margin-bottom: 0;
	vertical-align: middle;
	color: inherit;
}
.cta-banner .btn {
    min-width: 92px;
    vertical-align: middle;
}
.cta-banner.horizontal .btn:not(.blue) {
	padding: 18px 33px 15px;
}
.cta-banner p + .btn {
	margin-bottom: 30px;
}
.cta-banner p + .btn:last-child {
	margin-bottom: 0;
}
.cta-banner .more-link {
	margin-top: 10px;
	color: #5eb438;	
}

/*=== MAIN CONTENT ===*/
.main-content {
	padding: 55px 0 70px;
	font-size: 14px;
}
.main-content .col-right.sidebar {
	width: 420px;
    padding: 37px 0 0 90px;
}
.main-content .col-right.sidebar > div:not(:last-child) {
	margin-bottom: 42px;
}
.main-content .col-right.sidebar .cta-banner {
    width: 312px;
    margin-right: 0;
    margin-left: 18px;
    padding: 40px 30px 50px;
    letter-spacing: normal;
    text-align: center;
    background: url(../images/layout/bg-texture.png) #162543;
    color: #fff;
}
.main-content .col-right.sidebar .cta-banner .btn {
	color: inherit;
}
.main-content .col-right.sidebar .circle-link {
	width: 100%;
	height: 330px;
	line-height: 34px;
	font-size: 34px;
}

/*=== INNER PAGES ===*/
.content-wrapper {
	position: relative;
	padding: 75px 0 60px;
	background: url(../images/layout/bg-texture-dark.png) #f3f3f4;
}
.content-wrapper + .content-wrapper {
	margin-top: -20px;
	padding: 0 0 60px;
}
.toggle-wrapper {
	margin-top: 50px;
}
.box-toggle {
	margin-bottom: 30px;
	-webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
	text-align: left;
	background-color: #fff;
}
.head-toggle {
	position: relative;
    padding: 40px 45px 40px 60px;
	cursor: pointer;
}
.head-toggle .cell:first-child {
    width: 340px;
    padding-right: 20px;
}
.head-toggle .cell:last-child {
    width: 130px;
    text-align: right;
}
.head-toggle h3:after {
	content: "";
	display: block;
	width: 164px;
	height: 6px;
	margin-top: 23px;
	background: #87d010;
	background: -moz-linear-gradient(left, #87d010 0%, #357939 100%);
	background: -webkit-linear-gradient(left, #87d010 0%,#357939 100%);
	background: linear-gradient(to right, #87d010 0%,#357939 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#87d010', endColorstr='#357939',GradientType=1);
}
.head-toggle .course-title {
	vertical-align: top;
}
.box-toggle.open .head-toggle h3 span {
	color: #5eb438;
}
.head-toggle h6 {
	margin-bottom: 0;
	font-family: 'Montserrat-Bold';
	color: #357939;
}
.icon-toggle {
	position: relative;
	display: inline-block;
	width: 64px;
	height: 64px;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
	text-align: center;
	font-size: 14px;
	background-color: #162543;
}
.icon-toggle:before,
.icon-toggle:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 4px;
    margin: -2px 0 0 -7px;
    background-color: #5eb438;
}
.icon-toggle:after {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
.box-toggle.open .icon-toggle:after {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
.content-toggle {
	display: none;
    padding: 0 60px 40px;
}
.course-box .desc-long {
	display: none;
}

.courses {
    letter-spacing: -0.5px;
    font: 20px 'Montserrat-Bold';
}
.courses .cell {
	padding-top: 34px;
	padding-bottom: 34px;
	border-top: 1px solid #b7bac0;
}
.courses .cell:nth-child(2) {
	width: 340px;
}
.courses .cell:last-child {
    width: 300px;
	text-align: right;
}
.courses .row.course-inperson .cell {
	padding-top: 46px;
	padding-bottom: 46px;
}
.courses .row.course-inperson .cell:nth-child(2) {
	padding-left: 55px;
}
.courses .price {
    display: inline-block;
    margin-right: 30px;
    vertical-align: middle;
	font: 36px/39px 'AsapCondensed-Bold';
	color: #5eb438;
}
.courses .row.course-inperson .price {
	display: block;
    margin: 0 50px 25px 0;
}

.place-list {
	margin-top: 15px;
}
.place-list li {
	line-height: 32px;
	font-family: 'Montserrat-Regular';
}
.place-list li:first-child {
	position: relative;
	padding-left: 25px;
	text-transform: uppercase;
	font-family: inherit;
}
.place-list li:first-child:before {
	content: "";
	position: absolute;
	top: 4px;
	left: 0;
	width: 16px;
	height: 20px;
	background: url(../images/icons/map-marker.png) no-repeat;
}

.time-list {
    margin-bottom: 22px;
}
.time-list li {
	position: relative;
	padding-left: 30px;
	line-height: 32px;
}
.time-list li:before {
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
}
.time-list li.date:before {
	width: 19px;
	height: 21px;
	background: url(../images/icons/calendar.png) no-repeat;
}
.time-list li.time:before {
	width: 21px;
	height: 21px;
	background: url(../images/icons/clock.png) no-repeat;
}

.quote-box .container > * {
    display: inline-block;
    margin: 0;
    padding-right: 25px;
    vertical-align: middle;
}
.quote-box h2 {
	line-height: 42px;
	font-size: 42px;
}

/*==== SEARCH RESULTS ====*/
#search-results h3 {
	display: block;
	text-transform: uppercase;
	font-size: 18px;
	color: #5eb438;
}

/* Results */
#search-results ol {
	list-style-type: none;
	text-align: left;
	margin: 0 auto;
	padding: 1px;
}

#search-results ol h4 {
	margin: 0;
	font-size: 22px;
	display: block;
	margin-bottom: 11px;
}

#search-results ol h4 a {
	color: #000;
}

#search-results ol h4 a span {
	display: inline-block;
	vertical-align: middle;
}

#search-results ol a span:after {
	content: '\00bb';
	padding-left: .5em;
}

#search-results ol h4 small {
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	color: #101a30;
	margin-top: .1em;
	margin-left: .5em;
}

#search-results ol li {
	padding: 1.25em 0;
	border-top: 1px solid #DDE0E6;
}

#search-results ol li a:hover,
#search-results ol li a:active {
	color: #00457C;

	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

#search-results ol li a {
	font-size: 80%;
	display: inline-block;
}

#search-results ol li p {
	padding: 0px;
}

#search-results ol li p+p {
	padding-top: 20px;
}

#search-results ol li:before {
	display: none;
}

#search-results ol mark {
	background-color: #5eb438;
	display: inline-block;
	padding: 0px 4px;
}

/* Search Header */
#search-results>header {
	position: relative;
}

/* Search Footer */
#search-results>footer {
	text-align: center;
}

#search-results>footer .pagination {
	text-align: center;
}

/*=== FOOTER ===*/
.footer-wrapper {
	height: auto;
	padding: 24px 0 20px;
	letter-spacing: -0.6px;
	font-size: 12px;
	color: #fff;
	background-color: #090f1c;
}
.footer-wrapper > .relative:before {
	content: "";
	position: absolute;
	top: -24px;
	left: 0;
	width: 100%;
	height: 4px;
	background: #87d010;
	background: -moz-linear-gradient(left, #87d010 0%, #357939 100%);
	background: -webkit-linear-gradient(left, #87d010 0%,#357939 100%);
	background: linear-gradient(to right, #87d010 0%,#357939 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#87d010', endColorstr='#357939',GradientType=1);
}
.footer-wrapper .cell {
	padding: 0 38px;
	border-left: 1px solid #6b6f77;
}
.footer-wrapper .cell:first-child {
	width: 435px;
	padding-left: 0;
	border-left: 0;
}
.footer-wrapper .cell:last-child {
	width: 77px;
	padding: 0;
	border-left: 0;
	text-align: center;
	font-size: 10px;
	color: #6b6f77;
}
.footer-wrapper .logo {
	width: 85px;
	margin-right: 24px;
    vertical-align: middle;
}
.footer-wrapper p {
    display: inline-block;
    width: calc(100% - 112px);
    margin-bottom: 0;
    vertical-align: middle;
}
.footer-wrapper li {
	text-transform: uppercase;
	font: 14px/24px 'Montserrat-Bold';
}
.footer-wrapper li a:hover {
	color: #5eb438;
}
.jbsystem {
	width: 77px;
	height: 28px;
	background: url(../images/layout/logo-jbsys.png);
}

.alert-success {
	color: #155724;
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	padding: .75rem 1.25rem
}

.alert-error {
	color: #721c24;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	padding: .75rem 1.25rem;
}


/*=== Testimonials ===*/
#testimonials {
	margin-top: 25px;
}
#testimonials br {
	display: block !important;
}
#testimonials > div + div {
	border-top: solid 3px #162543;
	margin-top: 30px;
	padding-top: 30px;
}
#testimonials .rating {
	position: relative;
	display: inline-block;
	font: 20px/1 'AsapCondensed-Bold';
	margin-bottom: 15px;
}
.testimonials .rating:before,
.testimonials .rating:after,
.testimonials .rating > span:before,
.testimonials .rating > span:after,
.testimonials .rating > span > span:before {
	content: '\f005';
	font: 15px/1 'Font Awesome 5 Pro';
	color: #fbb137;
	position: absolute;
	top: 0;
	right: -25px;
}
.testimonials .rating:after {
	right: -42px
}
.testimonials .rating > span:before {
	right: -60px
}
.testimonials .rating > span:after {
	right: -78px
}
.testimonials .rating > span > span:before {
	right: -96px
}

.testimonials .rating-1:before,
.testimonials .rating-2:before,
.testimonials .rating-2:after,
.testimonials .rating-3:before,
.testimonials .rating-3:after,
.testimonials .rating-3 > span:before,
.testimonials .rating-4:before,
.testimonials .rating-4:after,
.testimonials .rating-4 > span:before,
.testimonials .rating-4 > span:after,
.testimonials .rating-5:before,
.testimonials .rating-5:after,
.testimonials .rating-5 > span:before,
.testimonials .rating-5 > span:after,
.testimonials .rating-5 > span > span:before {
	font-weight: 600;
}

#testimonials .recommend,
#testimonials .another-class {
	display: inline-block;
	padding-left: 100px;
	font-size: 12px;
	font-weight: bold;
	vertical-align: top;
}

.testimonials .courses-taken {
	padding-top: 15px;
	padding-left: 15px;
}
.testimonials .courses-taken strong {
	font-size: 16px;
	padding-bottom: 5px;
	margin-left: -15px;
}

#testimonials .testimonial-name {
	display: block;
	font: 16px 'Montserrat-Regular';
	margin-top: 15px;
}
.side-rating {
	position: relative;
	display: inline-block;
}