/*
Theme Name: South End Capital
Theme URI: http://www.southendcapital.com/
Description: Custom theme for South End Capital by Hip Web Design.
Version: 1.0
Author: Hip Web Design
Author URI: http://www.hipwebdesign.com/
*/

/*################################################################
FONTS
################################################################*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800,300italic,400italic,600italic,700italic,800italic|Dosis:400,200,300,500,600,700,800');

/*################################################################
GLOBAL
################################################################*/

html, body {
	width: 100%;
	height: 100%;
	-webkit-overflow-scrolling: touch;
}

body {
	position: relative;
	margin: 0;
	padding: 0;
	color: #ffffff;
	font-family: 'Open Sans', sans-serif;
	font-size: 13pt;
	font-weight: 300;
	background: #402c45;
}

a, a:visited {
	color: #9ad5ed;
	text-decoration: none;
	transition: color .25s ease-in-out;
	-moz-transition: color .25s ease-in-out;
	-webkit-transition: color .25s ease-in-out;
}

a:hover {
	color: #c38ad1;
}

.clear {
	clear: both;
}

/*################################################################
HEADER
################################################################*/

#header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
    z-index: 2;
}

#header .locked {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(64,44,69,0.95);
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.2);
	z-index: -1;
}

a#logo {
	display: inline-block;
	width: 300px;
	height: 54px;
	margin-right: 20px;
	background: url('images/logo.png') center no-repeat;
	background-size: 300px;
	vertical-align: middle;
	cursor: pointer;
}

table#header-table {
	width: 100%;
	border-spacing: 0;
}

#header-table td {
	position: relative;
	padding: 20px 35px;
	vertical-align: middle;
}

#header-table td.menu_col {
	text-align: right;
	padding-left: 0;
}

#header-logo {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
}

/* Partners */

#partnership-with {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 15px 0;
	font-size: calc(5pt + 0.05vw);
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .35em;
    line-height: 1.5em;
}

#partnership-with:not(.has_logo) {
	align-items: flex-start;
	text-align: left;
}

#partnership-with .partner_badge {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	margin-top: 5px;
	flex: 1 1 auto;
}

#partnership-with .partner_name {
	font-size: calc(8pt + 0.05vw);
}

#partnership-with .partner_logo {
	display: block;
	position: relative;
	padding: 0 5px;
	box-sizing: border-box;
	flex: 1 1 auto;
}

#partnership-with .partner_logo img {
	display: block;
	position: relative;
	max-height: 50px;
	max-width: 150px;
	height: auto;
	width: auto;
	margin: 0 auto;
}

/* Global Notice */

#header .notice {
	display: block;
	position: relative;
	font-size: 10pt;
	background-color: rgba(0,0,0,0.1);
	border-bottom: 1px rgba(255,255,255,0.2) solid;
}

#header .notice.disabled {
	display: none;
}

#header .notice > .wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	padding: 5px 40px;
	box-sizing: border-box;
}

#header .notice > .wrapper > div {
	padding: 10px;
	flex: 0 1 auto;
}

#header .notice > .wrapper > div.notice_content {
	flex: 1 1 auto;
}

#header .notice .notice_icon,
#header .notice .close_notice {
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 11pt;
}

#header .notice .notice_icon {
	margin-top: 5px;
	background-image: url('images/notice-white-240.png');	
}

#header .notice .close_notice {
	background-image: url('images/close-white-240.png');
	cursor: pointer;
}

#header .notice strong {
	font-weight: bold;
}

/*################################################################
NAV
################################################################*/

#mobile-menu, #mobile-nav, #partner-mobile-menu {
	display: none;
}

#header ul.menu {
	display: inline-block;
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 12pt;
	font-weight: 400;
	z-index: 1;
}

#header .menu li {
	display: inline-block;
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

#header .menu li a {
	display: block;
	margin: 0;
	padding: 5px 10px;
	color: #ffffff;
	border-radius: 3px;
	-moz-border-radius: 3px; 
    -webkit-border-radius: 3px;
    transition: color .25s ease-in-out, background-color .25s ease-in-out;
	-moz-transition: color .25s ease-in-out, background-color .25s ease-in-out;
	-webkit-transition: color .25s ease-in-out, background-color .25s ease-in-out;
}

