/*
Theme Name: AWC Theme
Theme URI: https://writerscentre.com.au/
Author: Elmer and Alvin
Author URI: https://writerscentre.com.au/
Description: This a custom theme for Australian Writers' Centre. Built from _s.
Version: 3.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: awc

*/

@import url(css/fonts.css);
@import url(css/course-icons.css);
@import url(css/responsive.css);

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}
body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
	border: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	color: #000;
}

p {
	/*margin-bottom: 0 0 1em;*/
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
* {
/*	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;*/
}
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 0 0.6em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

table {
	margin: 0;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
	/*text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);*/
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
	padding: 3px;
}

textarea {
	padding-left: 3px;
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #0e93ab;
}

a:visited {
	/*color: #0a6b7c;*/
}

a:hover,
a:focus,
a:active {
	/*color: #13c9ea;*/
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	/*display: none;*/
	list-style: none;
	margin: 0;
	padding-left: 0;
}
/* 
.main-navigation li {
	position: relative;
	display: block;
	text-transform: uppercase;
}

.main-navigation a:hover {
	color: #0e93ab;
}
.main-navigation a {
	display: block;
	text-decoration: none;
	color: #414042;
	font-size: 16px;
	font-weight: 400;
}

.main-navigation .current_page_item > a {
	color: #0e93ab;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {
	margin-left: 12px;
}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}
 */
/* Small menu. */
/* .menu-toggle,
.main-navigation.toggled ul {
	display: block;
}
*/
@media screen and (min-width: 768px) {
	/* .menu-toggle {
		display: none;
	} */
	.main-navigation {
		/*margin-top: 35px;*/
		/*margin-left: 30px;*/
	}
	.main-navigation ul {
		display: block;
	}
	.main-navigation li:first-child,.main-navigation ul ul li {
		margin-left: 0;
	}
	.main-navigation li {
		float: left;
		margin-left: 25px;
	}
	.main-navigation ul ul {
		box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
		float: left;
		position: absolute;
		top: 1.5em;
		left: -999em;
		z-index: 99999;
		margin-top: -5px;
	}
	.main-navigation ul ul li {
		padding: 0 6px 6px;
	}
}

#site-navigation .site-branding {
	width: 220px;
	float: left;
}

#site-navigation #ubermenu-main-241-primary {
	clear: none;
	float: right;
	margin-top: 35px;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	/* margin-right: 1.5em; */
}

.alignright {
	display: inline;
	float: right;
	/* margin-left: 1.5em; */
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
@media ( min-width : 768px ) {
	.relative-position {
		position: relative;
	}
}
/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 1.5em 0 0;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 0 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

h1.entry-title {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# AWC custom style
--------------------------------------------------------------*/
img.round-img {
	border-radius: 50%;
}
.col {
	-webkit-transition: unset;
	-moz-transition: unset;
	-o-transition: unset;
	transition: unset;
}
/* ## PAGE HEADER */
.awc-logo {
	background-repeat: no-repeat;
    background-size: contain;
    display: block;
    height: 65px;
    max-width: 200px;
	width: 100%;
	margin: 0 auto;
}
.site-title {
	margin: 30px 0 12px;
}
.grayscale { 
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: url(grayscale.svg); /* Firefox 4+ */
	filter: gray; /* IE 6-9 */
}
/*************************
 * ## HOME PAGE TEMPLATE *
 *************************/
#wwyd-panel {
	width: 95%;
}
#wwyd-panel h1 {
	margin: 0 0 20px;
	color: #231f20;
}
#wwyd-panel .wwyd-photo {
		display: none;
	}
.wwyd-lists {
	margin: 0;
	padding: 0;
}
.wwyd-lists li.wwyd-item {
	list-style: none;
	position: relative;
	display: block;
	margin-bottom: 6px;
}
.wwyd-lists .wwyd-item .wwyd-link {
	text-decoration: none;	
}
.wwyd-lists .wwyd-item .c-wrap {	
	padding: 12px;
	font-weight: 700;
	line-height: 1.2;
	display: block;
}
.wwyd-lists .wwyd-item .c-wrap span.wwyd-caption.fa-chevron-right::Before {
	font-family: FontAwesome;
    padding-right: 6px;
}
.wwyd-lists .wwyd-item .c-wrap span.wwyd-caption {
	display: inline-block;
}
#wwyd-panel .span_12 {
	width: 100%;
}
/* testimonial */
.testimonial-wrap {
	background-color: #f9f3e8;
	padding: 28px;
	position: relative;
}
.graduate-pic {
    text-align: center;
    line-height: 1;
}
.graduate-testimonial-wrap p {
	margin: 0;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 600;
}
.graduate-testimonial-wrap .graduate-name {
	font-weight: 700;
	font-size: 18px;
	margin-top: 5px;
}
.graduate-testimonial-wrap {
	text-align: center;
}

.custom-testimonial {
	padding: 28px !important;
	margin: 25px auto;
}

.infinitebox {
	background-color: #f9f3e8;
	position: absolute;
	top: 0;
}

/* Upcoming Course Panel */
#upcoming-courses-panel a {
	text-decoration: none;
}
#upcoming-courses-panel .courses-lists-wrapper {
	width: 100%;
    max-width: 1150px;
    margin: auto;
}
#success-stories-panel {
	margin-bottom: 20px;
}
#success-stories-panel .success-stories-wrapper {
	width: 96%;
	margin: auto;
}
#upcoming-courses-panel ul,
#success-stories-panel ul {
	margin: 0;
	padding: 0;
}
#upcoming-courses-panel li,
#success-stories-panel li {
	list-style: none;
	margin: 6px 6%;
	padding: 0;
}

#upcoming-courses-panel .course-detail-wrap img {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#upcoming-courses-panel .course-detail-wrap:hover img {
	transform: scale(1.3);
}
#upcoming-courses-panel .course-detail-wrap {
	border: 1px solid #ced0d0;
	height: 270px;
	overflow: hidden;
}
#upcoming-courses-panel .location-date-wrap {
	background-color: #0e93ab;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    padding: 10px;
	color: white;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
}
#upcoming-courses-panel .location-date-wrap .location::before { content:"\f041"; width: 10px; text-align: center; margin-right: 3px; }
#upcoming-courses-panel .location-date-wrap .date::before {content:"\f133"; width: 16px; text-align: left;}
#upcoming-courses-panel .location-date-wrap .location::before,
#upcoming-courses-panel .location-date-wrap .date::before {
	display: inline-block;
	font-family: FontAwesome;
	font-size: 14px;
}
#upcoming-courses-panel .location-date-wrap .location {
	float: left;
}
#upcoming-courses-panel .location-date-wrap .date {
	float: right;
}
#upcoming-courses-panel .course-thumb-wrap {
	overflow: hidden;
	height: 155px;
}
#upcoming-courses-panel .course-thumb-wrap img {
	width: 100%;
}
#upcoming-courses-panel .course-title-wrap {
	display: table;
	width: 100%;
	height: 70px;
}
#upcoming-courses-panel .course-title-wrap h3 {
    margin: 7px 3%;
    color: #414042;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    font-family: "Open Sans", Arial, sans-serif;
    min-height: 54px;
    display: table-cell;
    vertical-align: middle;
}
#upcoming-courses-panel .btn-wrapper {
	text-align: center;
	display: block;
}
#upcoming-courses-panel .all-course-btn {
	border: 2px solid #ff394e;
    border-radius: 4px;
    color: #ff394e;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    margin: 30px auto 0;
    padding: 15px 5%;
	width: 70%;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#upcoming-courses-panel .all-course-btn:hover {
	background-color: #ff394e;
	color: #FFF;
}

.video-link:hover > .video-thumb-wrap .s-play-btn {
    transform: scale(1.1);
}

.video-thumb-wrap {
	position: relative;
	min-height: 150px;
}
.video-thumb-wrap .s-play-btn {
	display: block;
	width: 100px;
	height: 100px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -50px;
	margin-left: -50px;
	background: url("img/play-button.png") no-repeat center center;
	transform: translateZ(0);
	transition: all .3s ease-in;
}
#graduate-have-been-panel {
	padding: 40px 0;
}
#graduate-have-been-panel .graduate-published-desc {
	color: #414042;
	margin: 0 auto 10px;
	width:100%;
	max-width: 960px;
	text-align: center;
}
#gcl-wrapper {
	/*max-width: 1024px;*/
	margin: 0 auto;
	/*width: 96%;*/
}
#graduate-have-been-panel .cl-lists {
	margin: 0 auto;
	max-width: 1024px;
}
#graduate-have-been-panel .cl-lists:after {
	content: '';
	  display: block;
	  clear: both;
}
#graduate-have-been-panel .cl-item {
	float: left;
	list-style: none;
	padding: 3px;
	width: 50%;
}
#graduate-have-been-panel .cl-item img {
	width: 100%;
	display: block;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}
.cl-preloader {
	max-width: 1024px;
	min-height: 100px;
	width: 100%;
	height: 100%;
	background: url(img/building-block.gif) no-repeat center center ;
}
@media ( min-width : 520px ) {
	.wwyd-lists .wwyd-item {
		display: block;
		float: left;
		width: 49%;
		margin-right: 1%;
	}
	#upcoming-courses-panel li,
	#success-stories-panel li{
		float: left;
		margin: 6px 1% 6px 0;
		width: 49%;
	}
}
@media ( min-width : 768px ) {
	.graduate-testimonial-wrap {
		text-align: left;
	}
	.graduate-testimonial-wrap.text-alignright {
		text-align: right;
	}
	#upcoming-courses-panel .all-course-btn {
		width: auto;
	}
}
@media ( min-width : 1025px ) {
		.wwyd-lists li.wwyd-item {		
		height: 55px;
		margin-bottom: 0;
		/*float: unset;*/
		float: none;
		width: auto;
		/*margin-right: unset;*/
	}
	.wwyd-lists .wwyd-item .c-wrap {	
		padding: 12px 50px 12px 18px;	
		position: absolute;
		z-index: 1;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	.wwyd-lists .wwyd-item .wwyd-link:hover > .c-wrap {
		z-index: 5;
		transform: scale(1.2);
		box-shadow: 0 0 6px rgba(0,0,0,0.5);
	}
}
@media ( min-width : 1024px ) {
	#wwyd-panel .span_12 {
		width: 50%; 
	}
	#wwyd-panel .wwyd-photo {
		display: block;
	}
	.testimonial-wrap .container {
		padding: 0 24px;
	}
	#upcoming-courses-panel li,
	#success-stories-panel li {
		margin: 6px 1% 6px;
		width: 23%;
	}
	#graduate-have-been-panel .cl-item {
		width: 20%;
	}
}

/*************************
 * ## 	QUIZ PANEL       *
 *************************/
#which-course-panel {
	padding: 0;
	background-image: url("img/which-course-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
	background-color: rgba(14,49,80, 1);
}

.ctawc-page#which-course-panel {
	background-image: url("img/which-course-bg2.jpg");
}

#which-course-wrapper {
	background-image: url("img/quiz-bg-blue.png");
	position: relative;
}

.citas-page #which-course-wrapper {
	background-image: url("img/quiz-bg-cyan.png");
}

#which-course-wrapper .go-to-bottom {
	position:absolute;
	width:100%;
	bottom:0;
}
#which-course-wrapper .go-to-bottom .wc-bg-wrapper {
	overflow: hidden; 
	position: relative; 
	height: 295px;
}
#which-course-wrapper .wc-overlay {
	display: block; 
	width: 100%; 
	position: absolute;
	z-index: 3; 
	height: 300px; 
	background-color: rgba(14,49,80, 0.9);
}
#which-course-wrapper .grayscale-bg {
	width: 100%; 
	display: block; 
	height: 300px; 
	position: absolute; 
	z-index: 1;
	background: url("img/which-course-bg.png") no-repeat scroll center center / cover ;
}
#quiz-lead-form {
	text-align: center;
}
#quiz-lead-form h3 {
	font-size: 20px;
	margin: 20px 0 40px;
	color: #FFF;
}
#quiz-lead-form .qlf-wrapper {
	display: inline-block;
	padding: 60px 0;
}
#quiz-lead-form .qlf-button {
	background-color: #ff394e;
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	margin: auto;		
	padding: 16px 0;
	width: 90%;
	display: block;
	font-weight: 600;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#quiz-lead-form .qlf-button:hover {
	background-color: #ff4a5d;
	box-shadow: 0 0 15px 4px #222;
}

