/*
Theme Name: finance
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: finance
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

finance is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: 'Montserrat', 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;
	background-image:url('images/divider-bg.png');
	background-width:100%;
	border: 0;
	height: 1px;
	margin:25px 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"] {
	border: none;
	border-radius: 3px;
	background: #0071bc;
	color:#fff;
	text-transform:uppercase;
	font-size:16px;
	cursor: pointer;
	padding: 4px 10px;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

.sidebar form label {
	font-size:13px
}
.sidebar form p {
	line-height:13px
}
.sidebar form input[type='radio'] {
	margin: 5px 7px 20px 5px;
}
.sidebar input[type="text"], .sidebar input[type="email"], .sidebar input[type="url"], .sidebar input[type="password"], .sidebar input[type="search"], .sidebar input[type="number"], .sidebar input[type="tel"], .sidebar input[type="range"], .sidebar input[type="date"], .sidebar input[type="month"], .sidebar input[type="week"], .sidebar input[type="time"], .sidebar input[type="datetime"], .sidebar input[type="datetime-local"], .sidebar input[type="color"], .sidebar textarea {
	max-width:100%;
	padding: 5px;
	margin-bottom:10px
}

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;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
}

p {
	padding:0;
	margin:0 0 20px;
}

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
--------------------------------------------------------------*/
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: "" "";
}

ul, ol {
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 0;
}

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. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 0;
	background: #0071bc;
	color: #fff;
	line-height: 1;
	padding: 15px 30px;
}

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 {
	float: none;
	background: #e6e6e6;
	border: 1px solid #ccc;
	padding: 10px;
	margin:10px 0 0 0;
}

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;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #0071bc;
}

a:focus {
	outline: 0;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
	line-height: 31px;
}

.main-navigation a {
	display: inline-block;
	text-decoration: none;
	color:#fff;
	text-transform:uppercase;
	margin-right:25px;
	font-size:14px;
}

.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;
	background:white
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
	color:#222
}

.main-navigation ul ul li {

}

.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. */
button.menu-toggle {
	background:#fff;
	border:0;
	box-shadow:none;
	color:#222;
	padding:5px 13px 6px;
	font-size:21px;
}

.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

/* Social Links */
.social-links {float:right;margin:24px 0 24px 15px;}

.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;
}

/*--------------------------------------------------------------
# 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: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## 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;
}

/*--------------------------------------------------------------
## Widths
--------------------------------------------------------------*/
.quarter {
	float: left;
	width: 25%;
}
.sixth {
	float: left;
	width: 16.66%;
}
.half {
	float: left;
	width: 50%;
}

/*--------------------------------------------------------------
## Generic
--------------------------------------------------------------*/
.inner {
	width:95%;
	max-width:1200px;
	margin:0 auto;
}


/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
header#masthead {
	background:#222;
}
p.site-title {
	text-indent:-10000px;
	margin:0;
}
.site-title a {
	width:210px;
	height:39px;
	display: block;
}
.site-description {
	display:none;
}
.site-branding {
	float:left;
	padding:20px 0;
}
.main-navigation {
	float:right;
}
.sub-navigation {
	float:right;
}

h1, h2, h3, h4, h5, h6, p, a {padding:0;margin:0;}
.align-right {text-align:right;}
.align-left {text-align:left;}
article p {padding-bottom:20px}

a.button {
	padding:15px 30px;
	text-transform:uppercase;
	display:inline-block;
	text-decoration:none;
	color:#fff;
	opacity:0.9;
	transition:opacity 0.2s;
	border-radius:2px;
}
a.button:hover {
	opacity:1;
}

a.button.small {
	padding: 15px;
	font-size: 13px;
	width: 140px;
}

p.large, span.large {font-size:24px;font-weight:normal}
p.medium, span.medium {font-size:21px;font-weight:normal}
p.small, span.small {font-size:13px;font-weight:normal}

.box-shift-up {
	margin-top: -40px;
	background: #fff;
	margin-bottom:60px;
}
.box-shadow {
	box-shadow: 0px 2px 40px rgba(0,0,0,0.3);
}
.relative {position:relative;}