#header .menu li.current-menu-item a {
	font-weight: 700;
}

#header .menu li:hover > a {
	color: #402c45;
	background-color: #ffffff;
}

#header ul.sub-menu {
	display: none;
	position: absolute;
	left: 50%;
	top: 100%;
	min-width: 125px;
	margin: 0;
	padding: 15px 10px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

.nav_locked #header .sub-menu {
	background-color: rgba(64,44,69,0.95);
	border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px; 
	-webkit-border-radius: 0 0 3px 3px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

#header .sub-menu li {
	display: block;
	margin: 0;
	padding: 0;
	text-align: center;
	list-style: none;
}

#header .sub-menu li a {
	display: block;
	margin: 3px 0;
	padding: 5px 10px;
	color: #ffffff;
    transition: color .25s ease-in-out, background-color .25s ease-in-out, font-size .25s ease-in-out;
	-moz-transition: color .25s ease-in-out, background-color .25s ease-in-out, font-size .25s ease-in-out;
	-webkit-transition: color .25s ease-in-out, background-color .25s ease-in-out, font-size .25s ease-in-out;
}

#header .sub-menu li a:hover {
	color: #ffffff;
	font-size: 14pt;
	background-color: #402c45;
}

#header .menu li.current-menu-item .sub-menu li a {
	font-weight: 400;
}

#header ul.account_menu {
	margin-left: 5px;
	padding-left: 10px;
	border-left: 2px #ffffff solid;
}

/* Mobile */

@media only screen and (max-width: 768px) {
	
	#desktop-nav {
		display: none;
	}
	
	#mobile-menu, #partner-mobile-menu {
		position: relative;
		display: inline-block;
		width: 32px;
		height: 32px;
		background: url('images/menu-white-32.png') center no-repeat;
		cursor: pointer;
		z-index: 3;
	}
	
	#mobile-nav {
		display: none;
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background: rgba(64,44,69,0.8);
		z-index: 99;
	}
	
	#mobile-nav ul.menu {
		display: block;
		position: absolute;
		left: 0;
		top: 50%;
		width: 100%;
		margin: 0;
		padding: 50px;
		font-size: 4vw;
		font-weight: 500;
		text-align: center;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
	}
	
	#mobile-nav .menu li {
		display: block;
		margin: 0;
		padding: 0;
		list-style: none;
	}
	
	#mobile-nav .menu li + li {
		margin-top: 8px;
	}
	
	#mobile-nav .menu li a {
		display: block;
		padding: 20px 35px;
		color: #ffffff;
		background-color: #221525;
		border-radius: 3px;
		-moz-border-radius: 3px; 
		-webkit-border-radius: 3px;
		transition: color .25s ease-in-out, background-color .25s ease-in-out;
		-moz-transition: color .25s ease-in-out, background-color .25s ease-in-out;
		-webkit-transition: color .25s ease-in-out, background-color .25s ease-in-out;
	}
	
	#mobile-nav .menu li.partner_portal a {
		color: #ffffff;
		background-color: #1e3d58;
	}
	
	#mobile-nav .menu li a:hover {
		color: #402c45;
		background-color: #ffffff;	
	}
		
}

/*################################################################
PAGE
################################################################*/

#page {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-height: 100%;
	z-index: 1;
}

.entry {
	line-height: 1.7em;

}

.entry a.button {
	margin-top: 25px;
}

/*################################################################
PANELS
################################################################*/

table#panels {
	width: 100%;
	border-spacing: 0;
	z-index: 2;
}

#panels td.container {
	position: relative;
	width: 100%;
	min-height: 100%;
	padding: 100px 50px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	vertical-align: middle;
}

#panels tr.panel:first-child td.container {
	padding-top: 120px;
}

#panels td.container .content {
	display: block;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}

#about .content > h1 {
	display: none;
}

#about .entry h2:first-child {
	margin-bottom: 35px;
	font-size: 38pt;
	font-weight: 600;
	line-height: 0.9em;
}

#about .entry h2:first-child em {
	font-size: 23pt;
	font-style: normal;
	font-weight: 500;
}

#about .youtube_embed {
	float: left;
	width: 325px;
	height: 235px;
	margin: 10px 25px 25px 0;
}

#about .youtube_embed iframe {
	display: block;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

