/* Grid
------------------------------------------------------ */

.fl-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:before,
.fl-module:after,
.fl-module-content:before,
.fl-module-content:after {
	display: table;
	content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:after,
.fl-module-content:after {
	clear: both;
}
.fl-row,
.fl-row-content,
.fl-col-group,
.fl-col,
.fl-module,
.fl-module-content {
	zoom:1;
}
.fl-clear {
	clear: both;
}

/* Utilities
------------------------------------------------------ */

.fl-clearfix:before,
.fl-clearfix:after {
	display: table;
	content: " ";
}
.fl-clearfix:after {
	clear: both;
}
.fl-clearfix {
	zoom:1;
}

/* Responsive Utilities
------------------------------------------------------ */

.fl-visible-medium,
.fl-visible-medium-mobile,
.fl-visible-mobile,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group .fl-visible-medium-mobile.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
	display: none;
}

/* Rows
------------------------------------------------------ */

.fl-row,
.fl-row-content {
	margin-left: auto;
	margin-right: auto;
}
.fl-row-content-wrap {
	position: relative;
}

/* Photo Bg */
.fl-builder-mobile .fl-row-bg-photo .fl-row-content-wrap {
	background-attachment: scroll;
}

/* Video Bg */
.fl-row-bg-video,
.fl-row-bg-video .fl-row-content {
	position: relative;
}
.fl-row-bg-video .fl-bg-video {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}
.fl-row-bg-video .fl-bg-video video {
	bottom: 0;
	left: 0px;
	position: absolute;
	right: 0;
	top: 0px;
}
.fl-bg-video-fallback {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}

/* Slideshow Bg */
.fl-row-bg-slideshow,
.fl-row-bg-slideshow .fl-row-content {
	position: relative;
}
.fl-row .fl-bg-slideshow {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.fl-builder-edit .fl-row .fl-bg-slideshow * {
	bottom: 0;
	height: auto !important;
	left: 0;
	position: absolute !important;
	right: 0;
	top: 0;
}

/* Row Bg Overlay */
.fl-row-bg-overlay .fl-row-content-wrap:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-row-bg-overlay .fl-row-content {
	position: relative;
	z-index: 1;
}

/* Full Height Rows */
.fl-row-full-height .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;	
	min-height: 100vh;
	
}
.fl-row-full-height .fl-row-content {
  -webkit-box-flex: 1 1 auto;
  	 -moz-box-flex: 1 1 auto;
  	  -webkit-flex: 1 1 auto;
  		  -ms-flex: 1 1 auto;
  			  flex: 1 1 auto;
}
.fl-row-full-height .fl-row-full-width.fl-row-content {
	max-width: 100%;
	width: 100%;
}

/* Stupid IE Full Height Row Fixes */
.fl-builder-ie-11 .fl-row-full-height .fl-row-content-wrap {
	height: 1px;
}
.fl-builder-ie-11 .fl-row-full-height .fl-row-content {
	flex: 0 0 auto;
	flex-basis: 100%;
	margin: 0;
}

/* Full height align center */
.fl-row-full-height.fl-row-align-center .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
}

/* Full height iPad with portrait orientation. */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
  .fl-row-full-height .fl-row-content-wrap{
    min-height: 1024px;
  }
}

/* Full height iPad with landscape orientation. */
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
  .fl-row-full-height .fl-row-content-wrap{
    min-height: 768px;
  }
}

/* Full height iPhone 5. You can also target devices with aspect ratio. */
@media screen and (device-aspect-ratio: 40/71) {
  .fl-row-full-height .fl-row-content-wrap {
    min-height: 500px;
  }
}

/* Column Groups
------------------------------------------------------ */

