/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/


/* !General Layout ---------------------------------------*/

body .userway.userway_p1 {
	top: 123px !important;
}

.fl-page {
	padding-top: 0 !important;
}

.fl-row-content-wrap {
	padding: 60px 0;
}

.row {
	margin-right: -20px;
	margin-left: -20px;
}

.fl-content {
	padding-left: 20px;
	padding-right: 20px;
}

.rw-remove-col-padding {
	margin-left: -15px;
	margin-right: -15px;
}

.rw-narrow-column {
	max-width: 440px;
	margin: auto;
}

.rw-narrow-column.espanol {
	max-width: 560px;
}

.rw-narrow-column ol {
	list-style: none;
	counter-reset: steps;
	padding-left: 0;
}

.rw-narrow-column ol li {
	counter-increment: steps;
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 24px;
	color: #084499;
	margin-bottom: 20px;
}

.rw-narrow-column ol li::before {
	content: counter(steps);
	margin-right: 0.5rem;
	background: #CC0001;
	color: white;
	width: 1.5em;
	height: 1.5em;
	border-radius: 50%;
	display: inline-grid;
	place-items: center;
	line-height: 1.2em;
}



@media (min-width: 320px) {

	.admin-bar .fl-page {
		top: 46px;
	}

	.container {
		max-width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}

	.fl-row-content-wrap {
		padding: 40px 0;
	}

}

@media (min-width: 576px) {

	.container {
		max-width: 100%;
	}

}

@media (min-width: 601px) {

	.admin-bar .fl-page {
		top: 0;
	}

}

@media (min-width: 768px) {

	.container {
		max-width: 100%;
		padding-left: 40px;
		padding-right: 40px;
	}

}

@media (min-width: 992px) {

	.fl-full-width .container {
		padding-left: 40px;
		padding-right: 40px;
		width: auto;
	}

}

@media (min-width: 1100px) {

	.fl-full-width .container {
		padding-left: 40px;
		padding-right: 40px;
		max-width: 1180px;
	}

}

@media (min-width: 1280px) {

	.fl-full-width .container {
		padding-left: 40px;
		padding-right: 40px;
		width: 100%;
		max-width: 1180px;
	}

	.fl-row-fixed-width {
		max-width: 1180px;
	}

	.fl-row-full-width .fl-row-fixed-width {
		max-width: 1180px;
		margin: auto;

	}

}

/* Image Effects ---------------------------------------*/

/* Zoom in on hover */
.hover-zoom-in .fl-photo-content,
.hover-zoom-in .fl-post-grid-image {
	overflow: hidden;
}

.hover-zoom-in .fl-photo-content .fl-photo-img,
.hover-zoom-in .fl-post-grid-image .wp-post-image {
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	will-change: transform;
}

.hover-zoom-in .fl-photo-content .fl-photo-img:hover,
.hover-zoom-in .fl-post-grid-image .wp-post-image:hover {
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

/* !Header ---------------------------------------*/

.fl-fixed-header .fl-page-header {
	top: 0;
	width: 100%;
	border: none;
	z-index: 1000;
	position: fixed;
	-webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
	-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;
	background: rgba(255, 255, 255, 1);
}

.home.fl-fixed-header .fl-page-header {
	-webkit-box-shadow: none;
	box-shadow: none;

	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100 */
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=0);
	/* IE6-9 */
}

.home.fl-fixed-header .fl-page-header::before {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff;
	z-index: -1;
	transition: opacity 0.3s ease-in-out;
	opacity: 0;
}

.home.fl-fixed-header .fl-page-header.rw-fixed-header::before {
	opacity: 1;
}

.home.fl-fixed-header .fl-page-header.rw-fixed-header {
	-webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
}


.fl-page-nav-right .fl-page-header-container {
	padding-bottom: 25px;
	padding-top: 25px;
}

.fl-page-nav-right.rw-fixed-header .fl-page-header-container {
	padding-bottom: 10px;
	padding-top: 10px;
	-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;
}

.fl-page-nav-toggle-icon.fl-page-nav-toggle-visible-medium-mobile .fl-page-header-logo {
	text-align: left;
	margin-right: auto;
}

.fl-logo-img {
	max-height: 110px;
	-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;
}

.fl-page-nav-right.fl-page-header-fixed.rw-fixed-header .fl-logo-img,
.fl-page-header-fixed.rw-fixed-header .fl-logo-img {
	max-height: 70px !important;
}

.fl-page-nav-right .fl-page-nav-col {
	justify-content: flex-end;
}

.rw-header-content {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	padding-bottom: 20px;
}

.rw-header-whatsapp {
	font-size: 14px;
	font-family: "Roboto Condensed", sans-serif;
	text-align: right;
	padding-left: 10px;
}

.rw-header-whatsapp a {
	display: flex;
	flex-direction: row;
	background-color: #17A635;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #fff !important;
	padding: 6px 15px;
	line-height: 15px;
	align-items: center;
}

.rw-header-whatsapp a:hover {
	text-decoration: none;
	background-color: #1DBA3E;
}

.rw-header-whatsapp a i {
	color: #fff;
	font-size: 20px;
	margin-right: 5px;
}

.rw-header-whatsapp a:hover i {
	color: #fff;
}

.rw-header-text {
	font-size: 15px;
	font-family: "Roboto Condensed", sans-serif;
	text-align: right;
	padding-left: 10px;
}

.rw-header-text p {
	text-align: right;
	margin-bottom: 0;
	text-transform: uppercase;
	line-height: 1.1;
	font-size: 14px;
}

.rw-header-phone {
	font-size: 38px;
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	padding: 0 0 0 10px;
	line-height: 1;
}

.rw-header-phone a:hover {
	text-decoration: none;
}

/* WPML Language Switcher
----------------------------------------*/

.wpml-ls-legacy-dropdown {
	width: auto;
}

.wpml-ls-legacy-dropdown a {
	-webkit-border-radius: 3px;
	border-radius: 3px;
	font-size: 14px;
	padding: 7px 10px;
	text-align: left;
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle span {
	color: #333;
}

.wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
	z-index: 900000;
}

@media (min-width: 320px) {

	.fl-page-nav-right .fl-page-header-container {
		padding-bottom: 10px;
		padding-top: 10px;
	}

	.fl-page-nav-right .fl-page-header-row {
		flex-direction: column-reverse;
	}

	.fl-page-header-logo-col {
		padding-top: 10px;
		display: flex;
		align-items: center;
	}

	.fl-page-nav-toggle-icon.fl-page-nav-toggle-visible-medium-mobile.fl-page-nav-right .fl-page-header-row .fl-page-header-logo {
		padding-bottom: 0;
		text-align: left;
		max-width: 80%;
	}

	.fl-page-nav-right .fl-page-header-row {
		position: relative;
	}

	.fl-page-nav-toggle-icon.fl-page-nav-toggle-visible-medium-mobile .navbar {
		width: 100%;
	}

	.rw-header-content {
		flex-direction: row;
		align-items: center;
		padding-bottom: 0;
	}

	.rw-header-phone {
		width: 50%;
		padding: 0;
		text-align: right;
		font-size: 20px;
	}

	.rw-header-whatsapp {
		width: 50%;
		padding: 0;
		text-align: left;
	}

	.rw-header-whatsapp a {
		width: 120px;
		float: left;
	}

	.rw-header-text {
		display: none;
	}

	.rw-header-text p {
		text-align: center;
	}

	.wpml-ls-legacy-dropdown>ul {
		width: 130px;
	}

}

@media (min-width: 360px) {

	.rw-header-phone {
		font-size: 24px;
	}

}

@media (min-width: 480px) {

	.rw-header-phone {
		font-size: 28px;
	}

}

@media (min-width: 600px) {

	.fl-page-header-primary .fl-logo-img {
		width: 400px !important;
	}

	.rw-header-content {
		flex-direction: row;
		justify-content: flex-start;
	}

	.rw-header-whatsapp {
		width: 120px;
	}

	.rw-header-whatsapp a {
		float: left;
	}

	.rw-header-text {
		display: flex;
		width: calc(100% - 330px);
	}

	.rw-header-text p {
		text-align: right;
		width: 100%;
	}

	.rw-header-phone {
		text-align: right;
		width: 210px;
		font-size: 30px;
	}

}