/* backgrounds */

#panels tr.panel:nth-child(1n) > td {
	background-image: url('images/night-bg.jpg');
}

#panels tr.panel:nth-child(2n) > td {
	background-image: url('images/perspective-bg.jpg');
}

#panels tr.panel:nth-child(3n) > td {
	background-image: url('images/house-bg.jpg');
}

#panels tr.panel:nth-child(4n) > td {
	background-image: url('images/office-bg.jpg');
}

#panels tr.panel:nth-child(5n) > td {
	background-image: url('images/businessman-bg.jpg');
}

#panels tr.panel:nth-child(6n) > td {
	background-image: url('images/rail-bg.jpg');
}

/*################################################################
FEATURED PRESS
################################################################*/

#featured-in {
	display: block;
	position: relative;
	margin: 50px 0 0 0;
	text-align: center;
}

.featured_items {
	display: block;
	position: relative;
}

.featured_item {
	display: inline-block;
	position: relative;
	vertical-align: middle;
}

.featured_label {
	display: block;
	position: relative;
	padding: 0;
	color: rgba(255,255,255,0.3);
	font-size: 9pt;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color .25s ease-in-out;
	-moz-transition: color .25s ease-in-out;
	-webkit-transition: color .25s ease-in-out;
}

.featured-in:hover .featured_label {
	color: #ffffff;
}

a.featured_press, .featured_press {
	display: block;
	position: relative;
	width: 110px;
	height: 110px;
	margin: 10px 3px;
	padding: 15px;
	background: rgba(64,44,69,0.6);
	border: 2px rgba(255,255,255,0.1) solid;
	border-radius: 50%;
	-moz-border-radius: 50%; 
	-webkit-border-radius: 50%;
	transition: background-color .25s ease-in-out;
	-moz-transition: background-color .25s ease-in-out;
	-webkit-transition: background-color .25s ease-in-out;
	overflow: hidden;
}

a.featured_press:hover, .featured_press:hover {
	background-color: rgba(64,44,69,0.8);
}

.featured_press + .featured_press {
	margin-left: 15px;
}

.featured_press img {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60%;
	height: auto;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
}

@media only screen and (max-width: 768px) {

	a.featured_press, .featured_press {
		margin: 10px auto;
	}

}

/*################################################################
PROGRAMS
################################################################*/

#program-viewer {
	display: block;
	position: relative;
}

.program_tabs {
	white-space: nowrap;
}

.program_tabs:not(:first-child) {
	margin-top: 50px;
}

.program_tab, a.program_tab {
	display: inline-block;
	padding: 15px 35px;
	color: #FFFFFF;
	background: #635168;
	cursor: pointer;
}

.program_tab.active {
	background-color: #402c45;
}

#program-viewer.attention .program_tab.active {
	color: #221525;
	background-color: #FFFFFF;
}

.program_container {
	display: block;
	position: relative;
	background-color: #402c45;
	overflow: hidden;
}

#program-viewer.attention .program_container {
	border-top: 1px #FFFFFF solid;
}

.program_info {
	display: none;
	position: relative;
	padding: 35px;
	padding-left: 320px;
}

.program_info:first-child {
	display: block;
}

.program_info p:first-child {
	margin-top: 0;
}

.program_info ul {
	position: absolute;
	left: 35px;
	top: 35px;
	width: 250px;
	margin: 0;
	padding: 0;
}

.program_info ul li {
	display: block;
	margin: 0;
	padding: 0 0 0 25px;
	background-image: url('images/check-white-32.png');
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 16px;
	list-style: none;
	line-height: 1.2em;
}

.program_info ul li + li {
	margin-top: 10px;
}

.program_info a.button {
	margin-top: 20px;
}

.program_info h1:first-child {
	font-size: 20pt;
}

.program_info img {
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {
	
	.program_info {
		padding-left: 35px;
	}
	
	.program_info ul {
		position: relative;
		display: block;
		left: auto;
		top: auto;
		width: 100%;
		margin: 15px 0;
	}
	
}

/*################################################################
CLOSINGS
################################################################*/

#closing-viewer {
	display: block;
	position: relative;
}

.closing_mask {
	display: block;
	position: relative;
	width: 100%;
	height: 377px;
	margin: 0;
	overflow: hidden;
}