.green-btn {
	background-color: #7aae37;
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	margin: auto;		
	padding: 20px 0;
	display: block;
	font-weight: 600;
	text-align: center;
	width: 100%;
	max-width: 400px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.green-btn:hover {
	background-color: #8dc941;
	box-shadow: 0 0 10px 1px #bbb;
}

#quiz-lead-form .qlf-wrapper h3 {
	font-size: 40px;
	margin: 0 auto 60px;
}
@media ( min-width : 768px ) {
	#quiz-lead-form .qlf-wrapper:before {
		content: url("img/which-course-img.png");
		position: absolute;
		left: 0;
		bottom: -6px;
	}
	.why-awc-page #quiz-lead-form .qlf-wrapper:before {
		content: url("img/which-course-img2.png");
		position: absolute;
		left: 0;
		bottom: -4px;
	}

	.citas-page #quiz-lead-form .qlf-wrapper {
		padding: 25px 0 25px 300px;
	}

	.citas-page #quiz-lead-form .qlf-wrapper:before {
		content: url("img/which-course-img3.png");
		position: absolute;
		left: 0;
		bottom: -6px;
	}

	.ctawc-page #quiz-lead-form .qlf-wrapper:before {
		content: "";
	}

	#quiz-lead-form .qlf-wrapper { 
		position: relative;
		padding: 40px 0 40px 300px;		
	}
	.why-awc-page #quiz-lead-form .qlf-wrapper { 
		position: relative;
		padding: 40px 0 40px 250px;		
	}

	.ctawc-page #quiz-lead-form .qlf-wrapper {
		padding: 40px 0;
	}

	#quiz-lead-form .qlf-button {		
		padding: 20px 130px;
		display: unset;
	}
}
@media ( min-width : 1024px ) {
	#quiz-lead-form .qlf-wrapper:after {
		content: url("img/which-course-arrow.png");
		position: absolute;
		right: -15px;
		top: 100px;
	}
	.why-awc-page #quiz-lead-form .qlf-wrapper:after {
		right: 100px;
	}
	.ctawc-page #quiz-lead-form .qlf-wrapper:after {
		content: "";
	}
}
/******************************************
* ## NEWSLETTER SUBSCRIPTION FORM PANEL   *
*******************************************/
.page-id-144 #newsletter-form-panel,
.page-id-174 #newsletter-form-panel,
.page-id-189 #newsletter-form-panel,
.page-id-255 #newsletter-form-panel,
.page-id-19168 #newsletter-form-panel,
.page-id-19340 #newsletter-form-panel,
.page-id-19924 #newsletter-form-panel,
.page-template-default #newsletter-form-panel {
	display: none; /* HIDE NEWSLETTER FOOTER FROM SPECIFIC PAGES */
}

.home.page-template-default #newsletter-form-panel,
.page-id-25695 #newsletter-form-panel {
	display: block;
}

#newsletter-form-panel {
	background-image: url("img/explore-library-2.jpg");
	background-color: rgba(249,243,232,0.8);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	/*background-position: bottom center;*/
	/*background-image: url('img/newsletter-bg.jpg');*/
	/*background-attachment: fixed;*/
}
#newsletter-form-panel .ns-overlay {
	display: block;
	background: rgba(249,243,232,0.7);
	width: 100%;
}
#newsletter-form-panel .ns-overlay .container {
	padding: 50px 0 60px;
}
#newsletter-form-panel h3 {
	margin: 0 auto 30px;
	font-size: 40px;
}
#newsletter-form-panel p {
	color: #231f20;
	line-height: 1.3;
	font-weight: 400;
}
.newsletter-form-wrapper {
	width: 100%;
	max-width: 768px;
	margin: 0 auto;
}
.infusion-field, .newsletter-form-wrapper .infusion-field {
	padding: 6px;
}
.newsletter-form-wrapper .infusion-submit {
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.newsletter-form-wrapper input[type="text"],
.infusion-field input[type="text"],
.newsletter-form-wrapper select, 
.infusion-field select {
	width: 100%;
	background-color: white;
	padding: 15px;
	border: 1px solid #bbbcbb;
	color: #58595b;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.newsletter-form-wrapper input[type="text"]:hover,
.infusion-field input[type="text"]:hover {
	box-shadow: 0 0 10px #f5e23f;
	border: 1px solid #FFF;
}
.newsletter-form-wrapper input[type="text"]:focus,
.infusion-field input[type="text"]:focus {
	box-shadow: none;
}
.newsletter-form-wrapper .infusion-submit input[type="submit"],
.infusion-form .infusion-submit input[type="submit"] {
	margin: 40px auto 0;
	background-color: #ff394e;
	color: #fff;
	padding: 23px 11%;
	text-transform: uppercase;
	box-shadow: unset;
	border: none;
	font-size: 20px;
	font-weight: 600;
	font-family: 'Open Sans', sans-serif;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.newsletter-form-wrapper .infusion-submit input[type="submit"]:hover,
.infusion-form .infusion-submit input[type="submit"]:hover {
	background-color: #ff4a5d;
	box-shadow: 0 0 6px #000;
}

.newsletter-form-wrapper .infusion-submit input[type="submit"] {
	background-color: #e7923f;
}

.newsletter-form-wrapper .infusion-submit input[type="submit"]:hover {
	background-color: #eea45c;
}

@media (min-width: 490px) and (max-width: 936px) {
	.wwyd-lists .wwyd-item .c-wrap {
		height: 72px;
		display: table-cell;
		vertical-align: middle;
	}

	.wwyd-lists .wwyd-item .wwyd-link {
		display: table;
		width: 100%;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.fl-node-57c8fad091105 {
		margin: 20px 0 0;
	}

	#all-courses-wrap .course-link,
	#all-courses-wrap .course-detail-block * {
		font-size: 16px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	#wwyd-panel .span_14 {
		width: 100%;
	}
}

@media (max-width: 1023px) {
	#testimonial-one-panel .span_19 {
		float: right;
	}
}

@media (min-width: 768px) and (max-width: 940px) {
	#testimonial-two-panel .span_4 {
		float: right;
	}	
}

#footerwidget-wrapper {
	background-color: #0e93ab;
}

#footerwidget-wrapper,
#footerwidget-wrapper h2,
#footerwidget-wrapper p,
#footerwidget-wrapper ul,
#footerwidget-wrapper a {
	color: #FFF;
	font-size: 16px;
}

#footerwidget-wrapper h2 {
	font-size: 20px;
	text-transform: uppercase;
    margin: 0 0 10px;
}

#footerwidget-wrapper ul {
	list-style: none;
	padding-left: 0;
	margin: 0 0 20px;
}

#footerwidget-wrapper p {
	margin-top: 0;
}

#footerwidget-wrapper a {
	text-decoration: none;
}

#footerwidget-wrapper a:hover {
	text-decoration: underline;
}

#footerwidget-wrapper .widget {
	margin: 0;
}

#footerwidget-wrapper .menu-course-hubs-container li {
	margin: 0 0 10px;
}

.footer-top {
	padding: 40px 0 30px;
	border-bottom: 1px solid #FFF;
}

.footer-bottom {
	text-align: center;
	padding: 20px 0;
  	display: none;
}

.footer-bottom p {
	margin-bottom: 0;
}

.footer-bottom a {
	text-decoration: none;
	color: #FFF;
}

.footer-bottom a:hover {
	text-decoration: underline;
}

#footer-about-us .textwidget {
	width: 77%;
	line-height: 1.4;
}

.footer-third-box .textwidget p {
	margin-bottom: 15px;
	line-height: 1.4;
}

#footerwidget-wrapper .fa-lg {
    font-size: 1.33333333em;
	transition: all .5s ease-in-out;
}

#footerwidget-wrapper .fa-lg:hover {
	transform: rotate(-30deg);
}

#footerwidget-wrapper .fa-lg .fa-colorblue {
	color: #0e93ab;
}

.footer-fourth-box .textwidget {
	max-width: 100%;
	margin: 0 0;
}

footer .site-info p {
	color: #414042;
    font-size: 18px;
    text-align: center;
    margin: 20px 0;
}

footer .site-info p a {
	color: #414042;
	text-decoration: none;
}

footer .site-info p a:hover {
	text-decoration: underline;
}

.section-padding {
	padding: 40px 0;
}

.section-titles {
	margin: 0 auto 30px;
	font-size: 40px;
}

.section-titles30 {
	margin: 0 auto 40px;
	font-size: 30px;
}

@media screen and (min-width: 1024px) {
	.footer-first-box {
		width: 29%;
	}

	.footer-second-box {
		width: 27%;
	}

	.footer-third-box {
		width: 25%;
	}

	.footer-fourth-box {
		width: 19%;
	}

	.footer-fourth-box .textwidget {
		max-width: 70%;
		margin: 30px auto;
	}

	#footerwidget-wrapper .fa-lg {
		margin: 0 5px 5px;
	}

	.awc_courses .entry-header {
		margin-left: 55px;
	}

	.postid-24468 .entry-header {
		padding-left: 55px;
	}

}

@media (min-width: 490px) and (max-width: 1023px) {
	.footer-first-box {
		width: 100%;
	}

	#footer-about-us .textwidget {
		width: 100%;
	}

	.footer-top {
		width: 96%;
	}

	.footer-second-box {
		width: 50%;
		float: left;
	}

	.footer-third-box {
		width: 50%;
		float: right;
	}

	.footer-fourth-box {
		width: 50%;
		float: left;
	}
}

@media (max-width: 489px) {
	.footer-first-box {
		width: 100%;
	}

	#footer-about-us .textwidget {
		width: 100%;
	}

	.footer-top {
		width: 96%;
	}

	.footer-second-box {
		width: 100%;
	}

	.footer-third-box {
		width: 100%;
	}

	.footer-fourth-box {
		width: 100%;
	}

	.footer-learn-text {
		display: block;
		clear: both;
	}
}

.awc_courses .entry-header-content {
	font-size: 19px;
	display: table;
}

.awc_courses .entry-header-image {
	text-align: right;
	position: relative;
	right: 0;
	display: table-cell;
	vertical-align: middle;
	float: none;
}

.awc_courses#post-219 .entry-header-image {
	bottom: -25px;
	vertical-align: bottom;
}

.awc_courses .awc-course-container {
	font-size: 19px;
	font-weight: 400;
	width: 100%;
	margin: 20px auto 60px;
	border: 1px solid #d1d3d4;
	float: left;
	border-radius: 3px;
	position: relative;
	z-index: 10;
}

.awc-course-row {
	padding: 15px 23px;
	display: inline-block;
	width: 100%;
	float: left;
	cursor: pointer;
}

.option-btn .radio_item {
	display: none !important;
}

.option-btn .label_item {
	cursor: pointer;
}

.option-btn .label_item img {
	width: 25px;
}

.option-btn .radio_item:checked + .label_item {
	opacity: 1;
}

.awc_courses .entry-content {
	font-size: 19px;
	width: 100%;
	margin: auto;
}

.awc_courses .entry-content-desc {
	font-weight: 400;
}

.awc_courses .entry-content-desc h3 {
	font-family: 'Rock Salt', 'Roboto Slab', sans-serif;
	font-size: 24px;
	margin: 1.5em 0;
	color: #00b1cd;
}

.awc_courses .entry-content-desc ul {
	margin: 0;
}

@media (max-width: 1023px){
	.entry-header-content .entry-header-image {
		display: none;
	}

	.option-info > div,
	.course-header-content {
		width: 100%;
	}

	.awc_courses .entry-header {
		width: 96%;
		margin: auto;
	}

	.option-btn.floatleft {
		float: right;
	}

	.awc-course-row {
		float: none;
	}
}

.floatleft {
	float: left;
}

.floatright {
	float: right;
}

.awc-course-row.row-odd {
	background-color: #FFFFFF;
}

.awc-course-row.row-even {
	background-color: #e8f6f7;
}

.awc-course-row.row-highlight {
	font-weight: 700;
}

.awc-course-row.row-even-disabled {
	background-color: #eeeeee;
}

.awc-course-row.row-disabled {
	color: #bbbbbb;
}

.awc-course-row.row-disabled .label_item {
	opacity: 0.1 !important;
}

.awc-course-row .label_item {
	background: url("img/checkbox_unchecked25.png");
	display: block;
	width: 25px;
	height: 25px;
}
.awc-course-row.row-active {
	transform: scale(1.006);
    border: 1px solid #ccc; 
    box-shadow: 0 0 25px 1px #c1c1c1;
    z-index: 2;
    position: relative;
    font-weight: bold;
}
.awc-course-row.row-active .label_item {
	background: url("img/checkbox_checked25.png");
}

