/* 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-clear {
	clear: both;
}

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

.fl-clearfix:before,
.fl-clearfix:after {
	display: table;
	content: " ";
}
.fl-clearfix:after {
	clear: both;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

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

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

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

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

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

/* Video and Embed Code Bg */
.fl-row-bg-video,
.fl-row-bg-video .fl-row-content,
.fl-row-bg-embed,
.fl-row-bg-embed .fl-row-content {
	position: relative;
}

.fl-row-bg-video .fl-bg-video,
.fl-row-bg-embed .fl-bg-embed-code {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.fl-row-bg-video .fl-bg-video video,
.fl-row-bg-embed .fl-bg-embed-code video {
	bottom: 0;
	left: 0px;
	max-width: none;
	position: absolute;
	right: 0;
	top: 0px;
}
.fl-row-bg-video .fl-bg-video video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
}
.fl-row-bg-video .fl-bg-video iframe,
.fl-row-bg-embed .fl-bg-embed-code iframe {
	pointer-events: none;
	width: 100vw;
  	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  	max-width: none;
  	min-height: 100vh;
  	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
}
.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 {
	border-radius: inherit;
	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-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
}
.fl-row-overlap-top .fl-row-content-wrap {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	min-height: 0;
}

.fl-row-default-height .fl-row-content,
.fl-row-full-height .fl-row-content,
.fl-row-custom-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-default-height .fl-row-full-width.fl-row-content,
.fl-row-full-height .fl-row-full-width.fl-row-content,
.fl-row-custom-height .fl-row-full-width.fl-row-content {
	max-width: 100%;
	width: 100%;
}

/* IE 11 - Row full height - vertical alignment center/bottom fix */
.fl-builder-ie-11 .fl-row.fl-row-full-height:not(.fl-visible-medium):not(.fl-visible-medium-mobile):not(.fl-visible-mobile),
.fl-builder-ie-11 .fl-row.fl-row-custom-height:not(.fl-visible-medium):not(.fl-visible-medium-mobile):not(.fl-visible-mobile) {
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* Stupid IE Full Height Row Fixes */
.fl-builder-ie-11 .fl-row-full-height .fl-row-content-wrap,
.fl-builder-ie-11 .fl-row-custom-height .fl-row-content-wrap {
	height: auto;
}

.fl-builder-ie-11 .fl-row-full-height .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height .fl-row-content {
	flex: 0 0 auto;
	flex-basis: 100%;
	margin: 0;
}

.fl-builder-ie-11 .fl-row-full-height.fl-row-align-top .fl-row-content,
.fl-builder-ie-11 .fl-row-full-height.fl-row-align-bottom .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-top .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-bottom .fl-row-content {
    margin: 0 auto;
}

.fl-builder-ie-11 .fl-row-full-height.fl-row-align-center .fl-col-group:not(.fl-col-group-equal-height),
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-center .fl-col-group:not(.fl-col-group-equal-height) {
	display: flex;
	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 align center */
.fl-row-default-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-custom-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 align bottom */
.fl-row-default-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	align-items: flex-end;
	justify-content: flex-end;
	-webkit-align-items: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-align: end;
	-ms-flex-pack: end;
}

/* IE 11 - height bottom > row align bottom - center fix */
.fl-builder-ie-11 .fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
}

/* Column Groups
------------------------------------------------------ */
.fl-col-group-equal-height {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
	flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	display: flex;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-col-content {
	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 top */
.fl-col-gr





/* Full Height Rows */
.fl-node-60f558f3f3c0e.fl-row-full-height > .fl-row-content-wrap,
.fl-node-60f558f3f3c0e.fl-row-custom-height > .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.fl-node-60f558f3f3c0e.fl-row-full-height > .fl-row-content-wrap {
	min-height: 100vh;
}
.fl-node-60f558f3f3c0e.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 0;
}

.fl-builder-edit .fl-node-60f558f3f3c0e.fl-row-full-height > .fl-row-content-wrap {
	min-height: calc( 100vh - 48px );
}

/* Full height iPad with portrait orientation. */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
	.fl-node-60f558f3f3c0e.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-node-60f558f3f3c0e.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-node-60f558f3f3c0e.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-60f558f3f3c0e > .fl-row-content-wrap {
	background-color: #f7f4ef;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.fl-node-60f558f3f3c0e.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 420px;
}
 .fl-node-60f558f3f3c0e > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:40px;
}






.fl-node-60f558f3f3c06 > .fl-row-content-wrap {
	background-color: #f7f4ef;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-60f558f3f3c06 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




.fl-node-687yqhervomn {
	width: 70%;
}




.fl-node-czh57sre94fg {
	width: 30%;
}




.fl-node-3m2poehtu6w4 {
	width: 33%;
}
.fl-builder-content .fl-node-3m2poehtu6w4 > .fl-col-content {
	min-height: 30px;
}
 .fl-node-3m2poehtu6w4 > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:10px;
	padding-left:10px;
}
@media ( max-width: 1200px ) {
 .fl-node-3m2poehtu6w4.fl-col > .fl-col-content {
	padding-right:1%;
	padding-left:1%;
}
}




.fl-node-fdkwrcnilm43 {
	width: 67%;
}
.fl-node-fdkwrcnilm43 > .fl-col-content {
	background-color: #260101;
	border-top-left-radius: 50px;
}
.fl-builder-content .fl-node-fdkwrcnilm43 > .fl-col-content {
	min-height: 50px;
}
@media ( max-width: 1200px ) {
 .fl-node-fdkwrcnilm43.fl-col > .fl-col-content {
	padding-right:1%;
	padding-left:1%;
}
}
/**
* WP Menu
***/