.closing_container {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 999999em;
	white-space: nowrap;
}

.closing_card {
	display: block;
	float: left;
	width: 33%;
	padding: 10px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

table.closing_table {
	width: 100%;
	background: #402c45;
	border-spacing: 0;
}

.closing_table td.closing_thumb {
	width: 100%;
	height: 200px;
	background: #563e5c;
}

.closing_table td.closing_thumb .thumb_container {
	display: block;
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.closing_table td.closing_thumb .thumb_container img {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: calc(100% + 2px);
	min-width: 100%;
	height: auto;
	min-height: 100%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.closing_table td.closing_info {
	padding: 25px 10px;
	font-size: 12pt;
	text-align: center;
	line-height: 1.5em;
}

.closing_table td.closing_info strong {
	font-size: 14pt;
	font-weight: bold;
}

.closing_nav {
	position: relative;
	padding-top: 25px;
	text-align: center;
}

.closing_nav div {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 0 2px;
	padding: 8px;
	background-color: #402c45;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 18px;
	border: 1px rgba(255,255,255,0.1) solid;
	border-radius: 50%;
	-moz-border-radius: 50%; 
    -webkit-border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
}

#closing-next {
	background-image: url('images/next-white-32.png');
}

#closing-prev {
	background-image: url('images/prev-white-32.png');
}

.closing_nav div.disabled_nav {
	opacity: 0.5;
	filter: alpha(opacity=50);
	cursor: not-allowed;
}

/*################################################################
TEAMS
################################################################*/

.team_panels {
	display: block;
	text-align: center;
}

.team_panel {
	display: inline-block;
	width: 33%;
	padding: 10px;
	text-align: left;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	vertical-align: top;
}

.team_panel.full {
	display: block;
	float: none;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.team_panel h4 {
	display: block;
	margin: 0;
	padding: 15px 25px;
	color: #ffffff;
	text-align: left;
	background: #301636;
}

.team_panel .teammate {
	display: block;
	height: auto;
	max-height: 325px;
	margin: 0;
	padding: 25px;
	font-size: 12pt;
	background: #402c45;
	overflow-y: auto;
	overflow-x: hidden;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
}

.team_panel:not(.full) .teammate:after {
	content: "";
	display: block;
	height: 25px;
}

.team_panel.full .teammate {
	height: auto;
	min-height: auto;
}

.team_panel .teammate p:first-child {
	margin-top: 0;
}

.team_panel .teammate p:last-child {
	margin-bottom: 0;
}

.team_panel strong {
	font-weight: bold;
}

.team_panel a.button {
	width: 100%;
	margin-top: 15px;
}

@media screen and (max-width: 1010px) {
	.team_panel {
		width: 50%;
		margin: 0 -4px;
	}
	.team_panel:last-child .teammate {
		height: auto;
		min-height: auto;
	}	
}

@media screen and (max-width: 768px) {
	.team_panel {
		width: 100%;
	}	
	.team_panel .teammate {
		height: auto;
		min-height: auto;
	}
}

/*################################################################
FAQ
################################################################*/

#faqs h3 {
	display: block;
	padding: 15px 20px 15px 50px;
	margin: 15px 0 0 0;
	font-size: 14pt;
	background-color: #301636;
	background-position: 15px center;
	background-repeat: no-repeat;
	background-image: url('images/question-white-32.png');
	background-size: 18px;
	border-radius: 3px;
	-moz-border-radius: 3px; 
    -webkit-border-radius: 3px;
    cursor: pointer;
}

#faqs h3.active_question {
	border-radius: 3px 3px 0 0;
	-moz-border-radius: 3px 3px 0 0; 
    -webkit-border-radius: 3px 3px 0 0;
}

#faqs h3 + blockquote {
	display: none;
	margin: 0;
	padding: 30px 50px;
	background: #402c45;
	border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px; 
    -webkit-border-radius: 0 0 3px 3px;
}

#faqs h3 + blockquote p:first-child {
	margin-top: 0;
}

#faqs h3 + blockquote p:last-child {
	margin-bottom: 0;
}

/*################################################################
CONTACT
################################################################*/

#contact .content > h1 {
	display: none;
}

#contact .entry {
	text-align: center;
}