@media (min-width: 601px) {

	.admin-bar.fl-fixed-header .fl-page-header {
		top: 46px !important;
	}

	.home.fl-fixed-header .fl-page-header {
		height: 190px;
	}

	.home.fl-fixed-header .fl-page-header.rw-fixed-header {
		height: 135px;
	}

}

@media (min-width: 769px) {

	.fl-page-nav-toggle-visible-always .fl-page-header-wrap .fl-page-header-container,
	.fl-page-nav-toggle-visible-medium-mobile .fl-page-header-wrap .fl-page-header-container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.fl-page-nav-wrap {
		background-color: transparent;
	}

	.fl-page-nav-right .fl-page-header-logo {
		padding-left: 0;
		padding-right: 0;
	}

}

@media (min-width: 783px) {

	.admin-bar.fl-fixed-header .fl-page-header {
		top: 32px !important;
	}

}

@media (max-width: 991px) {

	.shiftnav-inner .wpml-ls-legacy-dropdown {
		padding: 20px;
	}

	.fl-page-header .wpml-ls-legacy-dropdown {
		display: none;
	}

	.shiftnav-inner .wpml-ls-legacy-dropdown>ul {
		width: 100%;
	}

}

@media (min-width: 992px) {

	.home.fl-fixed-header .fl-page-header {
		height: 220px;
	}

	.home.fl-fixed-header .fl-page-header.rw-fixed-header {
		height: 135px;
	}

	.fl-fixed-header .fl-page-header-primary .fl-logo-img {
		width: 500px !important;
	}

	.fl-fixed-header .fl-page-header-primary.rw-fixed-header .fl-logo-img {
		width: 400px !important;
	}

	.fl-page-nav-right .fl-page-header-row .col-lg-3 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		padding-right: 0;
		padding-top: 0;
	}

	.fl-page-nav-right .fl-page-header-row .col-lg-9 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		padding-left: 0;
	}

	.fl-page-nav-right .fl-page-header-row {
		align-items: flex-end;
	}

	.fl-page-nav-right .fl-page-header-row>div {
		display: flex;
		width: 100%;
	}

	.fl-page-nav-right .fl-page-header-wrap {
		border-bottom: none;
	}

	.rw-header-content {
		justify-content: flex-end;
	}

	.shiftnav-inner .wpml-ls-legacy-dropdown {
		display: none;
	}

	.fl-page-header .wpml-ls-legacy-dropdown {
		display: block;
	}

	.rw-header-text {
		width: auto;
		padding-left: 10px;
	}

	.rw-header-phone {
		width: auto;
		text-align: right;
		padding-left: 10px;
		font-size: 38px;
	}

	.rw-header-whatsapp {
		width: auto;
		padding-left: 10px;
	}

}

@media (max-width: 1099px) {

	.fl-page-nav-toggle-icon.fl-page-nav-toggle-visible-medium-mobile .fl-page-nav-col,
	.fl-page-nav-toggle-icon.fl-page-nav-toggle-visible-medium-mobile .navbar {
		position: relative;
	}

	.fl-page-nav-toggle-icon.fl-page-nav-toggle-visible-medium-mobile .fl-page-nav-collapse.collapse {
		display: none !important;
		visibility: hidden !important;
	}

}

@media (min-width: 1100px) {

	.shiftnav-toggle-button {
		display: none;
	}

	.home.fl-fixed-header .fl-page-header.rw-fixed-header {
		height: 120px;
	}

	.fl-page-nav-right .fl-page-header-container {
		padding-bottom: 25px;
		padding-top: 25px;
	}

	.fl-page-nav-right .fl-page-header-row {
		align-items: center;
	}

	.fl-page-nav-right .fl-page-header-row .col-lg-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.fl-page-nav-right .fl-page-header-row .col-lg-9 {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
		flex-direction: column;
	}

	.fl-page-nav-right .fl-page-header-row {
		flex-direction: row;
	}

	.fl-page-nav-toggle-icon.fl-page-nav-toggle-visible-medium-mobile.fl-page-nav-right .fl-page-header-row .fl-page-header-logo {
		max-width: 100%;
	}

	.rw-header-content {
		padding-bottom: 20px;
	}


}

@media (min-width: 1140px) {

	.fl-page-nav-toggle-visible-always .fl-page-header-wrap .fl-page-header-container,
	.fl-page-nav-toggle-visible-medium-mobile .fl-page-header-wrap .fl-page-header-container {
		padding-left: 20px;
		padding-right: 20px;
		max-width: 100%;
	}



}

@media (min-width: 1141px) {

	.fl-page-nav-toggle-visible-always .fl-page-header-wrap .fl-page-header-container,
	.fl-page-nav-toggle-visible-medium-mobile .fl-page-header-wrap .fl-page-header-container {
		max-width: 100%;
	}

}

@media (min-width: 1280px) {

	.fl-page-nav-right .fl-page-header-row .col-lg-3 {
		-ms-flex: 0 0 28%;
		flex: 0 0 28%;
		max-width: 28%;
	}

	.fl-page-nav-right .fl-page-header-row .col-lg-9 {
		-ms-flex: 0 0 72%;
		flex: 0 0 72%;
		max-width: 72%;
	}

}

@media (min-width: 1380px) {

	.fl-page-nav-right .fl-page-header-row .col-lg-3 {
		-ms-flex: 0 0 34%;
		flex: 0 0 34%;
		max-width: 34%;
	}

	.fl-page-nav-right .fl-page-header-row .col-lg-9 {
		-ms-flex: 0 0 66%;
		flex: 0 0 66%;
		max-width: 66%;
	}

}

/* !Main Navigation ---------------------------------------*/

.fl-page-nav-wrap,
.fl-page-nav .navbar-nav>li>a.nav-link {
	-webkit-transition: background 0.2s ease-in-out;
	-moz-transition: background 0.2s ease-in-out;
	-ms-transition: background 0.2s ease-in-out;
	-o-transition: background 0.2s ease-in-out;
	transition: background 0.2s ease-in-out;
}

.fl-page-nav-wrap {
	border: none;
	position: relative;
	z-index: 888888;
	/* z-index only works on positioned elements */
}

.fl-page-nav-right .fl-page-nav .navbar-nav>li {
	margin-right: 1px;
}

.fl-page-nav-right .fl-page-nav .navbar-nav>li>a.nav-link {
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: #05235D;
	padding: 9px 10px;
	font-size: 15px;
}

.fl-page-nav-right .fl-page-nav .navbar-nav>li>a.nav-link:hover {
	background-color: #B60800;
	color: #fff;
}

.fl-page-nav-right .fl-page-nav-wrap .navbar-nav li.current-menu-ancestor>a,
.fl-page-nav-right .fl-page-nav-wrap .navbar-nav li.current-menu-parent>a,
.fl-page-nav-right .fl-page-nav-wrap .navbar-nav li.current-menu-item>a {
	background-color: #B60800;
	color: #fff;
}

/* !Nav Right - Submenu ---------------------------------------*/

.fl-page-nav-right .fl-page-nav-wrap .navbar-nav li.menu-item-has-children:hover a {
	background-color: #B60800;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	color: #fff;
}

.fl-page-nav-right .fl-page-nav-wrap .navbar-nav li.current-menu-ancestor>a {
	background-color: #B60800;
	opacity: 1;
}