.awc-course-row input[type="radio"]{
	cursor: pointer;
}
.awc-course-location {
	text-transform:capitalize;
	position: relative;
	color: #0e93ab;
	text-decoration: underline;
}
.ca-wrap {
	position: absolute;
    background-color: rgba(0,0,0,0.9);
    transform: scale(1.2);
    padding: 8px;
    font-size: 80%;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
   /*  top: 28px;
    left: 20px; */
    box-shadow: 1px 1px 4px #c1c1c1;
    /* width: 100%; */
    min-width: 250px;
    display: block;
    color: #fff;
	z-index: 2;
	text-transform: none;
}
.awc-course-row.row-disabled .ca-wrap {
	opacity: 0.4;
}
.awc-course-presenter {
	color: inherit;
	text-decoration: none;
}
.awc-course-presenter a {
	/* display: block;
	width: 100%; */
}
.awc-course-presenter:visited {
	color: inherit;
}

.awc-course-row,
.awc-course-row div,
.awc-course-presenter,
.awc-course-row .label_item,
.awc-course-container .radio,
.awc-course-container span,
.awc-course-container input {
	-webkit-transition: all 0s ease-in-out;
	-moz-transition: all 0s ease-in-out;
	-o-transition: all 0s ease-in-out;
	transition: all 0s ease-in-out;
}

.course-btn-holder {
	height: 58px;
	position: relative;
	width: 100%;
	text-align: center;
}

.course-btn-holder a {
    display: block;
    background-color: #ff394e;
    position: absolute;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    height: 70px;
    line-height: 70px;
    color: #FFF;
    width: 385px;
    left: 50%;
    margin-left: -192px;
    bottom: -35px;
    border-radius: 3px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.course-btn-holder a:hover {
	background-color: #ff4a5d;
    box-shadow: 0 0 6px #000;
}

@media (max-width:479px){
	.course-btn-holder a {
		position: static;
		width: 100%;
		margin-left: 0;
	}
}

.you-can-do-this {
	padding: 30px 7%;
	background-color: #264561;
	color: #FFFFFF;
	text-align: center;
	margin: 20px auto;
}

.you-can-do-this h4 {
	margin: 0;
	font-size: 28px;
	color: #FFF;
}

.you-can-do-this a,
.pink-btn {
	text-decoration: none;
	color: #FFF;
	background-color: #ff394e;
	padding: 23px 12%;
	border-radius: 3px;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.reinvent-btn {
	background-color: #ff394e;
	display: inline-block;
	font-size: 20px;
	color: #FFF;
	text-decoration: none;
	padding: 20px 5%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out
}

.you-can-do-this a:hover,
.pink-btn:hover,
.reinvent-btn:hover {
	background-color: #ff4a5d;
    box-shadow: 0 0 6px #000;
    color: #FFFFFF;
}

.you-can-do-this a:visited,
.pink-btn:visited {R
	color: #FFFFFF;
}

.white-btn {
	border: 2px solid #ff394e;
    border-radius: 4px;
    color: #ff394e;
    cursor: pointer;
    display: inline-block;
    margin: 30px auto 0;
    padding: 15px 5%;
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    box-shadow: none;
    font-size: 20px;
    line-height: 1.3;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.white-btn:hover {
	background-color: #ff394e;
	color: #FFF;
	box-shadow: none;
	border: 2px solid #ff394e;
}

.orange-btn {
	background-color: #e7923f !important;
}

.orange-btn:hover {
	background-color: #eea45c !important;
}

.entry-content-sidebar .success-stories {
	padding: 28px;
	border: 1px solid #d1d3d4;
	margin: 20px auto;
}

.entry-content-sidebar .success-stories h3 {
	margin: 0 auto 28px;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 22px;
}

.wnt-to-learn-online {
	border: 1px solid #d1d3d4;
}

.wnt-to-learn-online .learn-online-lnk {
	padding: 40px 0;
	background-color: #0e93ac;
	text-align: center;
	cursor: pointer;
}

.wnt-to-learn-online .learn-online-lnk:hover {
	background-color: #239cb2;
}

.wnt-to-learn-online .learn-online-lnk h3 {
	margin: 0 auto;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 22px;
	color: #FFFFFF;
}

.wnt-to-learn-online .learn-online-lnk p {
	color: #FFFFFF;
	margin: 5px;
}

.wnt-to-learn-online .learn-online-body {
	padding: 30px 40px;
	display: none;
}

.learn-online-arw {
	background-color: #0b788c;
	background-image: url("img/small-arw.png");
	background-repeat: no-repeat;
	background-position: center center;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	height: 20px;
}

.learn-online-arw:hover {
	cursor: pointer;
	background-color: #2a8b9d;
}

.learnbody-open {
	background-image: url("img/small-arw2.png");
}

.learn-online-body ul {
	margin: 0;
	padding: 0;
}

.learn-online-body ul li {
	margin-bottom: 20px;
}

/* INFUSIONSOFT FORMS AND OTHER FORMS */

#course-outline-popup .infusion-field {
	width:100%;
	float:left;
	margin-bottom:15px;
	color:#999;
	position: relative;
	font-size: 18px;
}

#course-outline-popup .infusion-field label, #repond label {
	width:100%;
	display: inline-block;
	margin:0 20px 5px 0;
	color:#000;
}

#course-outline-popup .infusion-field input,
#respond input[type=text],
#respond input[type=email],
#respond textarea {
	width:100%;
	border:1px solid #e9e9e9;
	padding:8px 10px;
}

#course-outline-popup #respond label {
	width:100%;
	display:block;
}

#course-outline-popup #respond input {
	max-width:500px;
}

#course-outline-popup .infusion-field .infusion-option input {
	width:auto;
}

#course-outline-popup .infusion-field .infusion-option label {
	display: inline;
	font-size: 18px;
}

#course-outline-popup .infusion-submit input  {
	text-decoration: none;
	color: #FFF;
	background-color: #ff394e;
	padding: 23px 70px;
	border-radius: 3px;
	display: inline-block;
	box-shadow: none;
	border: none;
	text-shadow: none;
	font-size: 20px;
	width: 100%;
	margin: 20px auto;
}

#course-outline-popup .infusion-submit input:hover {
	background-color: #ff4a5d;
    box-shadow: 0 0 6px #000;
    color: #FFFFFF;
}

#course-outline-popup .customSelect,
#course-outline-popup .infusion-field select {
	width:100%;
	border:1px solid #e9e9e9;
	padding:8px 10px;
	display: block;
	color:#666;
}

#course-outline-popup .hasCustomSelect {
	width: 100%!important;
	height: 38px!important;
	cursor: pointer!important;
}

#course-outline-popup .customSelect:after {
	font-family: 'FontAwesome';
	content: '\f0dc';
	position: absolute;
	right: 20px;
	font-size: 1.2em;
	color:#ccc;
}

#course-outline-popup .customSelect.customSelectHover {
/* Styles for when the select box is hovered */
}

#course-outline-popup .customSelect.customSelectOpen {
/* Styles for when the select box is open */
}

#course-outline-popup .customSelect.customSelectFocus {
/* Styles for when the select box is in focus */
}

#course-outline-popup .customSelectInner {
	width:100% !important;
}

.read-more-testimonials {
	background-color: #38c2db;
	float: left;
	display: table;
}

.read-more-testimonials:hover {
	background-color: #3acce6;
    box-shadow: 0 0 6px #666;
}

.read-more-testimonials a {
	display: block;
	padding: 30px 25px;
	text-decoration: none;
}

.testimonial-mgaphone {
    padding-right: 15px;
    margin-right: 15px;
    display: table-cell;
    width: 62px;
    vertical-align: middle;
    border-right: 2px solid #FFFFFF;
}

.testimonial-rm-msg {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    display: table-cell;
    vertical-align: middle;
    padding-left: 15px;
}

.show-course-outline {
	width: 100%;
	text-align: center;
	float: left;
	margin: 20px auto;
}

.show-course-outline a {
	display: block;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 22px;
	font-weight: 700;
	padding: 40px 0;
	background-color: #fd6e7a;
	border-radius: 3px;
}

.show-course-outline a:hover {
	background-color: #ff7c87;
    box-shadow: 0 0 6px #666;
}

.why-awc-page {
	font-size: 18px;
}

#why-awc-panel {
	padding: 0 0;
	margin: auto;
}

#why-awc-panel .section-titles {
	margin: 60px auto 20px;
}

.presenter-thumbnails,
.community-thumbnails {
	width: 100%;
	overflow: hidden;
}

.presenter-thumbnails a,
.community-thumbnails a {
	display: block;
	line-height: 0;
}

.community-thumbnails a img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

#become-part-community {
	background-color: #0e93ab;
	color: #FFFFFF;
}

#become-part-community .section-titles {
	color: #FFFFFF;
}

#meet-awc-founder .section-titles {
	margin-bottom: 30px;
}

.vk-image {
	text-align: center;
}

#bhdt-word {
	background-color: #f9f3e8;
}

#bhdt-word .section-padding {
	padding: 40px 0 60px;
}

.bhdt-testimonials {
	margin: 20px auto;
}

.bhdt-testimonials .ttml-box {
	padding: 0 20px;
	margin: 0 auto 20px;
}

.bhdt-testimonials .graduate-testimonial-wrap p {
	font-style: italic;
	text-align: justify;
	font-size: 17px;
}

.bhdt-testimonials .graduate-bio {
	display: table;
	margin-top: 30px;
}

.bhdt-testimonials .graduate-img {
	display: table-cell;
	vertical-align: middle;
	width: 120px;
}

.bhdt-testimonials .graduate-info {
	display: table-cell;
	vertical-align: middle;
	font-size: 17px;
	font-style: normal;
	padding-left: 20px;
}

.bhdt-videos .span_6,
.y-get-results-vids .span_6 {
	margin-bottom: 20px;
}

#cwca-awc-panel > .container {
	padding-top: 20px;
}

#cwca-awc-panel .section-titles {
	margin: 15px auto 20px;
}

#cwca-awc-panel ul {
	font-weight: 700;
    margin: 0 auto 25px;
    padding: 0 25px;
    line-height: 1.6;
}

#cwca-awc-panel p {
	line-height: 1.6;
}

.cwca-awc-panel-img {
	padding-right: 20px;
}

.cwca-awc-panel-img > div {
	display: inline-block;
	padding: 10px;
	border: 1px solid #e6e7e8;
}

#explore-library-panel,
#step-by-step-writer {
	background-image: url("img/explore-library.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.explore-library-desc,
.step-by-step-writer-desc {
	display: inline-block;
}

.step-by-step-writer-desc {
	margin-top: 10px;
}

.explore-library-desc ul {
	margin: 0;
	padding: 25px;
	font-weight: 700;
	line-height: 1.7;
}

.explore-library-desc a {
	color: #231F20;
	text-decoration: none;
}

.explore-library-desc a:hover {
	text-decoration: underline;
}

.step-by-step-writer-desc h3 {
	font-size: 30px;
	margin-top: 0;
}

.step-by-step-writer-desc .sbsw-text {
	padding: 0 2%;
}

#course-steps-panel .course-steps {
	padding: 30px 20px;
	border: 1px solid #dedfdf;
	position: relative;
}

#course-steps-panel .course-steps > .step {
	padding: 30px 0 0;
}

#course-steps-panel .course-steps ul {
	margin: 0;
	padding-left: 0px;
}

#course-steps-panel .course-steps ul li {
	margin: 0 auto 20px;
	list-style-type: none;
}

#course-steps-panel .course-steps ul li > div {
	min-height: 45px;
}

.course-steps ul li table {
	margin: 0;
}

.course-steps ul li td,
.course-steps ul li td img {
	vertical-align: middle;
}
.course-steps ul li td.course-td-img {
	width: 60px;
}
#course-steps-panel .course-steps:before {
    position: absolute;
    right: -15px;
    top: -24px;
    z-index: 5;
}
#course-steps-panel .course-steps-first,
#course-steps-panel .course-steps:nth-child(1),
.tstm-box-wrapper .tstm-box:nth-child(1) {
	border-top: 10px solid #5b9e80;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

#course-steps-panel .course-steps-first:before,
#course-steps-panel .course-steps:nth-child(1):before {
    content: url("img/box-arrow1.png");
}

#course-steps-panel .course-steps-btm .course-steps-first:before,
#course-steps-panel .course-steps-btm .course-steps:nth-child(1):before {
    content: "";
}

#course-steps-panel .course-steps-second,
#course-steps-panel .course-steps:nth-child(2),
.tstm-box-wrapper .tstm-box:nth-child(2) {
	border-top: 10px solid #6bb592;
}

#course-steps-panel .course-steps-second:before,
#course-steps-panel .course-steps:nth-child(2):before {
    content: url("img/box-arrow2.png");
}

#course-steps-panel .course-steps-btm .course-steps-second:before,
#course-steps-panel .course-steps-btm .course-steps:nth-child(2):before {
    content: "";
}