#contact .entry h2 {
	font-size: 26pt;
	font-weight: 400;
	line-height: 1.4em;
}

#contact .entry h2 a {
	color: #ffffff;
}

.social_icons {
	display: block;
	position: relative;
	margin-top: 30px;
}

a.social_link {
	display: inline-block;
	width: 64px;
	height: 64px;
	margin: 8px;
	padding: 0;
	border: 2px transparent solid;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 50%;
	-moz-border-radius: 50%; 
    -webkit-border-radius: 50%;
    vertical-align: middle;
	transition: border-color .25s ease-in-out, margin .25s ease-in-out, padding.25s ease-in-out;
	-moz-transition: border-color .25s ease-in-out, margin.25s ease-in-out, padding.25s ease-in-out;
	-webkit-transition: border-color .25s ease-in-out, margin.25s ease-in-out, padding.25s ease-in-out;
}

a.social_link:hover {
	margin: 3px;
	padding: 5px;
	border-color: #ffffff;
}

#facebook-icon {
	background-image: url('images/facebook-white-64.png');
}

#twitter-icon {
	background-image: url('images/twitter-white-64.png');
}

#linkedin-icon {
	background-image: url('images/linkedin-white-64.png');
}

/*################################################################
ARCHIVES
################################################################*/

table.post_table {
	width: 100%;
	border-spacing: 0;
}

.post_table td {
	padding: 30px;
}

.post_table td.thumb_col {
	width: 1%;
	padding-right: 0;
	white-space: nowrap;
	vertical-align: top;
}

a.post_thumb {
	display: inline-block;
	position: relative;
	margin-top: -25px;
	width: 140px;
	height: 140px;
	border: 2px rgba(255,255,255,0.1) solid;
	border-radius: 50%;
	-moz-border-radius: 50%; 
    -webkit-border-radius: 50%;
    background: #402c45;
    overflow: hidden;
}

.post_thumb img {
	display: block;
	height: 100%;
	width: auto;
	min-width: 100%;
}

.post_table td.entry_col {
	text-align: left;
}

.post_table td.entry_col .entry .button {
	margin-top: 15px;
}

.post_date {
	margin-bottom: 20px;
	color: #8d7793;
	transition: color .25s ease-in-out;
	-moz-transition: color .25s ease-in-out;
	-webkit-transition: color .25s ease-in-out;
}

.post_table td.entry_col:hover .post_date {
	color: #ffffff;
}

.post_content h2.post_title {
	margin-bottom: 0;
}

/* pagination */

.pagination {
	display: block;
	position: relative;
	margin-top: 30px;
	text-align: center;
}

a.page-numbers, .page-numbers {
	display: inline-block;
	min-width: 20px;
	margin: 0 3px;
	padding: 5px 10px;
	color: #402c45;
	font-size: 14pt;
	background-color: #ffffff;
	border-radius: 5px;
	-moz-border-radius: 5px; 
    -webkit-border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: color .25s ease-in-out, background-color .25s ease-in-out;
	-moz-transition: color .25s ease-in-out, background-color .25s ease-in-out;
	-webkit-transition: color .25s ease-in-out, background-color .25s ease-in-out;
}

.page-numbers:hover {
	color: #ffffff;
	background-color: #402c45;
}

.page-numbers.current {
	color: #ffffff;
	background-color: #2c1e30;
}

.page_count {
	margin-top: 20px;
}

/*################################################################
PAYMENT
################################################################*/

#payments .entry {
	padding: 30px;
	background: #402c45;
	border-radius: 3px;
	-moz-border-radius: 3px; 
    -webkit-border-radius: 3px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#payments .entry p:first-child {
	margin-top: 0;
}

/*################################################################
PORTAL
################################################################*/

#portal .content {
	text-align: center;
}

.user_info div {
	display: inline-block;
	padding: 5px 10px;
	color: #dfcde4;
	background: #402c45;
	border-radius: 3px;
	-moz-border-radius: 3px; 
    -webkit-border-radius: 3px;
}

.user_info div + div {
	margin-left: 5px;
}

#resource-button {
	margin-top: 20px;
}

#resources .entry h3 {
	display: block;
	margin: 0;
	padding: 15px 25px;
	color: #ffffff;
	font-size: 20pt;
	text-align: left;
	background: #301636;
}