.fl-page-nav-right .fl-page-nav ul.sub-menu {
	background-color: #B60800;
	border-top: none;
	padding: 10px 0;
	-webkit-border-radius: 0 10px 10px 10px;
	border-radius: 0 10px 10px 10px;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.fl-page-nav-right .fl-page-nav li.fl-sub-menu-right ul.sub-menu {
	background-color: #B60800;
	border-top: none;
	padding: 10px 0;
	-webkit-border-radius: 10px 0 10px 10px;
	border-radius: 10px 0 10px 10px;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.fl-page-nav-right .fl-page-nav ul.sub-menu li a,
.fl-page-nav-right .fl-page-nav-wrap .navbar-nav li.menu-item-has-children ul.sub-menu li a {
	background-color: #950600 !important;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 1px;
	font-size: 15px;
}

.fl-page-nav-right .fl-page-nav ul.sub-menu li a:hover,
.fl-page-nav-right .fl-page-nav-wrap .navbar-nav li.menu-item-has-children ul.sub-menu li a:hover {
	background-color: #D30900 !important;
}

@media (min-width: 768px) {

	.fl-page-nav-right .fl-page-nav ul.sub-menu {
		width: 300px;
	}

}

@media (min-width: 992px) {

	.fl-page-nav-right .fl-page-nav .navbar-nav>li>a.nav-link {
		font-size: 13px;
	}

}

@media (min-width: 1180px) {

	.fl-page-nav-right .fl-page-nav .navbar-nav>li>a.nav-link {
		font-size: 14px;
	}

}

@media (min-width: 1220px) {

	.fl-page-nav-right .fl-page-nav .navbar-nav>li>a.nav-link {
		font-size: 15px;
	}

}

@media (min-width: 1480px) {

	.fl-page-nav-right .fl-page-nav .navbar-nav>li>a.nav-link {
		padding: 9px 15px;
	}

}

@media (min-width: 1600px) {

	.fl-page-nav-right .fl-page-nav .navbar-nav>li>a.nav-link {
		font-size: 16px;
	}

}

/* !Home Main Image ---------------------------------------*/

.rw-main-image .fl-row-content-wrap {
	/*height: 1080px;*/
	height: 100vh;
	padding-top: 168px;
	padding-bottom: 0;
}

/*
.rw-main-image .fl-row-content-wrap:before {

	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );

	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 200px;
	content: "";

}
*/
.rw-main-image .fl-row-content-wrap .fl-row-content {}

.rw-main-image .fl-row-content-wrap .fl-row-content h1 {
	font-size: 70px;
	font-weight: 700;
	font-family: 'Oswald', sans-serif;
	text-align: center;
	line-height: 0.8;
	margin: 0;
}

.rw-main-image .fl-row-content-wrap .fl-row-content h1 span {
	color: #000;
	font-weight: 400;
	font-size: 52px;
}


.rw-home-page-form {
	width: 33.33333%;
	background-color: #fff;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.rw-home-page-form .rw-main-image-line1 {

	font-family: "Roboto Condensed", sans-serif;
	font-size: 48px;
	color: #B60800;
	text-align: center;
	font-weight: 700;
	line-height: 1.2;
}

.rw-home-page-form .rw-main-image-line2 {
	font-size: 28px;
	color: #05235D;
	text-align: center;
	font-weight: 700;
	line-height: 1.2;
}

.rw-home-page-form .rw-main-image-line3 {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 44px;
	color: #B60800;
	text-align: center;
	font-weight: 700;
	line-height: 1.2;
}

.rw-home-page-form .rw-main-image-line3 a:hover {
	text-decoration: none;
}

.rw-home-page-form .rw-main-image-line4 {
	font-size: 22px;
	color: #05235D;
	text-align: center;
	font-weight: 700;
	line-height: 1.2;
}

.rw-home-page-form h2.widgettitle {
	background: #fff;
	color: #B60800;
	font-size: 34px;
	text-align: center;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 10px !important;
	padding: 10px 5px 0;
}

.rw-home-page-form .gform_wrapper ul.gform_fields li.gfield {
	padding-right: 0 !important;
}

.rw-home-page-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.rw-home-page-form .gform_wrapper textarea {
	background-color: #F4F4F4;
}

.rw-home-page-form .gform_wrapper textarea.large {
	height: 160px !important;
}

.rw-home-page-form .gform_wrapper .gform_footer {
	text-align: center;
}


@media (min-width: 320px) {

	.rw-main-image .fl-row-content-wrap {
		max-height: max-content;
		background-size: 600px 338px;
		height: max-content;
		padding-top: 338px;
	}

	.rw-main-image .fl-row-content-wrap .fl-row-content {
		padding-top: 0px;
		padding-bottom: 0px;
	}

	.rw-home-page-form {
		max-width: 400px;
	}

	.rw-home-page-form .rw-main-image-line1 {
		font-size: 45px;
		line-height: 1.1;
	}

	.rw-home-page-form .rw-main-image-line2 {
		font-size: 26px;
		line-height: 1.1;
	}

	.rw-home-page-form .rw-main-image-line3 {
		font-size: 41px;
		line-height: 1.1;
	}

	.rw-home-page-form .rw-main-image-line4 {
		font-size: 20px;
		line-height: 1.1;
	}

	.rw-home-page-form h2.widgettitle {
		background: #05235D;
		color: #fff;
		font-size: 30px;
		margin-top: 10px;
		padding: 6px 5px;
		-webkit-border-radius: 4px;
		border-radius: 4px;
	}

	/* Spanish Home Form Adjustements */

	.page-id-126 .rw-home-page-form .rw-main-image-line1 {
		font-size: 36px;
	}

	.rw-home-page-form .rw-main-image-line2 {
		font-size: 21px;
	}

	.rw-home-page-form .rw-main-image-line4 {
		font-size: 17px;
	}



}

@media (min-width: 600px) {

	.rw-main-image .fl-row-content-wrap {
		background-size: 889px 500px;
		padding-top: 500px;
	}

}


@media (min-width: 769px) {

	/* Form goes back on left over image */

	.rw-home-page-form {
		width: 50%;
		max-width: 333px;
	}

	.rw-main-image .fl-row-content-wrap {
		background-size: cover;
		padding-top: 148px;
		padding-bottom: 50px;
		background-position: -160px top;
	}

	.rw-main-image .fl-row-content-wrap .fl-row-content {
		padding-left: 40px;
		padding-right: 40px;
	}

}

@media (min-width: 900px) {

	.rw-main-image .fl-row-content-wrap .fl-row-content {
		padding-top: 20px;
		padding-bottom: 20px;
		margin-bottom: 0;
	}

	.rw-main-image .fl-row-content-wrap .fl-row-content h1 {
		font-size: 36px;
		line-height: 1;
	}

	.rw-main-image .fl-row-content-wrap .fl-row-content h1 span {
		font-size: 28px;
	}

}

@media (min-width: 992px) {

	.shiftnav-inner .wpml-ls-legacy-dropdown {
		display: none;
	}

}

@media (min-width: 1024px) {

	.rw-main-image .fl-row-content-wrap {
		background-position: center top;
	}

}


@media (min-width: 1441px) {}

@media (max-width: 991px) .shiftnav-inner .wpml-ls-legacy-dropdown {
	display: block;
}

}



/* !Internal Main Image ---------------------------------------*/

.rw-int-main-image .fl-row-content-wrap {
	height: 700px;
	padding-top: 0;
	padding-bottom: 0;
	display: flex;
	justify-content: center;
}

/*
.rw-int-main-image .fl-row-content-wrap .fl-row-content {
	position: absolute;
	bottom: 160px;
	padding: 40px;
	background-color: rgba(255,255,255,0.65);
	width: auto;
	min-width: 600px;
	margin: auto;
}

.rw-int-main-image .fl-row-content-wrap .fl-row-content h1 {
	font-size: 42px;
	font-weight: 700;
	font-family: 'Oswald', sans-serif;
	text-align: center;
	line-height: 0.8;
	margin: 0;
	text-transform: uppercase;
}

.rw-int-main-image .fl-row-content-wrap .fl-row-content h1 em {
	font-size: 28px;
	font-style: normal;
}
*/

/* !Internal Main Slider ---------------------------------------*/

.rw-int-main-slider .fl-row-content-wrap {
	height: 686px;
	padding-top: 0;
	padding-bottom: 0;
	display: flex;
	justify-content: center;
}

.rw-int-main-slider .fl-row-content-wrap .fl-row-content {
	width: 100%;
}

.rw-int-main-slider .fl-row-content-wrap .bx-wrapper {
	position: relative;
	margin-bottom: 60px;
	padding: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
}

.rw-int-main-slider .fl-row-content-wrap .bx-viewport {
	height: 626px !important;
}

.rw-int-main-slider .fl-row-content-wrap .fl-content-slider .fl-slide-bg-photo {
	min-height: 626px;
}

.rw-int-main-slider .fl-slide-content-wrap {
	height: 626px;
	padding-top: 0;
	padding-bottom: 0;
	display: flex;
	justify-content: center;
}

.rw-int-main-slider .fl-slide-content {
	position: absolute;
	bottom: 160px;
	padding: 60px;
	background-color: rgba(255, 255, 255, 0.65);
	width: auto;
	min-width: 600px;
	margin: auto;
}

.rw-int-main-slider .fl-slide-title {
	margin: 0 !important;
}

.rw-int-main-slider .fl-slide-content h1 {
	font-size: 42px;
	font-weight: 700;
	font-family: 'Oswald', sans-serif;
	text-align: center;
	line-height: 0.8;
	margin: 0;
	text-transform: uppercase;
	color: #ae0721 !important;
}

.rw-int-main-slider .fl-slide-content h1 em {
	font-size: 28px;
	font-style: normal;
}

.rw-int-main-slider .fl-content-slider-navigation {
	top: 60%;
}









/* !Home - RW CTA Fullwidth ------------------------------------*/

.rw-cta-fullwidth {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b60800+0,6c0500+100 */
	background: rgb(182, 8, 0);
	/* Old browsers */
	background: -moz-linear-gradient(top, rgba(182, 8, 0, 1) 0%, rgba(108, 5, 0, 1) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(182, 8, 0, 1) 0%, rgba(108, 5, 0, 1) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(182, 8, 0, 1) 0%, rgba(108, 5, 0, 1) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b60800', endColorstr='#6c0500', GradientType=0);
	/* IE6-9 */
}

.rw-cta-fullwidth .fl-row-content-wrap {
	background-image: url(/wp-content/uploads/2019/09/usimm-logo-bg.png);
	background-repeat: no-repeat;
}

.rw-cta-fullwidth p {
	text-align: center;
	color: #fff;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 0;
}

.rw-cta-fullwidth a {
	color: #fff;
}

@media (min-width: 320px) {

	.rw-cta-fullwidth .fl-row-content-wrap {
		background-position: center -40px;
	}

}

@media (min-width: 400px) {

	.rw-cta-fullwidth .fl-row-content-wrap {
		background-position: center -60px;
	}

}

@media (min-width: 600px) {

	.rw-cta-fullwidth .fl-row-content-wrap {
		background-position: -90px -60px;
	}

}

@media (min-width: 769px) {

	.rw-cta-fullwidth .fl-row-content-wrap {
		background-position: -90px -96px;
	}

}

@media (min-width: 1007px) {

	.rw-cta-fullwidth .fl-row-content-wrap {
		background-position: -90px -116px;
	}

}

@media (min-width: 1007px) {

	.rw-cta-fullwidth .fl-row-content-wrap {
		background-position: -90px -120px;
	}

}

/* !Home - RW Home Checklist ------------------------------------*/


.rw-home-checklist .fl-col {
	width: 810px;
	margin: auto;
	float: none;
}

.rw-home-checklist ul {
	padding-left: 0;
}

.rw-home-checklist li {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: #fff;
	background: top left url(/wp-content/uploads/2019/09/rw-check.png) no-repeat;
	list-style: none;
	margin-bottom: 20px;
	padding: 10px 0 5px 85px;
}

@media (min-width: 320px) {

	.rw-home-checklist li {
		font-size: 16px;
		background-size: 52px 40px;
		margin-bottom: 20px;
		padding: 10px 0 10px 65px;
		margin-bottom: 10px;
	}

}

@media (min-width: 360px) {

	.rw-home-checklist li {
		font-size: 18px;
	}

}

@media (min-width: 400px) {

	.rw-home-checklist li {
		font-size: 20px;
	}

}

@media (min-width: 480px) {

	.rw-home-checklist li {
		font-size: 22px;
	}

}

@media (min-width: 540px) {

	.rw-home-checklist li {
		font-size: 26px;
	}

}

@media (min-width: 600px) {

	.rw-home-checklist .fl-module-content {
		margin: 20px 70px;
	}

	.rw-home-checklist li {
		font-size: 30px;
	}

}

@media (min-width: 769px) {

	.rw-home-checklist li {
		font-size: 32px;
	}

}

@media (min-width: 800px) {

	.rw-home-checklist li {
		font-size: 34px;
		background-size: 64px 49px;
		padding: 10px 0 10px 85px;
	}

}

@media (min-width: 980px) {

	.rw-home-checklist li {
		font-size: 36px;
	}

}

/* !RW Callouts ---------------------------------------*/


.rw-callouts .fl-module-content {
	background-color: #fff;
	padding: 30px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	min-height: 576px;
}


.rw-callouts h3.fl-callout-title {
	font-size: 20px;
	text-align: center;
	color: #074499;
	padding-bottom: 25px;
}

.rw-callouts h3.fl-callout-title a {
	color: #074499;
}

.rw-callouts h3.fl-callout-title a:hover {
	color: #AE0721;
}

.rw-callouts .fl-callout-content .fl-photo-content {
	border: none;
}

.rw-callouts .fl-callout-photo-above-title .fl-photo {
	margin-bottom: 25px;
}

.rw-callouts .fl-callout-content:hover h3.fl-callout-title a {
	color: #AE0721;
}

.rw-callouts .fl-callout-content .fl-photo-img {
	width: 100%;
}

.rw-callouts .fl-callout-text p {
	line-height: 1.4;
	padding: 0 0 10px 0 !important;
	text-align: center;
}


@media (min-width: 320px) {

	.rw-callouts .fl-col-content {
		min-height: auto !important;
	}

	.rw-callouts .fl-module-content {
		padding: 20px;
		min-height: auto;
	}


}

@media (min-width: 480px) {

	.rw-callouts .fl-module-content {
		padding: 30px;
	}

}

@media (min-width: 769px) {

	.rw-callouts .fl-module-content {
		padding: 20px;
		min-height: 600px;
	}

	.rw-callouts .fl-callout-text p {
		font-size: 14px;
	}

}

@media (min-width: 800px) {

	.rw-callouts .fl-module-content {
		min-height: 560px;
	}

}

@media (min-width: 900px) {

	.rw-callouts .fl-module-content {
		min-height: 500px;
	}

}

@media (min-width: 1024px) {

	.rw-callouts .fl-module-content {
		min-height: 470px;
	}

}

@media (min-width: 1100px) {

	.rw-callouts .fl-module-content {
		min-height: 510px;
	}

	.rw-callouts .fl-callout-text p {
		font-size: 16px;
	}

}

@media (min-width: 1280px) {

	.rw-callouts .fl-module-content {
		min-height: 530px;
		padding: 30px;
	}

}

/* !RW Reviews ---------------------------------------*/

.rw-review-slider-row .fl-row-content-wrap {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b60800+0,6c0500+100 */
	background: rgb(182, 8, 0);
	/* Old browsers */
	background: -moz-linear-gradient(top, rgba(182, 8, 0, 1) 0%, rgba(108, 5, 0, 1) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(182, 8, 0, 1) 0%, rgba(108, 5, 0, 1) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(182, 8, 0, 1) 0%, rgba(108, 5, 0, 1) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b60800', endColorstr='#6c0500', GradientType=0);
	/* IE6-9 */
}

.rw-review-slider-row h2 {
	color: #fff;
}

/* !RW Logos ---------------------------------------*/

.rw-logo-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.rw-logo-wrapper .item {
	flex-grow: 1;
	text-align: center;
}

@media (min-width: 320px) {

	.rw-logo-wrapper .item {
		margin-bottom: 20px;
	}

}

/* !Home Page Post Grid ---------------------------------------*/

@media (min-width: 320px) {

	.home .fl-post-grid {
		margin-left: -15px;
		margin-right: -15px;
	}

}


/* Footer Widgets 
---------------------------------------*/

.fl-page-footer-widgets {
	border-top: none;
	background-color: #002E62;
	color: #fff;
	background-size: cover;
}

.fl-page-footer-widgets-container {
	padding-top: 70px;
	padding-bottom: 30px;
}

.fl-page-footer-widgets-container .fl-widget {
	margin-bottom: 20px;
}

.rw-footer-address p {
	text-align: center;
}

.rw-footer-address p a:hover {
	text-decoration: none;
}

.rw-footer-address p .rw-upper {
	text-transform: uppercase;
	font-weight: 600;
}

.fl-widget.rw-footer-privacy-menu ul {
	text-align: center;
}

.rw-footer-social {
	text-align: center;
}

.rw-footer-social .fl-social-icons {
	padding-right: 0;
	margin-left: 0;
	padding-left: 0;
}

.rw-footer-social .fl-social-icons a:first-of-type {
	margin-left: 0;
}

.rw-footer-social .fl-social-icons i.fas,
.rw-footer-social .fl-social-icons i.fab {
	font-size: 32px;
	vertical-align: middle;
	text-align: center;
}

.rw-footer-social .fl-social-icons i.fab.fa-linkedin:before {
	content: "\f0e1";
}

.rw-footer-nav #menu-footer-menu {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.rw-footer-nav.fl-widget ul li {
	margin-bottom: 0;
	margin-right: 5px;
}

.rw-footer-nav.fl-widget ul li:last-of-type {
	margin-right: 0;
}

.fl-page-footer-widgets .rw-footer-nav.fl-widget ul li a {
	display: block;
	padding: 10px 20px;
	background-color: rgba(255, 255, 255, 0.3);
	-webkit-border-radius: 3px;
	border-radius: 3px;

}

.fl-page-footer-widgets .rw-footer-nav.fl-widget ul li a:hover {
	background-color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
}


@media (min-width: 320px) {

	.rw-footer-social .fl-social-icons i.fas,
	.rw-footer-social .fl-social-icons i.fab {
		width: 50px;
		height: 50px;
		line-height: 50px;
	}

	.rw-footer-vrma-logo p,
	.rw-footer-fsh-logo p {
		text-align: center;
	}

}

@media (min-width: 480px) {

	.rw-footer-social .fl-social-icons i.fas,
	.rw-footer-social .fl-social-icons i.fab {
		width: 60px;
		height: 60px;
		line-height: 60px;
	}

}

@media (min-width: 768px) {

	.rw-footer-vrma-logo p {
		text-align: left;
	}

	.rw-footer-fsh-logo p {
		text-align: right;
	}

}


/* Footer
---------------------------------------*/

.fl-page-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.10);
	border-color: rgba(255, 255, 255, 0.10);
}

