/*
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
*/

/* Use This File To Add Site Specific Styles and Override Theme and Plugin Defaults CSS
 * Don't Edit the original CSS files
*/

/*! Hack for making Responsive editing work */

.fl-responsive-preview-mask {
	background: transparent;
	bottom: auto;
	left: auto;
	position: relative;
	right: auto;
	top: auto;
	z-index: 99999;
}

.fl-responsive-preview {
	bottom: auto;
	left: auto;
	position: relative;
	right: auto;
	top: auto;
	margin-top: auto;
	z-index: 100000;
}

@media (min-width: 768px) {

	.sticky {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
	}

	.page-sidebar.sticky {
		top: 140px;
	}

	.shiftnav-wrap {
		overflow: visible !important;
		/* Disable overflow hidden as it prevents sticky from working */
	}

}

/*! Set Box sizing for all divs and elements to control widths and padding etc */

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

/*! Font Smoothing */

html,
body {
	height: 100%;
	/* Font varient */
	font-variant-ligatures: none;
	-webkit-font-variant-ligatures: none;
	/* Smoothing */
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

.fl-page-content {
	background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 20px;
	font-weight: 700;
}

h1,
h2 {
	text-transform: capitalize;
}

p {
	margin: 0 0 25px;
	line-height: 1.5;
}

.light-blue {
	color: #02B7EF !important;
}

/*p:last-child {
	
margin: 0;
}*/

@media (min-width: 320px) {

	h1 {
		font-size: 28px;
	}

	h2 {
		font-size: 20px;
	}

	h3 {
		font-size: 20px;
	}

	h4 {
		font-size: 20px;
	}

	h5 {
		font-size: 18px;
	}

	h6 {
		font-size: 16px;
	}

	p {
		font-size: 15px;
	}

	li {
		font-size: 15px;
	}

}

@media (min-width: 480px) {

	h1 {
		font-size: 38px;
	}

	h2 {
		font-size: 28px;
	}

	h3 {
		font-size: 26px;
	}

	h4 {
		font-size: 24px;
	}

	h5 {
		font-size: 22px;
	}

	h6 {
		font-size: 20px;
	}

	p {
		font-size: 16px;
	}

	li {
		font-size: 16px;
	}

}

@media (min-width: 640px) {

	p {
		font-size: 16px;
	}

	li {
		font-size: 16px;
	}

}

@media (min-width: 800px) {

	h1 {
		font-size: 42px;
	}

	h2 {
		font-size: 28px;
	}

	h3 {
		font-size: 24px;
	}

	h4 {
		font-size: 22px;
	}

	h5 {
		font-size: 20px;
	}

	h6 {
		font-size: 18px;
	}

}

@media (min-width: 1100px) {

	h1 {
		font-size: 42px;
	}

	.home h2 {
		font-size: 36px;
	}

	p {
		font-size: 18px;
	}

	li {
		font-size: 18px;
	}

}

/*! Set Animate.css Delay Unit Rate
1s = 0.3, 2s = 0.6 etc */
:root {
	--animate-delay: 0.3s;
}

/*! Beaver Builder Basic Animations 
Loading here so we can trigger them on HTML Code 
---------------------------------------*/
.fl-animated.fl-fade-up {
	animation: fl-fade-up 1s ease;
	-webkit-animation: fl-fade-up 1s ease;
}

@-webkit-keyframes fl-fade-up {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 50%, 0);
		transform: translate3d(0, 50%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fl-fade-up {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 50%, 0);
		transform: translate3d(0, 50%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.fl-animated.fl-fade-down {
	animation: fl-fade-down 1s ease;
	-webkit-animation: fl-fade-down 1s ease;
}

@-webkit-keyframes fl-fade-down {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -50%, 0);
		transform: translate3d(0, -50%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fl-fade-down {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -50%, 0);
		transform: translate3d(0, -50%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

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

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

.fl-builder-edit .fl-page-nav-wrap {
	z-index: 1000;
	/* Allows the top row handles to show in edit mode */
}

@media (min-width: 320px) {

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

	.has-top-bar .fl-page {
		padding-top: 198px !important;
	}

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

	.rw-max-width-form {
		width: 100%;
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;

		background-color: rgba(0, 0, 0, 0.05);
	}

}

@media (min-width: 400px) {

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

	.has-top-bar .fl-page {
		padding-top: 200px !important;
	}

}

@media (min-width: 576px) {

	.container {
		max-width: 100%;
	}

}

@media (min-width: 601px) {

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

}

@media (min-width: 640px) {

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

}

@media (min-width: 768px) {

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

}

@media (min-width: 992px) {

	.fl-row-fixed-width {
		max-width: 1340px !important;
	}

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

}

@media (min-width: 1100px) {

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

	.fl-full-width .container,
	.fl-row-fixed-width,
	.fl-row-full-width .fl-row-fixed-width,
	.fl-page-content .container {
		width: 100%;
		max-width: 1340px;
	}

	.fl-full-width .fl-page-header-wrap .container {
		width: 100%;
		max-width: 100%;
	}

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

}

@media (min-width: 1360px) {

	.h1-full-width-row .fl-row-fixed-width,
	.rw-breadcrumbs .fl-row-fixed-width {
		padding-left: 0;
		padding-right: 0;
	}

}

@media (min-width: 1520px) {

	.fl-full-width .container,
	.fl-row-fixed-width,
	.fl-row-full-width .fl-row-fixed-width,
	.fl-page-content .container {
		width: 100%;
		max-width: 1440px;
	}

}


@media (max-width: 768px) {

	.fl-col-small:not(.fl-col-small-full-width) {
		max-width: 100%;
	}

}

@media (max-width: 767px) {

	.fl-col-small:not(.fl-col-small-full-width) {
		max-width: 100%;
	}

}

/*! Home Hero Image ------------------------------*/

.rw-home-hero.fl-row-bg-overlay .fl-row-content {
	position: unset;
}

@media (min-width: 320px) {

	.rw-home-hero .fl-row-content-wrap {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-end !important;
		background-size: cover;
		background-position-x: center;
		background-position-y: center;
		height: 320px;
		padding: 0;
	}

	.rw-home-hero .fl-row-content-wrap .fl-row-content,
	.rw-home-hero .fl-row-content-wrap .fl-row-content .fl-col-group {
		display: flex;
		width: 100%;
		align-items: center;
	}

	.rw-home-hero .fl-module-content {
		margin: 0;
	}

	.rw-home-hero .home-hero-text .fl-module-content .fl-rich-text {
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 0;
	}

	.home-hero-text .rw-text-line1 {
		font-size: 38px;
		line-height: 40px;
		font-weight: 700;
		color: #fff;
		text-shadow: 0 2px 2px rgba(0, 0, 0, 0.46);
		font-family: "Fira Sans Condensed", sans-serif;
		text-align: center;
		text-transform: uppercase;
	}

	.home-hero-text .rw-text-line2 {
		font-size: 16px;
		line-height: 20px;
		font-weight: 700;
		color: #fff;
		text-shadow: 0 2px 2px rgba(0, 0, 0, 0.46);
		font-family: "Fira Sans Condensed", sans-serif;
		text-align: center;
	}

	.rw-home-hero .fl-module-button {
		margin-top: 10px;
		text-align: center;
	}

	.rw-home-hero .fl-module-button a.fl-button {
		padding: 6px 13px;
		font-size: 18px;
		border-radius: 3px;
		-webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.46);
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.46);
		font-family: "Fira Sans Condensed", sans-serif;
	}

}

@media (min-width: 400px) {

	.rw-home-hero .fl-row-content-wrap {
		height: 330px;
	}

	.home-hero-text .rw-text-line1 {
		font-size: 46px;
		line-height: 48px;
	}

	.home-hero-text .rw-text-line2 {
		font-size: 18px;
		padding: 0 20px;
	}

	.rw-home-hero .fl-module-button a.fl-button {
		padding: 6px 20px;
		font-size: 20px;
	}

}

@media (min-width: 480px) {

	.home-hero-text .rw-text-line1 {
		font-size: 52px;
		line-height: 54px;
	}

	.home-hero-text .rw-text-line2 {
		font-size: 20px;
		line-height: 25px;
		padding: 0 20px;
	}

	.rw-home-hero .fl-module-button a.fl-button {
		padding: 6px 20px;
		font-size: 24px;
	}

}

@media (min-width: 560px) {

	.home-hero-text .rw-text-line1 {
		font-size: 38px;
		line-height: 44px;
		margin-bottom: 10px;
	}

	.home-hero-text .rw-text-line2 {
		font-size: 18px;
		line-height: 23px;
		margin-bottom: 10px;
	}

}

@media (min-width: 600px) {

	.home-hero-text .rw-text-line1 {}


}

@media (min-width: 700px) {

	.rw-home-hero .fl-row-content-wrap {
		height: 420px;
	}

	.home-hero-text .rw-text-line1 {
		font-size: 46px;
		line-height: 48px;
	}

	.home-hero-text .rw-text-line2 {
		font-size: 20px;
		line-height: 25px;
	}

	.rw-home-hero .fl-module-button a.fl-button {
		padding: 10px 40px;
		font-size: 24px;
	}

}

@media (min-width: 769px) {

	.rw-home-hero .fl-row-content-wrap {
		height: 480px;
	}

	.home-hero-text .rw-text-line1 {
		font-size: 50px;
		line-height: 52px;
	}

	.home-hero-text .rw-text-line2 {
		font-size: 24px;
		line-height: 30px;
	}

	.rw-home-hero .fl-module-button a.fl-button {
		padding: 12px 48px;
		font-size: 28px;
	}

}

@media (min-width: 800px) {

	.rw-home-hero .fl-row-content-wrap {
		height: 500px;
	}

}

@media (min-width: 900px) {

	.rw-home-hero .fl-row-content-wrap {
		height: 560px;
	}

	.home-hero-text .rw-text-line1 {
		font-size: 60px;
		line-height: 62px;
	}

	.home-hero-text .rw-text-line2 {
		font-size: 28px;
		line-height: 34px;
	}

}

@media (min-width: 1024px) {

	.rw-home-hero .fl-row-content-wrap {
		height: 600px;
		padding: 0 0 200px;
	}

	.rw-home-hero .fl-module-button a.fl-button {
		padding: 12px 90px;
	}

}

@media (min-width: 1200px) {

	.rw-home-hero .fl-row-content-wrap {
		height: 700px;
		min-height: 600px;
	}

	.home-hero-text .rw-text-line1 {
		font-size: 60px;
		line-height: 70px;
		margin-bottom: 10px;
	}

	.home-hero-text .rw-text-line2 {
		font-size: 40px;
		line-height: 40px;
		margin-bottom: 0;
	}

	.rw-home-hero .fl-module-button a.fl-button {
		padding: 15px 80px;
	}

}


/*! Home Icon Callouts ---------------------------------------*/
@media (min-width: 320px) {

	.rw-icon-callouts .fl-html {
		display: flex;
		flex-direction: column;
		justify-content: center;
		flex-wrap: no-wrap;
	}

	.rw-icon-callouts .item {
		display: flex;
		width: 100%;
		flex-direction: column;
		align-items: center;
		padding: 0;
		margin-bottom: 30px;
	}

	.rw-icon-callouts a.item:hover {
		text-decoration: none;
	}

	.rw-icon-callouts .item .callout-image {
		width: 200px;
		min-height: 200px;
		margin-bottom: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 2;
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}

	.rw-icon-callouts .item:hover .callout-image {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	.rw-icon-callouts .item .callout-content {
		padding: 0;
		border-radius: 5px;
		font-size: 16px;
		z-index: 1;
		height: 100%;
	}

	.rw-icon-callouts .item .callout-content h3 {
		font-size: 32px;
		font-style: normal;
		margin-bottom: 0;
		text-align: center;
	}

	.rw-icon-callouts .item p {
		color: #fff;
		font-size: 18px;
		text-align: center;
		max-width: 270px;
	}

	.rw-icon-callouts .item p:last-of-type {
		margin-bottom: 10px;
	}

}

@media (min-width: 600px) {

	.rw-icon-callouts .fl-html {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.rw-icon-callouts .item {
		width: 50%;
	}

	.rw-icon-callouts .item .callout-content h3 {
		font-size: 20px;
		font-style: normal;
		margin-bottom: 0;
	}

}

@media (min-width: 900px) {

	.rw-icon-callouts .item {
		width: 33.33333%;
	}

	.rw-icon-callouts .item .callout-content h3 {
		font-size: 28px;
	}

}

/*! Callouts 

.rw-callouts .fl-html {
	display: grid;
    overflow: visible;
    grid-auto-rows: minmax(min-content, max-content);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

.rw-callouts .item {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.rw-callouts a.item:hover {
	text-decoration: none;
}

.rw-callouts .item .callout-image {
	border: 3px solid #fff;
	border-radius: 3px;
	margin-bottom: 10px;
	overflow: hidden;
}

.rw-callouts .item .callout-image img {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.rw-callouts .item:hover .callout-image img {
	-webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.rw-callouts .item .callout-content h3 {
	color: #fff;
	text-transform: capitalize;
	text-align: center;
	font-weight: 700;
	font-size: 24px;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.rw-callouts a.item:hover h3 {
	color: #E50119;
}

.rw-callouts .item .callout-content p {
	font-size: 16px;
	text-align: center;
}

@media (min-width: 320px) {
	
	.rw-callouts .fl-html {
		grid-template-columns: repeat(1, 1fr);
	}
	
}

@media (min-width: 640px) {
	
	.rw-callouts .fl-html {
		grid-template-columns: repeat(2, 1fr);
	}
	
}

@media (min-width: 960px) {
	
	.rw-callouts .fl-html {
		grid-template-columns: repeat(3, 1fr);
	}
	
}

*/

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

.h1-full-width-row {
	background-color: #0872B4;
}

.h1-full-width-row .fl-row-content-wrap {
	padding: 40px 20px;
}

.h1-full-width-row h1 {
	color: #fff;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 0;
}

@media (min-width: 320px) {

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

}

@media (min-width: 1280px) {

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

}



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

.rw-breadcrumbs {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	background-color: #fff;
}

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

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

@media (max-width: 768px) {

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

}

/*! Tables
------------------------------------------------------------*/

.htable {
	width: 100%;
	margin-bottom: 25px;
	border: 1px solid #ccc;
	border-bottom: none;
	border-spacing: 0;
}

.htable thead th {
	background-color: #D8D7CF;
	padding: 5px;
}

.htable tr {
	border-bottom: 1px solid #ccc;
}

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

.htable tbody th {
	padding: 5px;

}

.htable td {
	padding: 5px;
}

.htable-centered-td th,
.htable-centered-td td {
	text-align: center;
}

/*! Content Styles ------------------------------*/

@media (min-width: 320px) {

	.rw-white-box .fl-module-content {
		background-color: #fff;
		padding: 30px;
		border-radius: 3px;
	}

	.rw-dark-bg h1,
	.rw-dark-bg h2,
	.rw-dark-bg h3,
	.rw-dark-bg h4,
	.rw-dark-bg h5,
	.rw-dark-bg h6,
	.rw-dark-bg p,
	.rw-dark-bg li {
		color: #fff;
	}

	.rw-dark-bg .gfield_checkbox label {
		color: #fff;
	}

	.list-3-cols ul.pp-icon-list-items.pp-list-type-icon {
		column-count: 3 !important;
	}

	ul.list-4-cols {
		column-count: 2 !important;
		column-gap: 20px;
	}

	button,
	input[type=button],
	input[type=submit] {
		padding: 14px 30px;
	}

	button,
	.fl-button,
	input[type=button],
	input[type=submit],
	.navbar-toggle {
		-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;
	}

}

@media (min-width: 600px) {

	ul.list-4-cols {
		column-count: 3 !important;
	}


}

@media (min-width: 992px) {

	ul.list-4-cols {
		column-count: 4 !important;
	}


}




/*! RW QUOTE BOX -----------------------------

.rw-quote {
	font-family: "Playfair Display",serif;
	font-weight: 400;
	font-size: 28px;
	line-height: 1.8;
	color: #05235D;
}

.rw-quote-author {
	color: #05235D;
	font-size: 24px;
}

.rw-quote-box {
	
}

.rw-quote-box .fl-rich-text {
	padding: 0 8%;
	position: relative;
}

.rw-quote-box .fl-rich-text:before,
.rw-quote-box .fl-rich-text:after {
	position: absolute;
	font-size: 210px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.56);
	font-style: normal;
	font-family: "Playfair Display",serif;
	
z-index: 1;
}

.rw-quote-box .fl-rich-text:before {
	top: -35px;
	left: 0;
	content: "\201C";
}

.rw-quote-box .fl-rich-text:after {
	top: -35px;
	right: 0;
	content: "\201D";
}

.rw-quote-box p {
	font-size: 20px;
}

@media (min-width: 320px) {
	
	.rw-quote-box .fl-rich-text {
	padding: 0;
	}
	
	.rw-quote-box p {
	font-size: 16px;
	text-align: center;
	}
	
	.rw-quote-box .fl-rich-text:before, .rw-quote-box .fl-rich-text:after {
	display: none;
	}

}

@media (min-width: 400px) {
	
	.rw-quote-box .fl-rich-text {
	padding: 0 8%;
	}
	
	.rw-quote-box p {
	font-size: 16px;
	}
	
	.rw-quote-box .fl-rich-text:before, .rw-quote-box .fl-rich-text:after {
	display: block;
	font-size: 100px;
	}
	
	.rw-quote-box .fl-rich-text:before {
	top: -14px;
	left: -15px;
	}
	
	.rw-quote-box .fl-rich-text:after {
	top: -14px;
	right: -15px;
	}

}

@media (min-width: 600px) {
	
	.rw-quote-box p {
	font-size: 18px;
	text-align: left;
	}
	
	.rw-quote-box .fl-rich-text:before, .rw-quote-box .fl-rich-text:after {
	font-size: 130px;
	}
	
	.rw-quote-box .fl-rich-text:before {
	top: -20px;
	}
	
	.rw-quote-box .fl-rich-text:after {
	top: -20px;
	}
	
}

@media (min-width: 900px) {
	
	.rw-quote-box p {
	font-size: 20px;
	}
	
	.rw-quote-box .fl-rich-text:before, .rw-quote-box .fl-rich-text:after {
	font-size: 180px;
	}
	
	.rw-quote-box .fl-rich-text:before {
	top: -30px;
	}
	
	.rw-quote-box .fl-rich-text:after {
	top: -30px;
	}
	
}

@media (min-width: 1100px) {

	.rw-quote-box .fl-rich-text:before, .rw-quote-box .fl-rich-text:after {
	font-size: 210px;
	}
	
	.rw-quote-box .fl-rich-text:before {
	top: -35px;
	}
	
	.rw-quote-box .fl-rich-text:after {
	top: -35px;
	}
	
}
*/

/*! RW Footnotes ------------------------------*/

.rw-footnotes ol {
	padding-left: 20px;
}

.rw-footnotes ol li {
	font-size: 14px;
}

/*! Sidebar Styles ------------------------------*/

@media (min-width: 320px) {

	.fl-sidebar {
		margin-top: 20px;
	}

	.fl-widget .fl-widget-title,
	h4.fl-widget-title,
	.blog-categories.fl-widget h4.fl-widget-title,
	.rw-widget-box-header .fl-html h3.widgettitle,
	.fl-module-sidebar .widget_text h4.fl-widget-title,
	.fl-sidebar .widget_text h4.fl-widget-title {
		background-color: #053E61;
		padding: 15px 30px;
		margin: 0;
		-webkit-border-radius: 5px 5px 0 0;
		border-radius: 5px 5px 0 0;
		font-size: 22px;
		color: #fff;
		text-align: center;

	}

	.blog-categories.fl-widget ul,
	.rw-widget-box-header .fl-html .widgetbody,
	.fl-sidebar .textwidget,
	.fl-sidebar .gform_wrapper {
		border: 1px solid #ddd;
		background-color: #eee;
		margin: 0;
		padding: 20px;
		-webkit-border-radius: 0 0 5px 5px;
		border-radius: 0 0 5px 5px;
	}

	.blog-categories.fl-widget ul,
	.fl-sidebar .textwidget {
		padding: 20px;
		background-color: #fff;
	}

	.rw-widget-box-header .fl-html .widgetbody p:last-of-type {
		margin-bottom: 0;
	}

	.rw-widget-box-header .button {
		background-color: #2A506F;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		color: #fff;
		text-transform: uppercase;
		font-weight: 700;
		display: block;
		text-align: center;
		padding: 13px;
	}

	.rw-widget-box-no-header .fl-html,
	.rw-widget-box-no-header .fl-rich-text {
		border: 1px solid #C3C3BB;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		background-color: #EBEBDE;
		padding: 20px 30px;
	}

	.rw-widget-box-no-header h3 {
		font-size: 22px;
	}

	.rw-widget-no-box-no-header h3 {
		font-size: 22px;
	}

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

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

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

	.blog-categories.fl-widget ul li a:hover {
		color: #0C88D6;
		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: 13px;
		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;
		transition: all 0.2s ease-in-out;
	}

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

	/* Default Side Bar Menu Styles */

	.fl-module-sidebar .widget_nav_menu li,
	.fl-sidebar .widget_nav_menu li {
		margin-bottom: 2px !important;
	}

	.fl-module-sidebar .widget_nav_menu li a,
	.fl-sidebar .widget_nav_menu li a {
		display: block;
		padding: 13px 20px;
		font-size: 15px;
		background: #EDEDED;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		color: #01A8F8;
		text-align: left;
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}

	.fl-module-sidebar .widget_nav_menu li a:hover,
	.fl-sidebar .widget_nav_menu li a:hover {
		background: #02AFB9;
		color: #fff;
		text-decoration: none;
	}

	.fl-module-sidebar .widget_nav_menu li.current_page_item a,
	.fl-sidebar .widget_nav_menu li.current_page_item a {
		background: #02AFB9;
		color: #fff;
		text-decoration: none;
	}

}

@media (min-width: 769px) {

	.fl-sidebar {
		display: block;
	}

	.rw-widget-box-header .fl-html h3.widgettitle {
		padding: 20px 10px;
		font-size: 16px;
	}

	.rw-widget-box-no-header h3 {
		font-size: 16px;
	}

	.rw-widget-box-header .fl-html .widgetbody,
	.rw-widget-box-header .fl-rich-text .widgetbody,
	.rw-widget-box-no-header .fl-html,
	.rw-widget-box-no-header .fl-rich-text {
		padding: 20px 10px;
	}

	.rw-widget-box-header .widgetbody ul,
	.rw-widget-box-no-header .fl-rich-text ul {
		padding-left: 30px;
	}

	.rw-widget-box-header .fl-html .widgetbody li,
	.rw-widget-box-header .fl-html .widgetbody p,
	.rw-widget-box-no-header .fl-rich-text p,
	.rw-widget-box-no-header .fl-rich-text li {
		font-size: 14px;
	}

}

@media (min-width: 1024px) {

	.rw-widget-box-header .fl-html h3.widgettitle {
		padding: 20px;
		font-size: 22px;
	}

	.rw-widget-box-no-header h3 {
		font-size: 22px;
	}

	.rw-widget-box-header .fl-html .widgetbody,
	.rw-widget-box-header .fl-rich-text .widgetbody,
	.rw-widget-box-no-header .fl-html,
	.rw-widget-box-no-header .fl-rich-text {
		padding: 20px;
	}

	.rw-widget-box-header .widgetbody ul,
	.rw-widget-box-no-header .fl-rich-text ul {
		padding-left: 40px;
	}

	.rw-widget-box-header .fl-html .widgetbody li,
	.rw-widget-box-header .fl-html .widgetbody p,
	.rw-widget-box-no-header .fl-rich-text p,
	.rw-widget-box-no-header .fl-rich-text li {
		font-size: 16px;
	}

}

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

.gform_widget h2.widgettitle {
	text-align: center;
}

.gform_wrapper.gravity-theme .gform_fields {
	grid-row-gap: 10px !important;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=number],
input[type=search],
input[type=url],
textarea {
	height: auto;
	border: 1px solid #ddd;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: 10px !important;
	background-color: #fff;
}

.gform_wrapper.gravity-theme .gfield textarea.large {
	height: 200px !important;
}

.gform_wrapper.gravity-theme .gform_footer,
.gform_wrapper.gravity-theme .gform_page_footer {
	margin: 0 !important;
	padding: 10px 0 0 !important;
	justify-content: center;
}

.gform_wrapper.gravity-theme .gform_footer button,
.gform_wrapper.gravity-theme .gform_footer input,
.gform_wrapper.gravity-theme .gform_page_footer button,
.gform_wrapper.gravity-theme .gform_page_footer input {
	margin-bottom: 0;
	font-weight: 700;
	padding: 20px 60px;
	font-size: 20px;
	text-transform: uppercase;
	border-radius: 3px;
}

.gform_wrapper.gravity-theme.rw-shortform_wrapper .gform_footer input {
	width: 100%;
	padding: 15px;
}

.gform_required_legend {
	display: none !important;
}

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

@media (min-width: 320px) {

	.fl-page-footer-widgets {
		position: relative;
		padding: 110px 0;
		/*
		background: rgb(16,29,66);
		background: linear-gradient(180deg, rgba(16,29,66,1) 0%, rgba(5,9,21,1) 100%);
		*/
	}

	.fl-page-footer-widgets-container {
		max-width: 1300px !important;
		padding-top: 0;
	}

	.fl-page-footer-widgets .fl-page-footer-widget-col {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.fl-page-footer-widgets aside#nav_menu-2 {
		background-color: transparent;
		min-height: 0;
	}

	.fl-page-footer-widgets .rw-footer-logo img {
		max-width: 100% !important;
	}

	.fl-page-footer-widgets h4.fl-widget-title {
		background: transparent;
		font-size: 20px;
		line-height: 1.2;
		font-weight: 700;
		text-align: center;
		color: #fff;
		margin-top: 0;
		margin-bottom: 20px !important;
		padding: 0;
		-webkit-border-radius: 0;
		border-radius: 0;
	}

	.fl-page-footer-widgets a {
		color: #0177B5;
	}

	.fl-page-footer-widgets a:hover {
		color: #098DD3;
	}

	.fl-widget.rw-footer-logo {
		margin-bottom: 20px;
	}

	.rw-footer-address {
		margin-bottom: 0;
	}

	.rw-footer-address p {
		font-size: 16px;
		text-align: center;
		margin-bottom: 0;
	}

	.fl-page-footer-widgets .textwidget {
		text-align: left;
	}

	.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;
		text-align: center;
	}

	.rw-footer-social .fl-social-icons a {
		background-color: transparent;
		-webkit-border-radius: 2px;
		border-radius: 2px;
		display: inline-block;
		margin-right: 5px;
		background-color: rgba(255, 255, 255, .05)
	}

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

	.rw-footer-social .fl-social-icons a:hover {
		background-color: rgba(255, 255, 255, .2)
	}

	.rw-footer-social .fl-social-icons i.fas,
	.rw-footer-social .fl-social-icons i.fab {
		font-size: 30px;
		vertical-align: middle;
		width: 50px;
		height: 50px;
		line-height: 50px;
		text-align: center;
		color: #fff;
	}

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

	.menu-footer-menu-container {
		text-align: center
	}

	#menu-footer-menu {
		width: auto;
		margin: auto;
		display: inline-block
	}

	.menu-footer-menu-container li {
		width: auto
	}

	.menu-footer-menu-container li a {
		background-color: rgba(255, 255, 255, 0.1);
		text-transform: uppercase;
		font-size: 16px !important;
		font-weight: 700;
		padding: 10px 40px !important;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		color: #fff;
	}

	.menu-footer-menu-container li a:hover {
		background-color: rgba(255, 255, 255, .2);
		text-decoration: none;
	}

}

@media (min-width: 480px) {

	.rw-footer-address p {
		font-size: 18px;
	}

	.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: 540px) {

	.fl-page-footer-widgets .rw-footer-logo img {
		max-width: 500px !important;
	}

}

@media (min-width: 768px) {

	.fl-page-footer-widgets aside p {
		font-size: 20px;
	}

	.menu-footer-menu-container li a {
		padding: 10px 20px !important;
	}

}

@media (min-width: 992px) {

	.fl-page-footer-widgets aside p {
		font-size: 20px;
	}

	.fl-page-footer-widgets aside.rw-footer-address p {
		text-align: center;
		font-size: 20px;
	}

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

	.menu-footer-menu-container li a {
		padding: 10px 40px !important;
	}

}

/*! Footer
---------------------------------------*/
.fl-page-footer {
	border-top: 1px solid #fff;
	border-color: rgba(255, 255, 255, 0.1);
}

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

.fl-page-footer .fl-page-footer-nav {
	padding-right: 20px;
}

.fl-page-footer .fl-page-footer-nav>li .nav-link {
	line-height: 20px;
	padding: 10px 20px;
	position: relative;
	font-size: 14px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 3px;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.fl-page-footer .fl-page-footer-nav>li .nav-link:hover {
	border: 1px solid rgba(255, 255, 255, 0.3);
	background-color: rgba(255, 255, 255, 0.1);
}


/*! PP Gallery Tweaks
---------------------------------------*/
.fancybox-thumbs__list a:before {
	border: 6px solid #28A7F5;
}



.memorial-announcement {
	padding: 30px;
}