.fl-col-group-equal-height,
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content{
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.fl-col-group-equal-height{
    -webkit-flex-wrap: wrap;
    	-ms-flex-wrap: wrap;
    		flex-wrap: wrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content{
  -webkit-box-flex: 1 1 auto;
  	 -moz-box-flex: 1 1 auto;
  	  -webkit-flex: 1 1 auto;
  		  -ms-flex: 1 1 auto;
  			  flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-col-content{
	    -webkit-box-orient: vertical;
	 -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
			   flex-shrink: 1;
			     min-width: 1px;
            	 max-width: 100%;
            	 	 width: 100%;
}
.fl-col-group-equal-height:before,
.fl-col-group-equal-height .fl-col:before,
.fl-col-group-equal-height .fl-col-content:before,
.fl-col-group-equal-height:after,
.fl-col-group-equal-height .fl-col:after,
.fl-col-group-equal-height .fl-col-content:after{
	content: none;
}

/* Equal height align center */
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
	align-items: center;
	justify-content: flex-start;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
}

/* IE11 fix for images with height:auto in equal height columns. */
.fl-builder-ie-11 .fl-col-group-equal-height .fl-module {
	min-height: 1px;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	float: left;
	min-height: 1px;
}

/* Column Bg Overlay */
.fl-col-bg-overlay .fl-col-content {
	position: relative;
}
.fl-col-bg-overlay .fl-col-content:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-col-bg-overlay .fl-module {
	position: relative;
	z-index: 1;
}

/* Modules
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
} 

/* Module Templates
------------------------------------------------------ */

.fl-builder-module-template {
	margin: 0 auto;
	max-width: 1100px;
	padding: 20px;
}

/* Buttons
------------------------------------------------------ */

.fl-builder-content a.fl-button,
.fl-builder-content a.fl-button:visited {
	background: #fafafa;
	border: 1px solid #ccc;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	color: #333;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	line-height: 18px;
	padding: 12px 24px;
	text-decoration: none;
	text-shadow: none;
}
.fl-builder-content a.fl-button *,
.fl-builder-content a.fl-button:visited * {
	color: #333;
}
.fl-builder-content .fl-button:hover {
	text-decoration: none;
}
.fl-builder-content .fl-button:active {
	position: relative;
	top: 1px;
}
.fl-builder-content .fl-button-width-full .fl-button {
	display: block;
	text-align: center;
}
.fl-builder-content .fl-button-width-custom .fl-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.fl-builder-content .fl-button-left {
	text-align: left;
}
.fl-builder-content .fl-button-center {
	text-align: center;
}
.fl-builder-content .fl-button-right {
	text-align: right;
}
.fl-builder-content .fl-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.fl-builder-content .fl-button i.fl-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.fl-builder-content .fl-button-has-icon .fl-button-text {
	vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.fl-icon-wrap {
	display: inline-block;
}
.fl-icon {
	display: table-cell;
	vertical-align: middle;
}
.fl-icon a {
	text-decoration: none;
}
.fl-icon i {
	float: left;
}
.fl-icon i:before {
	border: none !important;
}
.fl-icon-text {
	display: table-cell;
	text-align: left;
	padding-left: 15px;
	vertical-align: middle;
}
.fl-icon-text *:last-child {
	margin: 0 !important;
	padding: 0 !important;
}
.fl-icon-text a {
	text-decoration: none;
}

/* Photos
------------------------------------------------------ */

.fl-photo {
	line-height: 0;
	position: relative;
}
.fl-photo-align-left {
	text-align: left;
}
.fl-photo-align-center {
	text-align: center;
}
.fl-photo-align-right {
	text-align: right;
}
.fl-photo-content {
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
}
.fl-photo-img-svg {
	width: 100%;
}
.fl-photo-content img {
	display: inline;
	height: auto !important;
	max-width: 100%;
	width: auto !important;
}
.fl-photo-crop-circle img {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.fl-photo-caption {
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.fl-photo-caption-below {
	padding-bottom: 20px;
	padding-top: 10px;
}
.fl-photo-caption-hover {
	background: rgba(0,0,0,0.7);
	bottom: 0;
	color: #fff;
	left: 0;
	opacity: 0;
	filter: alpha(opacity = 0);
	padding: 10px 15px;
	position: absolute;
	right: 0;
	-webkit-transition:opacity 0.3s ease-in;
	-moz-transition:opacity 0.3s ease-in;
	transition:opacity 0.3s ease-in;
}
.fl-photo-content:hover .fl-photo-caption-hover {
	opacity: 100;
	filter: alpha(opacity = 100);
}

/* Pagination
------------------------------------------------------ */

.fl-builder-pagination {
	padding: 40px 0;
}
.fl-builder-pagination ul.page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.fl-builder-pagination li {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.fl-builder-pagination li a.page-numbers,
.fl-builder-pagination li span.page-numbers {
	border: 1px solid #e6e6e6;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 0 5px;
}
.fl-builder-pagination li a.page-numbers:hover,
.fl-builder-pagination li span.current {
	background: #f5f5f5;
	text-decoration: none;
}

/* Slideshows
------------------------------------------------------ */

.fl-slideshow,
.fl-slideshow * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;

}
.fl-slideshow .fl-slideshow-image img {
	max-width: none !important;
}
.fl-slideshow-social {
	line-height: 0 !important;
}
.fl-slideshow-social * {
	margin: 0 !important;
}

/* Sliders
------------------------------------------------------ */

.fl-builder-content .bx-wrapper .bx-viewport {
	background: transparent;
	border: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	left: 0;
}

/* Lightbox
------------------------------------------------------ */

.mfp-wrap button.mfp-arrow,
.mfp-wrap button.mfp-arrow:active, 
.mfp-wrap button.mfp-arrow:hover, 
.mfp-wrap button.mfp-arrow:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 50%;
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
}
.mfp-wrap .mfp-close,
.mfp-wrap .mfp-close:active,
.mfp-wrap .mfp-close:hover,
.mfp-wrap .mfp-close:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 0;
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
}
img.mfp-img {
	padding: 0;
}
.mfp-counter {
	display: none;
}

/* Form Fields
------------------------------------------------------ */

.fl-form-field {
	margin-bottom: 15px;
}
.fl-form-field input.fl-form-error {
	border-color: #DD6420;
}
.fl-form-error-message {
	clear: both;
	color: #DD6420;
	display: none;
	padding-top: 8px;
	font-size: 12px;
	font-weight: lighter;
}
.fl-form-button-disabled {
	opacity: 0.5;
}

/* Animations
------------------------------------------------------ */

.fl-animation {
	opacity: 0;
}
.fl-builder-mobile .fl-animation,
.fl-builder-edit .fl-animation,
.fl-animated {
	opacity: 1;
}

/* Fade In */
.fl-animated.fl-fade-in {
	animation: fl-fade-in 1s ease-out;
	-webkit-animation: fl-fade-in 1s ease-out;
	-moz-animation: fl-fade-in 1s ease-out;
}
@keyframes fl-fade-in {
	0% { opacity: 0; }
	100% { opacity: 1; }        
}
@-webkit-keyframes fl-fade-in {
	0% { opacity: 0; }
	100% { opacity: 1; }        
}
@-moz-keyframes fl-fade-in {
	0% { opacity: 0; }
	100% { opacity: 1; }        
}

/* Slide Left */
.fl-animated.fl-slide-left {
	animation: fl-slide-left 1s ease-out;
	-webkit-animation: fl-slide-left 1s ease-out;
	-moz-animation: fl-slide-left 1s ease-out;
}
@keyframes fl-slide-left {
	0% { opacity: 0; transform: translateX(10%); }          
	100% { opacity: 1; transform: translateX(0%); }
}
@-webkit-keyframes fl-slide-left {
	0% { opacity: 0; -webkit-transform: translateX(10%); }          
	100% { opacity: 1; -webkit-transform: translateX(0%); }
}
@-moz-keyframes fl-slide-left {
	0% { opacity: 0; -moz-transform: translateX(10%); }         
	100% { opacity: 1; -moz-transform: translateX(0%); }
}

/* Slide Right */
.fl-animated.fl-slide-right {
	animation: fl-slide-right 1s ease-out;
	-webkit-animation: fl-slide-right 1s ease-out;
	-moz-animation: fl-slide-right 1s ease-out;
}
@keyframes fl-slide-right {
	0% { opacity: 0; transform: translateX(-10%); }         
	100% { opacity: 1; transform: translateX(0%); }
}
@-webkit-keyframes fl-slide-right {
	0% { opacity: 0; -webkit-transform: translateX(-10%); }         
	100% { opacity: 1; -webkit-transform: translateX(0%); }
}
@-moz-keyframes fl-slide-right {
	0% { opacity: 0; -moz-transform: translateX(-10%); }            
	100% { opacity: 1; -moz-transform: translateX(0%); }
}

/* Slide Up */
.fl-animated.fl-slide-up {
	animation: fl-slide-up 1s ease-out;
	-webkit-animation: fl-slide-up 1s ease-out;
	-moz-animation: fl-slide-up 1s ease-out;
}
@keyframes fl-slide-up {
	0% { opacity: 0; transform: translateY(10%); }          
	100% { opacity: 1; transform: translateY(0%); }
}
@-webkit-keyframes fl-slide-up {
	0% { opacity: 0; -webkit-transform: translateY(10%); }          
	100% { opacity: 1; -webkit-transform: translateY(0%); }
}
@-moz-keyframes fl-slide-up {
	0% { opacity: 0; -moz-transform: translateY(10%); }         
	100% { opacity: 1; -moz-transform: translateY(0%); }
}

/* Slide Down */
.fl-animated.fl-slide-down {
	animation: fl-slide-down 1s ease-out;
	-webkit-animation: fl-slide-down 1s ease-out;
	-moz-animation: fl-slide-down 1s ease-out;
}
@keyframes fl-slide-down {
	0% { opacity: 0; transform: translateY(-10%); }         
	100% { opacity: 1; transform: translateY(0%); }
}
@-webkit-keyframes fl-slide-down {
	0% { opacity: 0; -webkit-transform: translateY(-10%); }         
	100% { opacity: 1; -webkit-transform: translateY(0%); }
}
@-moz-keyframes fl-slide-down {
	0% { opacity: 0; -moz-transform: translateY(-10%); }            
	100% { opacity: 1; -moz-transform: translateY(0%); }
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	-ms-filter: "alpha(opacity=0)";
	transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1! important;
    -ms-filter: "alpha(opacity=100)";
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
    margin-left: -10px;
}
@media (max-width: 992px) { /* Responsive Utilities
------------------------------------------------------ */

.fl-visible-desktop,
.fl-visible-mobile,
.fl-col-group .fl-visible-desktop.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
	display: none;
}
.fl-visible-desktop-medium,
.fl-visible-medium,
.fl-visible-medium-mobile,
.fl-col-group .fl-visible-desktop-medium.fl-col,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group .fl-visible-medium-mobile.fl-col {
	display: block;
} }@media (max-width: 768px) { /* Responsive Utilities
------------------------------------------------------ */

.fl-visible-desktop,
.fl-visible-desktop-medium,
.fl-visible-medium,
.fl-col-group .fl-visible-desktop.fl-col,
.fl-col-group .fl-visible-desktop-medium.fl-col,
.fl-col-group .fl-visible-medium.fl-col {
	display: none;
}
.fl-visible-medium-mobile,
.fl-visible-mobile,
.fl-col-group .fl-visible-medium-mobile.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
	display: block;
}

/* Rows
------------------------------------------------------ */

.fl-row-content-wrap {
	background-attachment: scroll !important;
}
.fl-row-bg-parallax .fl-row-content-wrap {
	background-attachment: scroll !important;
	background-position: center center !important;
}

/* Column Groups
------------------------------------------------------ */

/* Equal Heights */
.fl-col-group.fl-col-group-equal-height {
	display: block;
}
.fl-col-group.fl-col-group-equal-height.fl-col-group-custom-width {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-responsive-reversed {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	flex-flow: row wrap;
	-ms-box-orient: horizontal;
	-webkit-flex-flow: row wrap;
}
.fl-col-group-responsive-reversed .fl-col:nth-of-type(1) { order: 12; }
.fl-col-group-responsive-reversed .fl-col:nth-of-type(2) { order: 11; }
.fl-col-group-responsive-reversed .fl-col:nth-of-type(3) { order: 10; }
.fl-col-group-responsive-reversed .fl-col:nth-of-type(4) { order: 9; }
.fl-col-group-responsive-reversed .fl-col:nth-of-type(5) { order: 8; }
.fl-col-group-responsive-reversed .fl-col:nth-of-type(6) { order: 7; }
.fl-col-group-responsive-reversed .fl-col:nth-of-type(7) { order: 6; }
.fl-col-group-responsive-reversed .fl-col:nth-of-type(8) { order: 5; }
.fl-col-group-responsive-reversed .fl-col:nth-of-type(9) { order: 4; }
.fl-col-group-responsive-reversed .fl-col:nth-of-type(10) { order: 3; }
.fl-col-group-responsive-reversed .fl-col:nth-of-type(11) { order: 2; }
.fl-col-group-responsive-reversed .fl-col:nth-of-type(12) { order: 1; }

/* Columns
------------------------------------------------------ */

.fl-col {
	clear: both;
	float: none;
	margin-left: auto;
	margin-right: auto;
	width: auto !important;
}
.fl-col-small {
	max-width: 400px;
}
.fl-block-col-resize {
	display:none;
}/* Rows
------------------------------------------------------ */

.fl-row-content-wrap {
	border-left: none !important;
	border-right: none !important;
	margin: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.fl-row .fl-bg-video,
.fl-row .fl-bg-slideshow {
	left: 0 !important;
	right: 0 !important;
}

/* Columns
------------------------------------------------------ */

.fl-col-content {
	border-left: none !important;
	border-right: none !important;
	margin: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
} }.fl-row-content-wrap { margin: 0px; }.fl-row-content-wrap { padding: 20px; }.fl-row-fixed-width { max-width: 1100px; }.fl-module-content { margin: 20px; }.fl-node-565e74ec4a253 {
	color: #ffffff;
}
.fl-builder-content .fl-node-565e74ec4a253 *:not(input):not(textarea):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
	color: inherit;
}

.fl-builder-content .fl-node-565e74ec4a253 a {
	color: #ffffff;
}

.fl-builder-content .fl-node-565e74ec4a253 a:hover {
	color: #ffffff;
}

.fl-builder-content .fl-node-565e74ec4a253 h1,
.fl-builder-content .fl-node-565e74ec4a253 h2,
.fl-builder-content .fl-node-565e74ec4a253 h3,
.fl-builder-content .fl-node-565e74ec4a253 h4,
.fl-builder-content .fl-node-565e74ec4a253 h5,
.fl-builder-content .fl-node-565e74ec4a253 h6,
.fl-builder-content .fl-node-565e74ec4a253 h1 a,
.fl-builder-content .fl-node-565e74ec4a253 h2 a,
.fl-builder-content .fl-node-565e74ec4a253 h3 a,
.fl-builder-content .fl-node-565e74ec4a253 h4 a,
.fl-builder-content .fl-node-565e74ec4a253 h5 a,
.fl-builder-content .fl-node-565e74ec4a253 h6 a {
	color: #ffffff;
}



.fl-node-565e74ec4a253 > .fl-row-content-wrap:after {
	background-color: #0a0a0a;
	background-color: rgba(10,10,10, 0.6);
}


.fl-node-565e74ec4a253 > .fl-row-content-wrap {padding-top:80px;padding-bottom:100px;}







.fl-node-566db7f97403a > .fl-row-content-wrap {margin-top:20px;margin-bottom:20px;}.fl-node-566db7f97403a > .fl-row-content-wrap {padding-bottom:40px;}



.fl-node-566f2c7d7adde > .fl-row-content-wrap {
	background-color: #2cbbbc;
	background-color: rgba(44,187,188, 1);
}




.fl-node-566f2c7d7adde > .fl-row-content-wrap {padding-top:30px;padding-bottom:30px;}







.fl-node-566f30495f259 > .fl-row-content-wrap {margin-top:20px;margin-bottom:20px;}.fl-node-566f30495f259 > .fl-row-content-wrap {padding-bottom:40px;}



.fl-node-566f2c1e6e367 > .fl-row-content-wrap {
	background-color: #34dee0;
	background-color: rgba(52,222,224, 1);
}




.fl-node-566f2c1e6e367 > .fl-row-content-wrap {padding-top:20px;padding-bottom:20px;}







.fl-node-566dff3ae9932 > .fl-row-content-wrap {padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px;}





.fl-node-566e15c081b2e > .fl-row-content-wrap:after {
	background-color: #ffffff;
	background-color: rgba(255,255,255, 0.3);
}

.fl-node-566e15c081b2e > .fl-row-content-wrap {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
}
.fl-builder-mobile .fl-node-566e15c081b2e > .fl-row-content-wrap {
	background-image: url(https://www.fluccs.com.au/wp-content/uploads/2015/02/Fluccs-LowRes_iStock_000041813650XLarge.jpg);
	background-attachment: scroll;
	background-position: center center;
}

.fl-node-566e15c081b2e > .fl-row-content-wrap {margin-top:0px;margin-bottom:0px;}.fl-node-566e15c081b2e > .fl-row-content-wrap {padding-bottom:40px;}.fl-node-565e74ec4a1d4 {
	width: 63.64%;
}










		
		
.fl-node-565e74ec4a215 {
	width: 36.36%;
}










		
		
.fl-node-566dbf421d35f {
	width: 100%;
}










		
		
.fl-node-566db818725da {
	width: 100%;
}










		
		
.fl-node-566db98d9c6c0 {
	width: 10%;
}










		
		
.fl-node-566db98d9c6f1 {
	width: 40%;
}










		
		
.fl-node-566db98d9c6fd {
	width: 10%;
}










		
		
.fl-node-566db98d9c70a {
	width: 40%;
}










		
		
.fl-node-566dbbaeca393 {
	width: 10%;
}










		
		
.fl-node-566dbbaeca3a7 {
	width: 40%;
}










		
		
.fl-node-566dbbaeca3b4 {
	width: 10%;
}










		
		
.fl-node-566dbbaeca3bf {
	width: 40%;
}










		
		
.fl-node-566dbbe31b912 {
	width: 10%;
}










		
		
.fl-node-566dbbe31b937 {
	width: 40%;
}










		
		
.fl-node-566dbbe31b943 {
	width: 10%;
}










		
		
.fl-node-566dbbe31b952 {
	width: 40%;
}










		
		
.fl-node-5b6a72c0b210d {
	width: 10%;
}










		
		
.fl-node-5b6a72e7a91d0 {
	width: 40%;
}










		
		
.fl-node-5b6a73072d369 {
	width: 10%;
}










		
		
.fl-node-5b6a72fe66cac {
	width: 40%;
}










		
		
.fl-node-566dbf5e330bd {
	width: 100%;
}










		
		
.fl-node-566f2c7d60dee {
	width: 100%;
}










		
		
.fl-node-566f2c7d60dfa {
	width: 100%;
}










		
		
.fl-node-566f3049372b5 {
	width: 100%;
}










		
		
.fl-node-566f3049372ce {
	width: 50%;
}










		
		
.fl-node-566f3049372d4 {
	width: 50%;
}










		
		
.fl-node-566f3049372ff {
	width: 100%;
}










		
		
.fl-node-566f2c1e4d3cc {
	width: 100%;
}










		
		
.fl-node-566f2c1e4d416 {
	width: 100%;
}










		
		
.fl-node-566f2c1e4d42f {
	width: 100%;
}










		
		
.fl-node-566dff3b06f0d {
	width: 50%;
}





.fl-node-566dff3b06f0d > .fl-col-content {
	background-color: #1e908f;
	background-color: rgba(30,144,143, 1);
}





		
		
.fl-node-566dff3b06f34 {
	width: 50%;
}





.fl-node-566dff3b06f34 > .fl-col-content {
	background-color: #2cbbbc;
	background-color: rgba(44,187,188, 1);
}





		
		
.fl-node-566e15c0652b0 {
	width: 100%;
}










		
		
.fl-node-566e15c0652c3 {
	width: 50%;
}










		
		
.fl-node-566e15c0652cc {
	width: 50%;
}










		
		
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-node-565e74ec4a1b3.fl-module-heading .fl-heading {
	text-align: left;
		font-size: 50px;
			}
@media (max-width: 768px) {
	
		.fl-node-565e74ec4a1b3.fl-module-heading h1.fl-heading {
		font-size: 40px;
	}
		
	
	
	}    
.fl-node-565e74ec4a1b3 > .fl-module-content {margin-top:100px;}@media (max-width: 768px) { .fl-node-565e74ec4a1b3 > .fl-module-content {margin-top:20px;} }.fl-node-565e74ec4a246 > .fl-module-content {margin-top:0px;margin-bottom:0px;}@media (max-width: 768px) { .fl-module-button .fl-button-left,
.fl-module-button .fl-button-right {
	text-align: center;
} }.fl-builder-content .fl-node-566e3b337a35c a.fl-button,
.fl-builder-content .fl-node-566e3b337a35c a.fl-button:visited {

	font-size: 26px;
	line-height: 28px;
	padding: 12px 24px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	
	
		background: #ffffff;
	border: 2px solid #f3f3f3;
	
				background-color: rgba(255,255,255, 0);
		
			
	}

.fl-builder-content .fl-node-566e3b337a35c a.fl-button,
.fl-builder-content .fl-node-566e3b337a35c a.fl-button:visited,
.fl-builder-content .fl-node-566e3b337a35c a.fl-button *,
.fl-builder-content .fl-node-566e3b337a35c a.fl-button:visited * {
	color: #ffffff;
}

.fl-builder-content .fl-node-566e3b337a35c a.fl-button:hover,
.fl-builder-content .fl-node-566e3b337a35c a.fl-button:focus {

	background: #2cbbbc;
	border: 2px solid #20afb0;
	
		background-color: rgba(44,187,188, 0);
	border-color: #2cbbbc	
	}

.fl-builder-content .fl-node-566e3b337a35c a.fl-button:hover,
.fl-builder-content .fl-node-566e3b337a35c a.fl-button:focus,
.fl-builder-content .fl-node-566e3b337a35c a.fl-button:hover *,
.fl-builder-content .fl-node-566e3b337a35c a.fl-button:focus * {
	color: #2cbbbc;
}



@media (max-width: 768px) { .fl-module-icon {
	text-align: center !important;
} }.fl-node-566dc1568a1ce.fl-module-icon {
	text-align: center}
.fl-node-566dc1568a1ce .fl-module-content .fl-icon i,
.fl-node-566dc1568a1ce .fl-module-content .fl-icon i:before {
		font-size: 30px;
	height: auto;
	width: auto;
		}
.fl-node-566dc1568a1ce .fl-module-content .fl-icon i:hover,
.fl-node-566dc1568a1ce .fl-module-content .fl-icon i:hover:before,
.fl-node-566dc1568a1ce .fl-module-content .fl-icon a:hover i,
.fl-node-566dc1568a1ce .fl-module-content .fl-icon a:hover i:before {
			}
.fl-node-566dc1568a1ce .fl-module-content .fl-icon-text {
	height: 52.5px;
}
.fl-node-566dc0d3eb830.fl-module-heading .fl-heading {
	text-align: center;
		font-size: 48px;
			}
.fl-node-566dc0d3eb830 h2.fl-heading a,
.fl-node-566dc0d3eb830 h2.fl-heading .fl-heading-text,
.fl-node-566dc0d3eb830 h2.fl-heading .fl-heading-text * {
	color: #424242;
}
.fl-node-566dc0d3eb830 > .fl-module-content {margin-bottom:40px;}@media (max-width: 768px) { .fl-node-566dc0d3eb830 > .fl-module-content {margin-bottom:20px;} }.fl-node-566dbb1c5bd85 > .fl-module-content {margin-top:0px;margin-bottom:0px;margin-left:10px;margin-right:10px;}.fl-node-566dbbf07bb94 > .fl-module-content {margin-top:0px;margin-bottom:0px;margin-left:10px;margin-right:10px;}.fl-node-566dbbc0b7276 > .fl-module-content {margin-top:0px;margin-bottom:0px;margin-left:10px;margin-right:10px;}.fl-node-566dbc00021df > .fl-module-content {margin-top:0px;margin-bottom:0px;margin-left:10px;margin-right:10px;}.fl-node-566dba7a0c551 > .fl-module-content {margin-top:0px;margin-bottom:0px;margin-left:10px;margin-right:10px;}.fl-node-5b6a72c8df1c9 > .fl-module-content {margin-top:0px;margin-bottom:0px;margin-left:10px;margin-right:10px;}.fl-node-566dbbc7cc9b8 > .fl-module-content {margin-top:0px;margin-bottom:0px;margin-left:10px;margin-right:10px;}.fl-node-566dbf1429f3f.fl-module-icon {
	text-align: center}
.fl-node-566dbf1429f3f .fl-module-content .fl-icon i,
.fl-node-566dbf1429f3f .fl-module-content .fl-icon i:before {
		color: #2cbbbc;
		font-size: 30px;
	height: auto;
	width: auto;
		}
.fl-node-566dbf1429f3f .fl-module-content .fl-icon i:hover,
.fl-node-566dbf1429f3f .fl-module-content .fl-icon i:hover:before,
.fl-node-566dbf1429f3f .fl-module-content .fl-icon a:hover i,
.fl-node-566dbf1429f3f .fl-module-content .fl-icon a:hover i:before {
			}
.fl-node-566dbf1429f3f .fl-module-content .fl-icon-text {
	height: 52.5px;
}
.fl-node-566dbf1429f3f > .fl-module-content {margin-bottom:0px;}.fl-node-566f2c7d60df4.fl-module-heading .fl-heading {
	text-align: center;
		font-size: 48px;
			}
.fl-node-566f2c7d60df4 h2.fl-heading a,
.fl-node-566f2c7d60df4 h2.fl-heading .fl-heading-text,
.fl-node-566f2c7d60df4 h2.fl-heading .fl-heading-text * {
	color: #ffffff;
}
.fl-node-566f2c7d60df4 > .fl-module-content {margin-bottom:0px;}.fl-node-566f2c7d60e00 > .fl-module-content {margin-left:0px;margin-right:0px;}.fl-node-566f3049372be.fl-module-heading .fl-heading {
	text-align: center;
		font-size: 48px;
			}
.fl-node-566f3049372be h2.fl-heading a,
.fl-node-566f3049372be h2.fl-heading .fl-heading-text,
.fl-node-566f3049372be h2.fl-heading .fl-heading-text * {
	color: #424242;
}
.fl-node-566f3049372be > .fl-module-content {margin-bottom:0px;}.fl-node-566f3049372c7 > .fl-module-content {margin-top:0px;}.fl-node-566f304937309.fl-module-icon {
	text-align: center}
.fl-node-566f304937309 .fl-module-content .fl-icon i,
.fl-node-566f304937309 .fl-module-content .fl-icon i:before {
		color: #2cbbbc;
		font-size: 30px;
	height: auto;
	width: auto;
		}
.fl-node-566f304937309 .fl-module-content .fl-icon i:hover,
.fl-node-566f304937309 .fl-module-content .fl-icon i:hover:before,
.fl-node-566f304937309 .fl-module-content .fl-icon a:hover i,
.fl-node-566f304937309 .fl-module-content .fl-icon a:hover i:before {
			}
.fl-node-566f304937309 .fl-module-content .fl-icon-text {
	height: 52.5px;
}
.fl-node-566f304937309 > .fl-module-content {margin-bottom:0px;}.fl-node-566f2c1e4d3e7.fl-module-heading .fl-heading {
	text-align: center;
		font-size: 48px;
			}
.fl-node-566f2c1e4d3e7 h2.fl-heading a,
.fl-node-566f2c1e4d3e7 h2.fl-heading .fl-heading-text,
.fl-node-566f2c1e4d3e7 h2.fl-heading .fl-heading-text * {
	color: #ffffff;
}
.fl-node-566f2c1e4d3e7 > .fl-module-content {margin-bottom:0px;}.fl-node-566f2c1e4d3fb > .fl-module-content {margin-top:0px;}.fl-node-566f2c1e4d441.fl-module-icon {
	text-align: center}
.fl-node-566f2c1e4d441 .fl-module-content .fl-icon i,
.fl-node-566f2c1e4d441 .fl-module-content .fl-icon i:before {
		color: #ffffff;
		font-size: 30px;
	height: auto;
	width: auto;
		}
.fl-node-566f2c1e4d441 .fl-module-content .fl-icon i:hover,
.fl-node-566f2c1e4d441 .fl-module-content .fl-icon i:hover:before,
.fl-node-566f2c1e4d441 .fl-module-content .fl-icon a:hover i,
.fl-node-566f2c1e4d441 .fl-module-content .fl-icon a:hover i:before {
			}
.fl-node-566f2c1e4d441 .fl-module-content .fl-icon-text {
	height: 52.5px;
}
.fl-node-566e05569928f.fl-module-heading .fl-heading {
	text-align: center;
		font-size: 48px;
			}
.fl-node-566e05569928f h2.fl-heading a,
.fl-node-566e05569928f h2.fl-heading .fl-heading-text,
.fl-node-566e05569928f h2.fl-heading .fl-heading-text * {
	color: #ffffff;
}
.fl-node-566e05569928f > .fl-module-content {margin-top:50px;margin-bottom:0px;}@media (max-width: 768px) { .fl-node-566e05569928f > .fl-module-content {margin-top:20px;} }.fl-node-566dfe20e9d00 > .fl-module-content {margin-top:0px;margin-bottom:0px;}.fl-node-566dff5aa5008 > .fl-module-content {margin-top:0px;margin-bottom:30px;margin-left:60px;margin-right:40px;}@media (max-width: 768px) { .fl-node-566dff5aa5008 > .fl-module-content {margin-bottom:20px;margin-left:20px;margin-right:20px;} }.fl-node-565e74ec4a24c.fl-module-heading .fl-heading {
	text-align: center;
		font-size: 48px;
			}
.fl-node-565e74ec4a24c h2.fl-heading a,
.fl-node-565e74ec4a24c h2.fl-heading .fl-heading-text,
.fl-node-565e74ec4a24c h2.fl-heading .fl-heading-text * {
	color: #ffffff;
}
.fl-node-565e74ec4a24c > .fl-module-content {margin-top:78px;margin-bottom:0px;}@media (max-width: 768px) { .fl-node-565e74ec4a24c > .fl-module-content {margin-top:20px;} }.fl-node-566e055e3bed9 > .fl-module-content {margin-top:0px;margin-bottom:0px;}.fl-icon-group .fl-icon {
	display: inline-block;
	margin-bottom: 10px;
	margin-top: 10px;
}

/* Left */
.fl-icon-group-left {
	text-align: left;
}

/* Center */
.fl-icon-group-center {
	text-align: center;
}

/* Right */
.fl-icon-group-right {
	text-align: right;
}.fl-node-565e74ec4a283 .fl-module-content .fl-icon i,
.fl-node-565e74ec4a283 .fl-module-content .fl-icon i:before {
		color: #ffffff;
		font-size: 60px;
	height: auto;
	width: auto;
		}
.fl-node-565e74ec4a283 .fl-module-content .fl-icon i:hover,
.fl-node-565e74ec4a283 .fl-module-content .fl-icon i:hover:before,
.fl-node-565e74ec4a283 .fl-module-content .fl-icon a:hover i,
.fl-node-565e74ec4a283 .fl-module-content .fl-icon a:hover i:before {
			}
.fl-node-565e74ec4a283 .fl-module-content .fl-icon-text {
	height: 105px;
}
	
			.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(1) i,
		.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(1) i:before {
						color: #;
									background: #;
					}
				.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(1) i:hover,
		.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(1) i:hover:before,
		.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(1) a:hover i,
		.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(1) a:hover i:before {
						color: #;
									background: #;
					}
		
			.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(2) i,
		.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(2) i:before {
						color: #;
									background: #;
					}
				.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(2) i:hover,
		.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(2) i:hover:before,
		.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(2) a:hover i,
		.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(2) a:hover i:before {
						color: #;
									background: #;
					}
		
			.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(3) i,
		.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(3) i:before {
						color: #;
									background: #;
					}
				.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(3) i:hover,
		.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(3) i:hover:before,
		.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(3) a:hover i,
		.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(3) a:hover i:before {
						color: #;
									background: #;
					}
		
			.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(4) i,
		.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(4) i:before {
						color: #;
									background: #;
					}
				.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(4) i:hover,
		.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(4) i:hover:before,
		.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(4) a:hover i,
		.fl-node-565e74ec4a283 .fl-module-content .fl-icon:nth-child(4) a:hover i:before {
						color: #;
									background: #;
					}
	
/* Left */
.fl-node-565e74ec4a283 .fl-icon-group-left .fl-icon {
	margin-right: 20px;
}

/* Center */
.fl-node-565e74ec4a283 .fl-icon-group-center .fl-icon {
	margin-left: 20px;
	margin-right: 20px;
}

/* Right */
.fl-node-565e74ec4a283 .fl-icon-group-right .fl-icon {
	margin-left: 20px;
}.fl-node-566e15c0652b9.fl-module-heading .fl-heading {
	text-align: center;
		font-size: 48px;
			}
.fl-node-566e15c0652b9 h2.fl-heading a,
.fl-node-566e15c0652b9 h2.fl-heading .fl-heading-text,
.fl-node-566e15c0652b9 h2.fl-heading .fl-heading-text * {
	color: #424242;
}
.fl-node-566e15c0652b9 > .fl-module-content {margin-bottom:0px;}.fl-node-566e15c0652d6 > .fl-module-content {margin-top:30px;margin-bottom:0px;}@media (max-width: 768px) { .fl-node-566e15c0652d6 > .fl-module-content {margin-top:20px;} }.fl-builder-content .fl-node-566e15c0652dd a.fl-button,
.fl-builder-content .fl-node-566e15c0652dd a.fl-button:visited {

	font-size: 26px;
	line-height: 28px;
	padding: 12px 24px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	
	
		background: #FF5D00;
	border: 2px solid #f35100;
	
				background-color: rgba(255,93,0, 0);
		
			
	}

.fl-builder-content .fl-node-566e15c0652dd a.fl-button,
.fl-builder-content .fl-node-566e15c0652dd a.fl-button:visited,
.fl-builder-content .fl-node-566e15c0652dd a.fl-button *,
.fl-builder-content .fl-node-566e15c0652dd a.fl-button:visited * {
	color: #ff5d00;
}

.fl-builder-content .fl-node-566e15c0652dd a.fl-button:hover,
.fl-builder-content .fl-node-566e15c0652dd a.fl-button:focus {

	background: #2cbbbc;
	border: 2px solid #20afb0;
	
		background-color: rgba(44,187,188, 0);
	border-color: #2cbbbc	
	}

.fl-builder-content .fl-node-566e15c0652dd a.fl-button:hover,
.fl-builder-content .fl-node-566e15c0652dd a.fl-button:focus,
.fl-builder-content .fl-node-566e15c0652dd a.fl-button:hover *,
.fl-builder-content .fl-node-566e15c0652dd a.fl-button:focus * {
	color: #2cbbbc;
}



.fl-node-566e15c0652e3 > .fl-module-content {margin-top:30px;margin-bottom:0px;}@media (max-width: 768px) { .fl-node-566e15c0652e3 > .fl-module-content {margin-top:20px;} }.fl-builder-content .fl-node-566e15c0652e9 a.fl-button,
.fl-builder-content .fl-node-566e15c0652e9 a.fl-button:visited {

	font-size: 26px;
	line-height: 28px;
	padding: 12px 24px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	
	
		background: #FF5D00;
	border: 1px solid #f35100;
	
		
			
	}

.fl-builder-content .fl-node-566e15c0652e9 a.fl-button,
.fl-builder-content .fl-node-566e15c0652e9 a.fl-button:visited,
.fl-builder-content .fl-node-566e15c0652e9 a.fl-button *,
.fl-builder-content .fl-node-566e15c0652e9 a.fl-button:visited * {
	color: #ffffff;
}

.fl-builder-content .fl-node-566e15c0652e9 a.fl-button:hover,
.fl-builder-content .fl-node-566e15c0652e9 a.fl-button:focus {

	background: #2cbbbc;
	border: 1px solid #20afb0;
	
	
	}

.fl-builder-content .fl-node-566e15c0652e9 a.fl-button:hover,
.fl-builder-content .fl-node-566e15c0652e9 a.fl-button:focus,
.fl-builder-content .fl-node-566e15c0652e9 a.fl-button:hover *,
.fl-builder-content .fl-node-566e15c0652e9 a.fl-button:focus * {
	color: #ffffff;
}



.page .fl-post-header { display:none; }input.medium {
    height: 50px !important;
    padding-left: 10px !important;
}