.fl-page-footer a:hover {
	text-decoration: none;
}



@media (min-width: 992px) {

	.fl-page-footer-container {
		padding: 50px 0 20px;
	}

	.fl-page-footer-text {
		padding-bottom: 30px;
		text-align: center;
	}

}


.fl-page-footer .col-lg-12.text-center {
	text-align: center !important;
}


/* 2 Percent Header
---------------------------------------*/

@media (min-width: 320px) {

	.two-cash-main-image .fl-row-content-wrap {
		min-height: 220px !important;
	}

	.two-cash-steps .fl-row-content-wrap {
		background-size: contain;
	}

	.two-cash-steps .rw-narrow-column {
		max-width: 320px;
	}

	.two-cash-steps .rw-narrow-column.espanol {
		max-width: 320px;
	}

	.two-cash-steps .rw-narrow-column ol li {
		font-size: 15px;
	}

}

@media (min-width: 480px) {

	.two-cash-main-image .fl-row-content-wrap {
		min-height: 300px !important;
	}

	.two-cash-steps .rw-narrow-column {
		max-width: 380px;
	}

	.two-cash-steps .rw-narrow-column.espanol {
		max-width: 380px;
	}

	.two-cash-steps .rw-narrow-column ol li {
		font-size: 20px;
	}

}