#course-steps-panel .course-steps-third,
#course-steps-panel .course-steps:nth-child(3),
.tstm-box-wrapper .tstm-box:nth-child(3) {
	border-top: 10px solid #88d1ac;
}

#course-steps-panel .course-steps-third:before ,
#course-steps-panel .course-steps:nth-child(3):before {
    content: url("img/box-arrow3.png");
}

#course-steps-panel .course-steps-btm .course-steps-third:before ,
#course-steps-panel .course-steps-btm .course-steps:nth-child(3):before {
    content: "";
}

#course-steps-panel .course-steps-fourth,
#course-steps-panel .course-steps:nth-child(4) {
	border-top: 10px solid #afe2c6;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

#course-steps-panel .course-steps:nth-last-of-type(1):before {
	content: "";
}
#course-steps-panel .content-seperator {
	border-top: 1px solid #bec0c1;
	margin: 30px 0 0;
	position: relative;
}

#course-steps-panel .content-seperator:before {
    content: url("img/box-arrow4.png");
    position: absolute;
    left: 50%;
    top: -14px;
    z-index: 5;
    margin-left: -14px;
}

#course-steps-panel.start-here-course-steps .course-steps-wrapper .course-steps h4 {
	margin-bottom: 30px;
}

#course-steps-panel .course-steps h4,
.tstm-box-wrapper h4 {
	color: #5b9e80;
	font-size: 20px;
	margin: 0;
	text-transform: uppercase;
}

.tstm-box-wrapper h4 a {
	color: #5b9e80;
	text-decoration: none;
}

#course-steps-panel .course-steps a {
	color: #231F20;
	text-decoration: none;
}

#course-steps-panel .course-steps a:hover {
	text-decoration: underline;
}

#course-steps-panel .course-steps p {
	margin: 0;
}

.course-steps-btm {
	border: 1px solid #dedfdf;
	border-top: 10px solid #5b9e80;
	border-radius: 3px;
	padding: 30px 0;
	margin: 25px auto 0;
}

.course-steps-btm h2 {
	font-size: 30px;
	padding: 0 20px;
}

#course-steps-panel .course-steps-btm .course-steps {
	border: none;
	padding: 0 20px;
}

#course-steps-panel .course-steps-btm .course-steps ul {
	padding: 0;
}

#course-steps-panel .course-steps-btm ul li {
	margin: 0 auto 5px;
}

#course-steps-panel .course-steps-btm .course-li-text ul {
	padding: 25px;
}

#course-steps-panel .course-steps-btm .course-li-text ul li {
	list-style-type: disc;
	margin-bottom: 5px;
}

#hcwh-panel {
	background-color: #faf5ed;
}

#hcwh-panel .hwch-circles .hwch-circle {
	width: 230px;
	height: 230px;
	border-radius: 50%;
	padding: 30px;
	margin: 0 auto 20px;
	font-size: 18px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#purchase-g-voucher .hwch-circles {
	margin-bottom: 40px;
}

#purchase-g-voucher .hwch-circles .hwch-circle {
	width: 250px;
	height: 250px;
	border-radius: 50%;
	padding: 30px;
	margin: 0 auto 20px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#purchase-g-voucher .hwch-circle strong {
	font-size: 22px;
}

#purchase-g-voucher .hwch-circles .span_8 > span {
	display: block;
	font-size: 28px;
	text-align: center;
	margin: 20px auto;
}

.hwch-circles .hwch-circle a {
	display: block;
	text-decoration: none;
	color: #FFF;
}

.hwch-circle a:hover,
.hwch-circle a:visited {
	color: #FFF;
}

.hwch-circles .hwch-circle p {
	margin: 10px auto;
	font-size: 16px !important;
}

.hwch-circle-first { background-color: #fbb040; }
.hwch-circle-first:hover { background-color: #ffba53; }
.hwch-circle-second { background-color: #259997; }
.hwch-circle-second:hover { background-color: #30aba9; }
.hwch-circle-third { background-color: #fd6e7a; }
.hwch-circle-third:hover { background-color: #fe7f89; }
.hwch-circle-fourth { background-color: #0e93ab; }
.hwch-circle-fourth:hover { background-color: #24acc5; }

#purchase-g-voucher .hwch-circles .hwch-circle-first,
#purchase-g-voucher .hwch-circles .hwch-circle-third {
	padding-top: 45px;
}

.gift-vouchers-wrapper > div > .col {
	text-align: center;
	margin-bottom: 20px;
}

.gift-vouchers-wrapper > div > .col a {
	display: block;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.gift-vouchers-wrapper > div > .col a:hover {
	transform: scale(1.1);
}

#y-get-results-panel {
	background-color: #faf5ed;
}

#swfh-panel .section-titles {
	margin-bottom: 0;
}

#swfh-panel .swfh-subheading {
	margin-top: 0;
}

#swfh-panel ul {
	margin: 0;
	padding-left: 25px;
	line-height: 2;
	list-style-image: url("img/green-cmark.png");
}

#wtawc-panel {
	background-image: url("img/wtawc-guy.png");
	background-color: #264561;
	background-repeat: no-repeat;
	background-position: right bottom;
}

.wtawc-panel-btns a,
.wtawc-panel-btns a:visited,
.wtawc-panel-btns a:hover {
	text-decoration: none;
	color: #FFFFFF;
	display: block;
	padding: 32px 30px;
	margin: 0 10px 10px 0;
	border-radius: 3px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.wtawc-first-btn {
	background-color: #fbb040;
	border-bottom: 5px solid #d38d2f;
}

.wtawc-first-btn:hover {
	background-color: #ffc062;
}

.wtawc-second-btn {
	background-color: #259997;
	border-bottom: 5px solid #176864;
}

.wtawc-second-btn:hover {
	background-color: #45c1bf;
}

.wtawc-third-btn {
	background-color: #fd6e7a;
	border-bottom: 5px solid #c65260;
}

.wtawc-third-btn:hover {
	background-color: #ff949d;
}

.ctawc-box {
	width: 330px;
	height: 330px;
	border-radius: 50%;
	padding: 40px;
}

.ctawc-left-box { background-color: #fd6e7a; }
.ctawc-left-box:hover { background-color: #fe7f89; }
.ctawc-right-box { background-color: #0e93ab; }
.ctawc-right-box:hover { background-color: #30aba9; }

.ctawc-box-wrapper a {
	text-decoration: none;
	color: #FFF;
	cursor: pointer;
}

.ctawc-box-wrapper strong {
	font-size: 30px;
}

#ctawc-testimonial,
#ctawc-testimonial2 {
	background-color: #f9f3e8;
	font-weight: 600;
}

.ctawc-testi-author {
	font-weight: 700;
}

#tstm-panel {
	background-color: #f9f8e4;
    background-image: url("img/corporate-steps-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.tstm-box-wrapper {
	margin-bottom: 15px;
}

.tstm-box {
	padding: 25px 20px;
	border: 1px solid #dedfdf;
	background-color: #FFFFFF;
}

.tstm-box h4 {
	margin-bottom: 30px;
	text-transform: uppercase;
}

.tstm-box ul {
	margin: 0;
	padding-left: 25px;
}

.tstm-box ul li {
	margin-bottom: 10px;	
}


#ctawc-content > .container > .col {
	padding: 40px 0;
}

#ctawc-content > .container > .col:not(:first-child) {
	border-top: 1px solid #dedfdf;
}

#ctawc-content .section-titles {
	margin: 20px auto;
}

#ctawc-content .span_17 {
	padding: 0 10px;
}

#ctawc-lftb {
	background-color: #ebeae8;
}

.ctawc-whttf {
	background-color: #f9f3e8;
}

#ctawc-lftb .lftb-img {
	padding-top: 20px;
}

#ctawc-lftb .lftb-desc  a,.lftb-desc  a {
	color: #ff394e;
	font-weight: bold;
}

#lochub-panel .lochub-map {
	font-size: 17px;
}

#lochub-panel .lochub-map iframe {
	width: 100%;
	min-height: 190px;
}

#lochub-panel .section-padding {
	padding-bottom: 0;
}

#lochub-tabs {
	margin-top: 15px;
}

#lochub-tabs > .container {
	padding-bottom: 40px;
}

#awc-newsletter-panel {
	border-bottom: 10px solid #0e93ab;
}

.awc-newsletter-form-wrapper {
	border: 1px solid #d1d3d4;
}

.awc-newsletter-form-header {
	background-color: #fd6e7a;
	font-weight: bold;
	text-transform: uppercase;
	color: #FFFFFF;
	text-align: center;
	padding: 5%;
	font-size: 22px;
}

.awc-newsletter-form-header p {
	margin: 0;
}

.awc-newsletter-form-fields {
	padding: 30px 25px;
}

.awc-newsletter-form-fields input[type="text"],
.awc-newsletter-form-fields select {
	width: 100%;
	border: 1px solid #d1d3d4;
	background-color: #FFFFFF;
	font-style: italic;
	margin-bottom: 10px;
	border-radius: 0;
	padding: 11px 15px;
	font-family: "Open Sans", sans-serif;
	font-size: 18px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.awc-newsletter-form-fields input[type="text"]:hover {
	box-shadow: 0 0 10px #f5e23f;
	border: 1px solid #FFF;
}

.awc-newsletter-form-fields input[type="submit"] {
    display: block;
    margin: 15px auto 30px;
    background-color: #ff394e;
    color: #fff;
    padding: 20px 22%;
    text-transform: uppercase;
    box-shadow: unset;
    border: none;
    font-size: 20px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.awc-newsletter-form-fields input[type="submit"]:hover {
	background-color: #ff4a5d;
	box-shadow: 0 0 6px #000;
}

.o-box-wrapper,
.stories-box-wrapper {
	padding-top: 0;
}

.o-box-wrapper .o-box {
	border: 1px solid #a09fa0;
	width: calc(33.33% - 20px);
	margin-bottom: 20px;
	padding: 20px;
	color: #414042;
	background-color: #FFFFFF;
}

.stories-box-wrapper .stories-box {
	width: calc(33.33% - 50px);
	margin: auto 25px;
	border-bottom: 1px solid #adadad;
	padding: 23px 0;
}

.stories-box.stories-box-last {
	border-bottom: none;
}

.stories-box .stories-testi-author {
	margin-top: 15px;
	font-weight: 700;
	display: table;
}

.stories-box .graduate-pic {
	display: table-cell;
	vertical-align: middle;
}

.stories-box .grad-name {
	display: table-cell;
	vertical-align: middle;
}

.stories-box .graduate-dash {
	display: table-cell;
	vertical-align: middle;
}

.stories-box-wrapper .stories-box p {
	margin: 0;
}

.o-box-img-name {
	display: table;
}

.o-box-img-name > div {
	display: table-cell;
	vertical-align: middle;
}

.o-box-img {
	padding-right: 15px;
}

.o-box-img > img {
	border-radius: 50%;
}

#o-support-team > .container {
	padding-top: 0;
}

.o-support-box {
	margin: 10px 0;
}

.o-support-box > img {
	border-radius: 50%;
}

#succ-stories-panel {
	font-size: 22px;
}

#succ-stories-panel p {
    width: 65%;
    margin: auto;
    font-size: 1em;
    text-align: center;
    font-weight: 600;
}

#succ-stories-panel .section-padding {
	padding: 20px 0;
}

.succ-stories-vid-hide {
	display: none;
}

.succ-stories-vid-box {
	width: calc(25% - 20px);
	margin: 10px;
}

.succ-stories-vid-desc p {
	margin: 0;
}

.succ-stories-vid-btn > a {
	margin-top: 0;
}

#succ-stories-testimonials > .container {
	padding-bottom: 0;
}

#succ-stories-testimonials .testimonial-sorter,
#awc-courses-sorter {
	display: block;
    padding: 10px;
    border-radius: 3px;
    width: 180px;
    margin: auto auto 15px;
    cursor: pointer;
}

.vm-button-wrapper  {
	width: 100%;
	text-align: center;
	margin: 12px 0 40px;
	display: block;
	float: left;
}
.vm-button-wrapper > button.vm-courses {
    box-shadow: none;
    border: none;
    color: #414042;
    border-radius: 0;
    font-family: "Open Sans", serif;
    text-transform: lowercase;
    background-image: url("img/counterclock.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-color: transparent;
    font-weight: bold;
    padding: 20px 0 20px 70px;
    font-size: 25px;
}

.page-template-default .entry-content p {
	/*font-size: 18px;*/
}

.button.blue {
	display: inline-block;
    padding: 0.8em 2em;
    text-decoration: none;
    line-height: normal;
    text-shadow: none;
    font-weight: 700;
    border: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    background: #20bf5c;
    color: #fff;
    text-transform: none;
    box-shadow: 0 2px 0 #289752;
}

.course-header-content {
	min-height: 250px;
	font-weight: 400;
	display: table-cell;
	vertical-align: middle;
	float: none;
}

#awc-reset-filter {
	width: 100%;
    box-shadow: none;
    font-weight: 600;
    font-family: "Open Sans", serif;
    font-size: 20px;
    border: none;
    border-radius: 0;
}