#resources .entry ul + h3 {
	margin-top: 15px;
}

#resources .entry ul {
	display: block;
	margin: 0;
	padding: 25px;
	background: #402c45;
}

#resources .entry ul li {
	display: inline-block;
	margin: 10px 7px;
	padding: 10px 20px 10px 40px;
	line-height: 1.1em;
	background: #58425e url('images/link-white-32.png') 10px center no-repeat;
	background-size: 16px;
	border-radius: 3px;
	-moz-border-radius: 3px; 
    -webkit-border-radius: 3px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	vertical-align: top;
}

/*################################################################
TESTIMONIALS
################################################################*/

.testimonial_gallery {
	display: block;
	position: relative;
	width: 100%;
	min-height: 150px;
	margin: 30px 0;
	overflow: hidden;
}

.testimonial_gallery .item {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	font-size: 18pt;
	font-weight: 400;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	opacity: 0;
	filter: alpha(opacity=0);
	transition: opacity 1s ease-in-out;
	-moz-transition: opacity 1s ease-in-out;
	-webkit-transition: opacity 1s ease-in-out;
}

.testimonial_gallery .item.active {
	opacity: 0.6;
	filter: alpha(opacity=60);

}

.testimonial_gallery .item span {
	display: inline-block;
	margin-left: 14px;
	font-size: 14pt;
	opacity: 0.5;
	filter: alpha(opacity=50);
	vertical-align: text-bottom
}

/*################################################################
FOOTER
################################################################*/

#footer {
	display: block;
	position: relative;
	width: 100%;
	padding: 70px;
	color: #705677;
	text-align: center;
	background: #402c45;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#footer a {
	color: #705677;
	transition: color .25s ease-in-out;
	-moz-transition: color .25s ease-in-out;
	-webkit-transition: color .25s ease-in-out;
}

#footer a:hover {
	color: #ffffff;
}

#footer .menu {
	display: inline-block;
	margin: 15px 0;
	padding: 0;
}

#footer .menu li {
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style: 0;
	font-size: 15pt;
}

#footer .menu li a {
	display: block;
	margin: 0;
	padding: 2px 6px;
}

#copyright .menu {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
}

#copyright .menu li {
	display: flex;
	flex-direction: row;
	align-items: center;
	font-size: 13pt;
	text-align: left;
	flex: 0 1 auto;
}

#copyright .menu li > * {
	flex: 0 1 auto;
}

#copyright .menu li:before {
	content: '\2022';
}

#affiliate-logos {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 25px auto;
}

#affiliate-logos > div {
	display: block;
	padding: 10px 15px;
	flex: 0 1 auto;
}

#affiliate-logos > div > svg {
	display: block;
	height: 75px;
	width: auto;
	fill: #705677;
	transition: fill .25s ease-in-out;
}

#affiliate-logos > div:hover > svg {
	fill: #FFFFFF;
}

/*################################################################
LOGIN
################################################################*/

#login-page .content {
	text-align: center;
}

#login-badge {
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	background: #402c45;
	border-radius: 50%;
	-moz-border-radius: 50%; 
    -webkit-border-radius: 50%;
    transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
    z-index: 2;
}

#login-badge span {
	display: inline-block;
	width: 90px;
	height: 90px;
	padding: 20px;
	background: url('images/icon.png') center no-repeat;
	background-size: 90px;
}

#login-panel {
	display: block;
	position: relative;
	width: 350px;
	padding: 68px 30px 30px 30px;
	margin: 0 auto;
	background: #402c45;
	border-radius: 10px;
	-moz-border-radius: 10px; 
    -webkit-border-radius: 10px;
    z-index: 3;
}

.msg + .login_field {
	margin-top: 20px;
}

.login_field + .login_field {
	margin-top: 10px;
}

.login_buttons {
	margin-top: 20px;
}

a.login_button {
	display: inline-block;
	margin: 20px 10px 0 20px;
	color: rgba(255,255,255,0.6);
	transition: color .25s ease-in-out;
	-moz-transition: color .25s ease-in-out;
	-webkit-transition: color .25s ease-in-out;
}

a.login_button:hover {
	color: #ffffff;
}

#sign-in {
	padding-right: 40px;
	padding-left: 40px;
}