@media (min-width: 800px) {

	.two-cash-main-image .fl-row-content-wrap {
		min-height: 360px !important;
	}

	.two-cash-steps .fl-row-content-wrap {
		background-size: auto;
	}

	.two-cash-steps .rw-narrow-column {
		max-width: 440px;
	}

	.two-cash-steps .rw-narrow-column.espanol {
		max-width: 560px;
	}

	.two-cash-steps .rw-narrow-column ol li {
		font-size: 24px;
	}

}

@media (min-width: 1024px) {

	.two-cash-main-image .fl-row-content-wrap {
		min-height: 400px !important;
	}

}

/* h1-full-width-row
---------------------------------------*/

.h1-full-width-row {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b60800+0,6c0500+100 */
	background: rgb(182, 8, 0);
	/* Old browsers */
	background: -moz-linear-gradient(top, rgba(182, 8, 0, 1) 0%, rgba(108, 5, 0, 1) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(182, 8, 0, 1) 0%, rgba(108, 5, 0, 1) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(182, 8, 0, 1) 0%, rgba(108, 5, 0, 1) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b60800', endColorstr='#6c0500', GradientType=0);
	/* IE6-9 */
	/*margin-top: 149px;*/
}

.h1-full-width-row .fl-row-fixed-width {
	max-width: 1180px;
}

.h1-full-width-row.has-image-above {
	margin-top: 0;
}

.h1-full-width-row .fl-row-content-wrap {
	background-image: url(/wp-content/uploads/2019/09/usimm-logo-bg.png);
	background-repeat: no-repeat;
}

.h1-full-width-row .fl-module-content {
	margin: 20px;
}

.h1-full-width-row h1,
.h1-full-width-row h2 {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 42px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin: 0;
}

@media (min-width: 320px) {

	.h1-full-width-row {
		margin-top: 100px;
	}

	.h1-full-width-row .fl-row-content-wrap {
		background-position: center center;
	}

	.h1-full-width-row h1,
	.h1-full-width-row h2 {
		font-size: 28px;
	}

}

@media (min-width: 360px) {

	.h1-full-width-row {
		margin-top: 106px;
	}

}

@media (min-width: 400px) {

	.h1-full-width-row {
		margin-top: 111px;
	}

}

@media (min-width: 480px) {

	.h1-full-width-row {
		margin-top: 121px;
	}

	.h1-full-width-row h1,
	.h1-full-width-row h2 {
		font-size: 30px;
	}

}

@media (min-width: 540px) {

	.h1-full-width-row {
		margin-top: 129px;
	}

}

@media (min-width: 600px) {

	.h1-full-width-row {
		margin-top: 128px;
	}

	.h1-full-width-row .fl-row-content-wrap {
		background-position: left center;
	}

	.h1-full-width-row h1,
	.h1-full-width-row h2 {
		font-size: 32px;
	}

}

@media (min-width: 800px) {

	.h1-full-width-row h1,
	.h1-full-width-row h2 {
		font-size: 36px;
	}

}

@media (min-width: 992px) {

	.h1-full-width-row {
		margin-top: 141px;
	}

}

@media (min-width: 1100px) {

	.h1-full-width-row {
		margin-top: 146px;
	}

	.h1-full-width-row h1,
	.h1-full-width-row h2 {
		font-size: 42px;
	}

}

@media (min-width: 1200px) {

	.h1-full-width-row {
		margin-top: 149px;
	}

}

/* Breadcumbs
------------------------------------------------------------*/

.rw-breadcrumbs {
	border-bottom: 1px solid #eee;
}

.rw-breadcrumbs .fl-row-fixed-width {
	max-width: 1180px;
}

.rw-breadcrumbs .fl-row-content-wrap {
	font-size: 14px;
	padding-top: 0;
	padding-bottom: 0;
}

.rw-breadcrumbs .fl-module-content {
	margin: 10px 20px;
}

.coi-widget p {
	text-align: center;
}

.coi-widget .readmore {
	background: #b60400;
	display: block;
	border: 1px solid #fff;
	color: #fff;
	cursor: pointer;
	font-weight: 700;
	font-size: 14px;
	width: auto;
	border-radius: 5px;
	margin: 0;
	padding: 10px 30px;
}

@media (min-width: 320px) {

	.rw-breadcrumbs .fl-row-content-wrap {
		font-size: 12px;
	}

}


@media (min-width: 640px) {

	.rw-breadcrumbs .fl-row-content-wrap {
		font-size: 14px;
	}

}


/* !Sidebar Stuff ------------------------------------------------------------*/

.rw-htable {
	width: 100%;
	border: 1px solid #ddd;
	border-bottom: none;
}

.rw-htable {
	width: 100%;
	margin-bottom: 20px;
}

.rw-htable thead tr {
	background-color: #eee;
}

.rw-htable thead th {
	padding: 5px;
}

.rw-htable tbody tr {
	border: 1px solid #ddd;
}

.rw-htable tbody tr:nth-child(even) {
	background-color: #f5f5f5;
}

.rw-htable tbody td {
	padding: 5px;
}




/* Sidebar Stuff
------------------------------------------------------------*/

.rw-gagg .wp-google-content-inner {
	display: none;
}

.rw-gagg .wp-gr .wp-google-place {
	display: block !important;
	font-family: "Roboto", sans-serif !important;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26) !important;
	border-top: 6px solid #4fce6a !important;
	padding: 10px 20px !important;
	width: 100% !important;
	margin: 0 auto 20px !important
}