.pp-advanced-menu ul,
.pp-advanced-menu li {
	list-style: none;
	margin: 0;
	padding: 0;
}
.pp-advanced-menu .menu:before,
.pp-advanced-menu .menu:after {
	content: '';
	display: table;
	clear: both;
}

/* Horizontal menus */
.pp-advanced-menu:not(.off-canvas):not(.full-screen) .pp-advanced-menu-horizontal {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}
.pp-advanced-menu .menu {
	padding-left: 0;
}
.pp-advanced-menu li {
	position: relative;
}
.pp-advanced-menu a {
	display: block;
	text-decoration: none;
	outline: 0;
}
.pp-advanced-menu a:hover,
.pp-advanced-menu a:focus {
	text-decoration: none;
	outline: 0;
}
.pp-advanced-menu .sub-menu {
	width: 220px;
	/*margin: 0 auto;*/
}

.pp-advanced-menu .pp-menu-nav {
    outline: 0;
}

/* Expanded menus */
.fl-module[data-node] .pp-advanced-menu .pp-advanced-menu-expanded .sub-menu {
	background-color: transparent;
	-webkit-box-shadow: none;
	-ms-box-shadow: none;
	box-shadow: none;
}

/* Submenus */
.pp-advanced-menu .pp-has-submenu:focus,
.pp-advanced-menu .pp-has-submenu .sub-menu:focus,
.pp-advanced-menu .pp-has-submenu-container:focus {
	outline: 0;
}
.pp-advanced-menu .pp-has-submenu-container {
	position: relative;
}

/* Submenu - accordion, expanded */
.pp-advanced-menu .pp-advanced-menu-accordion .pp-has-submenu > .sub-menu {
	display: none;
}
.pp-advanced-menu .pp-advanced-menu-horizontal .pp-has-submenu.pp-active .hide-heading > .sub-menu {
	box-shadow: none;
	display: block !important;
}

/* Toggle - General */
.pp-advanced-menu .pp-menu-toggle {
	position: absolute;
	top: 50%;
	right: 10px;
	cursor: pointer;
}
.pp-advanced-menu .pp-toggle-arrows .pp-menu-toggle:before,
.pp-advanced-menu .pp-toggle-none .pp-menu-toggle:before {
	content: '';
	border-color: #333;
}
.pp-advanced-menu .pp-menu-expanded .pp-menu-toggle {
	display: none;
}

/* Mobile menu - hamburger icon */
.pp-advanced-menu-mobile {
	display: flex;
	align-items: center;
	justify-content: center;
}
.fl-module-pp-advanced-menu .pp-advanced-menu-mobile-toggle {
	position: relative;
	padding: 8px;
	background-color: transparent;
	border: none;
	color: #333;
	border-radius: 0;
	cursor: pointer;
	line-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pp-advanced-menu-mobile-toggle.text {
	width: 100%;
	text-align: center;
}
.pp-advanced-menu-mobile-toggle.hamburger .pp-advanced-menu-mobile-toggle-label,
.pp-advanced-menu-mobile-toggle.hamburger-label .pp-advanced-menu-mobile-toggle-label {
	display: inline-block;
	margin-left: 10px;
	line-height: 0.8;
}
.pp-advanced-menu-mobile-toggle.hamburger .pp-svg-container,
.pp-advanced-menu-mobile-toggle.hamburger-label .pp-svg-container {
	display: inline-block;
	position: relative;
	width: 1.4em;
	height: 1.4em;
	vertical-align: middle;
}
.pp-advanced-menu-mobile-toggle.hamburger .hamburger-menu,
.pp-advanced-menu-mobile-toggle.hamburger-label .hamburger-menu {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.pp-advanced-menu-mobile-toggle.hamburger .hamburger-menu rect,
.pp-advanced-menu-mobile-toggle.hamburger-label .hamburger-menu rect {
	fill: currentColor;
}

.pp-advanced-menu-mobile-toggle .pp-hamburger {
	font: inherit;
    display: inline-block;
    overflow: visible;
    margin: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity,filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
    line-height: 0;
}
.pp-advanced-menu-mobile-toggle .pp-hamburger:focus {
	outline: none;
}

.pp-advanced-menu-mobile-toggle .pp-hamburger .pp-hamburger-box {
	position: relative;
    display: inline-block;
    width: 30px;
    height: 18px;
}

.pp-advanced-menu-mobile-toggle .pp-hamburger-box .pp-hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.pp-advanced-menu-mobile-toggle .pp-hamburger .pp-hamburger-box .pp-hamburger-inner,
.pp-advanced-menu-mobile-toggle .pp-hamburger .pp-hamburger-box .pp-hamburger-inner:before,
.pp-advanced-menu-mobile-toggle .pp-hamburger .pp-hamburger-box .pp-hamburger-inner:after {
	background-color: #000;
    position: absolute;
    width: 30px;
    height: 3px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
}

.pp-advanced-menu-mobile-toggle .pp-hamburger .pp-hamburger-box .pp-hamburger-inner:before, 
.pp-advanced-menu-mobile-toggle .pp-hamburger .pp-hamburger-box .pp-hamburger-inner:after {
    display: block;
    content: "";
}

.pp-advanced-menu-mobile-toggle .pp-hamburger .pp-hamburger-box .pp-hamburger-inner:before {
    transition: all .25s;
    top: -8px;
}

.pp-advanced-menu-mobile-toggle .pp-hamburger .pp-hamburger-box .pp-hamburger-inner:after {
    transition: all .25s;
    bottom: -8px;
}

.pp-advanced-menu.off-canvas .pp-off-canvas-menu .pp-menu-close-btn {
	position: relative;
	cursor: pointer;
	float: right;
	top: 20px;
	right: 20px;
	line-height: 1;
	z-index: 1;
	font-style: normal;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: 100;
	text-decoration: none !important;
}
.pp-a