/* PRESENTERS PAGE */

#presenter-lists, .c-lists {
	margin: 0;
	padding: 0;
}
.presenter-item {
	list-style: none;
	padding: 30px 0;
	border-bottom: 2px solid #d6d8d9;
}
.presenter-item:last-child {
	border-bottom: unset;
}
.presenter-photo-wrapper {
	display: block;
	margin: 0 auto;
	overflow: hidden;
}
.presenter-photo-wrapper img {
	border-radius: 50%;
}
.presenter_courses .c-lists a {
	text-decoration: none;
	color: #000;
}
.presenter_courses .c-lists li {
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
}
.presenter_courses .c-wrap {
	display: table;
}
.presenter_courses .c-icon-wrap {
	display: table-cell;
	vertical-align: middle;
	width: 40px;
}
.presenter_courses .c-icon-wrap img {
	width: 26px;
	height: 26px;
}
.presenter_courses .c-detail-wrap {
	display: table-cell;
	vertical-align: top;
}
.presenter_courses .c-detail-wrap h4 {
	margin: 0;
}

.presenter_desc {
	font-size: 18px;
    font-weight: 400;
    padding: 0 9% 0 3%;
}

.presenter_desc p {
	margin: 0;
}

.presenter_desc .read-more-link {
    color: #ff394e;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.presenter_courses {
	font-size: 18px;
	padding-right: 5%;
}
.testimonial-name-profession p {
	margin-top: 6px;
}
@media (max-width: 919px) {
	.presenter_image {
		width: 30%;
	}
	.presenter_desc {
		width: 70%;
		padding: 0 5%;
	}
	.presenter_courses {
		width: 100%;
		padding-right: 0;
		margin-top: 20px;
	}
}
@media (max-width: 479px) {
	.presenter_image {
		width: 100%;
		text-align: center;
	}
	.presenter_desc {
		width: 100%;
		padding: 0;
		margin: 20px 0;
	}
	.presenter_courses {
		padding-right: 0;
		margin-top: 0px;
	}
}

/**/

div.awc_presenter-wrapper {
	margin-top: 20px;
	font-size: 18px;
	font-weight: 400;
}

.awc_presenter-wrapper .awc_presenter-left {
	padding-right: 3%;
}

.awc_presenter-wrapper .presenter-image {
	margin-top: 20px;
}

.awc_presenter-wrapper .presenter-content {
	margin-bottom: 12px;
	border-bottom: 3px solid #d6d8d9;
	text-align: justify;
}
.awc_presenter-wrapper .presenter-work-lists, .presenter-testimonial-lists, .c-lists {
	margin: 0;
	padding: 0;
}
.awc_presenter-wrapper .presenter-work-lists li {
	list-style: none;
	display: inline-block;
	margin: 2%;
	max-width: 120px;
	width: 20%;
}
.awc_presenter-wrapper .testimonial-presenter {
	background-color: #fcf9f3;
	padding: 25px 4%;
	margin-top: 30px;
}
.awc_presenter-wrapper .presenter-testimonial-lists li {
	list-style: none;
	padding: 1.5em 2% 0;
	border-bottom: 2px solid #e6e6e3;
}
.awc_presenter-wrapper .presenter-testimonial-lists li:last-child {
	border-bottom: unset;
}
.awc_presenter-wrapper .presenter-teaches-course {
	border: 2px solid #d1d3d4;
	padding: 12px;
	margin: 20px auto;
}
.awc_presenter-wrapper .presenter-teaches-course h3 {
	margin: 0 0 6px;
}
.awc_presenter-wrapper .c-lists a {
	text-decoration: none;
	color: #000;
}
.awc_presenter-wrapper .c-lists li {
	list-style: none;
	padding: 15px 0;
	border-top: 1px solid #dcdedf;
}
.awc_presenter-wrapper .c-wrap {
	display: table;
}
.awc_presenter-wrapper .c-icon-wrap {
	display: table-cell;
	vertical-align: top;
    text-align: center;
    padding: 10px 10px 0 0;
}
.awc_presenter-wrapper .c-detail-wrap {
	display: table-cell;
	vertical-align: top;
	width: 90%;
}
.awc_presenter-wrapper .c-detail-wrap p {
	margin: 0;
}

/**/

.archive #content,
.blog #content,
.single-post #content {
    max-width: 1160px;
    margin: auto;
    width: 96%;
}

.single-post #content {
	font-size: 19px;
}

.single-post #content .entry-title {
	margin: 0.67em 0;
}

.single-post .entry-content .entry-thumbnail,
.single-post .entry-content .entry-content-desc {
	width: 100%;
}

.single-post .entry-content .entry-content-desc img.alignleft {
	margin: 10px 10px 10px 0;
}

.single-post .entry-content .entry-content-desc img.alignright {
	margin: 10px 0px 10px 10px;
}

.archive .article-row-wrapper,
.blog .article-row-wrapper {
	border-bottom: 1px solid #d5d5d6;
	padding-bottom: 1.5em;
}

.archive article.sticky,
.blog article.sticky {
    padding: 2%;
    background-color: #e8f6f7;
}

.blog article.sticky {
	margin-top: 10px;
}

.archive h2.entry-title,
.blog h2.entry-title {
	margin: 0;
}

.archive h2.entry-title a,
.blog h2.entry-title a {
    color: #231f20;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
}

.archive .entry-content,
.search .entry-content,
.blog .entry-content {
	font-size: 19px;
	margin: 0;
}

.archive .entry-content .entry-thumbnail,
.search .entry-content .entry-thumbnail,
.blog .entry-content .entry-thumbnail {
	padding-top: 20px;
	/*max-height: 200px;*/
	/*overflow: hidden;*/
}

aside .sidebar-search-wrapper label {
	position: relative;
}

aside .sidebar-search-wrapper label:before {
    content: "\f002";
    position: absolute;
    width: 25px;
    height: 25px;
    left: 7px;
    top: 2px;
    display: block;
    font-family: FontAwesome;
    z-index: 6;
    color: #444;
}

aside .sidebar-search-wrapper .search-field {
	width: 100%;
	padding: 5px 30px;
}

aside .sidebar-search-wrapper .search-submit {
	display: none;
}

.blog-post-categories-widget {
	background-color: #f9f3e8;
	padding: 25px;
    text-transform: uppercase;
}

.blog-post-categories-widget .widget-title {
    margin: 0;
    font-size: 22px;
    font-family: "Open Sans", sans-serif;
    border-bottom: 2px solid #58595b;
    padding-bottom: 10px;
}

.blog-post-categories-widget ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.blog-post-categories-widget ul li {
	padding-top: 15px;
}

.blog-post-categories-widget li a {
    text-decoration: none;
    color: #231f20;
    font-weight: bold;
    font-size: 18px;
}

.what-people-say-widget {
	/* border: 1px solid #d1d3d4; */
	margin: 0;
}

.what-people-say-widget h2 {
	font-size: 22px;
    font-family: "Open Sans", sans-serif;
    padding: 25px 10%;
    margin: 0;
    text-align: center;
    background-color: #fd6e7a;
    color: #FFF;
}

.what-people-say-widget .textwidget {
	padding: 0;
}

.single-post-author,
.comments-area {
	border-top: 1px solid #d1d3d4;
}
.single-post-author {
	padding: 20px 0;
}
.date-meta-wrapper {
	margin-bottom: 12px;
	color: #3e3e3e;
}
.single-post-author img {
	float: left;
	margin: 0 4% 4% 0;
}

.single-post-author h3,
h3.comments-title {
	font-family: "Open Sans", sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	margin: 0 0 30px;
}

.comments-area ol.comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comments-area ol.comment-list > li {
	margin-bottom: 30px;
}

.comments-area .comment-metadata a {
    color: inherit;
    text-decoration: none;
    font-style: italic;
}

.section-padding-cut {
	padding: 40px 3%;
}

#hwyr-panel > .container {
	border-bottom: 1px solid #959595;
}

#yii-panel .span_8 {
	padding: 0 3%;
	margin-top: 40px;
}

#yii-panel .span_8 img {
	margin-bottom: 10px;
}

#yii-panel .span_8 p {
	margin: 0;
}

#foiyw-panel > .container {
	position: relative;
}

#contact-us-accordion .fl-accordion #contact-us-accordion-0 .fl-accordion-button {
	background-color: #ff394e;
}

#contact-us-accordion .fl-accordion #contact-us-accordion-1 .fl-accordion-button {
	background-color: #259997;
}

#contact-us-accordion .fl-accordion #contact-us-accordion-2 .fl-accordion-button {
	background-color: #fbb040;
}

#contact-us-accordion .fl-accordion #contact-us-accordion-3 .fl-accordion-button {
	background-color: #6e6fa1;
}

#contact-us-accordion .fl-accordion-button-label {
	font-size: 18px;
	font-weight: 700;
	color: #FFF;
	vertical-align: middle;
	padding-left: 10px;
}

#contact-us-accordion .fl-accordion-button-icon {
	opacity: 1;
	color: #FFF;
}

#contact-us-accordion .fl-accordion-content {
	font-size: 18px;
}

#contact-us-accordion .fl-accordion-item .fl-accordion-button:before {
	content: "\f0d7";
	font: normal normal normal 14px/1 FontAwesome;
	color: #FFF;
}

#contact-us-accordion .fl-accordion-item.fl-accordion-item-active .fl-accordion-button:before {
	content: "\f0d8";
	font: normal normal normal 14px/1 FontAwesome;
	color: #FFF;
}

#contact-us-accordion .fa-plus:before,
#contact-us-accordion .fa-minus:before {
	content: "";
}

#post-19940 h1.entry-title { /*Contact us*/
	/*padding: 0 4%;*/
}

/* PAGE BUILDER */
.contact-us-box .fl-module-content {
	border: 1px solid #e1e3e3;
}

.contact-us-box h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	font-family: "Open Sans", sans-serif;
	background-color: #e6e8e8;
	padding: 9% 8% 5%;
}

#contact-us-box-0 h3 {
	border-bottom: 3px solid #fd6e7a;
}

#contact-us-box-1 h3 {
	border-bottom: 3px solid #259997;
}

#contact-us-box-2 h3 {
	border-bottom: 3px solid #fbb040;
}

.contact-us-box p {
	margin: 1em 8% 1.5em;
	word-wrap: break-word;
}

.fl-col-small {
	max-width: 100% !important;
}

.important-spanbox {
	display: block;
	position: absolute;
	top: -40px;
	left: 55px;
	font-size: 28px;
	padding: 20px 40px;
	background-color: #fd6e7a;
	color: #fff;
}

.important-spanarrow {
	position: absolute;
	top: 40px;
	left: 10px;
}

body.single .entry-content h3 {
	margin-bottom: 0;
}

body.single .entry-content h4 {
	margin-bottom: 0;
	color: #00b1cd;
}

body.single .entry-content h3 + p {
	margin-top: 0;
}

body.single .entry-content h4 + p {
	margin-top: 0;
}

body.single .entry-content ul {
	margin: 0;
}

.course-outline-btn-a {
/* 	display: block;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    padding: 40px 0;
    background-color: #e67f1c !important;
    border-radius: 3px;
	text-align: center; */
}

.course-outline-btn-a:hover {
	/* background-color: #f39943 !important; */
    box-shadow: 0 0 6px #666;
}

.fl-module-awc-course-learn-more {
	/*margin: 10px auto;*/
}

.sidebar-content-box {
	margin: 12px auto;
}

#sidebar-related-heading {
	margin: 24px auto 12px;
}

.course-sidebar-header p,
#sidebar-related-heading p {
	font-family: "Roboto Slab", Georgia, serif;
    font-weight: bold;
    font-size: 1.5em;
    color: #000;
    margin: 0;
}

.mentor-box {
	display: inline-block;
	border: 1px solid #d1d3d4;
	border-radius: 3px;
	padding: 0 20px 20px;
}

body.single-awc_courses form.infusion-form input[type="submit"] {
	background-color: #e7923f;
}

body.single-awc_courses form.infusion-form input[type="submit"]:hover {
	background-color: #eea45c;
}

.post-type-archive-awc_courses #content {
	max-width: 100%;
	width: 100%;
}

.single-awc_presenters #content {
	padding: 40px 0;
}