@media (min-width: 769px) {

	.rw-gagg .wp-gr .wp-google-place {
		padding: 5px 0 !important;
	}

}

@media (min-width: 880px) {

	.rw-gagg .wp-gr .wp-google-place {
		padding: 10px 5px !important;
	}

}

@media (min-width: 980px) {

	.rw-gagg .wp-gr .wp-google-place {
		padding: 10px 10px !important;
	}

}






/* Blog Layout
---------------------------------------*/

.rw-left-column {
	padding-left: 0;
	padding-right: 0;
}

.rw-masonry-grid-container {
	padding-bottom: 30px;
	flex-direction: row;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

@media (min-width: 992px) {

	.fl-sidebar {
		display: flex;
	}

}



/* Blog Archive Styles
----------------------------------------*/

.blog .fl-archive.container,
.search .fl-archive.container,
.archive .fl-archive.container {
	padding: 20px 35px;
}

.blog.fl-builder .container.fl-content-full .fl-content,
.search.fl-builder .container.fl-content-full .fl-content,
.archive.fl-builder .container.fl-content-full .fl-content {
	margin: 40px 0 20px;
}

.rw-masonry-grid-container {
	padding-bottom: 30px;
	flex-direction: row;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}

.blog .rw-blog-layout3 article,
.search .rw-blog-layout3 article,
.archive .rw-blog-layout3 article {
	margin-bottom: 30px;
	display: flex;
	flex-direction: row;
	border: 1px solid #ddd;
}

.blog .rw-blog-layout3 .rw-post-image,
.search .rw-blog-layout3 .rw-post-image,
.archive .rw-blog-layout3 .rw-post-image {
	width: 44%;
	min-height: 200px;
	overflow: hidden;
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
}

.blog .rw-blog-layout3 .rw-post-image-child,
.search .rw-blog-layout3 .rw-post-image-child,
.archive .rw-blog-layout3 .rw-post-image-child {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}

.blog .rw-blog-layout3 .rw-post-image:hover .rw-post-image-child,
.blog .rw-blog-layout3 .rw-post-image:focus .rw-post-image-child,
.search .rw-blog-layout3 .rw-post-image:hover .rw-post-image-child,
.search .rw-blog-layout3 .rw-post-image:focus .rw-post-image-child,
.archive .rw-blog-layout3 .rw-post-image:hover .rw-post-image-child,
.archive .rw-blog-layout3 .rw-post-image:focus .rw-post-image-child {
	-ms-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

.blog .rw-blog-layout3 .rw-post-image a,
.search .rw-blog-layout3 .rw-post-image a,
.archive .rw-blog-layout3 .rw-post-image a {
	display: none;
	font-size: 35px;
	color: #ffffff !important;
	font-family: sans-serif;
	text-align: center;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: 50px;
	cursor: pointer;
	/*text-decoration: none;*/
}

.blog .rw-blog-layout3 .rw-post-image:hover .rw-post-image-child:before,
.blog .rw-blog-layout3 .rw-post-image:focus .rw-post-image-child:before,
.search .rw-blog-layout3 .rw-post-image:focus .rw-post-image-child:before,
.search .rw-blog-layout3 .rw-post-image:focus .rw-post-image-child:before,
.archive .rw-blog-layout3 .rw-post-image:focus .rw-post-image-child:before,
.archive .rw-blog-layout3 .rw-post-image:focus .rw-post-image-child:before {
	display: flex;
}

.blog .rw-blog-layout3 .rw-post-image:hover a,
.blog .rw-blog-layout3 .rw-post-image:focus a,
.search .rw-blog-layout3 .rw-post-image:hover a,
.search .rw-blog-layout3 .rw-post-image:focus a,
.archive .rw-blog-layout3 .rw-post-image:hover a,
.archive .rw-blog-layout3 .rw-post-image:focus a {
	display: flex;
}

.blog .rw-blog-layout3 .rw-post-image-child::before,
.search .rw-blog-layout3 .rw-post-image-child::before,
.archive .rw-blog-layout3 .rw-post-image-child::before {
	content: "";
	display: none;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.3);
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}

.blog .rw-blog-layout3 .rw-post-image:hover a .rw-overlay-item-container,
.blog .rw-blog-layout3 .rw-post-image:focus a .rw-overlay-item-container,
.search .rw-blog-layout3 .rw-post-image:hover a .rw-overlay-item-container,
.search .rw-blog-layout3 .rw-post-image:focus a .rw-overlay-item-container,
.archive .rw-blog-layout3 .rw-post-image:hover a .rw-overlay-item-container,
.archive .rw-blog-layout3 .rw-post-image:focus a .rw-overlay-item-container {
	margin: auto;
}

.blog .rw-blog-layout3 .rw-post-content-wrapper,
.search .rw-blog-layout3 .rw-post-content-wrapper,
.archive .rw-blog-layout3 .rw-post-content-wrapper {
	width: 66%;
	padding: 10px 20px;
}

.blog .rw-blog-layout3 h2.entry-title,
.search .rw-blog-layout3 h2.entry-title,
.archive .rw-blog-layout3 h2.entry-title {
	font-size: 19px;
	padding: 0;
	margin-bottom: 7px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.15;
}

.blog .rw-blog-layout3 .entry-meta,
.search .rw-blog-layout3 .entry-meta,
.archive .rw-blog-layout3 .entry-meta {
	padding: 0 0 7px;
	font-size: 10px;
}

.blog .rw-blog-layout3 .entry-meta p,
.search .rw-blog-layout3 .entry-meta p,
.archive .rw-blog-layout3 .entry-meta p {
	margin: 0;
	font-size: 10px;
}

.blog .rw-blog-layout3 h2.entry-title a,
.search .rw-blog-layout3 h2.entry-title a,
.archive .rw-blog-layout3 h2.entry-title a {
	color: #333;
}

.blog .rw-blog-layout3 h2.entry-title a:hover,
.search .rw-blog-layout3 h2.entry-title a:hover,
.archive .rw-blog-layout3 h2.entry-title a:hover {
	color: #AE0721;
}

.blog .rw-blog-layout3 .rw-blog-excerpt,
.search .rw-blog-layout3 .rw-blog-excerpt,
.archive .rw-blog-layout3 .rw-blog-excerpt {
	padding: 0 0 10px;
	border-bottom: 1px solid #ddd;
}

.blog .rw-blog-layout3 .rw-blog-excerpt p,
.search .rw-blog-layout3 .rw-blog-excerpt p,
.archive .rw-blog-layout3 .rw-blog-excerpt p {
	font-size: 12px;
	margin-bottom: 0;
}

.blog .rw-blog-layout3 .post-meta-categories,
.search .rw-blog-layout3 .post-meta-categories,
.archive .rw-blog-layout3 .post-meta-categories {
	font-size: 12px;
	padding: 10px 0 0;
	text-transform: uppercase;
	font-weight: 600;
}

.blog .rw-blog-layout3 .rw-comments-cats-meta,
.search .rw-blog-layout3 .rw-comments-cats-meta,
.archive .rw-blog-layout3 .rw-comments-cats-meta {
	margin-right: 92px;
	margin-top: 20px;
	position: relative;
	overflow: visible;
}

.moretag {
	display: inline !important;
}

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

@media (min-width: 320px) {

	.blog .fl-archive.container,
	.search .fl-archive.container,
	.archive .fl-archive.container {
		padding: 20px;
	}

	.blog .rw-blog-layout3 article,
	.search .rw-blog-layout3 article,
	.archive .rw-blog-layout3 article {
		flex-direction: column;
	}

	.blog .rw-blog-layout3 .rw-post-image,
	.search .rw-blog-layout3 .rw-post-image,
	.archive .rw-blog-layout3 .rw-post-image {
		width: 100%;
	}

	.blog .rw-blog-layout3 .rw-post-content-wrapper,
	.search .rw-blog-layout3 .rw-post-content-wrapper,
	.archive .rw-blog-layout3 .rw-post-content-wrapper {
		width: 100%;
	}

}

@media (min-width: 600px) {

	.blog .rw-blog-layout3 article,
	.search .rw-blog-layout3 article,
	.archive .rw-blog-layout3 article {
		flex-direction: row;
	}

	.blog .rw-blog-layout3 .rw-post-image,
	.search .rw-blog-layout3 .rw-post-image,
	.archive .rw-blog-layout3 .rw-post-image {
		width: 44%;
	}

	.blog .rw-blog-layout3 .rw-post-content-wrapper,
	.search .rw-blog-layout3 .rw-post-content-wrapper,
	.archive .rw-blog-layout3 .rw-post-content-wrapper {
		width: 66%;
	}

	a.page.smaller,
	a.page.larger,
	span.extend {
		display: none;
	}

	.wp-pagenavi a,
	.wp-pagenavi span {
		font-size: 14px;
	}

}

@media (min-width: 720px) {

	.blog .rw-blog-layout3 .rw-blog-excerpt p,
	.search .rw-blog-layout3 .rw-blog-excerpt p,
	.archive .rw-blog-layout3 .rw-blog-excerpt p {
		font-size: 14px;
	}

}

@media (min-width: 769px) {

	.blog .fl-archive.container,
	.search .fl-archive.container,
	.archive .fl-archive.container {
		padding: 20px 20px;
	}

	.blog .fl-archive.container .col-lg-8,
	.search .fl-archive.container .col-lg-8,
	.archive .fl-archive.container .col-lg-8,
	.single .container .col-lg-8 {
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}


}

@media (min-width: 900px) {

	.blog .rw-blog-layout3 h2.entry-title,
	.search .rw-blog-layout3 h2.entry-title,
	.archive .rw-blog-layout3 h2.entry-title {
		font-size: 19px;
	}

	.blog .rw-blog-layout3 .rw-blog-excerpt p,
	.search .rw-blog-layout3 .rw-blog-excerpt p,
	.archive .rw-blog-layout3 .rw-blog-excerpt p {
		font-size: 14px;
	}

}

@media (min-width: 1100px) {

	.blog .rw-blog-layout3 h2.entry-title,
	.search .rw-blog-layout3 h2.entry-title,
	.archive .rw-blog-layout3 h2.entry-title {
		font-size: 22px;
	}

	.blog .rw-blog-layout3 .rw-blog-excerpt p,
	.search .rw-blog-layout3 .rw-blog-excerpt p,
	.archive .rw-blog-layout3 .rw-blog-excerpt p {
		font-size: 16px;
	}

}




/* Blog Single Styles
----------------------------------------*/

.single .rw-post-image {
	margin-bottom: 20px;
}

.single h1.fl-post-title {
	font-size: 36px;
	margin-bottom: 10px;

}

.single .rw-post-meta {
	width: 100%;
	clear: both;
	overflow: hidden;
	display: flex;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.single .rw-post-meta p {
	margin-bottom: 0;
}

.single .rw-author-date {
	width: 50%;
	font-size: 12px;
	color: #999;
}

.single .rw-author-date p {
	font-size: 12px;
}

.single .rw-comments-meta {
	width: 50%;
	text-align: right;
	font-size: 12px;
	color: #999;
}

.single .rw-comments-meta .post-meta-categories {
	margin-right: 5px;
}

.single .rw-comments-meta .post-meta-comments i {
	/*color: #084B8D;*/
}

.single .fl-post-thumb {
	text-align: center;
}


.single .nc_socialPanel {
	margin-top: 0 !important;
}

.single .rw-blog-content {
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.single .rw-blog-tags {
	display: inline-block;
	padding: 20px 0;
	border-bottom: 1px solid #eee;
}

.single .rw-blog-tags a {
	background: #eee;
	padding: 7px 12px;
	margin: 0 5px 5px 0;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: #666;
	font-size: 12px;
	text-transform: uppercase;
}

.single .rw-blog-tags a:hover {
	background: #B0B34A;
	color: #fff;
	text-decoration: none;
}

.single .rw-post-navigation {
	width: 100%;
	clear: both;
	overflow: hidden;
	padding: 20px 0;
	margin-bottom: 20px;
}

.single .rw-previous,
.single .rw-next {
	width: 50%;
	float: left;
}

.single .rw-previous {
	font-size: 14px;
	color: #999;
}

.single .rw-next {
	text-align: right;
	font-size: 14px;
	color: #999;
}

.single iframe {
	border: none;
}

@media (min-width: 320px) {

	.single .fl-post-meta {
		font-size: 12px;
	}

}


@media (min-width: 992px) {

	.fl-content-left {
		border-right: none;
		padding-right: 15px;
	}

}


/* Blog Single Beaver Builder Styles
----------------------------------------*/

.single .fl-post-content .fl-row-content-wrap {
	padding: 0;
}

.single .fl-post-content .fl-row-content-wrap .fl-module-content {
	margin-left: 0;
	margin-right: 0;
}

.single .fl-post-content .fl-row-content-wrap .fl-col-group .fl-module-photo {
	margin-left: 0;
	margin-right: 30px;
}



/* Sidebar
----------------------------------------*/

.fl-widget {
	width: 100%;
}

h2.widgettitle,
h4.fl-widget-title,
.blog-categories.fl-widget h4.fl-widget-title {
	color: #074499;
	font-size: 24px;
	text-align: center;
	margin-top: 0;
	margin-bottom: 10px !important;
	padding: 0;
}

@media (min-width: 320px) {

	.fl-sidebar {
		flex-direction: column;
	}

}

.blog.fl-builder .container.fl-content-full .fl-content,
.search.fl-builder .container.fl-content-full .fl-content,
.archive.fl-builder .container.fl-content-full .fl-content {
	margin: 40px 0 20px;
}

@media (min-width: 768px) {

	.fl-archive .fl-content-left {
		padding-right: 0;
	}

	.fl-sidebar {
		margin: 40px 0 20px;
		padding: 0 20px;
		display: flex;
	}

	.blog .fl-sidebar,
	.search .fl-sidebar,
	.archive .fl-sidebar {
		margin: 40px 0 20px;
	}

	.fl-sidebar.col-lg-4 {
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}

}


@media (min-width: 992px) {

	.fl-sidebar-right {
		padding-left: 20px;
	}

	.fl-sidebar.col-lg-4 {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

}

@media (min-width: 1140px) {

	.fl-archive .fl-content-left {
		padding-right: 20px;
	}

}

/* Blog Category Menu
-------------------------------------------------------*/

.blog-categories.fl-widget ul {
	border-top: 1px solid #eee;
}

.blog-categories.fl-widget ul li {
	border-bottom: 1px solid #eee;
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
	display: flex;
}

.blog-categories.fl-widget ul li a {
	padding: 10px 0 10px 15px;
	color: #666;
	width: calc(100% - 40px);
	display: flex;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.blog-categories.fl-widget ul li a:hover {
	color: #B0B34A;
	text-decoration: none;
}

.blog-categories.fl-widget ul li span.count {
	background-color: #eee;
	color: #666;
	border-radius: 50px;
	padding: 0;
	line-height: 1.4;
	font-size: 12px;
	margin: 6px 15px 6px 0;
	text-align: center;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: default;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.blog-categories.fl-widget ul li:hover span.count {
	background-color: #F8AE56;
	color: #fff;
}

.menu-services-container li {
	margin-bottom: 1px !important;
}

.menu-services-container li a {
	display: block;
	padding: 13px 15px;
	background: #5A4A44;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: #fff;
}

.menu-services-container li a:hover {
	background: #F8AE56;
	text-decoration: none;
}


/* Comments
----------------------------------------*/

.fl-comments h3 {
	font-size: 20px;
	font-weight: 700;
}

@media (min-width: 320px) {

	.fl-builder .container.fl-content-full .fl-comments {
		margin-left: 0;
		margin-right: 0;
	}

}

@media (min-width: 992px) {

	.fl-builder.fl-full-width .container.fl-content-full .fl-comments {
		margin: 0;
	}

}

@media (min-width: 1100px) {

	.fl-builder.fl-full-width .container.fl-content-full .fl-comments {
		width: 100%;
	}

}


/* RW Grey Box
----------------------------------------*/

.rw-grey-box {
	background: #eee;
	padding: 30px;
	margin: 20px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	margin-bottom: 40px;
}

.rw-grey-box .fl-module-content {
	margin: 0;
}

@media (min-width: 320px) {

	.rw-grey-box {
		padding: 20px;
	}

}

@media (min-width: 1024px) {

	.rw-grey-box {
		padding: 30px;
	}

}



/* Gravity Forms Overrides
----------------------------------------*/

#leadid {
	visibility: hidden;
}

.gform_wrapper {
	margin: 0 !important;
}

.gform_wrapper label {
	margin-bottom: 2px;
}

body .gform_wrapper ul li.gfield {
	margin-top: 0 !important;
	margin-bottom: 5px;
}

body .gform_wrapper .top_label div.ginput_container {
	margin-top: 0 !important;
}

.gform_wrapper li.hidden_label input {
	margin-top: 0 !important;
}


.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper textarea {
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 15px !important;
}

.rw-shortform_wrapper.gform_wrapper textarea.large {
	height: 160px;
}

.gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],
.gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container select {
	margin-bottom: 0;
}

.gform_wrapper .gform_footer {
	padding: 0 0 10px !important;
	margin: 0 !important;
}

.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type=submit],
.gform_wrapper .gform_page_footer input.button,
.gform_wrapper .gform_page_footer input[type=submit] {
	font-size: 18px !important;
	text-transform: uppercase;
	margin: 0 !important;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

/* Shortform with Image */


.rw-shortform .fl-module-content,
.rw-shortform.widget {
	background-color: #eee;
	padding: 30px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.rw-shortform h2.widgettitle {
	background: transparent;
	color: #074499;
	font-size: 24px;
	text-align: center;
	margin-top: 0;
	margin-bottom: 10px !important;
	padding: 0;
}

.rw-shortform .gform_wrapper ul.gform_fields li.gfield {
	padding-right: 0;
}

.rw-shortform .gform_description p {
	font-size: 14px;
}

.rw-shortform .gform_wrapper textarea.large {
	height: 160px !important;
}

.rw-shortform .gform_wrapper .gform_footer {
	text-align: center;
}



@media (min-width: 320px) {

	.rw-shortform .fl-module-content,
	.rw-shortform.widget {
		padding: 20px;
	}

	.rw-shortform_wrapper .ginput_recaptcha iframe {
		-webkit-transform: scale(0.83);
		transform: scale(0.83);
	}

	.rw-shortform .gform_wrapper span.gform_description {
		width: 100% !important;
	}

	.gfield--type-html {
		font-size: 14px;
	}

}

@media (min-width: 400px) {

	.rw-shortform_wrapper .ginput_recaptcha iframe {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

}

@media only screen and (min-width: 641px) {



	.rw-shortform_wrapper.gform_wrapper ul.gform_fields li.gfield {
		padding-right: 0;
	}

	div.ginput_container_name span {
		display: -moz-inline-stack;
		display: inline-block;
		vertical-align: top;
		padding-right: 5px;
	}

	div.ginput_complex.ginput_container.gf_name_has_2 span {
		width: calc(50% - 5px);
	}

	.gform_wrapper .left_label input.large,
	.gform_wrapper .left_label select.large,
	.gform_wrapper .left_label textarea.large,
	.gform_wrapper .left_label textarea.medium,
	.gform_wrapper .left_label textarea.small,
	.gform_wrapper .right_label input.large,
	.gform_wrapper .right_label select.large,
	.gform_wrapper .right_label textarea.large,
	.gform_wrapper .right_label textarea.medium,
	.gform_wrapper .right_label textarea.small {
		width: 100% !important;
	}

	.gform_wrapper .left_label input.medium,
	.gform_wrapper .left_label select.medium,
	.gform_wrapper .right_label input.medium,
	.gform_wrapper .right_label select.medium {
		width: 50% !important;
	}

	.gform_wrapper .gform_footer input.button,
	.gform_wrapper .gform_footer input[type=submit],
	.gform_wrapper .gform_page_footer input.button,
	.gform_wrapper .gform_page_footer input[type=submit] {
		padding: 15px 30px;
	}

	.gform_wrapper .gform_footer:not(.top_label) {
		margin-left: 29% !important;
		width: 70%;
	}


}

@media (min-width: 769px) {

	.rw-shortform .gform_description p {
		text-align: center;
	}

	.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
		padding: 10px 10px;
		font-size: 14px !important;
	}

	.gform_wrapper textarea {
		padding: 10px;
		font-size: 14px !important;
	}

	.rw-shortform_wrapper .ginput_recaptcha iframe {
		-webkit-transform: scale(0.57);
		transform: scale(0.57);
	}

	.gform_wrapper .gform_footer input.button,
	.gform_wrapper .gform_footer input[type=submit],
	.gform_wrapper .gform_page_footer input.button,
	.gform_wrapper .gform_page_footer input[type=submit] {
		padding: 20px 30px;
	}




}

@media (min-width: 800px) {

	.rw-shortform_wrapper .ginput_recaptcha iframe {
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
	}

}

@media (min-width: 960px) s .rw-shortform_wrapper .ginput_recaptcha iframe {
	-webkit-transform:scale(0.78);
	transform:scale(0.78);
}

}

@media (min-width: 992px) {

	.rw-shortform_wrapper .ginput_recaptcha iframe {
		-webkit-transform: scale(0.82);
		transform: scale(0.82);
	}

}

@media (min-width: 1100px) {

	.rw-shortform_wrapper .ginput_recaptcha iframe {
		-webkit-transform: scale(0.94);
		transform: scale(0.94);
	}

}

@media (min-width: 1140px) {

	.rw-shortform_wrapper .ginput_recaptcha iframe {
		-webkit-transform: scale(0.97);
		transform: scale(0.97);
	}

}

@media (min-width: 1141px) {

	.rw-shortform_wrapper .ginput_recaptcha iframe {
		-webkit-transform: scale(0.98);
		transform: scale(0.98);
	}

}

/* Birdeye Reviews Overrides */

#bf-revz-widget-1234567935183 iframe {
	height: 3000px !important;
}