.or {
	margin-top: 10px;
	color: #a28ba8;
	font-size: 11pt;
}

/*################################################################
PARTNERS
################################################################*/

body.partner-template-default .menu_col,
body.partner-template-default .entry .youtube_embed,
body.partner-template-default .entry a[data-target="team"],
.entry a[data-target="recent-closings"],
body.partner-template-default #menu-info-menu li:last-child,
body.partner-template-default #menu-footer-menu {
	display: none;
}

body.partner-template-default .entry a[data-target="recent-closings"] {
	display: inline-block;
}

body.partner-template-default #header {
	position: absolute;
}

body.partner-template-default #header-table td {
	padding: 50px 35px;
}

body.partner-template-default #header a#logo {
	margin: 0 auto;
	pointer-events: none;
} 

body.partner-template-default #panels tr.panel:first-child td.container {
	padding-top: 150px;
}

body.partner-template-default .featured_press,
body.partner-template-default #footer a[data-target="page"] {
	pointer-events: none;	
}

/*################################################################
FORMS
################################################################*/

/* labels */

label {
	display: block;
	margin-bottom: 4px;
	color: #856f8a;
	font-size: 11pt;
	font-weight: 500;
	letter-spacing: normal;
	transition: color .25s ease-in-out;
	-moz-transition: color .25s ease-in-out;
	-webkit-transition: color .25s ease-in-out;
}

span.req {
	color: #f11367;
}

.form_item:hover label {
	color: #ffffff;
}

/* inputs */

input[type=text], input[type=email], input[type=password], textarea {
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 15px;
	color: #ffffff;
	font-family: 'Open Sans', sans-serif;
	font-size: 14pt;
	font-weight: 300;
	background: #674d6d;
	border: 1px #74567b solid;
	border-radius: 5px;
	-moz-border-radius: 5px; 
    -webkit-border-radius: 5px;
    box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
    transition: border-color .25s ease-in-out;
	-moz-transition: border-color .25s ease-in-out;
	-webkit-transition: border-color .25s ease-in-out;
}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, textarea:focus {
	border-color: #d183e5;
}

input.error, textarea.error {
	color: #bf1448;
	background-color: #ffd2e1;
	border-color: #e5839f;
}

/* buttons */

input[type=submit], input[type=button], a.button, .button {
	display: inline-block;
	margin: 0;
	padding: 10px 20px;
	color: #402c45;
	font-family: 'Open Sans', sans-serif;
	font-size: 13pt;
	font-weight: 600;
	text-align: center;
	background: #ffffff;
	border: none;
	border-radius: 3px;
	-moz-border-radius: 3px; 
    -webkit-border-radius: 3px;
    box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	transition: color.25s ease-in-out, background-color .25s ease-in-out;
	-moz-transition: color.25s ease-in-out, background-color .25s ease-in-out;
	-webkit-transition: color.25s ease-in-out, background-color .25s ease-in-out;
	cursor: pointer;
}

input[type=submit].green, input[type=button].green, a.button.green, .button.green {
	color: #FFFFFF;
	background-color: #51B37F;
}

input[type=submit] + input[type=submit], input[type=button] + input[type=button], .button + .button {
	margin-left: 10px;
}

input[type=submit]:hover, input[type=button]:hover, a.button:hover, .button:hover {
	color: #ffffff;
	background-color: #2c1c30;	
}

input[disabled=disabled] {
	cursor: not-allowed;
}

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

/* selects */

.dropdown {
	display: block;
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #ffffff;
	border: 1px #cecece solid;
	border-radius: 5px;
	-moz-border-radius: 5px; 
    -webkit-border-radius: 5px;
    box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
    transition: box-shadow .25s ease-in-out, border-color .25s ease-in-out;
	-moz-transition: box-shadow .25s ease-in-out, border-color .25s ease-in-out;
	-webkit-transition: box-shadow .25s ease-in-out, border-color .25s ease-in-out;
	overflow: hidden;
	z-index: 1;
}

#content .dropdown {
	border-color: #e2e2e2;
}

.dropdown.error {
	color: #bf1448;
	background-color: #fff0f5;
	border-color: #edb4c6;
}

.dropdown span {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50px;
	background: rgba(255,255,255,0.8) url('images/select-black-32.png') center no-repeat;
	background-size: 12px;
	cursor: pointer;
	pointer-events: none;
}