.pink {color:#ed1e79}
.pink-top {border-top:3px solid #ed1e79}
.pink-top a {background: #ed1e79}
.pink-top .fa {color: #ed1e79}
.pink-bg {background: #ed1e79}
.green {color:#00a888}
.green-top {border-top:3px solid #00a888}
.green-top a {background: #00a888}
.green-top .fa {color: #00a888}
.green-bg {background: #00a888}
.orange {color:#e78020}
.orange-top {border-top:3px solid #e78020}
.orange-top a {background: #e78020}
.orange-top .fa {color: #e78020}
.orange-bg {background: #e78020}
.blue {color:#0071bc}
.blue-top {border-top:3px solid #0071bc}
.blue-top a {background: #0071bc}
.blue-top .fa {color: #0071bc}
.blue-bg {background: #0071bc}

span.wpcf7-list-item {margin:5px 20px 0 0;}
input[type='radio'] {transform: scale(2);margin:5px 7px 0 5px;}

.site-ribbon {
	background-image:url('images/divider-bg.png');
	background-repeat:no-repeat;
	background-size:cover;
	height:4px;
	width:100%
}
.logo-ribbon {
	background-image:url('images/divider-bg.png');
	background-repeat:no-repeat;
	background-size:cover;
	height:4px;
	width:100%;
	margin-top:5px
}

/*--------------------------------------------------------------
## Home
--------------------------------------------------------------*/
 .home .banner {
	padding: 120px 0;
	z-index: 1;
}

.home .banner .inner {
	z-index: 1;
}
.banner {background-size:cover;background-position:center center;position:relative;z-index: -1;}
.banner h1 {font-weight:normal;font-size:42px;margin-bottom:10px;line-height:1.3}
.banner h2.page-description {font-weight:normal;font-size:21px}
.banner-content {text-align:center;color:#fff;padding:0 20px;max-width:930px;margin:0 auto;}
img.banner-arrow {
	position: absolute;
	bottom: 60px;
	z-index: 1;
	width: 220px;
	height:50px;
	left:50%;
	margin-left:-110px;
}

.overlay {background:rgba(0,0,0,0.3);position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;}

.tiles {display: flex; flex-wrap: wrap; margin: 40px 0;}
.tile {
	background: #FFF;
	box-shadow: 1px 4px 15px -4px #747474;
	flex: 0 0 calc(20% - 20px);
	flex-basis: calc(20% - 20px);
	margin: 10px;
	border-radius: 5px;
	z-index: 1;
}
.tile h3 {padding:0;margin:0 0 13px;font-size:20px;}
.tile p {font-size:13px;margin-bottom:23px;}
.tile-content {
	padding: 10px;
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
.tile-content a {text-align:center;}
.tile .tile-image {height: 50px !important; margin-bottom: 20px;}

.full-width-strip {width:100%;position:relative;background-size:cover;padding:100px 0 110px;background-position:center center;}
.left-content {width:50%;float:left;color:#fff;}
h4.title {font-size:26px;font-weight:normal;margin-bottom:30px;}
p.explainer {text-transform:uppercase;margin-bottom:30px;}
.full-width-strip a.button {margin-top:30px;}

.center-content {width:50%;text-align:center;margin:0 auto;}
.full-width-strip div.title {font-size:32px;font-weight:normal;}
.big-figures {margin-top:30px;padding-bottom:220px;}
div.big-figure {background:rgba(255,255,255,0.5);float:left;width:22.7%;margin-right:3%;border-radius:50%;text-align:center;padding:70px 50px 0;box-shadow: 0px 2px 40px rgba(0,0,0,0.3);}
div.big-figure:first-of-type {margin-top:50px;}
div.big-figure:nth-child(2) {margin-top:15px;}
div.big-figure:last-of-type {margin-top:30px;margin-right:0%;}
p.big-figure {font-size:46px;font-weight:normal;line-height:1;margin-bottom:30px;}
.big-figure p.small {font-size:14px;}

.calculator-form {
	padding: 85px 0;
}
.calculator-form .inner {
	display:table;
	text-align:center;
}
.calculator, .form {
	display:table-cell;
	width:50%;
	box-shadow: 0px 2px 40px rgba(0,0,0,0.3);
	background:#fff;
	padding:40px 20px 0 20px;
}
.home form {width:90%;margin:25px auto 0;max-width:400px;}
.calculator-form .inner .form form label, .calculator-form .inner .form form p {text-align:left;margin-top: 10px;}
.calculator-form .inner .form form p:last-of-type {text-align:center}
.home input {max-width:100%}
.home input[type="submit"] {
	margin: 20px auto 50px;
	width: 100%;
	background: #ed1e79;
}
ul.example-figures {
	width:90%;
	max-width:500px;
	margin:10px auto 30px;
}
ul.example-figures li {
	background:#e6e6e6;
	padding:8px 12px;
	float:left;
	width:49%;
	margin-right:2%;
	margin-bottom:10px;
	text-align:left;
}
ul.example-figures li span {
	text-align:right;
	font-weight:bold;
}
ul.example-figures li:nth-child(even) {
	margin-right:0%;
}
.debt-repayment-circles {width:90%;max-width:500px;margin:15px auto 45px;}
.debt-repayment-circle.before {
	background-image: url('images/full-circle.png');
	background-size: cover;
}
.debt-repayment-circle.after {
	background-image: url('images/semi-circle.png');
	background-size: cover;
}
.debt-repayment-circle:first-of-type {
	margin-right: 4%;
}
.debt-repayment-circle {
	width: 48%;
	float: left;
}
.vert-middle-outer {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.vert-middle {
	position: relative;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.debt-repayment-circle p {line-height:1.2;}
.debt-repayment-circle p.big-number {font-size:36px;font-weight:700;line-height:1.2;}

#example-styles {
	width:90%;
	max-width:400px;
	margin:30px auto;
}
#example-styles input, #example-styles textarea {
	float:none;
	background:#e6e6e6;
	border:1px solid #ccc;
	width:100%;
	padding:10px;
	margin:0 0 10px;
}
#example-styles textarea {margin:0;}

.form a.button {
	margin:0 0 50px;
	width:90%;
	max-width:400px;
	background: #ed1e79
}



a.press-release {
	display:block;
	width:100%;
	border-bottom:1px solid rgba(255,255,255,0.5);
	padding:10px 30px 10px 0;
	color:#fff;
	text-decoration:none;
	margin-bottom:5px;
	transition:all 0.3s;
	background:url('images/right-arrow.png') no-repeat right 10px center
}
a.press-release:hover {
	padding:10px 0 10px 10px;
	background:url('images/right-arrow.png') no-repeat right 0 center
}

.mas-strip p {max-width:637px;margin:0 auto;text-align:center;margin-bottom:30px;}
.mas-strip img {margin:0 auto;display:block;}

/*--------------------------------------------------------------
## Breadcrumb
--------------------------------------------------------------*/
div.breadcrumb {background:rgba(0,0,0,0.5);}
ul.breadcrumbs {color:#fff;padding:10px 0}
ul.breadcrumbs li {float:left;font-size:12px;}
ul.breadcrumbs li a {text-decoration:none;color:#fff}
ul.breadcrumbs li:last-of-type {opacity:0.5}
ul.breadcrumbs li.separator {padding:0 15px;opacity:0.5}

.page-banner {padding:100px 0 105px;}
/*.page-banner-content {max-width:500px;}*/
.page-banner-outer {
	background: rgb(164,64,177);
	background: -moz-linear-gradient(-45deg, rgba(164,64,177,1) 0%, rgba(39,159,235,1) 46%, rgba(78,219,226,1) 100%);
	background: -webkit-linear-gradient(-45deg, rgba(164,64,177,1) 0%,rgba(39,159,235,1) 46%,rgba(78,219,226,1) 100%);
	background: linear-gradient(135deg, rgba(164,64,177,1) 0%,rgba(39,159,235,1) 46%,rgba(78,219,226,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a888', endColorstr='#0071bc',GradientType=1 );
	background-size:cover;
	background-position:center center
}
.page-banner-content {float:left;width:calc(100% - 120px);}
.page-banner h1.title, .page-banner p.sub, .page-banner p {color:#fff;}
.page-banner-content h1 {margin-bottom:10px;font-size:48px}

div.page-banner-icon {float:left;margin-right:20px;}
img.page-banner-icon {width:100px;}

/*--------------------------------------------------------------
## Template 2 - e.g. Money
--------------------------------------------------------------*/
.template-2 .page-banner {padding:100px 0 165px;}
.template-2 .primary-outer {padding:0}

.template-2 #primary {margin-top:-50px;}
.template-2 #primary .body-copy {border-top:3px solid #775E9E;background:#fff;box-shadow:1px 0 25px rgba(0,0,0,0.3);padding:30px;}

.sub-pages {display:flex;flex-flow:row wrap;}
.sub-page-outer {flex: 0 1 calc(50% - 20px);margin:0 10px 20px;border:1px solid #ccc;padding:20px}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.sub-page-outer {
		flex-basis: calc(50% - 62px)
	}
}
.sub-page-image {float:left;margin-right:15px;width:20%}
.sub-page-image img {max-width: 100% !important;}
.sub-page-content {float:left;width:calc(80% - 15px);margin-top:-6px}
#primary .sub-page-content div.title {
	font-size:22px;
	padding-bottom:5px;
	line-height:26px;
	color: #0071bc;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
}
.body-copy .sub-page-content p {font-size:14px;padding-bottom:15px}

.sub-page-links a {display:block;margin-bottom:5px;text-decoration:none;}
.sub-page-links a:last-of-type {margin-bottom:15px}

.sub-page-content a.button {padding: 10px 20px;font-size: 14px;}

/*--------------------------------------------------------------
## Template 3 - e.g. About
--------------------------------------------------------------*/
.template-3 .page-banner {padding:100px 0 165px;}
.template-3 .primary-outer {padding:0}

.template-3 #primary {margin-top:-50px;}
.template-3 #primary .body-copy {border-top:3px solid #775E9E;background:#fff;box-shadow:1px 0 25px rgba(0,0,0,0.3);padding:30px;}

.body-image {width:45%; height:310px;background-size:cover;margin:0 25px 20px 0;float:left;}
.body-copy img {max-width:45%;margin-bottom:20px}


/*--------------------------------------------------------------
## Posts Pages
--------------------------------------------------------------*/
.single-post-copy img {
	max-width: 100%;
	margin-bottom: 20px
}


/*--------------------------------------------------------------
## Reviews Page
--------------------------------------------------------------*/
.reviews-outer {display:flex;flex-flow:row wrap;}
.review {flex:0 1 48%;border:1px solid #ccc;padding:20px}

.reviews .page-banner {padding:40px 0 45px;}
.review-intro p:last-of-type {margin-bottom:40px}

/*--------------------------------------------------------------
## Template 4 - e.g. Press Releases
--------------------------------------------------------------*/
.template-4 .page-banner {padding:40px 0 45px;}

/*--------------------------------------------------------------
## Contact Page
--------------------------------------------------------------*/
.contact .page-banner {padding:40px 0 45px;}
#primary .contact-details h2:first-of-type {padding-bottom:0}

/*--------------------------------------------------------------
## Template 5 - e.g. Credit Cards
--------------------------------------------------------------*/
.template-5 .page-banner {padding:40px 0 45px;}
.template-5 .page-banner-content {max-width:730px;}
.template-5 .page-banner-content h1 {margin-bottom:0;font-size:2em; color: #FFF;}

.opportunity-title {background:#fff;padding:20px 0}
.opportunity-title h2 {float:left;display:inline;line-height:57px;}
.go-to {display:inline;float:right;}
.go-to a {color:#404040;}
.go-to-text {background:#f2f2f2;padding:13px 18px;cursor:pointer}
.go-to-text img {vertical-align:middle;margin-left:10px}

.opportunities {
	background:#f2f2f2;
	padding:30px 0;
	position:relative;
}
.opportunity-number {background-color:#ed1e79;color:#fff;position:absolute;padding:10px 0;text-align:center;font-weight:bold;width:40px;top:0;left:0;}
.opportunity {
	background:#fff;
	box-shadow:1px 0px 5px rgba(0,0,0,0.3);
	display:table;
	border-top:3px solid #ed1e79;
	margin-bottom:15px;
	position:relative;
}
.opportunity-cta .button.small {
	z-index: 998;
}

.opportunity-cta a:hover{text-decoration: none; color: #FFF;}
.opportunity-cta:hover a{text-decoration: none; color: #FFF;}
.opportunity-image {width:20%;vertical-align:middle; text-align:center}
.opportunity-image img { width: 100%; height: 100%; }

.opportunity-content {width:60%;padding:20px 30px 20px 0; flex: 1;}
.opportunity-content h1 {font-size: 1.17em !important; color:#0071bc !important;margin-bottom:15px;}
.opportunity-content .title{font-size: 1.17em !important; color:#0071bc !important;}

.opportunity-boxes {margin:15px 0 15px;}
.opportunity-box {float:left;width:32%;margin-right:2%;background:#d4e7e5;padding:10px 15px;}
.opportunity-box:last-of-type {margin-right:0%}
.opportunity-box p {font-size:11px;}
p.opportunity-figures {font-size:14px;color:#0071bc}

.opportunity-terms p {font-size:11px;padding-bottom:10px;}

.opportunity-cta {width:20%;background:#d4e7e5;vertical-align:middle;text-align: center;}

.opportunity.gray-out {
	opacity: 0.3;
	filter: alpha(opacity=30);
	pointer-events: none;
	position: relative;	
}

.reveal {background:#0072bb;padding:20px;position:relative;display:none}
.reveal p {font-size:21px;color:#fff;float:left;line-height:39px;padding-left:10px}
.reveal img {float:right;}
.link-fill {position:absolute;width:100%;height:100%;z-index:1;left:0;top:0;}

.primary-outer {padding:50px 0}
.sidebar {float:right;width:300px}
.sidebar ul li {padding: 10px 30px 10px 0;background:url('images/right-arrow-blue.png') no-repeat right center;background-size:22px;border-top: 1px solid #ccc;font-size:13px;line-height:18px}
.sidebar ul li a {color:#0071bc;text-decoration:none;}
.sidebar section {border-top:3px solid #775E9E;background:#fff;box-shadow:1px 0 5px rgba(0,0,0,0.3);padding:20px}
h2.widget-title {font-weight:normal;font-size:21px;}

#primary h1, #primary h2, #primary h3, #primary h4, #primary h5, #primary h6 {padding-bottom:15px;color:#0071bc;}
#primary h1 {font-size: 32px;}
#primary h2 {font-size: 26px;}
#primary h3 {font-size: 21px;}
#primary h4 {font-size: 18px;}
#primary h5 {font-size: 14px;}
#primary h6 {font-size: 12px;}

.body-copy {float:left;width:calc(100% - 350px)}
.body-copy p {padding-bottom:20px;}
.body-copy ul, ol {padding-left:18px;margin-bottom:20px;}
.body-copy ol li {margin-bottom:20px;}
.body-copy ul li {list-style-type:disc;}

/*--------------------------------------------------------------
## Reviews
--------------------------------------------------------------*/
.trustpilot-outer {}
.reviews-outer {width:78%;float:right}

.review {background:#fff;width:48%;float:left;margin-right:2%;padding:25px;border-radius:2px;margin-bottom:20px}
.review:last-of-type {margin-right:0%;}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.site-info {
	padding-bottom:40px;
	text-align:center;
}
ul#menu-footer-menu {
	text-align: center;
}
.footer-menu-social {
	width:130px;
	margin:20px auto 12px;
}

.footer-menu-social .fab {
	margin: 5px 0;
	vertical-align: middle;
	font-size: 24px;
}

.tsl-default {
	width: 40px;
	height: 40px;
	font-size: 24px;
	display: inline-block;
	text-align: center;
	color: #FFF;
}

.site-footer {
	border-top:1px solid #eee;
	padding:40px 0 80px;
	font-size:12px;
	background:#f2f2f2
}
.site-footer ul li {
	display:inline-block;
	text-align:center;
}
.site-footer ul li a {
	padding:10px;
	display: inline-block;
}
.site-footer ul li:after {
	content:'|';
	padding: 0 0 0 5px;
	color:#ccc
}
.site-footer ul li:last-of-type:after {
	content:'';
	padding:0;
}
.help img {
	margin-right:20px;
}
p.footer-title {
	font-weight:bold;
	font-size:16px;
	margin-bottom:15px;
}
ul#menu-footer-menu a {text-decoration:none;color:#0071bc}
footer.entry-footer {display:none}


div.wpcf7-response-output {
	margin: 0;
	padding: 20px;
	position: fixed;
	bottom: 0;
	width: 100%;
	left: 0;
	background: #222;
	color: #fff;
	z-index:100000000
}

.post-navigation {clear:both}

/* JOE'S ADDITIONS */

.disclaimer{
	background: #f2f2f2;
	padding: 20px;
	text-align: center;
	font-size: 14px;
	color: #868686;}

		@media screen and (min-width: 768px) {
			.disclaimer{padding: 20px 20%;}
		}

/* New Menu	*/

	.topNav{
	width: 100%;
	z-index: 3000;
	height: 80px;
	position: fixed;
	top: 0;
	line-height: 80px;
	text-align: center;
	font-family: sans-serif;
	background-color: #222;
	padding: 0;}
  .topNav .logo{
	/*width: auto;*/
	height: 80px;
	width: 259px;
	float: left;}
  .topNav .logo img{
	vertical-align: baseline;
	margin-top: 14px;
	width: 100%;}

	.topNav .menu {
		/*width: 65%;*/
		height: 100%;
		float: right;
		font-family: 'Montserrat', sans-serif;}
	.topNav .menu .menu-wrapper {
		position: relative;
		width: 100%;
		list-style: none;
		height: inherit;
		margin: 0;
		padding: 0;
		display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
		display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
		display: -ms-flexbox;      /* TWEENER - IE 10 */
		display: -webkit-flex;     /* NEW - Chrome */
		display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
		align-items:flex-end;}
	.topNav .menu .menu-wrapper li{position: relative;}
	.topNav .menu .menu-wrapper li a {
		text-align: center;
		/*width: 20%;*/
		padding: 0 14px;
		height: 80px;
		line-height: 80px;
		display: inline-block;
		color: #fff;
		font-weight: normal;
		text-decoration: none;
		font-size: 14px;
		font-weight: 400;}
	.topNav .menu .menu-wrapper a i{
		margin-left: 5px;
		color: rgba(255,255,255,0.65);
		font-size: 12px;}
	.topNav .menu .menu-wrapper a.mobileOnly{display: none;}
	.topNav .menu .menu-wrapper a:hover {
		background: #0071bc;
		color: #fff;}
	.topNav .menu .menu-wrapper a li{
		line-height: inherit;
		margin: auto;
		position: relative;}

	#menuToggle{display: none;}
	.menu-icon{display: none;}

	.desktopOnly{display: block;}

	li.has-child .nav-dropdown li a{
	display: block !important;
	padding: 8px 10px !important;
	height: auto !important;
	line-height: normal !important;
	text-align: left !important;
	text-decoration: none !important;
	color: #FFF !important;
	font-size: 14px !important;}

	.nav-dropdown{
		position: absolute;
		display: none;
		background: #222;
		left: 0;
		margin: 0;
		padding: 0;
		list-style: none;
		width: 260px;}

	.topNav .menu ul li:hover .nav-dropdown{
		display: block;}

	.nav-dropdown a{
		display: block;
		padding: 8px 10px;
		height: auto;
		line-height: normal;
		text-align: left;
		font-size: 14px;
		text-decoration: none;
		color: #FFF;}
	.nav-dropdown a:hover{text-decoration: none;}

	@media screen and (max-width: 992px) {

	.desktopOnly{display: none;}

	.topNav{
	  /*height: 55px;
	  line-height: 55px;*/}

	.topNav .menu {
	  width: 100%;
	  height: auto;
	  background: #222;
	  overflow: visible;
	  margin-top: 0;}
	.topNav .menu .menu-wrapper {
	  display: block;
	  max-height: 0;
	  overflow: hidden;
	  -webkit-transition: max-height 0.3s;
	  -moz-transition: max-height 0.3s;
	  -ms-transition: max-height 0.3s;
	-o-transition: max-height 0.3s;
	  transition: max-height 0.3s;}
	.topNav .menu .menu-wrapper li{margin-left: 0;}
	.topNav .menu .menu-wrapper li a {
	  text-align: left;
	  /* width: 100%; */
	  /* height: 100%; */
	  /* line-height: 50px; */
	  background-color: #222;
	  /* padding: 20px; */
	  display: block;
	  height: auto;
	  line-height: normal;
	  padding: 8px 10px;
	  margin-left: 0px;
	  color: #b5e2ff;}
	  .topNav .menu .menu-wrapper li a i{display: none;}
	.topNav .menu .menu-wrapper li a.mobileOnly{display: block;}
	.topNav .menu .menu-wrapper li.title{
	  text-align: left;
	  color: #a4dbff;
	  font-weight: 700;
	  padding-bottom: 10px;
	  margin-bottom: 10px;
	  margin-top: 10px;
	  padding-left: 10px;
	  border-bottom: 1px solid #a4dbff;}
	.menu-icon {
	  width: 100px;
	  height: inherit;
	  display: block;
	  position: absolute;
	  top: 2px;
	  right: 0;
	  line-height: 84px;
	  text-align: right;
	  bottom: 0;
	  color: #FFF;}
	#menuToggle:checked ~ ul {
	  max-height: 300px;
	  padding-bottom: 20px;
	  /*padding-bottom: 50%;*/
	  overflow: scroll;}
	.menu-icon i {
		font-size: 1.7em;}

	.topNav .logo {
		width: 220px;}
	  .topNav .logo img{
		margin-top: 18px;}

	.nav-dropdown{
	position: relative;
	display: block;
	width: auto;
	margin-left: 20px;
	background: #222;}

	.topNav .menu .menu-wrapper li:hover .nav-dropdown{
	display: block;}

	.nav-dropdown a{
	display: block;
	padding: 5px 6px;
	height: auto;
	font-size: 12.5px;
	text-align: left;
	color: #FFF;}

}

@media screen and (min-width: 992px) {
	.mobileOnly{display: none;}
}

@media screen and (max-width: 768px) {
	.topNav{height: 55px; line-height: 55px;}
	.menu-icon{line-height: 60px;}
	.topNav .logo{height: 55px; width: 149px;}
	.topNav .logo img{margin-top: 12px;}
}

@media screen and (min-width: 1250px) {
/*    .nav-dropdown{
	  right: auto;
	  left: 0;}*/
}


/* END OF JOE'S ADDITIONS */


/*--------------------------------------------------------------
## Responsive
--------------------------------------------------------------*/
.menu-toggle {
	display:none;
}
@media screen and (min-width: 1024px) {
	.main-navigation ul {
		display:block;
	}
}

@media screen and (max-width: 1280px) {
	p.big-figure {font-size:38px;margin-bottom:20px;}
	div.big-figure {padding:70px 50px 0;}
}

@media screen and (max-width: 1100px) {
	p.big-figure {font-size:34px;margin-bottom:15px;}
	div.big-figure {padding:50px 50px 0;}
	.body-copy {width:calc(100% - 330px);}
	.template-2 #primary .body-copy {padding:20px}
	.main-navigation a {margin-right:20px}
}
@media screen and (max-width: 1024px) {
	div.big-figure {padding:40px 15px 0;}
	.inner {width:90%;}
}

@media screen and (max-width: 1023px) {
	#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary {margin-bottom:30px;background: rgba(255,255,255,0.03);}
	.site-branding {padding-bottom:0;}
	.main-navigation {float:none;width:100%;}
	.social-links {float:right;margin:24px -2px 0 0;}
	.main-navigation ul {margin-top:15px}
	.main-navigation li {float:none;display:block;border-bottom:1px solid #444;}
	.main-navigation li:last-of-type {border-bottom:0px;}
	.main-navigation a {padding:12px 0;width:100%;margin-right:150px;}
	.main-navigation ul ul a {margin-right:0;}
	.tile { flex: 0 0 calc(33% - 20px); flex-basis: calc(33% - 20px); }
	.tile-content {width:100%}
	.tile-image {display:none}
	.tile p {max-width:280px;margin:0 auto 20px;}
	.tile h3 {font-size:21px;}
	.left-content {width:100%;max-width:600px;float:none;margin:0 auto;}
	.calculator, .form {width:100%;display:inline-block;margin:0 auto;max-width:600px;}
	.calculator {margin-bottom:30px;}
	div.big-figure {border-radius:0;}
	div.big-figure:first-of-type, div.big-figure:nth-child(2), div.big-figure:last-of-type {margin-top:0px;}
	.review {flex:0 1 100%;}
	a.button {padding:13px 25px;font-size: 14px;}
	.template-2 .page-banner {padding:50px 0 105px;}
	.body-copy p, .body-copy li {font-size:15px}
	.opportunity { display: table; }
	.opportunity-title h2 {width:100%;margin-bottom:5px;}
	.go-to {float:none;width:100%;display:block;clear:both;}
	.opportunity-image, .opportunity-content, .opportunity-cta {display:inherit;}
	.opportunity-image {width:30%;float:left;padding:30px 0;}
	.opportunity-content {width:70%}
	.opportunity-cta {clear:both;width:100%;padding:20px 20px;}
	.opportunity-cta a {width:50%}
	div.big-figure {width:49%;margin-right:2%;height:200px !important}
	div.big-figure:nth-child(2), div.big-figure:nth-child(4) {margin-right:0%}
	div.big-figure:nth-child(1), div.big-figure:nth-child(2) {margin-bottom:20px}
	#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {padding:0px}
	.sidebar {float:none;width:100%;clear:both;padding-top:30px;margin-bottom:30px}
	.body-copy {width:100%}
	#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-right {margin-right:0px;}
	.full-width-strip {padding:70px 0 80px;}
}

@media screen and (max-width: 767px) {
	#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-right {float:left;}
	.sub-page-outer {flex:0 1 100%;float:none;margin:0 0 20px;}
	#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {width:100%}
	div.big-figure {
		width:100%;
		margin:0 0 20px;
		height: 150px !important;
		padding: 30px 10px 0;
	}
	div.breadcrumb {display:none}
	.banner h1 {font-size:32px}
	.banner h2.page-description {font-size:16px}
	.tile {width:100%; flex: 0 0 calc(50% - 20px); flex-basis: calc(50% - 20px);}
	.home .review {width:100%;margin-right:0%;margin-bottom:15px}
	.profile-pic {display:none}
	.review h3 {float:none;width:100%}
	.center-content {width:90%;}
	.quarter {float:left;width:100%;margin-top:30px;padding-top:30px;border-top:1px solid #ccc;text-align:center}
	.full-width-strip {padding:70px 0 80px;}
	.vert-middle p.medium, .vert-middle span.medium {font-size:17px;}
	.debt-repayment-circle p.big-number {font-size:32px}
	ul.example-figures li {width:100%;margin-right:0%;float:none}
	.page-banner-content {width:100%;}
	.page-banner-content h1 {font-size:32px;line-height:1.3}
	.page-banner p.sub {font-size:14px}
	.site-footer {padding:40px 0 60px}
	.site-footer a {font-size:16px}
	.site-footer ul li {display:block;}
	.site-footer ul li:after {display:none}
	.site-footer ul li a {padding:5px 10px}
	.site-info {padding-bottom:20px}
	.body-copy p, .body-copy li {font-size:14px}
	.template-5 .page-banner-content {width:calc(100% - 120px);}
	.opportunity-title h2 {font-size:21px;line-height:1.4;margin-bottom:15px;text-align:center}
	.go-to-text {text-align:center}
	.go-to-text img {display:block;margin:10px auto;}
	.opportunity-image {padding:20px 0 20px;float:none;width:100%;}
	.opportunity-content {padding:0 20px 20px;width:100%;}
	.reviews-outer {width:100%;float:right;}
	article p {font-size:15px}
	.calculator-form .inner {
		display:block;
	}
}

@media screen and (max-width: 500px) {
	.site-branding {width:100%}
	.banner h1 {font-size: 22px;}
	.banner h2.page-description {font-size:14px;}
	.full-width-strip h3.title {font-size:22px;}
	p.medium, span.medium {font-size:18px;font-weight:normal;}
	.full-width-strip {padding:50px 0 70px;}
	#primary h1 {font-size:26px}
	.primary-outer {padding:30px 0}
	.site-title a {
		width: 165px;
		background-size:100%;
		background-repeat: no-repeat;
		background-position: left center;
	}
	.contact .page-banner {padding:40px 0}
	.social-links {display:none}
	.home .banner {padding: 40px 0 60px;}
	.round-button {font-size: 1em!important;}
	h4.title {font-size:21px;}
	.debt-repayment-circle {width:100%;margin:0 auto;}
	.debt-repayment-circle:first-of-type {margin:0% auto 20px;}
	.sub-page-image {display:none}
	.sub-page-content {width:100%;}
	.sub-page-content p {font-size:13px}
	a.button {width:100%;text-align:center;}
	.template-5 .page-banner {padding:25px 0;}
	.template-5 .page-banner-content {width: calc(100% - 70px);}
	img.page-banner-icon {width:50px}
	.opportunity-box {width:100%;margin-right:0;float:none;display:block!important;}
	.reveal img {width:36px;}
	.reveal p {padding-left:0;font-size:18px;line-height:2;}
	.reveal {padding:15px;}
	article p {font-size:14px}
	.body-copy img {max-width:100%;margin-right:0}
	.template-3 #primary .body-copy {padding:30px 20px}
	.template-3 .page-banner {padding:70px 0 135px}
}
#masthead{position:fixed;z-index: 2;top:0;width:100%;}
.top_navholder{width:100%;display:block;height:75px;}




/* Debt solution Comparison page form */
.answer-box, .answer-box-half, .answer-box-quarter {
	color: #000;
	text-decoration: none;
}



	.comparison-page-banner-form {
		max-width: 1000px;
		margin: 0 auto;
	}

@media (max-width: 479px) {
	.comparison-page-banner-form .answer-box-quarter {
		display: inline-block;
		margin: 1%;
		padding: 20px 15px;
		width: 98%;
	}
}

@media (max-width: 767px) and (min-width: 480px) {
	.comparison-page-banner-form .answer-box-quarter {
		display: inline-block;
		margin: 1%;
		padding: 20px 15px;
		width: 48%;
	}
}

@media (min-width: 768px) {
	.comparison-page-banner-form .answer-box-quarter {
		display: inline-block;
		margin: 1%;
		padding: 40px 15px;
		width: 23%;
	}

	.answer-list.flex{
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		justify-content:center;
		align-items:center;
		flex-wrap:wrap;}
	.answer-list.flex li{
		flex-basis:20%;
		margin: 0 5px;}
	.answer-list.flex li.third{
		flex-basis:25%;
		margin-bottom: 10px;}
	.answer-list.flex li a{
		width: 100%;}

	.answer-list.thirds{
		margin: 0 100px;}

}

.comparison-page-banner-form .answer-box, .comparison-page-banner-form .answer-box-half, .comparison-page-banner-form .answer-box-quarter {
	float: left;
	text-align: center;
	-ms-border-radius: 14px;
	-o-border-radius: 14px;
	border-radius: 14px;
	background: #b4dade;
	-webkit-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.comparison-page-banner-form .slide-title {
	color: #fff;
	display: block;
	font-size: 26px;
	text-align: center;
}

.comparison-page-banner-form .answer-box:hover, .comparison-page-banner-form .answer-box:active, .comparison-page-banner-form .answer-box-half:hover, .comparison-page-banner-form .answer-box-half:active, .comparison-page-banner-form .answer-box-quarter:hover, .comparison-page-banner-form .answer-box-quarter:active {
	background: #7fc0c7;
}

.primary-opportunity {
	text-align: center;
}
.primary-opportunity h3 {
	color: #0071bc;
	font-size: 1.5em;
	margin-bottom: 5px;
}
.primary-opportunity .primary-opportunity-phone-number {
	font-weight: bold;
	color: #0071bc;
	font-size: 2.2em;
}

.goto-comparison-arrow {
	color: #0071bc;
	font-size: 2.8em;
	margin: 5px;
}

/*.homepage-reviews {margin-top:40px}*/
.reviews-bar {
	background: rgba(255,255,255,0.9);
	border-radius: 20px;
	margin: 20px 0;
	padding: 20px;
}

@media all and (max-width: 767px) {
	.reviews-home {
		background-image:url('/wp-content/themes/finance/assets/images/bg-reviews-paperwork_sm.jpg')
	}
}

@media all and (min-width: 768px) {
	.reviews-home {
		background-image:url('/wp-content/themes/finance/assets/images/bg-reviews-paperwork.jpg')
	}
}

.reviews .center-content {color:#222;}
/*.home .review {width:37.75%;margin-bottom:0}*/

/*.trustpilot {width:20%;float:left;margin-right:2%;}*/
/*.profile-pic {*/
	/*float:left;*/
	/*border:3px solid #222;*/
	/*border-radius:50%;*/
	/*width:73px;*/
	/*background-size:cover;*/
/*}*/
/*.review h3 {*/
	/*margin-bottom:10px*/
/*}*/
/*div.review-text {clear:both;margin-top:20px;}*/
/*.review-text p {margin-bottom:15px;}*/
/*.home .reviews .box-shadow {box-shadow:0px 2px 40px rgba(0,0,0,0.8)}
*/

/* Gravity Forms */
.gform_wrapper {
	padding: 30px 60px;
	border: 1px solid #f0f0f0;
	background: url('images/bg-contactform.jpg') no-repeat top right;
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
	padding: 8px 12px;
}

.gform_fields input[type="text"],
.gform_fields input[type="email"],
.gform_fields input[type="url"],
.gform_fields input[type="password"],
.gform_fields input[type="search"],
.gform_fields input[type="number"],
.gform_fields input[type="tel"],
.gform_fields input[type="range"],
.gform_fields input[type="date"],
.gform_fields input[type="month"],
.gform_fields input[type="week"],
.gform_fields input[type="time"],
.gform_fields input[type="datetime"],
.gform_fields input[type="datetime-local"],
.gform_fields input[type="color"],
.gform_fields textarea {
	background: #f8f8f8;
	border-color: #ddd;
	margin-top: 0;
	transition: .2s;
}

.gform_fields input[type="text"]:focus,
.gform_fields input[type="email"]:focus,
.gform_fields input[type="url"]:focus,
.gform_fields input[type="password"]:focus,
.gform_fields input[type="search"]:focus,
.gform_fields input[type="number"]:focus,
.gform_fields input[type="tel"]:focus,
.gform_fields input[type="range"]:focus,
.gform_fields input[type="date"]:focus,
.gform_fields input[type="month"]:focus,
.gform_fields input[type="week"]:focus,
.gform_fields input[type="time"]:focus,
.gform_fields input[type="datetime"]:focus,
.gform_fields input[type="datetime-local"]:focus,
.gform_fields input[type="color"],:focus
.gform_fields textarea:focus{
	outline: none;
	border-color: #006fbe;
	box-shadow: 0 0 0 3px #b8d9f1;
}

.gform_fields {
	padding: 0;
	list-style: none;
}

.gform_fields .gfield {
	margin-bottom: 20px;
}

body .gform_wrapper .top_label div.ginput_container {
	margin-top: 0;
}

/* IE11 based adjustments for support, patches  */
.opportunity-content .opportunity-box {
	float: none;
	height: auto;
	min-height: auto;
}

.opportunity-box p:first-child {
	font-weight: bold;
}


@media (max-width: 768px) {
	.template-5 .page-banner-outer {
		text-align: center;
	}

	.template-5 .page-banner-icon,
	.template-5 .page-banner .title {
		float: none; 
		margin-left: 0;
		margin-right: 0;
	}

	.template-5 .page-banner .title {
		float: none;
		margin-top: 10px;
		margin-bottom: 5px;
	}

	.opportunity-content .title {
		text-align: center;
	}
}

.opportunity-content .opportunity-box:nth-child(2) {
	background-color: #c2dee6;
}

.opportunity-content .opportunity-box:nth-child(3) {
	background-color: #b0d6e6;
}

.opportunity-content .opportunity-box:nth-child(4) {
	background-color: #a5ccdc;
}

.slick-list {
	min-height: 106px;
}

.slide .answer-text input {
	height: 45px;
	line-height: 1;
}

@media (max-width: 640px) {
	#mc_embed_signup .mc-field-group {
		display: block !important;
	}

	#mc_embed_signup .mc-field-group .button,
	#mc_embed_signup .mc-field-group .email {
		width: 100% !important;
		margin-top: 10px !important;
	}
}

/* Homepage custom */
.round-button {
	display: inline-block;
	height: 42px;
	background: #ff8d26;
	border-radius: 100px;
	margin-top: 40px;
	font-size: 1.2em;
	color: #faf9ff;
	text-decoration: none;
	line-height: 42px;
	padding: 0 1.4em;
	transition: .3s ease;
}

.round-button .fa {
	transition: .3s ease;
	transform: translateX(5px);
}

.round-button:hover {
	background: #ff9637;
}

.round-button:hover .fa {
	transform: translateX(10px);
}

.tile {
	transition: .2s ease;
	text-decoration: none;
	position: relative;
}

.tile h3 {
	color: #333;
	font-size: 18px;
	font-weight: 500;
}

.tile:hover {
	transform: scale(1.1);
}

.tile .fa {
	font-size: 42px;
	margin-bottom: 20px;
}

@media (max-width: 767px) {
	.tile {
		width: 100%;
		flex: 0 0 calc(50% - 20px);
		flex-basis: calc(50% - 20px);
	}

	.tile .fa {
		font-size: 25px;
	}

	.tile h3 {
		font-size: 15px;
	}
}

/* FILTERS START */
.filter-wrapper {
	margin: 0 0 30px 0;
	text-shadow: none;
}

.filter-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.filter-apply:hover,
.filter-toggle:hover,
.dxplm-load-more:hover,
.filter-apply:focus,
.filter-toggle:focus,
.dxplm-load-more:focus {
	text-decoration: none !important;
	color: white !important;
	background: #e53e87;
	outline: none;
}

.dxplm-load-more-container {
	text-align: center;
}

a.filter-clear {
	background: transparent;
	color: #848484;
	padding: 0;
	text-transform: none;
}

.filter-group-order,
a.filter-clear {
	transform: translateY(30px);
	transition: .5s;
	opacity: 0;
	pointer-events: none;
}

.filter-body {
	display: none;
	background: white;
	box-shadow: 1px 0px 5px rgba(0,0,0,0.3);
	border-top: 3px solid #ed1e79;
	padding: 40px;
}

.filter-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

.filter-group {
	flex: 0 0 225px;	
	margin-right: 15px;
}

.filter-group label {
	color: black;	
}

.filter-group select {
	background: #D4E7E5;
	border-color: #BFD8D5;
	color: #344960;
	font-size: 14px;
	font-weight: normal;
	border: 1px solid #BFD8D5;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	display: block;
	height: 45px;
	line-height: 45px;
	padding: 0px 15px;
	width: 100%;
	appearance: none;
	/* this is must */
	-webkit-appearance: none;
	-moz-appearance: none;
}

.filter-cta {
	flex: 1 1 auto;
	text-align: right;
}

.filter-apply-label {
	display: block;
	visibility: hidden;
}

a.filter-apply {
	opacity: .3;
	pointer-events: none;
	cursor: not-allowed;
	transition: .3s;
}

.has-filters a.filter-apply {
	opacity: 1;
	pointer-events: all;
	cursor: pointer;
}

.has-filters .filter-clear,
.has-filters .filter-group-order {
	transform: translateY(0);
	transition: .5s;
	opacity: 1;
	pointer-events: all;
}

@media (max-width: 820px) {
	.filter-row {
		/* flex-direction: column; */
		width: 100%;
	}

	.filter-group {
		flex: 0 0 calc(50% - 15px);
		margin: 0;
	}
}

@media (max-width: 520px) {
	.filter-row {
		/* flex-direction: column; */
		width: 100%;
	}

	.filter-group {
		flex: 0 0 100%;
		margin: 0 0 20px;
	}
}
/* FILTERS END */

@media (min-width: 480px) and (max-width: 768px) {
	.opportunity-boxes {
		display: flex; 
	}
}

@media (max-width: 480px) {
   .opportunity-content .opportunity-box {
	   width: 100%;
   }
}

/* BACK TO TOP BUTTON START */
.back-to-top {
	background: #333;
	position: fixed;
	z-index: 999;
	bottom: 10px;
	right: 10px;
	border-radius: 3px;
	cursor: pointer;
}

.back-to-top {
	transform: translateY(100px);
	transition: .3s ease;
}

.back-to-top.is-visible {
	transform: translateY(0);
}

.back-to-top .fas {
	transform: rotate(90deg);
	padding: 13px 20px;
	font-size: 28px;
	color: #FFF;
}
/* BACK TO TOP BUTTON END */

.guides .page-buttons a {
	display: inline-block;
	text-align: left;
	height: 32px;
	padding: 0 14px;
	background: #01a787;
	line-height: 32px;
	border-radius: 4px;
	text-decoration: none;
	color: #FFF;
}

.guides .page-buttons {
	text-align: center;
	display: inline-block;
	margin: 0 auto;
	width: 100%;
	margin-top: 40px;
}
.guides .page-buttons a {
	display: inline-block;
	text-align: left;
	height: 32px;
	padding: 0 14px;
	background: #01a787;
	line-height: 32px;
	border-radius: 4px;
	text-decoration: none;
	color: #FFF;
}

@media (min-width: 768px) {
	.opportunity {
		display: flex;
		flex-wrap: wrap;
	}

	.opportunity-image {
		-ms-grid-row-align: center;
		align-self: center;
	}

	.opportunity-cta {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		padding: 20px 0;
	}
}

@media (min-width: 768px) and (max-width: 1024px){
	.opportunity-boxes {
		width: 100%;
	}

	.opportunity-image {
		max-width: 20% !important;
		flex: 0 0 20%;
		padding: 0 20px;
		justify-content: center;	
	}
	
	.opportunity-content {
		flex: 1;
		flex-wrap: wrap;
	}

	.opportunity-image {
		width: 100%;
		flex: 0 0 20%;
		display: flex;
		flex-flow: row wrap;
	}
	
	.opportunity-cta {
		display: flex;
		justify-content: center;
		align-items: center;
		flex: 1 1 100%;
	}
}

.ctdebt-checker-slider-form:not(.slick-initialized) .slide {
	display: none;
}

.ctdebt-checker-slider-form:not(.slick-initialized) .slide:first-child {
	display: block;
}

.page-template-template-guides-archive .page-banner {
	padding: 40px 0 75px;
}

@media screen and (max-width: 992px) {
	.page-template-template-guides-archive .topNav .menu .menu-icon {
		top: 11px;
	}
}

.for-regulators p {
	margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
	.for-regulators {
		padding: 10px;
	}
	.for-regulators p {
		font-size: 11px;
	}
}

@media screen and (min-width: 768px) {
	.for-regulators {
		padding: 10px;
	}
	.for-regulators p {
		font-size: 12px;
	}
}

.expand-button {
	position: absolute;
	bottom: -3px;
	right: 10px;
	z-index: 101;
	display: none;
}

@media (max-width: 768px) {
	.expandable {
		max-height: 60px;
		position: relative;
		overflow: hidden;
		transition: 1.2s linear;
		transition-delay: .1s;
		z-index: 101;
	}

	.expandable.is-expanded {
		max-height: 600px;
	}

	.expandable.is-expanded:before,
	.expandable.is-expanded .expand-button {
		display: none;
	}

	.expandable:before {
		background: -webkit-linear-gradient(bottom, rgba(255,255,255,1) 35%, rgba(255,255,255,0) 100%);
		background: -o-linear-gradient(bottom, rgba(255,255,255,1) 35%, rgba(255,255,255,0) 100%);
		background: linear-gradient(to top, rgba(255,255,255,1) 35%, rgba(255,255,255,0) 100%);
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		content: '';
		display: block;
	}

	.expandable:before {
		background: -webkit-linear-gradient(bottom, rgba(255,255,255,1) 35%, rgba(255,255,255,0) 100%);
		background: -o-linear-gradient(bottom, rgba(255,255,255,1) 35%, rgba(255,255,255,0) 100%);
		background: linear-gradient(to top, rgba(255,255,255,1) 35%, rgba(255,255,255,0) 100%);
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		content: '';
		display: block;
	}

	.expand-button {
		display: block;
	}
}

.expand-button {
	position: absolute;
	bottom: -3px;
	right: 10px;
	z-index: 101;
}

.button.faded {
	opacity: 0.4;
}

@media (max-width: 1024px) {
	.opportunity-cta {
		display: flex;
		vertical-align: middle;
		padding: 20px;
	}

	.opportunity-cta .button:first-child {
		order: 1;
		display: flex;
		flex: 1;
		align-items: center;
		justify-content: center;
	}

	.opportunity-cta .button:nth-child(2) {
		max-width: 50%;
		font-size: 10px;
		margin-right: 10px;
	}
}

@media (max-width: 768px) {
	.opportunity-cta .button:nth-child(2) {
		max-width: 100px;
	}
}

.home_content {
	text-align: center;
	background-color: #E3F2FC;
	padding: 30px;
}

.home_content ul {
	text-align: left;
	width: 40%;
	margin: auto;
}

.home_content ul li::before {
	content: "\2022";
	font-weight: bold;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}

@media screen and (max-width: 768px) {
	.home_content ul {
		width: 70%;
	}
}

div.item-content div.title {
	font-size: 19px;
	padding-bottom: 15px;
	color: #0071bc;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
}


/* Reviews */
.reviews {
	background: #fafafa;
}

.star-ratings {
	margin: 20px 0;
}

.trustpilot-outer {
	text-align: center;
	margin-bottom: 40px;
}

.reviews-outer {
	width: 100%;
	float: none;
}

@media (min-width: 1200px) {
	.reviews .review {
		width: 33%;
		flex-basis: calc(33% - 20px);
	}
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.reviews .review {
		width: 50%;
		flex-basis: calc(50% - 72px);
		margin-right: 20px;
	}
}

@media (max-width: 1023px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.reviews .review {
		width: 100%;
		flex-basis: calc(100%);
		margin-right: 0px;
	}
}

@media (min-width: 1200px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.reviews .review {
		width: 33%;
		flex-basis: calc(33% - 70px);
		margin-right: 20px;
	}
}

/* Reviews END */

.lender-profile #ez-toc-container ul li:before {
	display: none;
}

.template-5-editable .page-banner-button a {
	border: 0;
	color: #fff;
	line-height: 1;
	padding: 15px 30px;
	background-color: #ff8d26;
	display: inline-block;
	text-decoration: none;
}
.template-5-editable .page-banner-button a:focus,
.template-5-editable .page-banner-button a: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);
}

.template-5-editable .page-banner-button {
	margin: 20px 0;
}

.text-center {
	text-align: center;
}

.template-5-editable .page-banner-content,
.template-5 .page-banner-content {
	width: 100%;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.template-5 .opportunity-image img {
		height: auto;
	}
}

.sticky-cta-footer {
	z-index: 1999;
	width: 100%;
	position: fixed;
	left: 0;
	bottom: -100px;
	background-color: #FFF851;
	transition: all .3s ease-in-out;
	padding: 8px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
}


.sticky-cta-footer.is-visible {
	bottom: 0;
}

.sticky-footer-container {
	display: flex;
	margin: auto;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.sticky-footer-apply-wrap {
	display: flex;
    flex-direction: column;
    margin-left: 15px;
}

.sticky-footer-apply {
	background-color: #000;
	color: #fff;
	padding: 8px 10px!important;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	margin: auto;
	border-radius: 30px;
	cursor: pointer;
	transition: .2s ease-in-out;
	-webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.6);
	-moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.6);
	box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.6);
	font-weight: 700;
}

.apply-now-right-triangle {
	color: #008607;
	background-color: #fff;
	border-radius: 50%;
	padding: 4px 8px;
	width: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 10px;
}

.sticky-footer-copy {
	font-size: 16px!important;
	line-height: 1.3em!important;
	display: block;
	max-width: 100%;
	text-align: center;
	color: #000!important;
	font-weight: 700;
	margin: 0;
}

.sticky-footer-inner {
	display: flex;
    flex-direction: row;
    padding: 0px 0px;
    text-align: center;
	align-content: center;
	align-items: center;
}

@media (min-width: 960px) {
	.sticky-footer-apply-wrap {
		flex-direction: row;
		align-items: center;
	}

	.sticky-footer-copy {
		margin-right: 15px;
	}
}

@media (max-width: 960px) {
	.sticky-footer-copy {
		margin-bottom: 10px;
	}
}