/*
Theme Name: Wevorce
Author: Becca Owens
Description: Wevorce custom WordPress theme
Version: 0.0.1
Tags: right-sidebar, theme-options, featured-images,rtl-language-support,grid-layout, editor-style, custom-header, threaded-comments, custom-background, custom-colors, blog, footer-widgets

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
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}

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: 'Open Sans', sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em 20px;
}

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;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
	padding: 0;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

a:visited {
	color: purple;
}

a:hover,
a:focus,
a:active {
	color: midnightblue;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.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;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.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. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.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%;
}
.widget-title {
	display: none;
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


/*--------------------------------------------------------------
## Main style starts here
--------------------------------------------------------------*/
a,a:visited{color:#F66062;text-decoration: none;}
a:hover{color: #333;}
img,input,.btn,a,a:hover,a:active,a:focus{text-decoration: none;-webkit-transition: all 0.3s ease-in-out;-moz-transition: all 0.3s ease-in-out;-ms-transition: all 0.3s ease-in-out;-o-transition: all 0.3s ease-in-out;transition: all 0.3s ease-in-out;outline:0 ;}

h1,h2,h3,h4,h5,h6{font-weight: 300;margin: 0;}
h1{font-size: 2.5em;}
h2{font-size: 2em;}
h3{font-size: 1.5em;margin:0 0 10px 0;}
h4,h5,h6{font-size: 1em;}
h4{letter-spacing: 2px; text-transform: uppercase;border-bottom: 2px solid #F66062;display: inline-block;padding-bottom: 10px;margin-bottom:20px;color: #333;}

a.readmore{font-size: 0.8em;text-transform: uppercase;letter-spacing: 3px;}
.spacer{padding-top: 60px; padding-bottom: 60px;}
.logged-in header .navbar-default{top: 32px;}


/*header*/
header .logo-tag{margin:5px 0;}
header .logo-tag h1{margin:6px 0;font-size: 1.5em;}
header .logo-tag h1 a:hover{text-decoration: none;}
header .logo-tag h2{margin: 0;color:#666;font-size: 0.8em;font-weight: 300;letter-spacing: 2px;text-transform: uppercase;}
header .navbar-collapse{padding: 0;}
header .navbar-form {margin-top: 0;margin-bottom: 0;}
header .navbar-form .main-search{position: relative;}
header .navbar-form .main-search .btn .fa{font-size: 1.5em;}
header .navbar-form .btn{background: #F66264; padding: 0 21px;box-shadow: none;border: none;color: #fff;text-shadow: none;line-height: 55px;border-radius: 0;outline: none !important;}
header .navbar-form .search-box{position: absolute;right: 0;}
header .navbar-form .search-box .well{border: none;border-radius: 0;padding: 10px;background: #fff;width: 250px;}
header .navbar-form .search-box .well input{border: 0;border-radius: 0;background: #ddd;color: #000;font-size: 0.8em;width: 100%;box-shadow: none;padding: 10px;}
header .navbar-form .nav{margin:0;}
header .navbar-default{background:none; border:none;margin: 0;background:#fff;}
/*header*/


/* theme slider */
.theme-slider .carousel-control{width: 5%;background: none;}
.theme-slider .carousel-inner .item img{width: 100%;}
.theme-slider .carousel-inner .item .slide-caption{position: absolute;top: 50%;width: 100%;color: #fff;transform: translateY(-50%);-moz-transform: translateY(-50%);-webkit-transform: translateY(-50%);transform: translateY(-50%);}
.theme-slider .carousel-inner .item .slide-caption h4{color: #fff;}
.theme-slider .carousel-inner .item .slide-caption .summary{font-size: 1.75em; font-weight: 400;line-height: 30px;margin-bottom: 20px;}
.theme-slider .carousel-inner .item .slide-caption .summary p{margin: 0;}
.theme-slider .carousel-inner .item .slide-caption .slide-caption-details{width: 45%;}
.theme-slider .glyphicon-chevron-right:before,.theme-slider .glyphicon-chevron-left:before{display: none;}
/* theme slider */


/*welcome*/
.welcome{background: #fff;height: 302px;}
.welcome div{height: 100%;}
.welcome .message{background-color:#F66062;color: #fff;padding: 30px;position: relative;}
.welcome .message h1{position: absolute;top: 50%;font-size: 1.95em; transform: translateY(-50%);-moz-transform: translateY(-50%);-webkit-transform: translateY(-50%);transform: translateY(-50%);}
/*welcome*/

/*post*/
.eq-blocks{margin-bottom: 30px;}
.post-list .post-block img{transform: scale(1);}
.post-list .post-block img:hover{transform: scale(1.07);}
.post-info{font-size: 0.8em;}
.post-info a{margin-right: 5px;}
.post-info ul{margin: 0; padding: 0; list-style: none; line-height: 15px;float: left;width: 100%;}
.post-info ul li{display: inline-block;}
/*post*/


/*navigation*/
.navigation.posts-navigation{clear: both;}


.scroll-top-wrapper{position: fixed;right:30px;bottom:30px;background-color: #F66062;color: #fff;border-radius: 50%;width: 30px;height: 30px;text-align: center;cursor: pointer;opacity: 0.5;}
.scroll-top-wrapper:hover{opacity: 1;}

footer{background-color: #fff;padding: 15px 0;font-size: 0.8em;}
footer .social a{font-size: 15px;}
footer ul{margin:0; }

footers{background-color: #fff;
    padding: 15px 0;}

.comments-area{margin-top: 30px;border-top: 1px dotted #ccc;padding-top: 30px;}
.comments-area h2{margin-bottom: 15px;}
.comments-area ol{margin: 0;list-style: none;}
.comments-area ol.comment-list{padding: 0;}
.comments-area ol.comment-list article{margin-bottom: 15px;background: #fff;padding: 15px; border-radius: 5px;}
.comments-area footer{background: none;padding: 0;}

.comments-area .comment-form label,.comments-area .comment-form input{display: block;font-weight: 300;}
.comments-area .comment-form input,.comments-area .comment-form textarea{border:1px solid #ddd;border-radius: 0;box-shadow: none;padding: 10px;width: 100%;}
.comments-area .comment-form .form-submit input{background:#F66264;color: #fff;text-transform: uppercase;letter-spacing: 3px;border:none; }


/*widget*/
.widget{margin-bottom: 30px;padding: 15px;background: #fff;}
.widget ul,.widget ol{margin: 0;padding-left: 15px;}



@media (max-width: 991px){
	h1 {font-size: 2em;}
	header .navbar-default .navbar-nav>li>a{padding: 15px 10px;}
	header .logo-tag h1{font-size: 1em;margin-top: 15px;}
	header .logo-tag h2{font-size: 0.5em;letter-spacing: 1px;}
	.theme-slider .carousel-inner .item .slide-caption .summary{    font-size: 1.25em;    line-height: 20px;}
	.welcome{height: 358px;}
}
@media (max-width: 767px){
	header .navbar-default .navbar-nav>li>a{padding: 5px 30px;}
	header .navbar-nav{display: block;margin-top:0; }

	header .navbar-nav .dropdown-menu{margin-left: 5px;}
	h4{margin-bottom: 10px;}
	.navbar-default .navbar-collapse, .navbar-default .navbar-form {border:none;}
	.main-search{display: none;}
	.theme-slider .carousel-inner .item .slide-caption{position: static;background: #333;padding:15px 0;transform: translateY(0);-moz-transform: translateY(0);-webkit-transform: translateY(0);transform: translateY(0);height: 155px;}
	.theme-slider .carousel-inner .item .slide-caption .summary {font-size: 1em;line-height: 15px;}
	.theme-slider .carousel-inner .item .slide-caption .slide-caption-details {width: 100%;}
	.theme-slider .carousel-control{display: none;}

	.spacer {padding-top: 30px;padding-bottom: 30px;}
	.welcome{height: inherit;}
	.welcome .message{height: 150px;}

	.post-list .post-block{height: auto;}

	ul{margin: 0; padding-left: 15px;}
}

/*--------------------------------------------------------------
## Wevorce style starts here
--------------------------------------------------------------*/

/* general */
html {
	background: #f5f5f5;
}
body {
	min-width: 320px;
	background: white;
	font-size: 16px;
	color: #6a6c72;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
a,
a:link {
	color: #70ad1a;
	font-weight: 600;
	cursor: pointer;
}
a:visited {
	color: #71bcce;
}
a:active,
a:hover {
	color: #23527c;
	text-decoration: none;
}
a[href^="tel:"],
a[href^="tel:"]:link {
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	margin-bottom: .75em;
	padding: 0;
	border: none;
	color: #555;
	font-weight: 400;
}
h5 {
	font-weight: 600;
}
p {
	margin: 0 0 20px 0;
}
small.fees {
	display: block;
	font-size: 13px;
	text-align: center;
}
.sectionGray,
.sectionTeal,
.sectionWhite {
	overflow: auto; /* Clears floating children */
	padding: 100px 0;
}
.sectionGray {
	background: #fafafa;
}
.sectionTeal {
	padding: 35px 30px;
	background: #00c7b1;
	color: white;
}
.section-title {
	margin-bottom: 30px;
}
.postConversionText {

}
.postContent {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 405px);
	padding-right: 40px;
}
.postSidebar {
	display: inline-block;
	vertical-align: top;
	width: 300px;
	margin-right: 100px;
	font-size: 14px;
}
.postSidebar hr {
	height: 0;
	margin: 20px 0 0;
	padding-bottom: 20px;
	background: none;
	border-top: solid 1px #d3d3d3;
}
.postSidebar a {
	color: #4a4a4a;
}
.postSidebar i {
	vertical-align: middle;
	margin-right: 25px;
	font-size: 30px;
	color: #00c7b1;
}
.postSidebarHeader {
	margin-bottom: 20px;
}
.postSidebarHeader.michelleIntro {
	margin-bottom: 10px;
	min-height: 113px;
	padding-left: 130px;
	background: url(../wevorce/images/mobile_michelle.jpg) no-repeat;
	background-size: 108px;
}
.postSidebarHeader h3 {
	margin-bottom: 0;
}
.postSidebarHeader span {
	font-size: 13px;
}
.guaranteeSeal {
	position: relative;
}
.guaranteeSeal button {
	position: absolute;
	top: 0;
	right: 0;
	width: 118px;
	height: 118px;
	background: url(https://www.wevorce.com/blog/wp-content/uploads/2018/03/seal3.png) no-repeat;
	background-size: contain;
}

@media (max-width: 1200px) {
	.postContent {
		width: calc(100% - 305px);
	}
	.postSidebar {
		margin-right: 0;
	}
}
@media (max-width: 991px) {
	.postContent,
	.postContent article,
	.postSidebar {
		display: block;
		margin: 0 auto;
	}
	.postContent {
		width: 100%;
		padding-right: 0;
	}
}
@media (max-width: 767px) {
	.sectionGray,
	.sectionTeal,
	.sectionWhite {
		padding: 40px 0;
	}
}
/**/

/* header */
header .container {
	max-width: 1145px;
}
.logo-menu {
	height: 70px;
}
header img.logo {
	float: left;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	height: 50px;
}
header img.logo.desktop {
	height: 34px;
	margin-top: 18px;
}
header img.logo.mobile {
	height: 40px;
	margin-top: 15px;
}
.main-search {
	display: none;
}
header .container > .navbar-header {
	min-width: 295px;
	height: 70px;
	margin: 0;
}
header .navbar-header .pull-right li {
	float: left;
}
header .navbar-default {
	z-index: 10;
	margin-bottom: 0;
	height: 70px;
	background: #fff;
	border: none;
	border-radius: 0;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
}
header .navbar-header .pull-right li a,
header .navbar-default .navbar-nav li a {
	margin-left: 30px;
	padding: 0;
	font-size: 16px;
	color: #71bcce;
	line-height: 70px;
	font-weight: 400;
}
header .navbar-header .pull-right li a:hover,
header .navbar-default .navbar-nav li a:hover {
	color: #19788f;
}
header .navbar-header .pull-right .active a,
header .navbar-default .navbar-nav > .active > a {
	background: none;
	color: #19788f;
}
header .navbar-header .pull-right .active a:hover,
header .navbar-default .navbar-nav > .active > a:hover {
	background: none;
}
header .navbar-header .pull-right li.nav-button a,
header .navbar-default .navbar-nav li.nav-button a {
	background-color: white;
	border: 2px solid #95c75e;
	border-radius: 5px;
	box-sizing: border-box;
	color: #95c75e;
	font-size: 16px;
	line-height: 19px;
	margin-left: 30px;
	margin-top: 16px;
	padding: 9px 15px;
	transition: background 0.5s ease 0s, border 0.5s ease 0s;
}
header .navbar-header .pull-right li.nav-login a,
header .navbar-default .navbar-nav li.nav-login a {
	text-transform: uppercase;
	font-weight: 600;
}
header .navbar-header .pull-right li.nav-button a:hover,
header .navbar-default .navbar-nav li.nav-button a:hover {
	background-color: #95c75e;
	color: white;
}
.navbar-default .navbar-toggle {
	background-color: #a4d65e;
	border: none;
	color: white;
	font-size: 31px;
	height: 45px;
	line-height: 31px;
	margin: 12px 0 0 0;
	padding: 0;
	width: 45px;
}
.navbar-default .navbar-toggle:hover {
	background: white;
}
.navbar-default .navbar-toggle:focus {
	background: #71bcce;
}
.navbar-default .navbar-toggle.collapsed {
	background-color: white;
	color: #a4d65e;
}
.navbar-default .navbar-toggle.collapsed .icon-bar {
	background-color: #71bcce;
}
.navbar-default .navbar-toggle .icon-bar {
	width: 26px;
	height: 4px;
	margin: 0 auto;
	background-color: white;
	border-radius: 2px;
}
.navbar-default .navbar-toggle .icon-bar + .icon-bar {
	margin-top: 5px;
}
.navbar.navbar-default .navbar-collapse ul.nav {
	float: right;
	list-style: none outside none;
}
.navbar.navbar-default .navbar-collapse.in {
	overflow: visible;
}
.navbar.navbar-default .navbar-collapse.in .nav {
	display: inline;
	position: absolute;
	right: 15px;
}
header .navbar-header .dropdown-menu,
header .navbar-nav .dropdown-menu {
	border: none;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
	left: 0;
	padding: 0;
	right: auto;
}
header .navbar-header .dropdown-menu li,
header .navbar-nav .dropdown-menu li {
	clear: both;
	width: 100%;
	margin: 0;
}
header .navbar-header .dropdown-menu li a,
header .navbar-nav .dropdown-menu li a {
	margin: 0;
	padding: 25px 20px;
	background: #71bcce;
	font-size: 16px;
	color: white;
	line-height: 11px;
}
header .navbar-header .dropdown-menu li a:hover,
header .navbar-nav .dropdown-menu li a:hover {
	background: #3892a8;
	color: white;
}
.intro {
	position: relative;
}
.intro-image {
	width: 100%;
	height: 430px;
	background: linear-gradient(rgba(102,102,102,.5), rgba(102,102,102,.5)), url(../wevorce/images/cropped-home-header.jpg) no-repeat;
	background-position: center;
	background-size: cover;
}
.intro h1 {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate(-475px, 0);
	margin: 0;
	font-weight: 300;
	font-size: 45px;
	color: white;
	line-height: 1.2;
	text-shadow: 0 0 7px rgba(0,0,0,.75);
}
.page-about-us .intro-image {
	max-height: 478px;
	background-image: url(../wevorce/images/hero-about.jpg);
}
.introText {
	max-width: 750px;
	margin: 0 auto;
}
.intro-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: 3;
	text-align: center;
	text-shadow: 0 0 7px rgba(0,0,0,.75);
}
.intro-content p {
	max-width: 800px;
	margin: 10px auto;
	font-size: 20px;
	color: white;
	text-align: center;
}
.intro-title {
	margin: 0 0 20px;
	font-weight: 300;
	font-size: 45px;
	color: white;
	line-height: 1.2;
	text-shadow: 0 0 7px rgba(0,0,0,.75);
	text-align: center;
}
.intro-title span {
	font-size: 32px;
	display: block;
	font-style: italic;
	font-weight: normal;
}
.intro-title span strong {
	font-style: normal;
}
.intro-title small {
	font-size: 20px;
	font-weight: normal;
	display: block;
}
@media (min-width: 768px) {
	header .navbar-header {
		display: none;
	}
	header .navbar-nav.navbar-right {
		margin-right: 0;
	}
}
@media (max-width: 991px) {
	header .navbar-header .pull-right li a,
	header .navbar-default .navbar-nav li a {
		margin-left: 20px;
		letter-spacing: -.05em;
	}
	header .navbar-nav .dropdown-menu li a {
		margin: 0;
	}
	.intro h1 {
		transform: translate(-350px, 0);
	}
}
@media (max-width: 767px) {
	header .logo-tag {
		margin: 0 0 0 15px;
	}
	header img.logo.mobile {
		height: 30px;
		margin-top: 22px;
	}
	header .navbar-header .pull-right li.nav-button a {
		margin: 16px 10px 0 20px;
	}
	header .navbar-nav .dropdown-menu {
		position: static;
		width: 100%;
		margin-left: 0;
		background: #f7f7f7;
		box-shadow: none;
	}
	header .navbar-default .navbar-nav .dropdown-menu li a {
		margin: 0;
		padding:20px 25px 20px 50px;
		background: rgba(113,188,206,.8); /* #71bcce */
		color: white;
		line-height: 11px;
	}
	header .navbar-header .dropdown-menu {
		margin: 0;
	}
	header .navbar-header .dropdown-menu li a {
		margin: 0;
		box-shadow: none;
	}
	.navbar-collapse ul.nav.navbar-nav {
		width: 100%;
		display: none;
		box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
	}
	.navbar-collapse.in ul.nav.navbar-nav {
		display: block;
		max-height: calc(100vh - 70px);
		overflow-y: scroll;
		-webkit-overflow-scrolling:touch; // mobile safari
		margin: -7px 0 0;
		background: #71bcce;
	}
	.navbar-collapse ul.nav.navbar-nav li {
		float: none;
		clear: both;
		z-index: 10;
		margin: 0;
		border-top: solid 1px #eeeff1;
		text-align: left;
	}
	.navbar-collapse ul.nav.navbar-nav li:nth-child(n+5) {
		border-top: none;
	}
	.navbar-collapse ul.nav li {
		border-top: none;
		text-align: center;
	}
	.navbar-collapse ul.nav li a {
		margin-left: 0;
		padding: 20px 25px;
		color: white;
		font-weight: 700;
		line-height: 11px;
	}
	.navbar-collapse ul.nav li.nav-button a {
		margin: 0 20px 0 20px;
		padding: 15px;
		background: #71bcce;
		border: solid 2px white;
		color: white;
		line-height: 19px;
	}
	.navbar-collapse ul.nav li.nav-button a:hover {
		background-color: #5aaabe;
	}
	.intro h1 {
		left: initial;
		transform: none;
		padding: 0 30px;
		font-size: 35px;
	}
	.intro-image {
		height: 160px;
	}
}
@media (max-width: 710px) {
	.nav > li.nav-product {
		display: none;
	}
}
@media (max-width: 599px) {
	.nav > li.nav-company {
		display: none;
	}
	header .navbar-header li a {
		margin-left: 15px;
	}
	header .navbar-header .pull-right li.nav-button a {
		padding: 9px 5px;
	}
}
@media (max-width: 479px) {
	.nav > li.nav-blog {
		display: none;
	}
	header .navbar-header .pull-right li.nav-button a {
		margin: 16px 10px 0 20px;
	}
}
@media (max-width: 424px) {
	.nav > li.nav-free {
		display: none;
	}
}
/**/

/* blog */
.postLoop,
.post-block {
	height: 100%;
	margin-left: -15px;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.recentPostThumbnail,
.post-block a {
	display: block;
	max-height: 150px;
	overflow: hidden;
	object-fit: cover;
	margin-bottom: 15px;
}
.recentPostThumbnail img:hover {
    transform: scale(1.07);
}
.post-list .post-block .summary {
	padding: 0;
}
.post-block h3,
.postLoop h2 {
	margin-bottom: 15px;
	line-height: 1.3;
}
.postAuthor,
.postDate {
	display: inline-block;
	margin-bottom: .75em;
	font-size: 12px;
}
.postDate {
	margin-right: 10px;
	padding-right: 10px;
	border-right: solid 1px #ccc;
}
@media (max-width: 767px){
	.postLoop {
		height: auto;
	}
	.recentPostThumbnail {
		float: left;
		margin: 0 15px 10px 0;
	}
}
@media (max-width: 479px) {
	.recentPostThumbnail {
		float: none;
	}
}
.widget_categories {
	padding: 0;
}
.widget_categories h3 {
	margin-bottom: 30px;
	font-size: 28px;
	font-weight: 300;
}
.widget_categories ul {
	padding: 0;
	list-style-type: none;
	border-top: solid 1px #eeeff1;
}
.widget_categories .cat-item {
	border-bottom: solid 1px #eeeff1;
	list-style-type: none;
	font-size: 18px;
	line-height: 1.2;
}
.widget_categories .cat-item a {
	display: block;
	padding: 5px 10px;
	font-size: 14px;
	color: #555;
	font-weight: 400;
}
.widget_categories .cat-item a:hover,
.widget_categories .current-cat {
	background: #f7f7f7;
	color: #9bbf72;
}
.widget_text {
	padding: 0;
}
.learn-cta-compact {
	margin: 0 0 40px;
}
.learn-cta-compact p {
	margin-bottom: 10px;
	font-size: 13px;
	color: #71bcce;
	font-weight: 600;
	line-height: 1.2;
}
.learn-cta-compact .btn {
	min-width: 200px;
	margin: 0;
}
.single-post .post-meta-info {
	max-width: 600px;
	font-size: 13px;
	color: #ccccc8;
}
.single-post .fa {
	margin-right: 0;
}
.single-post .fa-comments-o {
	display: none;
}
.single-post .intro {
	display: none;
}
.post-template-default article {
	font-size: 20px;
}
.page-title {
	margin-bottom: 0;
}
.page-title h1 {
	margin-bottom: .25em;
	border: none;
	font-size: 38px;
	color: #555;
	font-weight: 600;
}
.post-info {
	font-size: 18px;
}
.post-info ul {
	line-height: 1.5;
}
.post-info ul li {
	display: block;
}
.post-content figure {
	display: none;
}
body.single-post article {
	max-width: 600px;
}
article a.btn {
	min-width: 200px;
	margin: 20px 0 0;
	text-decoration: none;
}
article h2 {
	margin-bottom: 25px;
	font-size: 1.5em;
	font-weight: 300;
}
article ol,
article ul {
	margin-left: 50px;
	padding: 0;
}
.category .intro-image,
.author .intro-image,
.date .intro-image,
.page-divorce-calculator .intro-image,
[class*="page-child-support-calculator"] .intro-image {
	height: 230px;
}
.category .intro h1,
.author .intro h1,
.date .intro h1,
.page-divorce-calculator h1,
.page-child-support-calculator h1 {
	top: 50%;
	width: 90%;
	font-size: 45px;
}
.category .page-title h1 {
	display: none;
}
.postConversionText {
	font-size: 20px;
}
.shareThis,
.relatedPosts {
	margin-top: 30px;
}
.relatedPosts {
	width: 100%;
}
.relatedThumb {
	max-width: 147px;
	margin: 0 10px 10px 0;
	padding: 10px;
	border: solid 1px #ccccc8;
}
.relatedThumb a:link {
	color: #70ad1a;
	font-weight: 600;
}
.relatedThumb div {
	margin-top: 10px;
	font-size: 13px;
}
.learn-cta-full {
	margin: 40px 0 0;
	padding: 40px 0;
	border-top: solid 1px #ccccc8;
	border-bottom: solid 1px #ccccc8;
	font-size: 16px;
}
.learn-cta-full p {
	margin-bottom: 0;
}
.learn-cta-full h2 {
	margin: 0 0 15px;
	font-size: 42px;
	color: #3fbfb0;
	font-weight: 400;
	line-height: 44px;
}
.learn-cta-full ul {
	margin: 20px 0 20px 15px;
}
.learn-cta-full li {
	margin-bottom: 10px;
}
.learn-cta-full.sidebar {
	margin: 0;
	padding: 10px;
	background: #f5f5f5;
	border: none;
	font-size: 15px;
}
.learn-cta-full.sidebar h2 {
	margin: 10px 0 15px;
	font-size: 24px;
	line-height: 1.2;
}
.learn-cta-full.sidebar ul {
	margin: 10px 0 5px 2px;
}
.learn-cta-full.sidebar .btn-post-cta {
	margin: 0;
	padding: 0 10px;
	font-size: 15px;
}
.comments-area {
	display: none;
}

@media (min-width: 768px) {
	header .container {
		width: 100%;
	}
}
@media (max-width: 991px) {
	.post-template-default .container {
		width: 100%;
	}
	.single-post .post-meta-info {
		margin: 0 auto;
	}
	.learn-cta-full {
		margin-bottom: 0;
		padding: 40px 0;
	}
	.learn-cta-compact {
		display: none;
	}
}
@media (max-width: 767px) {
	.post-template-default .container {
		width: calc(100% - 20px);
	}
	.page-title h1 {
		font-size: 30px;
	}
	article h2 {
		font-size: 20px;
	}
	.post-template-default article {
		font-size: 18px;
	}
	.learn-cta-full {
		border: none;
	}
	.widget_categories ul {
		margin: 0 -15px;
	}
	.widget_categories .cat-item a {
		padding: 5px 20px;
	}
	.category .intro h1,
	.author .intro h1,
	.date .intro h1 {
		font-size: 34px;
	}
	.relatedThumb {
		margin: 0 0 10px 0;
	}
	.learn-cta-full h2 {
		font-weight: 600;
		font-size: 30px;
		line-height: 32px;
	}
}
@media (min-width:1024px) and (max-width: 1199px) {
	.learn-cta-full.sidebar .btn {
		margin: 0 -10px -10px;
	}
}
/**/

/* Pagination */
.custom-pagination {
	clear: both;
	padding: 30px 0 0;
	text-align: center;
}
.custom-pagination span,
.custom-pagination a {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
}
.custom-pagination a {
  background-color: #ebebeb;
  color: #71bcce;
}
.custom-pagination a:hover {
  background-color: #71bcce;
  color: #fff;
}
.custom-pagination span.page-num {
  margin-right: 10px;
  padding: 0;
}
.custom-pagination span.dots {
  padding: 0;
  color: #ccc;
  font-size: 1.5em;
}
.custom-pagination span.current {
  background-color: #71bcce;
  color: #fff;
  font-weight: 700;
}
/**/

/* About Us */
.page-about-us .container {
	max-width: 1100px;
}
.page-about-us article {
	margin: 0 auto;
	font-size: 20px;
}
.aboutMichelleQuote {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 40px;
	font-size: 24px;
	line-height: 1.4;
	text-align: center;
}
.quoteAuthor {
	padding-top: 20px;
	font-size: 16px;
}
.compareColHeader {
	margin-bottom: 30px;
	font-size: 28px;
	text-align: center;
}
.compareHeader {
	padding-bottom: 16px;
	font-size: 32px;
	white-space: nowrap;
}
.compareHeader small {
	font-size: 20px;
	font-weight: 300;
}
.compareSubHeader {
	padding-bottom: 10px;
	font-size: 20px;
	white-space: nowrap;
}
.compareHeader + p,
.compareSubHeader + p {
	max-width: 200px;
	height: 135px;
	margin: 0;
	font-size: 16px;
}
.productCompareLeft {
	float: left;
	padding: 70px 40px 30px;
	background: white url(../wevorce/images/wevorce-logo-app.svg) no-repeat top 20px center;
	background-size: 150px;
	color: #4a4a4a;
}
.productCompareLeft .btn {
	margin: 0 auto;
}
.productCompareLeft .compareHeader {
	padding-bottom: 10px;
	font-size: 48px;
	text-align: center;
}
.productCompareLeft .compareSubHeader {
	font-weight: 400;
}
.productCompareRight {
	float: left;
	padding: 15px 10px 30px;
}
@media (max-width: 991px) {
	.productCompareLeft,
	.productCompareRight {
		float: none;
		max-width: 525px;
		margin: 0 auto;
	}
	.productCompareRight {
		margin-top: 30px;
	}
}
@media (max-width: 767px) {
	.compareHeader + p,
	.compareSubHeader + p {
		max-width: 100%;
		height: auto;
		margin-bottom: 20px;
	}
}
/**/

/* Product Pricing */
.page-pricing .intro-image,
.page-become-affiliate .intro-image {
	background-image: url(../wevorce/images/hero-building.jpg);
}
.section-pricing {
	padding: 40px 0;
	text-align: center;
}
/**/

/* Divorce Calculator */
.divorceCalc {
	margin-bottom: 40px;
}
.divorceCalc .btn {
	margin-left: 0;
}
.divorceCalcFaq {
	margin-top: 20px;
	padding-top: 40px;
	border-top: solid 2px #eeeff1;
}
.divorceCalcResults {
	width: auto;
	margin: 30px 30px 30px 0;
	padding: 20px 30px;
	background: #e5f9f7;
}
.divorceCalcResults p {
	margin-bottom: 0;
}
.divorceCalcResults strong {
	font-size: 32px;
}
body.page-template-calculatorwidget {
	min-width: 300px;
	width: 295px;
	height: 245px;
	margin-top: 0;
	font-size: 14px;
}
body.page-template-calculatorwidget .panel-grid {
	margin: 0 !important;
}
body.page-template-calculatorwidget .panel-grid-cell {
	padding: 0 !important;
}
.calculatorWidget {
	width: 295px;
	height: 245px;
	padding: 10px;
	background: #f5f5f5;
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight: 300;
}
.calculatorWidget .calculatorHeader {
	margin-bottom: 8px;
	font-size: 22px;
	font-weight: 700;
}
.calculatorWidget .calculatorHeader img {
	width: 122px;
}
.calculatorWidget label {
	vertical-align: middle;
	width: 135px;
	margin: 0 10px 0 0;
	font-size: 15px;
	line-height: 1.1;
}
.calculatorWidget .selectInputContainer {
	display: inline-block;
	vertical-align: middle;
	width: 130px;
	border: solid 1px #ccc;
	border-radius: 4px;
	font-size: 13px;
}
.calculatorWidget .form-group {
	margin: 0 0 5px;
}
.calculatorWidget .form-control {
	margin: 0;
	background: white;
	font-size: 13px;
}
.calculatorWidget .btn {
	width: 130px;
	height: 25px;
	margin: 10px 0;
	font-size: 13px;
	line-height: 25px;
}
.calculatorWidget .divorceCalcResults {
	margin: 0 -10px 10px;
	padding: 10px;
}
.calculatorWidget .divorceCalcResults p {
	margin-bottom: .25em;
	line-height: 1.2;
}
.calculatorWidget .divorceCalcResults strong {
	font-size: 24px;
}
/**/

/* Child Support Calc */
.childSupportCalc {
	margin-bottom: 40px;
}
.childSupportCalc label {
	display: block;
	font-weight: 400;
}
.childSupportCalc label strong {
	font-weight: 700;
}
.childSupportCalc .form-group span {
	font-size: 16px;
}
.childSupportCalc .slideTextInputContainer {
	display: inline-block;
	max-width: 200px;
}
.childSupportCalc .btn {
	margin-left: 0;
}
.childSupportCalc .formTable {
	display: table;
}
.childSupportCalc .formCol {
	display: table-cell;
	height: 100%;
	padding: 0 20px 40px 0;
}
.childSupportCalc .formColContents {
	height: 100%;
	-moz-box-sizing: border-box; /* For FF */
	padding: 20px;
	border: solid 1px #ccccc8;
}
.childSupportCalc .formColContents .form-group {
	margin-bottom: 26px;
}
.childSupportCalcResults {
	width: auto;
	margin: 30px 30px 30px 0;
	padding: 20px 30px;
	background: #e5f9f7;
}
.childSupportCalcResults p {
	margin-bottom: 0;
}
@media (max-width: 767px) {
	.childSupportCalc .formCol {
		display: block;
		padding-right: 0;
	}
}
/**/

/* Footer */
.footers {
	clear: both;
	width: 100%;
	margin: 0;
	background: #f5f5f5;
}
.footers .container {
	padding-top: 50px;
	background: #f5f5f5;
	border-top: solid 1px #eeeff1;
}
.footer-col {
	float: left; /* Clears floating children */
	clear: left;
	padding: 10px 0;
}
.footer-col a {
	position: relative;
	display: block;
	color: #666;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.7;
	cursor: pointer;
}
.footer-col a:hover {
	padding-left: 10px;
	color: #208aa3;
	text-decoration: none;
}
.footer-col a:hover:after {
	position: absolute;
	top: 7px;
	left: 0;
	width: 3px;
	height: 11px;
	background: #71bcce;
	content: '';
}
.footer-col .footer-social-link {
	float: left;
	overflow: hidden;
	width: 27px;
	height: 27px;
	margin: 5px 5px 0 0;
	background: url(../wevorce/images/icons-social.png) no-repeat;
	text-indent: -9999px;
	white-space: nowrap;
}
.footer-col .footer-social-link.twitter {
	background-position: -27px;
}
footer {
	background: #f5f5f5
}
footer .container {
	margin-top: 50px;
	padding: 30px 0;
	border-top: solid 1px #ccc;
}
.footer-logo {
	display: inline-block;
	width: 130px;
	height: 50px;
	background: url(../wevorce/images/wevorce-logo.png) no-repeat;
	background-size: contain;
}
footer .container p {
	display: inline-block;
	width: calc( 100% - 140px );
	padding-left: 30px;
	font-size: 14px;
	line-height: 17px;
}
footer .pull-left,
footer .pull-right {
	display: none;
}
@media (max-width: 767px){
	footer .container {
		padding: 30px 20px;
	}
	.footer-logo {
		display: block;
		margin-bottom: 20px;
	}
	footer p {
		display: block;
		padding-left: 0;
	}
}
/**/

/* Forms */
.formContainer {
	padding: 40px 0 20px;
}
.form-container .btn-primary { /* Legacy */
	margin: 0;
}
.form-contents {
	clear: both;
}
.form-group {
	margin-bottom: 46px;
}
.form-control {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
	margin: 10px 0 8px 0;
	padding: 0;
	background: none;
	border: none !important; /* I just don't have the strength... */
	border-radius: 0;
	box-shadow: none;
	font-size: 16px;
	line-height: -6.571429;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-control:focus {
	box-shadow: none;
}
.slideTextInputContainer,
.selectInputContainer {
	border-bottom: 2px solid rgba(0,0,0,0.2);
}
.selectInputContainer::after {
	display: none;
}
.selectInputContainer select.form-control {
	-webkit-appearance: menulist;
	border: none;
}
.slideTextInputContainer.percentInput,
.slideTextInputContainer.dollarInput {
	position: relative;
}
.slideTextInputContainer.dollarInput::before,
.slideTextInputContainer.percentInput::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.slideTextInputContainer.dollarInput::before {
	content: '$';
	left: 0;
}
.slideTextInputContainer.percentInput::after {
	content: '%';
	right: 0;
}
.slideTextInputContainer.dollarInput .form-control {
	padding-left: 20px;
}
.slideTextInputContainer.percentInput .form-control {
	padding-right: 20px;
}
label {
	font-size: 16px;
	font-weight: 600;
}
.btn,
a.btn,
.button,
.ap-btn {
	position: relative;
	height: 40px;
	margin: 0 10px;
	padding: 0 25px;
	border: none;
	border-radius: 4px;
	font-size: 18px;
	font-weight: 600;
	line-height: 40px;
}
button:focus,
.btn:active,
.btn:active:focus,
.btn:focus {
	outline: none;
}
.btn.btn-primary,
a.btn.btn-primary,
.button.button-primary {
	background: #a4d65e;
	color: white;
	transition: all linear .25s;
}
.btn.btn-primary:hover,
.button.button-primary:hover {
	box-shadow: inset 0 0 25px rgba(0,0,0,.25);
	transition: all linear .25s;
}
.btn.btn-default {
	background-color: #fff;
    border: solid 1px #ccccc8;
}
a.btn-transparent {
	height: auto;
	border: 3px solid white;
	line-height: 41px;
	color: white;
}
a.btn-transparent span {
	font-weight: normal;
}
/* Legacy */
.form-head {
	margin-bottom: 45px;
}
.form-controls {
	margin: 0 -5px 20px;
}
.form-controls .field,
.form-controls .slideTextarea {
	width: 100%;
	background: #f2f2f3;
	border: none;
	padding: 0 15px;
	box-sizing: border-box;
	font-size: 18px;
}
.form-controls .field {
	height: 41px;
	line-height: 41px;
}
.form-controls .slideTextarea {
	height: 160px;
	padding-top: 10px;
}
.form-actions {
	padding-top: 10px;
}
.form-actions .btn {
	margin-left: 0;
}
/**/

/* Theme */
.scroll-top-wrapper {
	display: none;
	background-color: #71bcce;
}
.scroll-top-wrapper .fa {
	line-height: .75;
}
/**/

/* Home */
.pageWevorceHome {
	font-size: 16px;
}
.pageWevorceHome h2 {
	font-size: 42px;
	line-height: 42px;
	margin: 0 0 37px 0;
	text-align: center;
	letter-spacing: 0;
	font-weight: 400;
}
.pageWevorceHome h2 small {
	font-size: 22px;
	font-weight: 400;
}
.pageWevorceHome h3 {
	font-size: 22px;
	font-weight: 400;
	line-height: 36px;
	margin: 0;
	text-align: center;
}
.pageWevorceHome p {
	color: #5e5e5e;
	font-size: 16px;
	font-weight: 400;
}
.pageWevorceHome .intro {
	display: none;
}
.hero {
	height: 600px;
	background-image: url(../wevorce/images/hero-home.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: scroll;
	border-bottom: solid 1px #e9e9e7;
}
.hero h1 {
	margin-bottom: 35px;
	color: #3fbfb0;
	font-size: 42px;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
}
.hero h1 small {
	margin-bottom: 15px;
	font-size: 16px;
	color: #5e5e5e;
}
.hero small {
	display: block;
}
.heroContent {
	position: relative;
	width: 100%;
	max-width: 1145px;
	margin: 0 auto;
	padding-top: 50px;
}
.heroText {
	max-width: 530px;
}
.heroContent sup {
	font-size: 55%;
}
.heroContentSmall {
	width: 350px;
}
.heroContentSmall .small,
.heroContentSmall .ctaContainer {
	margin: auto;
	text-align: center;
}
.hero .small {
	font-size: 13px;
	line-height: 18px;
	margin-top: 18px;
}
.hero .small a:link,
.hero .small a:visited {
	font-size: 15px;
	color: #70ad1a;
}
.hero .small em {
	font-size: 13px;
}
.heroContentSmall ul {
	margin: 10px 0 20px;
	padding-left: 30px;
	font-size: 16px;
	list-style: disc outside none;
}
.heroContentSmall ul li {
	font-size: 16px;
	margin-bottom: 5px;
}
.heroContentSmall .btn {
	margin-top: 0;
	min-width: 280px;
}
.heroContentSmall .btn:active:focus {
	color: #fff;
}
.heroContentSmall .fees {
	margin-top: 15px;
}
.hero .testimonial {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 350px;
	margin: 0;
	padding: 11px;
	background: rgba(113, 188, 206, 0.9) none repeat scroll 0 0;
}
.hero .testimonial p {
	color: #333;
}
.hero .testimonial img {
	float: left;
	padding-right: 11px;
}
.hero .testimonial .small {
	margin: 0;
	font-size: 13px;
	max-width: 320px;
}

/* Roadmap section */
.section-roadmap {
	background-color: #f5f5f5;
	padding: 80px 20px 58px 20px;
}
.section-roadmap img {
	display: inline-block;
	margin-bottom: 10px;
}
.section-roadmap .img-wrap {
	height: 68px;
	text-align: center;
}
.section-roadmap table {
	width: 100%;
	margin: 0;
}
.section-roadmap td {
	text-align: center;
}
.section-roadmap img {
	text-align: center;
}
.section-roadmap p {
	font-size: 14px;
	line-height: 22px;
	text-align: center;
}
.pageWevorceHome .section-roadmap h3 {
	color: #85bc3c;
	font-size: 14px;
	font-weight: bold;
	line-height: 22px;
}
.section-roadmap a {
	color: #71bcce;
}
.section-roadmap .number,
.section-roadmap .slick-dots button {
	z-index: 10;
	display: inline-block;
	width: 23px;
	height: 23px;
	background-color: #85bc3c;
	border: none;
	border-radius: 15px;
	color: white;
	font-size: 14px;
	font-weight: bold;
	line-height: 20px;
	text-align: center;
}
.section-roadmap .slick-list {
	background-color: white;
}
.section-roadmap .slick-list img {
	margin: 0 auto 10px;
}
.section-roadmap .slick-slide {
	padding: 20px;
}
.section-roadmap .slick-dots li {
	display: table-cell;
}
.section-roadmap .slick-dots .slick-active::before {
	border-left: 20px solid transparent;
	border-top: 20px solid white;
	content: " ";
	display: inline-block;
	height: 20px;
	margin-left: -8.5px;
	width: 20px;
	border-right: 20px solid transparent;
	position: absolute;
	bottom: 33px;
}
.section-roadmap .slick-dots {
	display: table;
	list-style: none;
	margin: 23px 0 0 8%;
	table-layout: fixed;
	text-align: center;
	width: 84%;
}
.section-roadmap .top td {
	text-align: center;
}
.section-roadmap .top td:nth-child(2n+1) {
	width: 26%;
}
.section-roadmap .top td:nth-child(2n+2) {
	width: 11%;
}
.section-roadmap .middle .table-wrap {
	padding: 0 4.5%;
}
.section-roadmap .middle td {
	width: 20%;
}
.section-roadmap hr {
	border-top: 3px solid #85bc3c;
	margin-top: -13px;
}
.section-roadmap .bottom td:nth-child(4n+1) {
	width: 18.5%;
}
.section-roadmap .bottom td:nth-child(3) {
	width: 11%;
}
.section-roadmap .bottom td:nth-child(2n+2) {
	width: 26%;
}
/**/

/* Compare the difference section */
.section-compare {
	max-width: 1145px;
	margin: 0 auto;
	padding: 80px 20px 58px;
}
.section-compare .comparison-wrap {
	padding-bottom: 60px;
	overflow: hidden;
}
.section-compare .comparison-wrap .slick-list {
}
.section-compare .comparison-wrap,
.section-compare .divorce-tool-wrap,
.section-compare .divorce-tool-wrap.slick-slide,
.section-compare .slick-track {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.section-compare .comparison-wrap.slick-slider {
	display: block;
}
.section-compare .divorce-tool-wrap.slick-slide {
	height: auto;
	margin-bottom: 2px;
	padding-left: 3px;
	padding-right: 3px;
}
.section-compare .slick-dots {
	margin-top: 25px;
	text-align: center;
}
.section-compare .slick-dots li {
	display: inline-block;
	margin: 0 2.5px;
}
.section-compare .slick-dots button {
	background-color: #ccc;
	border: none;
	border-radius: 7px;
	color: #ccc;
	display: inline-block;
	font-size: 0px;
	height: 14px;
	width: 14px;
}
.section-compare .slick-dots .slick-active button {
	background-color: #3fbfb0;
	color: #3fbfb0;
}
.section-compare .divorce-tool {
	align-items: stretch;
	background-color: #f5f5f5;
	box-shadow: 0 2px rgba(0, 0, 0, 0.16);
	padding: 54px 15px;
}
.section-compare .divorce-tool.premier {
	background-color: #f6fbef;
	position: relative;
}
.section-compare .banner {
	background-color: #3fbfb0;
	color: white;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	line-height: 23px;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.section-compare .slideText p span {
	font-style: normal;
}
.section-compare .heading {
	overflow: auto;
}
.section-compare .heading img {
	float: left;
	margin-bottom: 36px;
}
.section-compare .heading .text {
	float: left;
	width: calc(100% - 76px);
	padding-left: 20px;
}
.section-compare .divorce-tool h3 {
	color: #444;
	font-size: 24px;
	line-height: 26px;
	text-align: left;
}
.section-compare .divorce-tool .text p {
	color: #888a92;
	font-size: 13px;
	font-style: italic;
	margin: 0;
}
.section-compare .divorce-tool .fa-li {
	color: #71bcee;
}
.section-compare .divorce-tool.premier .fa-li {
	color: #3fbfb0;
}
.section-compare .divorce-tool li {
	padding-bottom: 25px;
}
.section-compare .divorce-tool .availability {
	margin: 0 10px 20px 10px;
	text-align: center;
}
.section-compare .divorce-tool .availability img {
	max-width: 279px;
	width: 100%;
}
.section-compare .ensures {
	color: #5e5e5e;
	font-size: 22px;
	margin-bottom: 10px;
	padding-top: 35px;
	text-align: center;
}
.section-compare .ensures img {
	height: 48px;
	margin-top: -35px;
}
.section-compare .ensures-quote {
	color: #3fbfb0;
	text-align: center;
}
.section-compare blockquote {
	font-size: 30px;
	font-weight: 100;
	line-height: 39px;
	margin: 0;
	padding: 0;
	border: none;
}
.section-compare blockquote::after {
	content: "";
}
.section-compare blockquote::before {
	content: "";
}
.section-compare .blockquote-source {
	font-size: 18px;
	font-weight: bold;
	line-height: 23px;
}
/**/

/* Explore section */
.section-explore {
	background-color: #71bcce;
	padding: 30px 0;
}
.section-explore .left {
	padding: 50px 64px 40px 0;
}
.section-explore .right {
	background: rgba(255,255,255,.10);
	color: #fff;
	padding: 66px 64px 40px 64px;
}
.section-explore p,
.section-explore a,
.section-explore h2,
.section-explore h3 {
	color: #fff;
}
.section-explore h2,
.section-explore h3 {
	text-align: left;
}
.section-explore h3 {
	margin-bottom: 1em;
}
.section-explore ul {
	padding-bottom: 20px;
	padding-left: 26px;
}
.section-explore li {
	padding-bottom: 20px;
}
.section-explore a {
    border-bottom: dashed 1px rgba(255,255,255,.50);
}
.section-explore a:hover {
    border-color: white;
}
/**/

/* Certified section */
.section-certified h2 small {
	margin-bottom: 10px;
}
.section-certified {
	background: #f5f5f5;
	border-top: solid 1px #eeeff1;
	padding: 60px 0;
	font-weight: 300;
	text-align: center;
}
.section-certified p {
	max-width: 690px;
	margin: 0 auto 20px;
}
.section-certified .slick-slide {
	margin-top: 30px;
}
.section-certified .slick-slide h3 {
	margin-bottom: .75em;
	font-size: 20px;
}
.section-certified .slide {
	width: 360px;
	margin-right: 25px;
}
.section-certified .visible-sm .slideText {
	padding: 10px;
}
.pageWevorceHome .visible-sm .slideText h3 {
	line-height: 28px;
	margin-bottom: 20px;
}
.section-certified .slick-dots {
	list-style: outside none none;
	width: 72px;
	margin: auto;
	padding-left: 0;
}
.section-certified .slick-dots li {
	color: transparent;
	float: left;
	margin: 25px 5px 0;
}
.section-certified .slick-dots li button {
	background-color: #ccc;
	border: none;
	border-radius: 14px;
	height: 14px;
	width: 14px;
	font-size: 0;
}
.section-certified .slick-dots li.slick-active button {
	background-color: #3fbfb0;
}
.section-certified .btn-container.visible-xs.clear {
	clear: both;
	padding-top: 20px;
}
a.btn-clear {
	border: 1px solid;
	border-radius: 4px;
	color: #fff;
	display: block;
	padding: 4px 10px;
	text-align: center;
	transition: all 0.25s linear;
}
#explore_support_tools.btn-clear:hover {
	background-color: white;
	color: #71bcce;
}
.legal,
.consultation {
	position: relative;
}
.services {
	min-height: 344px;
	position: relative;
	cursor: pointer;
}
.services img,
.services .slideText,
.services .slideText div {
	position: absolute;
	top: 0;
	width: 100%;
}
.services .slideText {
	visibility: hidden;
	height: 100%;
	text-align: center;
	vertical-align: middle;
}
.services .slideText div {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	padding: 0 20px;
}
.services .slideText p {
	margin: 10px 0;
	color: #fff;
	font-weight: 400;
}
.professionals .services .slideText {
	background: rgba(63, 191, 176, 0.90) none repeat scroll 0 0;
}
.architects .services .slideText {
	background: rgba(149, 199, 94, 0.90) none repeat scroll 0 0;
}
.attorneys .services .slideText {
	background: rgba(113, 188, 206, 0.90) none repeat scroll 0 0;
}
.headline {
	margin: auto;
	max-width: 810px;
	text-align: center;
}
.headline h2 small {
	line-height: 36px;
}
.headline, .headline h2 {
	margin-bottom: 30px;
}
.pageWevorceHome .visible-sm .slideText h3, .pageWevorceHome .visible-sm .slideText p {
	color: #fff;
	text-align: left;
}
.professionals .visible-sm .slideText {
	background-color: #3fbfb0;
}
.architects .visible-sm .slideText {
	background-color: #95c75e;
}
.attorneys .visible-sm .slideText {
	background-color: #71bcce;
}
/**/

/* Media section */
.section-media {
	padding: 80px 0 60px;
	text-align: left;
}
.section-media p {
	padding: 20px 0 10px;
}
.section-media p img {
	display: inline-block;
	margin: 0 10px 0 0;
	vertical-align: bottom;
}
.pageWevorceHome .section-media .container > img {
	float: left;
	margin: 0 25px 0 0;
}
.section-media .text {
	float: left;
	width: calc( 100% - 395px );
}
.pageWevorceHome .section-media h3 {
	margin-bottom: 30px;
	padding-top: 80px;
	font-size: 20px;
	font-weight: 300;
	text-align: left;
}
.section-media .quote {
	font-size: 30px;
	font-weight: 100;
	line-height: 1.3;
}
.section-media .btn-play-audio {
	position: relative;
	margin-left: 30px;
	padding: 0 20px 0 50px;
	background: white;
	border: solid 2px #eeeff1;
	color: #71bcce;
	transition: all 1s ease;
}
.section-media .btn-play-audio::before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    left: 30px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-left: 18px solid #addbe6;
	border-bottom: 10px solid transparent;
	content: '';
	transition: all 1s ease;
}
.section-media .btn-play-audio:hover {
	color: #208aa3;
	transition: all 1s ease;
}
.section-media .btn-play-audio:hover::before {
	border-left-color: #208aa3;
	transition: all 1s ease;
}
.btn-container.visible-xs.clear {
	margin: auto;
	max-width: 180px;
}

/*  Section Find  */
.section-find {
	background: #71bcce;
	height: 120px;
	box-sizing: border-box;
	text-align: center;
	padding-top: 40px;
}
.section-find .btn {
	font-size: 24px;
}
/**/

/* Section Legal */
.section-legal {
	background: white;
	padding: 2em 0;
}
.section-legal p {
	margin: .5em 0;
}
.section-legal h1 {
	color: black;
	font-size: 1.5em;
}
.section-legal h2,
.section-legal h3,
.section-legal h4 {
	font-size: 1.25em;
	margin-top: 1em;
}
.section-legal ul,
.section-legal ol {
	padding-left: 2em;
}
/**/

/*  FAQ  */
.page-faq h2 {
	font-weight: 600;
}
.page-faq .section-legal {
	padding: 2em .5em;
}
.page-faq .section-legal ol,
.page-faq .section-legal ul {
	margin: 0;
	padding-left: 40px;
}
.page-faq .section-legal ol ul,
.page-faq .section-legal ol ol {
	padding-left: 22px;
}
.page-faq .section-legal li {
	margin-top: .5em;
}
.page-faq .section-legal ul.faqindex {
	padding-left: 25px;
}
.page-faq .section-legal ul.faqindex li {
	list-style-type: none;
}
.page-faq .section-legal .container {
	max-width: 800px;
	margin: 0 auto;
}
.page-faq .link-top {
	display: block;
	font-size: 14px;
	text-align: right;
}
.answercontainer {
	background-color: #efefef;
	border-radius: 8px;
	padding: 30px 30px 25px;
}
.answercontainer p {
	margin-bottom: 16px;
}
.answercontainer small {
	margin-left: 25%;
	margin-right: 25%;
	display: block;
}
/**/

/* Sitemap */
section.section-sitemap ul {
	margin-left: 0;
	list-style-type: none;
}
section.section-sitemap ul.children {
	margin: .5em 0 0 30px;
}
section.section-sitemap li {
	padding-bottom: .5em;
	line-height: 1.3;
}
section.section-sitemap li.category {
	padding-bottom: 0
}
section.section-sitemap h3 {
	margin: 1.5em 0 1em;
}
/**/

@media (max-width:1199px) {
	.heroContent {
		padding: 55px 20px 20px 20px;
	}
	.hero .testimonial {
		bottom: 20px;
	}
}
@media (max-width:991px) {
	.section-certified .visible-sm .slideText {
		box-sizing: border-box;
		min-height: 380px;
		padding: 10px;
	}
	.section-media {
		padding: 0 0 20px;
		text-align: center;
	}
	.section-media h3 {
		font-size: 20px;
		font-weight: 600;
		text-align: center;
	}
	.pageWevorceHome .section-media h3 {
		text-align: center;
	}
	.section-media .text {
		float: none;
		width: 100%;
	}
	.section-media .quote {
		font-size: 22px;
	}
	.section-media span.visible-sm.visible-xs {
		display: inline-block !important;
	}
	.section-media .btn-play-audio {
		margin-left: 0px;
		margin-top: 40px;
	}
	.section-compare .divorce-tool {
		width: 360px;
	}
	.section-compare .heading .text {
		clear: both;
		float: none;
		width: 100%;
		margin-left: 0;
	}
	.section-compare .heading, .section-compare .heading h3 {
		text-align: center;
	}
	.section-compare .divorce-tool .heading {
		height: 177px;
	}
	.section-compare .heading img {
		float: none;
		margin: auto;
	}
	.section-explore .left {
		padding: 66px 0 40px;
	}
	.section-explore .right {
		padding: 66px 24px 40px;
	}
}
@media (max-width:767px) {
	.section-certified .slide {
		width: 260px;
		margin-right: 10px;
	}
	.section-certified .visible-sm .slideText {
		min-height: 450px;
	}
	.hero {
		height: auto;
		background-position: left -150px top;
	}
	.heroContent {
		max-width: 530px;
		padding-top: 25px;
	}
	.heroContent h1 {
		font-weight: 600;
		font-size: 30px;
		line-height: 32px;
	}
	.heroContentSmall {
		width: auto;
	}
	.heroContentSmall ul li,
	.heroContentSmall p {
		text-align: left;
	}
	.pageWevorceHome h2 {
		font-size: 30px;
	}
	.pageWevorceHome h2 small {
		font-size: 18px;
	}
	.pageWevorceHome h3 {
		font-size: 18px;
	}
	.section-compare .divorce-tool {
		width: 260px;
	}
	.section-compare blockquote {
		font-size: 20px;
		line-height: 28px;
	}
	footer .container p {
		width: 100%;
		padding-left: 0;
	}
}
@media all and (max-width:479px) {
	.page-home {
		font-size: 14px;
	}
	.hero {
		background-position: left -390px top;
	}
	.heroContentSmall .btn-container .btn {
		width: 280px;
	}
	.heroContentSmall {
		width: 100%;
	}
	.heroContent {
		padding: 10px 20px;
	}
}