select {
	width: calc(100% + 20px);
	width: -moz-calc(100% + 20px);
	width: -webkit-calc(100% + 20px);
	width: -o-calc(100% + 20px);
	margin: 0;
	padding: 10px;
	font-family: 'Open Sans', sans-serif;
	font-size: 14pt;
	background: transparent;
	border: 0;
    box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	appearance: none;
	transition: border-color .25s ease-in-out;
	-moz-transition: border-color .25s ease-in-out;
	-webkit-transition: border-color .25s ease-in-out;
	cursor: pointer;
	z-index: 1;
}

select:focus {
	border-color: #7b7b7b;
}

select option[value=''] {
	color: #c7c7c7;
}

/* form items */

.form_item {
	display: block;
	position: relative;
}

.form_item + .form_item {
	margin-top: 15px;
}

.msg + .form_item {
	margin-top: 15px;
}

.form_actions {
	margin-top: 40px;
}

/* forms */

.prep_form, #payment-form {
	margin-top: 20px;
	text-align: left;
}

.webform {
	margin-top: 10px;
}

table#contact-table {
	width: 100%;
	border-spacing: 0;
}

#contact-table td {
	vertical-align: top;
}

#contact-table td.entry_col {
	width: 280px;
	padding-left: 30px;
}

#contact-form {
	display: block;
	padding: 25px;
	background: #f6f6f6;
	border-radius: 8px;
	-moz-border-radius: 8px; 
    -webkit-border-radius: 8px;
}

.form_captcha {
	text-align: center;
}

.g-recaptcha {
	display: inline-block;
	margin-top: 10px;
}

/* placeholders */

::-webkit-input-placeholder {
    color: #8f6d97;
}

:-moz-placeholder { 
   color: #8f6d97;
   opacity: 1;
}

::-moz-placeholder {
   color: #8f6d97;
   opacity: 1;
}

:-ms-input-placeholder {
   color: #8f6d97;
}

/*################################################################
MESSAGES
################################################################*/

.msg {
	display: block;
	padding: 12px 20px 12px 50px;
	color: #ffffff;
	font-size: 13pt;
	font-weight: 300;
	text-align: left;
	line-height: 1.1em;
	background-color: #2170a7;
	background-image: url('images/message-white-32.png');
	background-position: 20px center;
	background-repeat: no-repeat;
	background-size: 16px;
	border-radius: 5px;
	-moz-border-radius: 5px; 
    -webkit-border-radius: 5px;
}

.success_msg {
	background-color: #209357;
	background-image: url('images/success-white-32.png');
}

.error_msg {
	background-color: #a72150;
	background-image: url('images/alert-white-32.png');
}

/*################################################################
HEADINGS
################################################################*/

h1 {
	margin: 30px 0;
	padding: 0;
	font-family: 'Dosis', sans-serif;
	font-size: 36pt;
	font-weight: 600;
}

h2 {
	margin: 20px 0;
	padding: 0;
	font-family: 'Dosis', sans-serif;
	font-size: 30pt;
	font-weight: 600;
}

h3 {
	margin: 20px 0;
	padding: 0;
	font-size: 26pt;
	font-weight: 500;
	line-height: 1.3em;
}

h4 {
	margin: 20px 0;
	padding: 0;
	font-size: 18pt;
	font-weight: 500;
	line-height: 1.3em;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child {
	margin-top: 0;
}

/*################################################################
IMAGES
################################################################*/

a img {
	border: 0;
}

.alignleft {
	float: left;
	margin: 5px 25px 10px 0;
}

.alignright {
	float: right;
	margin: 5px 0 10px 25px;
}

/*################################################################
MODALS
################################################################*/

.modal {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(64,44,69,0.95);
	z-index: 999;
}

.modal .container {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 50px;
}

#video-modal.modal .container {
	top: 50%;
	right: auto;
	left: 50%;
	bottom: auto;
	width: 100%;
	max-width: 650px;
	transform: translate(-50%,-50%);
}

#video-modal.modal .video_embed {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	box-sizing: border-box;
	transform: translate(-50%,-50%);
}

#video-modal.modal .video_embed iframe {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*################################################################
TRUST PILOT
################################################################*/