#qlf-button-ct-popup {
	position: relative;
    background: #FFF;
    padding: 20px;
    width: auto;
    max-width: 600px;
    margin: 20px auto;
    border-radius: 6px;
}

#qlf-button-ct-popup .infusion-field {
    width: 100%;
    float: left;
    margin-bottom: 15px;
    color: #999;
    position: relative;
    font-size: 18px;
}

#qlf-button-ct-popup .infusion-field label {
	/*width: 100%;*/
    /*display: inline-block;*/
    margin: 0 20px 5px 0;
    color: #000;
}

#qlf-button-ct-popup .infusion-field input[type="text"] {
    width: 100%;
    border: 1px solid #e9e9e9;
    padding: 8px 10px;
}

#qlf-button-ct-popup .infusion-field select {
    border: 1px solid #e9e9e9;
    padding: 8px 10px;
    display: block;
    color: #666;
}

#qlf-button-ct-popup .infusion-submit input {
    text-decoration: none;
    color: #FFF;
    background-color: #ff394e;
    padding: 23px 70px;
    border-radius: 3px;
    display: inline-block;
    box-shadow: none;
    border: none;
    text-shadow: none;
    font-size: 20px;
    width: 100%;
    margin: 20px auto;
}

#qlf-button-ct-popup .infusion-submit input:hover {
	background-color: #ff4a5d;
    box-shadow: 0 0 6px #000;
    color: #FFFFFF;
}

.all-courses-top-box {
    /*border: 1px solid #cecfd0;*/
    margin: 0 auto 15px;
    background-color: #e8f6f7;
    padding: 0%;
}

.all-courses-top-box .all-courses-top-boxes {
	width: calc(25% - 10px);
	margin: 0 5px;
}

.kudos-courses-top-box .all-courses-top-boxes {
	width: calc(50% - 10px);
	margin: 0 5px;
}

.all-courses-top-box .all-courses-top-boxes img,
.kudos-courses-top-box .all-courses-top-boxes img {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.all-courses-top-box .all-courses-top-boxes img:hover,
.kudos-courses-top-box .all-courses-top-boxes img:hover {
	box-shadow: 0 0 10px #c1c1c1;
}

.course-hub-top-box {
	text-shadow: 0px 1px 6px #666;
}

.esg-left-box {
	color: #414042;
	position: relative;
}

.esg-left-box .esg-lb-wrapper {
	border: 1px solid #959595;
    margin: 45px 0;
    padding: 50px 60px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.esg-right-box {
	color: #ffffff;
	background-image: url("img/esg-box-woman.jpg");
}

.esg-right-box .esg-rb-wrapper {
	background-image: url("img/quiz-bg-blue.png");
	padding: 95px 60px;
    border-radius: 5px;
    height: 100%;
}

.esg-rb-wrapper .pink-btn:hover {
	box-shadow: 0 0 10px #c1c1c1;
}

#esg-lb-pencil {
    position: absolute;
    bottom: -100px;
    left: -100px;
}

.all-courses-circles-wrapper .span_6 > div {
	display: table;
    width: 200px;
    height: 200px;
    padding: 20px;
    transition: all .2s ease-in;
}

.all-courses-circles-wrapper .span_6 > div#all-courses-circle-creative:hover {
	background-color: #0da7c1;
}

.all-courses-circles-wrapper .span_6 > div#all-courses-circle-freelance:hover {
	background-color: #c03681;
}

.all-courses-circles-wrapper .span_6 > div#all-courses-circle-business:hover {
	background-color: #8185cc;
}

.all-courses-circles-wrapper .span_6 > div#all-courses-circle-blogging:hover {
	background-color: #e5801b;
}

.all-courses-circles-wrapper .span_6 > div > a {
	display: table-cell;
	text-decoration: none;
    color: #231F20;
    vertical-align: middle;
}

.all-courses-circles-wrapper .span_6 > div:hover > a {
	color: #FFFFFF;
}

.border-radius-circle {
	border-radius: 50%;
}

.course-c-creative {
	background-color: #0da7c1;
}

.course-c-freelance {
	background-color: #c03681;
}

.course-c-business {
	background-color: #8185cc;
}

.course-c-blogging {
	background-color: #e5801b;
}

#bwc-fom-circle {
    width: 200px;
    height: 200px;
    margin: auto;
    border-radius: 50%;
    background-color: #12b7d5;
    display: table;
    transition: all .3s ease-in;
}

#bwc-fom-circle:hover {
	opacity: 0.8;
}

#bwc-fom-circle > a {
	display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    text-align: center;
    color: #FFF;
    text-decoration: none;
    padding: 20px;
}

.fl-module-awc-custom-testimonial .container {
	width: 96%;
}

.course-title-wrap h3 {
	font-size: 18px !important;
}

.esg-top-box ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.esg-top-box ul li {
	padding-left: 1em; 
    text-indent: -.7em;
}

.esg-top-box ul li:before {
    content: "• ";
    color: #0e7d89;
}

.entry-content-sidebar {
	margin-top: 16px;
}

.entry-content-desc img {
	margin-top: 40px;
}

#archives-2 ul li {
	font-size: 19px;
}

.ubermenu-tab-content-panel .ubermenu-target-title:hover {
	font-weight: 700 !important;
}

.jessica-books-dsplay .width25 {
	padding: 0 10px;
}

.fl-node-57c4d14555d0b .ch-filter-buttons {
	text-align: center;
}

.fl-node-57c4d14555d0b .ch-filter-buttons button {
    box-shadow: none;
    color: #FFF;
    border: none;
    padding: 10px;
    font-size: 19px;
    border-radius: 0;
    background-color: #444;
}

.fl-node-57c4d14555d0b .ch-filter-buttons button:hover {
	opacity: 0.9;
}

.fl-node-57c4d14555d0b .ch-filter-buttons button[data-filter=".creative-writing"] {
	background-color: rgba(13,167,193, 1);
}

.fl-node-57c4d14555d0b .ch-filter-buttons button[data-filter=".freelance-writing"] {
	background-color: rgba(192,54,129, 1);
}

.fl-node-57c4d14555d0b .ch-filter-buttons button[data-filter=".business-writing"] {
	background-color: rgba(129,133,204, 1);
}

.fl-node-57c4d14555d0b .ch-filter-buttons button[data-filter=".blogging"] {
	background-color: rgba(229,128,27, 1);
}

.fl-node-57e4b8e66fca9 {
	position: relative;
	box-shadow: 0px -6px 10px -7px #666;
	/*border-top: 5px solid #0da7c1;*/
	margin-top: 0px;
}

.boxborder {
	border: 1px solid #dedfdf;
	padding: 10px;
}

.colorwhite {
	color: #FFFFFF;
}

.fontbold {
	font-weight: 700;
}

.font16 {
	font-size: 16px;
}

.font18 {
	font-size: 18px;
}

.font22 {
	font-size: 22px;
}

.font23 {
	font-size: 23px;
}

.font28 {
	font-size: 28px;
}

.font40 {
	font-size: 40px;
}

.fontw400 {
	font-weight: 400;
}

.border-radius {
	border-radius: 3px;
}

.no-animation,
.parallax-mirror,
.parallax-slider {
	-webkit-transition: all 0s ease-in-out;
	-moz-transition: all 0s ease-in-out;
	-o-transition: all 0s ease-in-out;
	transition: all 0s ease-in-out;
}

.textcenter {
	text-align: center;
}

.textright {
	text-align: right;
}

.marginauto {
	margin: auto;
}

.displayblock {
	display: block;
}

.displaynone {
	display: none;
}

.brownbg {
	background-color: #f9f3e8;
}

.no-flex {
	display: block !important;
}

.lochub-vid .video-thumb-wrap {
	height: auto;
}

@media (max-width: 1300px) {
	.important-spanarrow {
		display: none;
	}
}

@media (max-width: 1180px) {
	.fl-row-fixed-width {
		width: 96%;
	}

}

@media screen and (max-width: 1120px) {
	.ubermenu-responsive .ubermenu-tabs > .ubermenu-tabs-group > .ubermenu-tab > .ubermenu-tab-content-panel {
		background-color: #f9f9f9;
	}

	#ubermenu-main-241-primary .ubermenu-submenu-type-stack {
		background-color: transparent !important;
	}

	#ubermenu-main-241-primary .ubermenu-item-header .ubermenu-target-title {
		font-size: 14px !important;
	}

	#ubermenu-main-241-primary .ubermenu-tab-content-panel a.ubermenu-target {
		padding: 10px 10px !important;
	}
}

@media (min-width: 768px) and (max-width: 1120px) { /* UBERMENU RESPONSIVE */

	.ubermenu-skin-vanilla.ubermenu-responsive-toggle {
		font-size: 30px;
		color: #444444;
	}

	.ubermenu-responsive-toggle .fa {
		margin-right: 0.2em;
	}

	#site-navigation #ubermenu-main-241-primary {
		float: none;
		margin-top: 0px;
	}

	.site-title {
		margin-top: 12px;
	}
}

@media (min-width: 530px) and (max-width: 767px) {
	#hcwh-panel .hwch-circles > .span_6 {
		width: 50%;
	}
}

@media (min-width: 580px) and (max-width: 1023px) {
	.bhdt-videos .span_6,
	.y-get-results-vids .span_6 {
		width: 50%;
	}
}

@media (max-width: 579px) {
	#bhdt-word .floatleft,
	#y-get-results-panel .floatleft {
		float: none;
	}

	.infusion-radio .infusion-option {
		float: left;
		width: 100%;
	}
}

@media (min-width: 768px) {
	.vk-desc {
		width: 74.5%;
		float: left;
		padding-right: 30px;
	}

	.vk-image {
		width: 25%;
		float: right;
		text-align: right;
		margin-top: 20px;
	}

	.explore-first-rb {
		padding-right: 25px;
		line-height: 1.4;
	}

	.explore-second-rb {
		padding-left: 25px;
		line-height: 1.4;
	}

	#explore-library-panel > .container,
	#step-by-step-writer > .container {
		padding-top: 155px;
	}

	#course-steps-panel .course-steps-wrapper,
	.tstm-box-wrapper {
		display: flex;
	}

	.citas-panel-desc {
		padding-left: 35px;
	}

	.hcwh-btm-desc {
		line-height: 1.4;
		padding: 0 35px;
	}

	.y-get-results-desc {
		margin: 0 auto 35px;
		padding: 0 35px;
	}

	.course-steps-top-desc {
		margin: 0 auto 20px;
		padding: 0 35px;
	}

	.course-steps-btm-desc {
		margin: 15px auto 0;
		padding: 0 35px;
	}

	.course-steps-top-desc img {
		margin-left: -35px;
	}

	.swfh-wrapper {
		padding: 0 35px;
	}

	#wtawc-panel > .container {
		padding-left: 35px;
	}

	#wtawc-panel .section-titles {
		margin-bottom: 0;
	}

	#ctawc-panel .ctawc-panel-desc {
		padding-right: 110px;
	}

	.ctawc-box-wrapper {
		margin-top: 25px;
	}

	.ctawc-box-wrapper h4 {
		margin-top: 140px;
	}

/*	.infusion-field:nth-of-type(1) label,
	.infusion-field:nth-of-type(2) label,
	.infusion-field:nth-of-type(3) label {
		width: 20%;
	}

	.infusion-field input {
		width: 70%;
	}*/

	.custom-testimonial,
	.custom-testimonial > .container {
		padding-left: 0px !important;
	}

	.custom-testimonial .graduate-pic {
		text-align: left;
	}

	#ctawc-lftb .lftb-desc {
		padding: 0 10px;
	}

	#lochub-panel .lochub-desc,
	#lochub-panel .lochub-map {
		padding: 0 14px;
	}

	.awc_courses .entry-header-image img {
		/*width: 100%;*/
		max-height: 350px;
	}

	.awc-newsletter-form {
		padding: 0 30px 0 50px;
	}

	.gift-vouchers-wrapper .gift-vouchers-btm .voucher300 {
		text-align: right;
		padding-right: 12px;
	}

	.gift-vouchers-wrapper .gift-vouchers-btm .voucher395 {
		text-align: left;
		padding-left: 12px;
	}

	#o-team-panel > .container {
		padding: 40px 50px 40px 20px;
	}

	#succ-stories-testimonials .testimonial-sorter {
		float: right;
		margin-right: 30px;
	}

	#awc-courses-sorter {
		float: right;
		margin-right: 5px;
	}

	.presenter-page-desc {
		width: 65%;
		margin: auto;
	}

	.blog-l-side-wrapper {
		padding-right: 2%;
	}

	aside#secondary {
		padding: 20px 2%;
		margin-top: 20px;
		}

	.archive article.sticky .entry-content .entry-thumbnail,
	.search article.sticky .entry-content .entry-thumbnail,
	.blog article.sticky .entry-content .entry-thumbnail {
		width: 50%;
	}

	.archive .entry-content .entry-content-desc,
	.search .entry-content .entry-content-desc,
	.blog .entry-content .entry-content-desc {
		padding-left: 3%;
		padding-top: 20px;
	}

	.archive article.sticky .entry-content .w-feat-image,
	.search article.sticky .entry-content .w-feat-image,
	.blog article.sticky .entry-content .w-feat-image {
		width: 50%;
	}

	.archive h2.entry-title a,
	.search h2.entry-title a,
	.blog h2.entry-title a {
		font-size: 28px;
	}

	.course-steps-btm {
		padding-bottom: 0;
	}

	#ycsn-panel .ycsn-img {
		position: relative;
	}

	#ycsn-panel .ycsn-img img {
		position: absolute;
		top: -50px;
	    right: 0;
	}

	#whscce-panel .span_15 {
		padding-right: 5%;
	}

/*	#yosc-panel {
		background: url("img/party_popper.png") transparent bottom right no-repeat;
	}*/
	
	#yosc-panel p {
		padding-right: 5%;
	}

	.hwyr-box {
		padding: 0 4%;
		margin-top: 40px;
	}

	.lochub-vid .video-thumb-wrap {
		width: 100%;
		max-width: 486px;
	}

	.stories-box .graduate-pic {
		padding-right: 10px;
	}

	.all-courses-circles-container .span_5 > h3 {
		margin: 45px 5px;
		/*font-size: 1.4em;*/
	}
}

@media (max-width: 947px) {
	#wtawc-panel {
		background-image: none;
	}

	#wtawc-panel .span_18,
	#wtawc-panel .span_18 > a {
		width: 100%;
	}

	.bhdt-testimonials .ttml-box {
		width: auto;
	}

	.bhdt-testimonials .graduate-bio {
		margin: 30px auto;
	}

	.succ-stories-vid-box {
		width: calc(33.33% - 20px);
		text-align: center;
	}

	.lochub-vid {
		float: none;
	}
}

@media (min-width: 480px) and (max-width: 1023px) {
	.hwch-circles > .span_6 {
		width: 50%;
	}

	#citas-panel .span_14,
	.gift-vouchers-top-panel .span_15 {
		width: 100%;
	}

	#citas-panel .citas-panel-img,
	.gift-vouchers-top-panel .span_9 {
		display: none;
	}
}

@media (max-width: 767px) {
	.you-can-do-this {
		margin-bottom: 0px;
	}

	.entry-content-sidebar,
	.read-more-testimonials {
		width: 100%;
	}

	#why-awc-panel .section-titles {
		margin: 20px auto 20px;
	}

	#world-presenters-panel > .container {
		width: 96%;
	}

	#become-part-community > .container {
		width: 96%;
	}

	.cwca-awc-panel-img {
		text-align: center;
		padding: 0;
	}

	#course-steps-panel .course-steps-wrapper {
		padding-top: 0;
	}

	#course-steps-panel .course-steps:before {
		content: "" !important;
	}

	.ctawc-box {
		width: 280px;
	    height: 280px;
	    padding: 17px;
	}

	.ctawc-left-box,
	.ctawc-right-box {
		float: none;
		margin: auto;
	}

	.graduate-testimonial-wrap {
		text-align: center !important;
	}

	.o-box-wrapper .o-box {
		width: calc(100% - 20px);
	}

	.stories-box-wrapper .stories-box {
		width: calc(100% - 50px);
	}

	#succ-stories-panel p {
	    width: auto;
	    line-height: 1.3;
	}

	.succ-stories-vid-box {
		width: calc(50% - 20px);
	}

	#all-courses-wrap .course-detail-block {
		width: 49%;
	}
	
	.archive h2.entry-title,
	.blog h2.entry-title {
		line-height: 1;
	}

	.step-by-step-writer-desc .sbsw-text {
		text-align: center;
	}

	.fl-row-content-wrap {
		padding: 3% 0 !important;
	}

	.no-padding-mobile .fl-row-content-wrap {
		padding: 0 0 !important;
	}

	#which-course-panel .fl-row-content-wrap {
		padding: 0 0 !important;
	}

	#quiz-lead-form .qlf-wrapper h3 {
		margin: 0 0 0;
	}

	.important-spanbox {
		display: none;
	}

	.contact-us-box {
		margin-bottom: 20px;
	}

	.stories-box .stories-testi-author {
		display: block;
	}

	.stories-box .graduate-pic {
		width: 100%;
		display: block;
		float: left;
		margin-bottom: 15px;
	}

	.course-path-heading .fl-module-content {
		padding: 10px;
	}

	.course-path-heading .fl-module-content .fl-heading {
		line-height: 1;
		font-size: 24px;
	}

	.esg-right-box {
		margin: 15px auto;
	}

	.esg-left-box .esg-lb-wrapper,
	.esg-right-box .esg-rb-wrapper {
		margin: 0 0;
		padding: 5% 5%;
		border-top-left-radius: 0px;
		border-bottom-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-right-radius: 0px;
	}

	#esg-lb-pencil {
		display: none;
	}

	.fl-module-awc-custom-testimonial {
		margin-bottom: 20px;
	}

	.fl-module-awc-custom-testimonial .t-message, .fl-module-awc-custom-testimonial .t-name {
		text-align: center !important;
	}

	.fl-module-awc-custom-testimonial .t-name .t-photo-wrap {
		float: none;
	}

	.awc_courses .entry-content {
		word-wrap: break-word;
	}

	.course-hub-top-box-desc > .fl-node-content {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}

	.loc-course-top-box-vid {
		margin-bottom: 20px;
	}

	.loc-course-top-box-map {
		margin-bottom: 20px;
	}

	.site-main > .hentry {
		margin-top: 1em;
	}

	.large-screen-only {
		display: none;
	}

	.gift-vouchers-btm img {
		float: none;
	}

	#site-navigation #ubermenu-main-241-primary {
		float: none;
		margin-top: 0px;
	}

	.site-title {
		margin-top: 12px;
	}

	#boom_bar-53 {
		display: none;
	}

	body {
		margin-top: 0 !important;
	}

	.awc_courses .awc-course-container {
		margin-bottom: 10px;
	}
}

@media (max-width: 479px) {
	.succ-stories-vid-box {
		width: calc(100% - 20px);
	}
}



/* OUR TEAM RESPONSIVE */

@media (min-width: 568px) and (max-width: 1024px) {
	.o-box-wrapper .o-box {
		width: calc(50% - 20px);
	}

	.stories-box-wrapper .stories-box {
		width: calc(50% - 50px);
	}
}

@media (min-width: 1100px) {
	.o-support-header > .section-titles {
		float: left;
		padding-left: 20px;
	}

	.o-support-header > strong {
		line-height: 65px;
	}

	.o-support-box {
		width: 16.66%;
	}
}

@media (max-width: 1099px) {
	.o-support-header {
		text-align: center;
		margin-bottom: 40px;
	}

	.o-support-header > .section-titles {
		width: 100%;
		margin-bottom: 30px;
	}

	.o-support-box {
		width: 20%;
	}
}

@media (max-width: 928px) {
	.o-support-box {
		width: 25%;
	}
}

@media (max-width: 760px) {
	.o-support-box {
		width: 33.33%;
	}
}

@media (max-width: 580px) {
	.o-support-box {
		width: 50%;
	}
}

@media (max-width: 400px) {
	.o-support-box > img {
		max-width: 90%;
	}
}

@media (min-width: 768px) and (max-width: 919px) {
	.succ-stories-vid-show .col.span_6 {
		width: 33.33%;
	}
}

@media (min-width: 480px) and (max-width: 767px) {
	.succ-stories-vid-show .col.span_6 {
		width: 50%;
	}
}

/*----*/

/* iPad */

@media screen and (max-width: 1024px){
	.all-courses-circles-container .span_5 {
		width: 100%;
		text-align: center;
	}

	.all-courses-circles-wrapper {
		width: 100%;
	}

	.all-courses-circles-wrapper .span_6 {
		width: 50%;
	}

	.all-courses-circles-wrapper .span_6 > div {
		width: 100%;
		height: auto;
		border-radius: 0px;
	}

	.fl-node-57c8f9b6d8ef1 {
		display: none;
	}

	.fl-node-57c8f9b6d8f30 {
		width: 100% !important;
	}

	.fl-node-57e4b8e6702f6 {
		display: none;
	}
}


/* ALL COURSES RESPONSIVE */

@media (max-width: 1023px) {
	#all-courses-filter-wrap {
		width: 25%;
	}
	#all-courses-wrapper {
		width: 75%;
	}
	#all-courses-wrap .course-detail-block {
		width: 32%;
	}
}

@media (max-width: 919px) {
	#all-courses-filter-wrap {
		width: 30%;
	}
	#all-courses-wrapper {
		width: 70%;
	}
	#all-courses-wrap .course-detail-block {
		width: 49%;
	}
	#ol-57c8fb0161a38 .course-detail-block {
		width: 49%;
	}
}

@media (max-width: 767px) {
	.section-titles {
		font-size: 28px;
	}

	h3 {
		font-size: 24px !important;
	}

	#all-courses-filter-wrap {
		width: 50%;
	}
	#all-courses-wrapper {
		width: 50%;
	}
	#all-courses-wrap .course-detail-block {
		width: 99%;
		height: auto;
	}
	#all-courses-wrap .course-detail-block .bottom-aligner {
		position: relative;
		bottom: 0;
		margin-top: 20px;
	}

	.all-courses-top-box .all-courses-top-boxes {
		width: calc(50% - 10px);
		margin: 0 5px;
	}

	h1,
	.fl-module-heading h1.fl-heading {
		font-size: 34px !important;
		margin-bottom: 0.67em !important;
	}

	h2,
	.fl-module-heading h2.fl-heading {
		font-size: 30px !important;
		margin-bottom: 0.67em !important;
	}

	h3,
	.fl-module-heading h3.fl-heading {
		font-size: 26px !important;
		margin-bottom: 0.67em !important;
	}

	h4,
	.fl-module-heading h4.fl-heading {
		font-size: 22px !important;
		margin-bottom: 0.67em !important;
	}

	.course-path-heading.fl-module-heading h2.fl-heading {
		margin-bottom: 0 !important;
	}

	h1.entry-title {
		margin-bottom: 0 !important;
	}

	h1.entry-title.container {
		width: 96%;
	}

	.all-courses-circles-wrapper .span_6 {
		width: 100%;
	}

	.ubermenu-skin-vanilla.ubermenu-responsive-toggle {
		font-size: 30px;
		color: #444444;
	}

	.ubermenu-responsive-toggle .fa {
		margin-right: 0.2em;
	}

	.mainnav-container h1.site-title {
		margin-bottom: 0 !important;
	}
}

@media (max-width: 479px) {
	#all-courses-filter-wrap {
		width: 100%;
		margin-bottom: 10px;
	}
	#all-courses-wrapper {
		width: 100%;
	}
	#all-courses-wrap .course-detail-block {
		width: 100%;
		height: auto;
		margin: 8px auto;
	}
	#all-courses-filter-wrap ul.courses-filter-term-list li {
		margin-bottom: 12px;
	}
	#all-courses-filter-list,
	#awc-reset-filter {
		display: none;
	}
	.course-filter-wrap-caption {
		background-image: url("img/small-arw-b.png"), linear-gradient(to bottom, rgba(252,255,244,1) 0%,rgba(233,233,206,1) 100%);
		background-position: right center;
		background-repeat: no-repeat;
	}
	.course-filter-wrap-caption.filterOpen {
		background-image: url("img/small-arw2-b.png"), linear-gradient(to bottom, rgba(252,255,244,1) 0%,rgba(233,233,206,1) 100%);
	}

	/*.all-courses-top-box .all-courses-top-boxes {
		width: 100%;
		margin: 0 5px;
	}*/

	.kudos-courses-top-box .all-courses-top-boxes {
		width: 100%;
		margin: 0 auto;
	}

	h1,
	.fl-module-heading h1.fl-heading {
		font-size: 28px !important;
	}

	h2,
	.fl-module-heading h2.fl-heading {
		font-size: 24px !important;
	}

	h3,
	.fl-module-heading h3.fl-heading {
		font-size: 22px !important;
	}

	h4,
	.fl-module-heading h4.fl-heading {
		font-size: 21px !important;
	}

	#ol-57c8fb0161a38 .course-detail-block {
		width: 99%;
		height: auto;
	}

	#ol-57c8fb0161a38 .course-detail-block .course-title {
		text-align: center;
		padding: 10px 0;
	}

	#ol-57c8fb0161a38 .bottom-aligner {
		position: static;
	}
}

.green-accent-1 .fl-col-content {
	border-top-color: #5b9e80 !important;
	position: relative;
}
.green-accent-2 .fl-col-content {
	border-top-color: #6bb592 !important;
	position: relative;
}
.green-accent-3 .fl-col-content {
	border-top-color: #88d1ac !important;
	position: relative;
}
.green-accent-4 .fl-col-content {
	border-top-color: #afe2c6 !important;
	position: relative;
}

@media (min-width: 767px) {
	.green-accent-1.with-arrow .fl-col-content:after,
	.green-accent-2.with-arrow .fl-col-content:after,
	.green-accent-3.with-arrow .fl-col-content:after,
	.green-accent-4.with-arrow .fl-col-content:after {
		position: absolute;
		content: ">";
		display: block;
		right: -18px;
		top: -21px;
		width: 32px;
		height: 32px;
		border-radius: 50%;
		text-align: center;
		line-height: 30px;
		font-family: monospace;
		font-size: 24px;
		color: white;
		z-index: 2;
	}
	.green-accent-1.with-arrow .fl-col-content:after {
		background-color: #5b9e80;
		
	}
	.green-accent-2.with-arrow .fl-col-content:after{
		background-color: #6bb592;	
	}
	.green-accent-3.with-arrow .fl-col-content:after{
		background-color: #88d1ac;	
	}
	.green-accent-4.with-arrow .fl-col-content:after{
		background-color: #afe2c6;	
	}
}

.fl-node-57bd3a4af312b .fl-row-content,
.fl-node-57d9f99232138 .fl-row-content {
	border-width: 10px 1px 1px 1px;
    border-style: solid;
    border-color: #5b9e80 #dedfdf #dedfdf #dedfdf;
    padding: 20px 30px;
}
.fl-builder-content td {
	border: none;
}
#course-detail-heading h4 {
	text-align: left;
	margin: 0;
	padding: 0;
	line-height: 1.4em; 
}
#course-detail-heading {
	background-color: #e8f6f7;
	display: none;
	cursor: unset;
}

@media (min-width: 1024px) {
	#course-detail-heading {
		display: block;
	}
}
.r-tab-course-desc {
	padding-right: 12px;
}

@media (min-width: 769px) and (max-width: 1180px) {
	.course-hub-top-box .fl-col-group .fl-col {
		width: 100% !important;
	}
}

/** Ring animation **/
@-webkit-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.uil-ring-css {
  background: none;
  position: relative;
  width: 28px;
  height: 28px;
}
.uil-ring-css > div {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  box-shadow: 0 2px 0 0 #5bb3d9;
  -ms-animation: uil-ring-anim 1s linear infinite;
  -moz-animation: uil-ring-anim 1s linear infinite;
  -webkit-animation: uil-ring-anim 1s linear infinite;
  -o-animation: uil-ring-anim 1s linear infinite;
  animation: uil-ring-anim 1s linear infinite;
}
/** Ring animation **/



/** AWC Blog Post Categories Widget **/
 .awc-post-categories .no-sub-category,
 .awc-post-archives .no-sub-category, {
	color: #fff;
	text-decoration: none;
	display: block;
	cursor: pointer;
	position: relative;
	border-radius: 4px;
	padding: .5em .5em .5em 2.2em;
	border: 1px solid #d3d3d3;
}
.awc-post-categories .no-sub-category:hover,
.awc-post-archives .no-sub-category:hover {
	border: 1px solid #999;
}
.awc-post-categories .no-sub-category > .ui-accordion-header-icon,
.awc-post-archives .no-sub-category > .ui-accordion-header-icon {
	display: none;
}
.awc-post-categories .top-level-category,
.awc-post-archives .archive-year {
    font-size: 17px;
    color: #444;
    padding: .5em .5em .5em 2.2em;
    background: #e8f6f7;
    margin: -1px 0 0;
    border: 1px solid #d3d3d3;
    display: block;
    cursor: pointer;
    position: relative;
    border-radius: 0px;
    font-family: sans-serif;
    font-weight: normal;
    text-decoration: none;
}
.awc-post-categories .top-level-category:hover,
.awc-post-archives .archive-year:hover {
    border: 1px solid #d3d3d3;
}
.awc-post-categories .top-level-category + div,
.awc-post-archives .archive-year + div {
	display: none;				
}
.awc_widget_categories .cat-children,
.awc_widget_archive .cat-children,
.awc_widget_archive .archive-months {
	margin: 0;
	padding: 0;
	font-size: 20px;
}
.awc_widget_categories .cat-children li,
.awc_widget_archive .cat-children li,
.awc_widget_archive .archive-months li {
	list-style: none;
    font-size: 17px;
    font-family: sans-serif;
    padding: .5em .5em .5em 2em;
    border-bottom: 1px solid #c1c1c1;
}

.awc_widget_categories .cat-children li a,
.awc_widget_archive .cat-children li a,
.awc_widget_archive .archive-months li a {
	text-decoration: none;
	color: #444;
}

.awc_widget_categories .ui-accordion-content,
.awc_widget_archive .ui-accordion-content {
	padding: 0;
}

.awc_widget_categories .widget-title {
		margin: 0 0 15px;
		font-size: 22px;
		font-weight: bold;
		font-family: "Open Sans", sans-serif;
		border-bottom: 2px solid #58595b;
		padding-bottom: 10px;
		display: block;
}

.awc_widget_archive .widget-title,
.what-people-say-widget .widget-title {
		font-size: 22px;
		font-weight: bold;
		font-family: "Open Sans", sans-serif;
		padding-bottom: 10px;
		display: block;
}
/** End of AWC Blog Post Categories Widget **/

/** Featured Post **/
.featured-post-wrapper {
	position: relative;
	overflow: hidden;
	display: block;
	min-height: 450px;
    width: 100%;
    height: auto;
	border: 1px solid #d3d3d3;	
}
.featured-post-wrapper:hover {
	border: 1px solid #999;	
}
.featured-post-wrapper:after {
	position: absolute;
    display: block;
    content: " FEATURED POST ";
    background-color: #900;
    padding: .3em 3em;
    font-size: 20px;
    color: #fff;
    z-index: 5;
    top: 48px;
    right: -70px;
    text-align: center;
    transform: rotate(45deg);
}
.featured-post-wrapper > .attachment-post-thumbnail {
	position: absolute;
	z-index: 1;
	display: block;
	width: 100%;
	top: 0;
	left: 0;
}
.featured-post-wrapper > .entry-title {
	position: absolute;
	z-index: 2;
	display: block;
	width: 100%;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0.3);
	padding: .5em;
	color: #000;
	text-shadow: 0 1px 0 rgba(6,6,6,0.5);	
}
.sticky .entry-content {
	margin: 24px 0 12px;
}
/** End of Featured Post **/

.postid-24468 #primary {
	max-width: 100%;
}

.postid-24468 .entry-header {
	max-width: 1160px;
    margin: auto;
}

.what-do-i-get-boxes {
    background-color: #cff1f5;
    font-size: 18px;
    margin: 10px 5px;
    padding: 15px;
}

.what-do-i-get-boxes .fl-rich-text {
	display: table;
}

.what-do-i-get-boxes .fl-rich-text > div,
.what-do-i-get-boxes .fl-rich-text > p {
    display: table-cell;
    vertical-align: middle;
}

.what-do-i-get-boxes .fl-rich-text > div {
	width: 120px;
}

#wfwmp-btn {
    display: table;
    background-color: #259997;
    float: right;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 5px;
    font-size: 22px;
    font-weight: bold;
    min-height: 95px;
    padding: 10px 32px;
}

#wfwmp-btn img,
#wfwmp-btn span {
	display: table-cell;
	vertical-align: middle;
	color: #FFF;
}

#fwmp-pre-btn {
	display: table;
    background-color: #fd6e7a;
    float: left;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 5px;
    color: #FFF;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    min-height: 95px;
    vertical-align: middle;
    padding: 32px;
}

@media screen and (max-width: 768px) {
	#wfwmp-btn,
	#fwmp-pre-btn {
		float: none;
		margin: 10px auto;
		width: 100%;
	}
}

.fl-node-5833994ab3b19 .fl-row-fixed-width {
	max-width: 820px;
}

.freelance-course-vip-prices {
	margin-bottom: 40px;
	padding: 0 15px;
}

@media screen and (min-width: 769px) {
	#freelance-vip-55-bonus-img {
		position: absolute;
	}

	#freelance-vip-55-bonus-text {
    	padding-top: 25px;
    	padding-left: 90px;
	}
}

.waitlist-form-0 button.pink-btn-color {
    background-color: #FFC107;
    box-shadow: none;
    border: none;
    color: #FFF;
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
    padding: 25px 50px;
}

#footerwidget-wrapper .widget-title {
    font-family: "Roboto Slab", Georgia, sans-serif;
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 10px;
    display: block;
}

.summer_special_top_box {
	background-color: #22a5e0;
    color: #FFF;
	padding: 11% 4% 7%;
    position: relative;
    margin-bottom: 10px;
    margin-top: 30px;
}

.sstb_number {
	position: absolute;
    top: -39px;
    width: 100%;
    display: block;
    font-size: 45px;
    font-weight: bold;
    text-align: center;
    margin-left: -9%;
}

.sstb_number > span {
    width: 78px;
    background-color: #22a5e0;
    border: 10px solid #FFF;
    border-radius: 50%;
    display: block;
    margin: auto;
}

.summer_special_second_box .summer_special_top_box,
.summer_special_second_box .sstb_number > span {
	background-color: #c03780;
}

.summer_special_third_box .summer_special_top_box,
.summer_special_third_box .sstb_number > span {
	background-color: #e5801b;
}

.sstb_para {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    margin-top: 0;
}

.sstb_para span {
    font-size: 26px;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-weight: normal;
}

.sstb_price {
	font-size: 85px;
}

.summer_special_boxes_wrapper .pink-btn {
	margin: 0 0 10px;
	border-radius: 0;
}

.summer_special_bottom_box {
    border: 1px solid #bbb;
}

.ssbb_h2 {
    padding: 5% 9% 5%;
    background-color: #cbedfa;
    text-align: center;
}

.ssbb_h2 h2 {
	margin: 0;
}

.ssbb_h2 h2 strong {
	display: inline-block;
	margin-bottom: 20px;
}

.ssbb_h2 h2 span {
	display: inline-block;
    border: 1px solid #8cb7c7;
    width: 100%;
    padding: 10px;
    margin: -10px 0;
    font-size: .75em;
}

.ssbb_desc {
	padding: 0 7%;
}

.ssbb_desc ul {
	padding-left: 10px;
}

.ssbb_desc li {
	margin: .5em 0;
}

.ssbb_desc p.ttmnial {
    background-color: #f9f3e8;
    width: 116%;
    margin-left: -8%;
    padding: 5%;
}

.ssbb_footer {
    border-top: 1px solid #000;
    margin-top: 1em;
}

.course-detail-block .location.online, 
.course-location.course-online span {
    background: #fefe00;
    padding: 5px 8px !important;
    color: #333 !important;
}

.course-location.course-online span {
	padding: 0px 5px !important;
}

#all-courses-filter-list .term-item.awc-checked {
    font-weight: 700;
    color: #00afca;
}

@media screen and (min-width: 769px){
	.fl-node-58578dd6a897a {
		background-image: url("/wp-content/uploads/2016/07/AdobeStock_81609325_resize1.jpg");
	    background-attachment: fixed;
	    background-repeat: no-repeat;
	    background-size: cover;
	    height: 345px;
	}

	.summer_special_boxes_wrapper {
		margin-top: -300px;
	}

	.summer_special_top_box {
		margin-top: 0px;
	}

	.ssbb_h2 {
		padding-bottom: 10%;
	}

	.ssbb_h2 h2 span.doubleline {/*
		min-height: 88px;
		line-height: 2.6;*/
	}

	.summer_special_first_box .summer_special_bottom_box,
	.summer_special_second_box .summer_special_bottom_box {
	}
}

li.menu_red_item a {
	color: red !important;
}

@media screen and (min-width: 1121px){
	li.menu_two_lines {
		margin-top: -7px !important;
	}

	li.ubermenu-item.student_login_link {
	    position: absolute;
	    right: 0;
	    top: -27px;
	}

	li.ubermenu-item.student_login_link a {
		padding: 6px 8px !important;
	    color: #FFF !important;
	    background: #7ba33d;
	    border: 1px solid #7ba33d !important;
	    border-radius: 2px;
	    transition: all .3s linear;
	}

	li.ubermenu-item.student_login_link a:hover {
	    color: #7ba33d !important;
	    background: #FFF;
	}
}