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

/* 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%;
}

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

/* 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-group-nested.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content {
	justify-content: flex-start;
}

/* Equal height align center */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
	align-items: center;
	justify-content: center;
}

/* Equal height align bottom */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
	justify-content: flex-end;
}

.fl-col-group-equal-height.fl-col-group-align-center .fl-module,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	width: 100%;
}

/* 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 {
	border-radius: inherit;
	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: 2;
}

/* 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 {
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	line-height: 18px;
	padding: 12px 24px;
	text-decoration: none;
	text-shadow: none;
}
.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: right;
	height: auto;
	width: auto;
}
.fl-icon i:before {
	border: none !important;
	height: auto;
	width: auto;
}
.fl-icon-text {
	display: table-cell;
	text-align: left;
	padding-left: 15px;
	vertical-align: middle;
}
.fl-icon-text-empty {
	display: none;
}
.fl-icon-text *:last-child {
	margin: 0 !important;
	padding: 0 !important;
}
.fl-icon-text a {
	text-decoration: none;
}
.fl-icon-text span {
	display: block;
}
.fl-icon-text span.mce-edit-focus {
	min-width: 1px;
}

/* 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;
	max-width: 100%;
}
.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;
}
.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,
.fl-builder-pagination-load-more {
	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;
}
.admin-bar .mfp-wrap .mfp-close,
.admin-bar .mfp-wrap .mfp-close:active,
.admin-bar .mfp-wrap .mfp-close:hover,
.admin-bar .mfp-wrap .mfp-close:focus {
	top: 32px!important;
}
img.mfp-img {
	padding: 0;
}
.mfp-counter {
	display: none;
}

.mfp-wrap .mfp-preloader.fa {
	font-size: 30px;
}

/* 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-preview .fl-animation,
.fl-builder-edit .fl-animation,
.fl-animated {
	opacity: 1;
}
.fl-animated {
	animation-fill-mode: both;
	-webkit-animation-fill-mode: both;
}

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

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

.single:not(.woocommerce).single-fl-builder-template .fl-content {
	width: 100%;
}

/* Shapes & Patterns
------------------------------------------------------- */
.fl-builder-layer {
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.fl-builder-shape-layer {
	z-index: 0;
}
.fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 2;
}
.fl-row-has-layers .fl-row-content {
	z-index: 1;
}
.fl-row-bg-overlay .fl-row-content {
	z-index: 2;
}

.fl-builder-layer > * {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
}
.fl-builder-layer + .fl-row-content {
	position: relative;
}
.fl-builder-layer .fl-shape {
	fill: #aaa;
	stroke: none;
	stroke-width: 0;
	width:100%;
}
/**
Fix ipad parallax issue on safari
https://core.trac.wordpress.org/ticket/48802
https://core.trac.wordpress.org/ticket/49285
https://github.com/WordPress/gutenberg/issues/17718
*/
@supports (-webkit-touch-callout: inherit) {
  .fl-row.fl-row-bg-parallax .fl-row-content-wrap,
  .fl-row.fl-row-bg-fixed .fl-row-content-wrap {
    background-position: center !important;
    background-attachment: scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-medium-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
 }@media (max-width: 768px) { /* 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: flex;
}

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-responsive-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
.fl-col-group.fl-col-group-responsive-reversed .fl-col:not(.fl-col-small-custom-width) {
	flex-basis: 100%;
	width: 100% !important;
}
.fl-col-group.fl-col-group-medium-reversed:not(.fl-col-group-responsive-reversed) {
	display: unset;
	display: unset;
	-webkit-flex-wrap: unset;
	flex-wrap: unset;
	flex-direction: unset;
}

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

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

.fl-row[data-node] .fl-row-content-wrap {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
.fl-row[data-node] .fl-bg-video,
.fl-row[data-node] .fl-bg-slideshow {
	left: 0;
	right: 0;
}

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

.fl-col[data-node] .fl-col-content {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
 }@media (min-width: 1201px) {
	html .fl-visible-large:not(.fl-visible-desktop),
	html .fl-visible-medium:not(.fl-visible-desktop),
	html .fl-visible-mobile:not(.fl-visible-desktop) {
		display: none;
	}
}

@media (min-width: 993px) and (max-width: 1200px) {
	html .fl-visible-desktop:not(.fl-visible-large),
	html .fl-visible-medium:not(.fl-visible-large),
	html .fl-visible-mobile:not(.fl-visible-large) {
		display: none;
	}
}

@media (min-width: 769px) and (max-width: 992px) {
	html .fl-visible-desktop:not(.fl-visible-medium),
	html .fl-visible-large:not(.fl-visible-medium),
	html .fl-visible-mobile:not(.fl-visible-medium) {
		display: none;
	}
}

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-row-fixed-width {
	max-width: 1100px;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-col-content {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-module-content, :where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





.fl-node-5d49c622ce444 > .fl-row-content-wrap {
	background-image: url(https://theupsstore.landings.promo/wp-content/uploads/sites/61/2020/05/interior-with-people-12910-HR-r-scaled.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
 .fl-node-5d49c622ce444 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}






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

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

/* Full height iPad with portrait orientation. */
@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
	.fl-node-5d4043944fd78.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
	.fl-node-5d4043944fd78.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 (aspect-ratio: 40/71) {
	.fl-node-5d4043944fd78.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-5d4043944fd78 > .fl-row-content-wrap {
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-5d4043944fd78 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}






.fl-node-5d49c24a2ea43.fl-row-fixed-width, .fl-node-5d49c24a2ea43 .fl-row-fixed-width {
	max-width: 1350px;
}






@media ( max-width: 768px ) {
 .fl-node-5d4af38b8bdf4.fl-row > .fl-row-content-wrap {
	margin-right:0px;
	margin-bottom:-20px;
	margin-left:0px;
}
}
 .fl-node-5d4af38b8bdf4 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:20px;
	padding-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-5d4af38b8bdf4.fl-row > .fl-row-content-wrap {
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}






.fl-node-5ff4ab168e8d9 > .fl-row-content-wrap {
	background-color: #e5f5f8;
	background-image: url(https://theupsstore.landings.promo/wp-content/uploads/sites/61/2021/03/icon_blue.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-attachment: scroll;
	background-size: auto;
}
.fl-node-5ff4ab168e8d9 > .fl-row-content-wrap:after {
	background-color: rgba(229,245,248,0.5);
}
.fl-node-5ff4ab168e8d9 .fl-row-content {
	max-width: 1200px;
}
 .fl-node-5ff4ab168e8d9 > .fl-row-content-wrap {
	padding-top:60px;
	padding-bottom:60px;
}
@media ( max-width: 768px ) {
 .fl-node-5ff4ab168e8d9.fl-row > .fl-row-content-wrap {
	padding-top:10px;
	padding-bottom:10px;
}
}






.fl-node-5d4043944fb93 > .fl-row-content-wrap {
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-5d4043944fb93 > .fl-row-content-wrap {
	padding-top:60px;
	padding-right:20px;
	padding-bottom:40px;
	padding-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-5d4043944fb93.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-bottom:20px;
}
}






.fl-node-5d498432064e7 .fl-row-content {
	max-width: 1200px;
}
 .fl-node-5d498432064e7 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-5d498432064e7.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-5d498432064e7.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:0px;
	padding-bottom:20px;
	padding-left:0px;
}
}
.fl-node-k5i6n28mljdb {
	color: #a8a8a8;
}
.fl-builder-content .fl-node-k5i6n28mljdb *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-k5i6n28mljdb a {
	color: #a8a8a8;
}

.fl-builder-content .fl-node-k5i6n28mljdb a:hover {
	color: #a8a8a8;
}

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



.fl-node-k5i6n28mljdb > .fl-row-content-wrap {
	background-color: #e5f5f8;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.fl-node-k5i6n28mljdb .fl-row-content {
	max-width: 1200px;
}
 .fl-node-k5i6n28mljdb > .fl-row-content-wrap {
	padding-top:20px;
	padding-bottom:20px;
}




.fl-node-5d4043944fb11 {
	width: 50%;
}




.fl-node-5d4043944fdf2 {
	width: 100%;
}




.fl-node-5d49843206462 {
	width: 65%;
}




.fl-node-5d499f43874a0 {
	width: 100%;
}




.fl-node-5d49c24a393e4 {
	width: 100%;
}




.fl-node-5d49c622d874f {
	width: 100%;
}




.fl-node-5d4af38b99f2b {
	width: 50%;
}




.fl-node-5ff4a9d29b309 {
	width: 100%;
}




.fl-node-5ff4ab169b06e {
	width: 100%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-5ff4ab169b06e {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-5ff4ad7aca66a {
	width: 100%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-5ff4ad7aca66a {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-5ff4ad82d4400 {
	width: 100%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-5ff4ad82d4400 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-5ff4ad86d0e4f {
	width: 100%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-5ff4ad86d0e4f {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
@media ( max-width: 768px ) {
 .fl-node-5ff4ad86d0e4f.fl-col > .fl-col-content {
	padding-bottom:20px;
}
}




.fl-node-5ff4ae8b86867 {
	width: 100%;
}




.fl-node-ml4pohw82f0g {
	width: 100%;
}
.fl-node-ml4pohw82f0g > .fl-col-content {
	background-color: #ffffff;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #009cbd;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
 .fl-node-ml4pohw82f0g > .fl-col-content {
	margin-bottom:50px;
}
@media ( max-width: 768px ) {
 .fl-node-ml4pohw82f0g.fl-col > .fl-col-content {
	margin-bottom:20px;
}
}
 .fl-node-ml4pohw82f0g > .fl-col-content {
	padding-top:25px;
	padding-right:50px;
	padding-bottom:25px;
	padding-left:50px;
}
@media ( max-width: 992px ) {
 .fl-node-ml4pohw82f0g.fl-col > .fl-col-content {
	padding-right:25px;
	padding-left:25px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ml4pohw82f0g.fl-col > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:10px;
	padding-left:10px;
}
}




.fl-node-9swmv1lg0qfa {
	width: 100%;
}
.fl-node-9swmv1lg0qfa > .fl-col-content {
	background-color: #ffd100;
	box-shadow: 0px 4px 12px 0px rgba(0,0,0,0.2);
}
@media(max-width: 992px) {
	.fl-node-9swmv1lg0qfa > .fl-col-content {
		box-shadow: 0px 4px 12px 0px rgba(0,0,0,0.2);
	}
}




.fl-node-wv6prcbl0qmt {
	width: 100%;
}




.fl-node-fdqc6nw7xzkt {
	width: 20%;
}




.fl-node-5d4adbba19d2f {
	width: 50%;
}




.fl-node-6036c6ed75952 {
	width: 35%;
}




.fl-node-6037c4950912c {
	width: 50%;
}
 .fl-node-6037c4950912c > .fl-col-content {
	margin-right:50px;
	margin-left:50px;
}




.fl-node-67ol3i24sdj5 {
	width: 60%;
}




.fl-node-6xg3zrebalkp {
	width: 20%;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}
.fl-builder-content .fl-node-5d4043944fb52 .fl-rich-text, .fl-builder-content .fl-node-5d4043944fb52 .fl-rich-text *:not(b, strong) {
	font-family: UPSBerlingskeSans, Verdana, Arial, sans-serif;
	font-weight: 400;
}
 .fl-node-5d4043944fb52 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-embed-video iframe {
	max-width: 100%;
}
.fl-wp-video {
	position: relative;
	height: 0;
	overflow: hidden;
	padding: 0 0 56.25%;
}
.fl-wp-video .wp-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}


.mfp-container .fl-video-lightbox-content .wp-video {
    margin-left: auto;
    margin-right: auto;
}

.mfp-container .fl-video-lightbox-content .fluid-width-video-wrapper iframe {
	width: 80%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.fl-module-video .fl-video-poster {
	cursor: pointer;
}

.fl-wp-video .wp-video .mejs-container,
.fl-wp-video .wp-video .mejs-inner,
.fl-wp-video .wp-video .mejs-layers,
.fl-wp-video .wp-video .mejs-layer,
.fl-wp-video .wp-video-shortcode,
.fl-wp-video .me-plugin,
.fl-wp-video .me-plugin * {
	width: 100% !important;
	height: 100% !important;
}

.fl-video-sticky {
	position: fixed;
    top: 20px;
	z-index: 11;
}

.fl-wp-video img{
	width: 100%;
}
@media (max-width: 768px) {  }







.fl-node-5d49859edf115 .fl-video-poster {
	display: none;
}


 .fl-node-5d49859edf115 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
img.mfp-img {
    padding-bottom: 40px !important;
}

/* Support for object-fit */
.fl-builder-edit .fl-fill-container img {
	transition: object-position .5s;
}

.fl-fill-container :is(.fl-module-content, .fl-photo, .fl-photo-content, img) {
	height: 100% !important;
	width: 100% !important;
}

@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-5d49c3f468f59 .fl-photo {
	text-align: center;
}
 .fl-node-5d49c3f468f59 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-5d49e7cb5f2b2 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-5ff4a9cca6038 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-5ff4ab273cedc h3.fl-heading a,
.fl-row .fl-col .fl-node-5ff4ab273cedc h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-5ff4ab273cedc h3.fl-heading .fl-heading-text *,
.fl-node-5ff4ab273cedc h3.fl-heading .fl-heading-text {
	color: #009cbd;
}
.fl-node-5ff4ab273cedc.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-5ff4ab273cedc > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-5ff4ad7aca7af.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-5ff4ad7aca7af > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
.fl-node-5ff4ad82d44d8.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-5ff4ad82d44d8 > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
.fl-node-5ff4ad86d0f02.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-5ff4ad86d0f02 > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
.fl-node-5ff4ae8b866cc.fl-module-heading .fl-heading {
	font-family: UPSBerlingskeSans, Verdana, Arial, sans-serif;
	font-weight: 600;
	text-align: center;
}
@media ( max-width: 768px ) {
 .fl-node-5ff4ae8b866cc.fl-module > .fl-module-content {
	margin-top:30px;
	margin-bottom:30px;
}
}
 .fl-node-5ff4c4d97e178 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:40px;
	margin-left:0px;
}
@media (max-width: 768px) { .fl-node-5ff4c4d97e178 > .fl-module-content { margin-bottom:20px; } }@media(max-width: 768px) {
	.fl-node-6036cbad446c5.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-6036cbad446c5 > .fl-module-content {
	margin-bottom:10px;
}
.fl-row .fl-col .fl-node-6036cc5707fba h3.fl-heading a,
.fl-row .fl-col .fl-node-6036cc5707fba h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-6036cc5707fba h3.fl-heading .fl-heading-text *,
.fl-node-6036cc5707fba h3.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-6036cc5707fba.fl-module-heading .fl-heading {
	font-weight: 700;
	text-align: center;
}
@media(max-width: 768px) {
	.fl-node-6036cc5707fba.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-6036cc5707fba > .fl-module-content {
	margin-top:20px;
	margin-bottom:0px;
}
.fl-node-6037c6726f7d7.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-6037c6726f7d7 > .fl-module-content {
	margin-top:30px;
	margin-right:60px;
	margin-bottom:0px;
	margin-left:60px;
}
@media ( max-width: 992px ) {
 .fl-node-6037c6726f7d7.fl-module > .fl-module-content {
	margin-right:25px;
	margin-left:25px;
}
}
@media ( max-width: 768px ) {
 .fl-node-6037c6726f7d7.fl-module > .fl-module-content {
	margin-right:60px;
	margin-left:60px;
}
}
@media (max-width: 768px) { .fl-node-6037c6726f7d7 > .fl-module-content { margin-top:20px; } }.fl-node-6037eaed7d01d .fl-photo {
	text-align: center;
}
.fl-node-6037eaed7d01d .fl-photo-content, .fl-node-6037eaed7d01d .fl-photo-img {
	width: 400px;
}
@media ( max-width: 768px ) {
 .fl-node-6037eaed7d01d.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:50px;
	margin-left:50px;
}
}
.fl-node-xb8j6amulioh.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-xb8j6amulioh > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
	.fl-builder-content .fl-node-xgse02lin1rz .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-xgse02lin1rz .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-xgse02lin1rz .fl-rich-text, .fl-builder-content .fl-node-xgse02lin1rz .fl-rich-text *:not(b, strong) {
	font-size: 12px;
	line-height: 18px;
	text-align: center;
}
 .fl-node-xgse02lin1rz > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-hr6asl5e1zki .fl-photo {
	text-align: left;
}
.fl-node-hr6asl5e1zki .fl-photo-content, .fl-node-hr6asl5e1zki .fl-photo-img {
	width: 300px;
}
@media(max-width: 768px) {
	.fl-node-hr6asl5e1zki .fl-photo {
		text-align: center;
	}
	.fl-node-hr6asl5e1zki .fl-photo-content, .fl-node-hr6asl5e1zki .fl-photo-img {
		width: 300px;
	}
}
 .fl-node-hr6asl5e1zki > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
/**
 * Horizontal Layout
 */

.fl-button-group-layout-horizontal .fl-button-group-buttons {
    display: flex;
    flex-wrap: wrap;
}

.fl-button-group-layout-horizontal .fl-button-wrap {
    display: inline-block;
}

/**
 * Vertical Layout
 */
.fl-button-group-layout-vertical .fl-button-group-buttons {
    display: block;
}

.fl-button-group-layout-vertical .fl-button-wrap {
    display: block;
}

.fl-node-hgz0y839usob .fl-button-group-layout-vertical .fl-button-group-buttons a.fl-button,
.fl-node-hgz0y839usob .fl-button-group-layout-horizontal .fl-button-group-buttons a.fl-button {
	width: 100%;
}

.fl-node-hgz0y839usob .fl-button-group-layout-horizontal .fl-button-group-buttons {
		justify-content: center}

	.fl-builder-content .fl-node-hgz0y839usob .fl-button-group a.fl-button > span,
	.fl-builder-content .fl-node-hgz0y839usob .fl-button-group a.fl-button > i {
		color: #333333;
	}



	#fl-button-group-button-hgz0y839usob-0 a.fl-button {
									background: rgba(255,0,0,0);
					
			}

			#fl-button-group-button-hgz0y839usob-0 a.fl-button:hover,
		#fl-button-group-button-hgz0y839usob-0 a.fl-button:focus {
			background: rgba(255,0,0,0);
					}
		
	#fl-button-group-button-hgz0y839usob-1 a.fl-button {
									background: rgba(255,0,0,0);
					
			}

			#fl-button-group-button-hgz0y839usob-1 a.fl-button:hover,
		#fl-button-group-button-hgz0y839usob-1 a.fl-button:focus {
			background: rgba(255,0,0,0);
					}
		
	#fl-button-group-button-hgz0y839usob-2 a.fl-button {
									background: rgba(255,0,0,0);
					
			}

			#fl-button-group-button-hgz0y839usob-2 a.fl-button:hover,
		#fl-button-group-button-hgz0y839usob-2 a.fl-button:focus {
			background: rgba(255,0,0,0);
					}
		
	#fl-button-group-button-hgz0y839usob-3 a.fl-button {
									background: rgba(255,0,0,0);
					
			}

			#fl-button-group-button-hgz0y839usob-3 a.fl-button:hover,
		#fl-button-group-button-hgz0y839usob-3 a.fl-button:focus {
			background: rgba(255,0,0,0);
					}
			.fl-builder-content .fl-node-hgz0y839usob .fl-button,
	.fl-builder-content .fl-node-hgz0y839usob .fl-button * {
		transition: none;
		-moz-transition: none;
		-webkit-transition: none;
		-o-transition: none;
	}
.fl-node-hgz0y839usob .fl-button-group-layout-vertical .fl-button-group-button .fl-button-wrap {
	text-align: center;
}
.fl-node-hgz0y839usob .fl-button-group-layout-horizontal .fl-button-group-buttons {
	justify-content: center;
}
.fl-builder-content .fl-node-hgz0y839usob .fl-button-group .fl-button-group-buttons .fl-button-group-button {
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 20px;
}
#fl-button-group-button-hgz0y839usob-0 a.fl-button {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
#fl-button-group-button-hgz0y839usob-0 a.fl-button, #fl-button-group-button-hgz0y839usob-0 a.fl-button:visited {
	font-size: 14px;
}
#fl-button-group-button-hgz0y839usob-1 a.fl-button {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
#fl-button-group-button-hgz0y839usob-1 a.fl-button, #fl-button-group-button-hgz0y839usob-1 a.fl-button:visited {
	font-size: 14px;
}
#fl-button-group-button-hgz0y839usob-2 a.fl-button {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
#fl-button-group-button-hgz0y839usob-2 a.fl-button, #fl-button-group-button-hgz0y839usob-2 a.fl-button:visited {
	font-size: 14px;
}
#fl-button-group-button-hgz0y839usob-3 a.fl-button {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
#fl-button-group-button-hgz0y839usob-3 a.fl-button, #fl-button-group-button-hgz0y839usob-3 a.fl-button:visited {
	font-size: 14px;
}
@media(max-width: 768px) {
	.fl-node-hgz0y839usob .fl-button-group-layout-vertical .fl-button-group-button .fl-button-wrap {
		text-align: center;
	}
	.fl-node-hgz0y839usob .fl-button-group-layout-horizontal .fl-button-group-buttons {
		justify-content: center;
	}
	.fl-builder-content .fl-node-hgz0y839usob .fl-button-group .fl-button-group-buttons .fl-button-group-button {
		padding-top: 15px;
		padding-right: 70px;
		padding-bottom: 15px;
		padding-left: 70px;
	}
}
 .fl-node-hgz0y839usob > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-hgz0y839usob.fl-module > .fl-module-content {
	margin-top:0px;
}
}
/* Title
---------------------------------------------------*/

body a.fl-callout-title-link {
	text-decoration: none;
}
body h1.fl-callout-title,
body h2.fl-callout-title,
body h3.fl-callout-title,
body h4.fl-callout-title,
body h5.fl-callout-title,
body h6.fl-callout-title {
	margin: 0;
	padding: 0 0 10px 0;
}

/* Text
---------------------------------------------------*/

.fl-callout-text p {
	margin: 0 !important;
	padding: 0 0 10px 0 !important;
}

/* Button
---------------------------------------------------*/

.fl-callout-button {
	padding: 10px 0 0 0;
}

/* CTA Link
---------------------------------------------------*/

.fl-callout-cta-link {
	display: block;
}

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

/* Above/Below Title */
.fl-callout-icon-above-title .fl-icon {
	display: block;
	margin-bottom: 20px;
}
.fl-callout-icon-below-title .fl-icon {
	display: block;
	margin: 10px 0 15px;
}
.fl-callout-icon-above-title .fl-icon i,
.fl-callout-icon-below-title .fl-icon i {
	display: inline-block;
	float: none;
}

/* Left/Right of Title */
.fl-callout-icon-left-title .fl-callout-title,
.fl-callout-icon-right-title .fl-callout-title {
	display: inline-block;
}
.fl-callout-icon-left-title .fl-callout-title span,
.fl-callout-icon-right-title .fl-callout-title span {
	display: table-cell;
	vertical-align: middle;
}
.fl-callout-icon-left-title .fl-icon {
	padding-right: 15px;
}
.fl-callout-icon-right-title .fl-icon {
	padding-left: 15px;
}

/* Left/Right */
.fl-callout-icon-left,
.fl-callout-icon-right {
	display: table;
}
.fl-callout-icon-left .fl-icon,
.fl-callout-icon-left-text .fl-icon {
	display: table-cell;
	vertical-align: top;
	padding-right: 15px;
}
.fl-callout-icon-right .fl-icon,
.fl-callout-icon-right-text .fl-icon {
	display: table-cell;
	vertical-align: top;
	padding-left: 15px;
}

.fl-callout-icon-left .fl-callout-content,
.fl-callout-icon-right .fl-callout-content,
.fl-callout-icon-left-text .fl-callout-text-wrap,
.fl-callout-icon-right-text .fl-callout-text-wrap {
	display: table-cell;
}

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

/* Above Title */
.fl-callout-photo-above-title .fl-photo {
	margin-bottom: 15px;
}

/* Below Title */
.fl-callout-photo-below-title .fl-photo {
	margin-bottom: 15px;
	margin-top: 5px;
}

/* Left */
.fl-callout-photo-left {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.fl-callout-photo-left .fl-callout-photo,
.fl-callout-photo-left-text .fl-callout-photo {
	display: table-cell;
	padding-right: 30px;
	width: 50%;
	vertical-align: top;
}
.fl-callout-photo-left .fl-callout-content,
.fl-callout-photo-left-text .fl-callout-text-wrap {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
}

/* Right */
.fl-callout-photo-right {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.fl-callout-photo-right .fl-callout-photo,
.fl-callout-photo-right-text .fl-callout-photo {
	display: table-cell;
	padding-left: 30px;
	width: 50%;
	vertical-align: top;
}
.fl-callout-photo-right .fl-callout-content,
.fl-callout-photo-right-text .fl-callout-text-wrap {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
}

.fl-module-callout .fl-module-content {
	overflow: hidden;
}
@media (max-width: 768px) { .fl-callout-photo-left,
.fl-callout-photo-right {
	display: block;
}
.fl-callout-photo-left .fl-callout-photo,
.fl-callout-photo-left-text .fl-callout-photo {
	display: block;
	margin-bottom: 15px;
	padding-left: 0;
	padding-right: 0;
	width: auto;
}
.fl-callout-photo-right .fl-callout-photo,
.fl-callout-photo-right-text .fl-callout-photo {
	display: block;
	margin-top: 25px;
	padding-left: 0;
	padding-right: 0;
	width: auto;
}
.fl-callout-photo-left .fl-callout-content,
.fl-callout-photo-left-text .fl-callout-content,
.fl-callout-photo-right .fl-callout-content,
.fl-callout-photo-right-text .fl-callout-content {
	display: block;
	width: auto;
} }.fl-node-d03stic4o6xq .fl-callout {
	text-align: left;
}
.fl-node-d03stic4o6xq .fl-callout-icon-left, .fl-node-d03stic4o6xq .fl-callout-icon-right {
	float: none;
}
.fl-node-d03stic4o6xq .fl-photo {
	text-align: left;
}
.fl-node-d03stic4o6xq .fl-photo-img {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
@media(max-width: 992px) {
	.fl-node-d03stic4o6xq .fl-callout-icon-left, .fl-node-d03stic4o6xq .fl-callout-icon-right {
		float: none;
	}
}
@media(max-width: 768px) {
	.fl-node-d03stic4o6xq .fl-callout {
		text-align: center;
	}
	.fl-node-d03stic4o6xq .fl-callout-icon-left, .fl-node-d03stic4o6xq .fl-callout-icon-right {
		float: none;
	}
	.fl-node-d03stic4o6xq .fl-photo {
		text-align: center;
	}
}
.fl-node-d03stic4o6xq .fl-module-content {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-builder-content .fl-node-d03stic4o6xq .fl-callout-content .fl-callout-title, .fl-builder-content .fl-node-d03stic4o6xq .fl-callout-content .fl-callout-title-text, .fl-builder-content .fl-node-d03stic4o6xq .fl-callout-content .fl-callout-title-text:hover {
	color: #ffffff;
}
.fl-builder-content .fl-node-d03stic4o6xq .fl-callout-content .fl-callout-text *, .fl-builder-content .fl-node-d03stic4o6xq .fl-callout-content .fl-callout-cta-link {
	color: #ffffff;
}
.fl-node-d03stic4o6xq .fl-callout-text, .fl-node-d03stic4o6xq .fl-callout-cta-link {
	font-size: 12px;
}
 .fl-node-d03stic4o6xq > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-d03stic4o6xq.fl-module > .fl-module-content {
	margin-top:40px;
	margin-right:15px;
	margin-bottom:20px;
	margin-left:15px;
}
}
.fl-builder-content .fl-node-5d49c2512f5c8 .fl-rich-text, .fl-builder-content .fl-node-5d49c2512f5c8 .fl-rich-text *:not(b, strong) {
	font-family: UPSBerlingskeSans, Verdana, Arial, sans-serif;
	font-weight: 400;
}
 .fl-node-5d49c2512f5c8 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-5d49c2512f5c8.fl-module > .fl-module-content {
	margin-top:10px;
	margin-bottom:30px;
}
}
.fl-module-list .fl-list-item .fl-list-item-wrapper {
  width: 100%;
}

.fl-module-list .fl-list {
  padding-inline-start: unset;
  margin-bottom: 0px;
}

.fl-module-list .fl-list-item {
  border-bottom: none;
}

.fl-module-list .fl-list-item-heading {
  display: table;
  width: 100%;
}

.fl-module-list .fl-list-item-heading .fl-list-item-heading-icon,
.fl-module-list .fl-list-item-heading .fl-list-item-heading-icon .fl-list-item-icon {
  display: inline-block;
}

.fl-module-list .fl-list-item-heading .fl-list-item-heading-text {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.fl-module-list .fl-list-item-content {
  display: table;
  width: 100%;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-icon {
  display: table-cell; 
  vertical-align: middle;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-text {
  display: table-cell;
  vertical-align: middle; 
  width: 100%;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-text p:last-child {
  margin-bottom: 0px;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-text b,
.fl-module-list .fl-list-item-content .fl-list-item-content-text strong {
	font-weight: bold;
}
	.fl-node-5ff4ab9eb1629 .fl-list-item-content .fl-list-item-content-text,
	.fl-node-5ff4ab9eb1629 .fl-list-item-content .fl-list-item-content-text * ,
	.fl-row .fl-col .fl-node-5ff4ab9eb1629 .fl-list-item-content .fl-list-item-content-text,
	.fl-row .fl-col .fl-node-5ff4ab9eb1629 .fl-list-item-content .fl-list-item-content-text * {
		color: #000000;
	}
		.fl-node-5ff4ab9eb1629 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-5ff4ab9eb1629 .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5ff4ab9eb1629 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5ff4ab9eb1629 .fl-list-item-content-icon .fl-list-item-icon {
		color: #ffb500;
	}
		.fl-node-5ff4ab9eb1629 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-5ff4ab9eb1629 .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5ff4ab9eb1629 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5ff4ab9eb1629 .fl-list-item-content-icon .fl-list-item-icon {
		font-size: 20px;
	}
	
.fl-node-5ff4ab9eb1629 .fl-module-content ul.fl-list,
.fl-node-5ff4ab9eb1629 .fl-module-content ol.fl-list {
	list-style-type: none;
}


.fl-node-5ff4ab9eb1629 .fl-module-content .fl-list-item ~ .fl-list-item {
	border-top-style: none;
	border-top-color: transparent;
}

.fl-node-5ff4ab9eb1629 .fl-module-content {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-5ff4ab9eb1629 .fl-module-content .fl-list .fl-list-item {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
}
.fl-node-5ff4ab9eb1629 .fl-module-content .fl-list-item-icon {
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-5ff4ab9eb1629 .fl-module-content .fl-list-item ~ .fl-list-item {
	border-top-width: 0px;
}
 .fl-node-5ff4ab9eb1629 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
	.fl-node-5ff4ad7aca7b6 .fl-list-item-content .fl-list-item-content-text,
	.fl-node-5ff4ad7aca7b6 .fl-list-item-content .fl-list-item-content-text * ,
	.fl-row .fl-col .fl-node-5ff4ad7aca7b6 .fl-list-item-content .fl-list-item-content-text,
	.fl-row .fl-col .fl-node-5ff4ad7aca7b6 .fl-list-item-content .fl-list-item-content-text * {
		color: #000000;
	}
		.fl-node-5ff4ad7aca7b6 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-5ff4ad7aca7b6 .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5ff4ad7aca7b6 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5ff4ad7aca7b6 .fl-list-item-content-icon .fl-list-item-icon {
		color: #ffb500;
	}
		.fl-node-5ff4ad7aca7b6 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-5ff4ad7aca7b6 .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5ff4ad7aca7b6 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5ff4ad7aca7b6 .fl-list-item-content-icon .fl-list-item-icon {
		font-size: 20px;
	}
	
.fl-node-5ff4ad7aca7b6 .fl-module-content ul.fl-list,
.fl-node-5ff4ad7aca7b6 .fl-module-content ol.fl-list {
	list-style-type: none;
}


.fl-node-5ff4ad7aca7b6 .fl-module-content .fl-list-item ~ .fl-list-item {
	border-top-style: none;
	border-top-color: transparent;
}

.fl-node-5ff4ad7aca7b6 .fl-module-content {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-5ff4ad7aca7b6 .fl-module-content .fl-list .fl-list-item {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
}
.fl-node-5ff4ad7aca7b6 .fl-module-content .fl-list-item-icon {
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-5ff4ad7aca7b6 .fl-module-content .fl-list-item ~ .fl-list-item {
	border-top-width: 0px;
}
 .fl-node-5ff4ad7aca7b6 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
	.fl-node-5ff4ad82d44da .fl-list-item-content .fl-list-item-content-text,
	.fl-node-5ff4ad82d44da .fl-list-item-content .fl-list-item-content-text * ,
	.fl-row .fl-col .fl-node-5ff4ad82d44da .fl-list-item-content .fl-list-item-content-text,
	.fl-row .fl-col .fl-node-5ff4ad82d44da .fl-list-item-content .fl-list-item-content-text * {
		color: #000000;
	}
		.fl-node-5ff4ad82d44da .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-5ff4ad82d44da .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5ff4ad82d44da .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5ff4ad82d44da .fl-list-item-content-icon .fl-list-item-icon {
		color: #ffb500;
	}
		.fl-node-5ff4ad82d44da .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-5ff4ad82d44da .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5ff4ad82d44da .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5ff4ad82d44da .fl-list-item-content-icon .fl-list-item-icon {
		font-size: 20px;
	}
	
.fl-node-5ff4ad82d44da .fl-module-content ul.fl-list,
.fl-node-5ff4ad82d44da .fl-module-content ol.fl-list {
	list-style-type: none;
}


.fl-node-5ff4ad82d44da .fl-module-content .fl-list-item ~ .fl-list-item {
	border-top-style: none;
	border-top-color: transparent;
}

.fl-node-5ff4ad82d44da .fl-module-content {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-5ff4ad82d44da .fl-module-content .fl-list .fl-list-item {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
}
.fl-node-5ff4ad82d44da .fl-module-content .fl-list-item-icon {
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-5ff4ad82d44da .fl-module-content .fl-list-item ~ .fl-list-item {
	border-top-width: 0px;
}
 .fl-node-5ff4ad82d44da > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
	.fl-node-5ff4ad86d0f04 .fl-list-item-content .fl-list-item-content-text,
	.fl-node-5ff4ad86d0f04 .fl-list-item-content .fl-list-item-content-text * ,
	.fl-row .fl-col .fl-node-5ff4ad86d0f04 .fl-list-item-content .fl-list-item-content-text,
	.fl-row .fl-col .fl-node-5ff4ad86d0f04 .fl-list-item-content .fl-list-item-content-text * {
		color: #000000;
	}
		.fl-node-5ff4ad86d0f04 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-5ff4ad86d0f04 .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5ff4ad86d0f04 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5ff4ad86d0f04 .fl-list-item-content-icon .fl-list-item-icon {
		color: #ffb500;
	}
		.fl-node-5ff4ad86d0f04 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-5ff4ad86d0f04 .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5ff4ad86d0f04 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5ff4ad86d0f04 .fl-list-item-content-icon .fl-list-item-icon {
		font-size: 20px;
	}
	
.fl-node-5ff4ad86d0f04 .fl-module-content ul.fl-list,
.fl-node-5ff4ad86d0f04 .fl-module-content ol.fl-list {
	list-style-type: none;
}


.fl-node-5ff4ad86d0f04 .fl-module-content .fl-list-item ~ .fl-list-item {
	border-top-style: none;
	border-top-color: transparent;
}

.fl-node-5ff4ad86d0f04 .fl-module-content {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-5ff4ad86d0f04 .fl-module-content .fl-list .fl-list-item {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
}
.fl-node-5ff4ad86d0f04 .fl-module-content .fl-list-item-icon {
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-5ff4ad86d0f04 .fl-module-content .fl-list-item ~ .fl-list-item {
	border-top-width: 0px;
}
 .fl-node-5ff4ad86d0f04 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media(max-width: 768px) {
	.fl-node-6036cbd3b19f1.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-6036cbd3b19f1 > .fl-module-content {
	margin-top:10px;
}
@media ( max-width: 768px ) {
 .fl-node-6036cbd3b19f1.fl-module > .fl-module-content {
	margin-bottom:40px;
}
}
	.fl-builder-content .fl-node-6036cc82a4148 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-6036cc82a4148 .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-6036cc82a4148 .fl-rich-text, .fl-builder-content .fl-node-6036cc82a4148 .fl-rich-text *:not(b, strong) {
	text-align: center;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-6036cc82a4148 .fl-rich-text, .fl-builder-content .fl-node-6036cc82a4148 .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-6036cc82a4148 > .fl-module-content {
	margin-top:0px;
	margin-bottom:-15px;
}
@media ( max-width: 768px ) {
 .fl-node-6036cc82a4148.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
.fl-row .fl-col .fl-node-6037c6bb6df3a h2.fl-heading a,
.fl-row .fl-col .fl-node-6037c6bb6df3a h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-6037c6bb6df3a h2.fl-heading .fl-heading-text *,
.fl-node-6037c6bb6df3a h2.fl-heading .fl-heading-text {
	color: #330000;
}
.fl-node-6037c6bb6df3a.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-6037c6bb6df3a > .fl-module-content {
	margin-top:20px;
	margin-bottom:20px;
}
.fl-node-n32s4e7y9wf5.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-n32s4e7y9wf5 > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
a.pp-button,
a.pp-button:visited {
	display: inline-block;
	overflow: hidden;
    position: relative;
	text-decoration: none;
	text-shadow: none;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -o-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-o-transition: all .3s linear;
	-ms-transition: all .3s linear;
	transition: all .3s linear;
}
.pp-button:hover {
	text-decoration: none;
}
.pp-button:active {
	position: relative;
	top: 1px;
}
.pp-button-width-full .pp-button {
	display: block;
	text-align: center;
}
.pp-button-width-custom .pp-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.pp-button-left {
	text-align: left;
}
.pp-button-center {
	text-align: center;
}
.pp-button-right {
	text-align: right;
}
.pp-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.pp-button i.pp-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.pp-button-has-icon .pp-button-text {
	vertical-align: middle;
}

.pp-button-wrap a.pp-button:before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition-property: transform;
    -moz-transition-property: transform;
    -o-transition-property: transform;
    -ms-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.pp-button .dashicons,
.pp-button .dashicons-before:before {
	font-size: inherit;
	height: auto;
	width: auto;
}
.pp-button .pp-button-has-subtext {
	display: flex;
	flex-direction: column;
}@media (max-width: 768px) { .fl-module-button .pp-button-left,
.fl-module-button .pp-button-right {
	text-align: center;
}
 }


.fl-node-6036c6ed75747 .pp-button-wrap a.pp-button,
.fl-node-6036c6ed75747 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

	
			background: #ffd100;
	
		background-clip: border-box;
}

.fl-node-6036c6ed75747 .pp-button-wrap a.pp-button:hover,
.fl-node-6036c6ed75747 .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #FFD100;
			
	}


.fl-node-6036c6ed75747 a.pp-button {
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}
.fl-node-6036c6ed75747 a.pp-button,
.fl-node-6036c6ed75747 a.pp-button * {
	color: #330000;
}

.fl-node-6036c6ed75747 a.pp-button:hover,
.fl-node-6036c6ed75747 a.pp-button:focus,
.fl-node-6036c6ed75747 a.pp-button:hover *,
.fl-node-6036c6ed75747 a.pp-button:focus * {
	color: #330000;
}

	    .fl-node-6036c6ed75747 .pp-button-wrap a.pp-button,
		.fl-node-6036c6ed75747 .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-6036c6ed75747 .pp-button-wrap {
	text-align: center;
}
.fl-node-6036c6ed75747 a.pp-button {
	padding-top: 15px;
	padding-right: 30px;
	padding-bottom: 15px;
	padding-left: 30px;
}
.fl-node-6036c6ed75747 .pp-button-wrap a.pp-button, .fl-node-6036c6ed75747 .pp-button-wrap a.pp-button:visited {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	font-size: 20px;
}
.fl-node-6036c6ed75747 .pp-button-wrap a.pp-button:hover, .fl-node-6036c6ed75747 .pp-button-wrap a.pp-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-node-6036c6ed75747 .pp-button .pp-button-icon {
	font-size: 16px;
}
@media(max-width: 768px) {
	.fl-node-6036c6ed75747 .pp-button-wrap {
		text-align: center;
	}
}
 .fl-node-6036c6ed75747 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-6036c6ed75747.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
}
.fl-row .fl-col .fl-node-6037c900494e8 h4.fl-heading a,
.fl-row .fl-col .fl-node-6037c900494e8 h4.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-6037c900494e8 h4.fl-heading .fl-heading-text *,
.fl-node-6037c900494e8 h4.fl-heading .fl-heading-text {
	color: #330000;
}
.fl-node-6037c900494e8.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-6037c900494e8 > .fl-module-content {
	margin-top:0px;
	margin-right:110px;
	margin-bottom:20px;
	margin-left:110px;
}
@media ( max-width: 992px ) {
 .fl-node-6037c900494e8.fl-module > .fl-module-content {
	margin-right:25px;
	margin-left:25px;
}
}
@media (max-width: 768px) { .fl-node-6037c900494e8 > .fl-module-content { margin-left:20px;margin-right:20px; } } .fl-node-vfzt8g43cdaj > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
	.fl-builder-content .fl-node-6036cca68fc8b .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-6036cca68fc8b .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-6036cca68fc8b .fl-rich-text, .fl-builder-content .fl-node-6036cca68fc8b .fl-rich-text *:not(b, strong) {
	text-align: center;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-6036cca68fc8b .fl-rich-text, .fl-builder-content .fl-node-6036cca68fc8b .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-6036cca68fc8b > .fl-module-content {
	margin-top:-10px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-6036cca68fc8b.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:20px;
}
}
.fl-builder-content .fl-node-6037c6dc60a92 .fl-rich-text, .fl-builder-content .fl-node-6037c6dc60a92 .fl-rich-text *:not(b, strong) {
	text-align: center;
}
 .fl-node-6037c6dc60a92 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-r84mta50h3zj.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-r84mta50h3zj > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
/**
 * This file should contain frontend styles that
 * will be applied to all module instances.
 */

.bb-gf-input.input-small {
    width: 46px !important;
}

.pp-gf-content {
	position: relative;
}

.pp-gf-content:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.pp-gf-content .pp-gf-inner {
	position: relative;
}

.pp-gf-content .form-title,
.pp-gf-content .form-description {
	position: relative;
}

.pp-gf-content .gform_wrapper form {
	position: relative;
}

.pp-gf-content legend {
    border: 0;
}

.pp-gf-content .gform_wrapper .gform_body {
	width: 100% !important;
}

.pp-gf-content .gform_wrapper ul.gform_fields {
    padding: 0;
}

.pp-gf-content .gform_wrapper ul.gform_fields li.gfield {
	padding-right: 0;
}

.pp-gf-content .gform_wrapper ul.gform_fields li.gfield.gf_left_half {
	padding-right: 16px;
}

.pp-gf-content .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
	max-width: 100% !important;
}

.pp-gf-content .gform_wrapper .gfield input[type="checkbox"]:focus, .pp-gf-content .gform_wrapper .gfield input[type="radio"]:focus {
    width: auto;
    text-align: left !important;
}

.gform_wrapper .top_label li.gfield.gf_left_half input.medium,
.gform_wrapper .top_label li.gfield.gf_right_half input.medium,
.gform_wrapper .top_label li.gfield.gf_left_half select.medium,
.gform_wrapper .top_label li.gfield.gf_right_half select.medium {
    width: 100% !important;
}

/* .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.gform_wrapper .gfield input:focus,
.gform_wrapper .gfield select,
.gform_wrapper .gfield textarea {
    height: auto;
} */

.gform_wrapper .ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]) {
    width: 100% !important;
}

.gform_wrapper.gf_browser_chrome .gfield_checkbox li input,
.gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox],
.gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio] {
    margin-top: 0 !important;
}

div.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label {
    margin-bottom: 0;
}

.pp-gf-content .gform_wrapper ul li.gfield {
    margin-top: 0;
}

.pp-gf-content .gform_wrapper ul.gfield_radio li input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']) {
    width: auto !important;
    display: inline-block;
}

.pp-gf-content .gform_wrapper .ginput_complex span.ginput_full {
    display: block;
}

.pp-gf-content .gform_wrapper .gfield .gfield_description {
    padding-top: 5px;
}

.pp-gf-content .gform_wrapper h2.gsection_title {
	margin-bottom: 0;
}

@media only screen and (max-width: 640px) {
	.pp-gf-content .gform_wrapper ul.gform_fields li.gfield.gf_left_half {
		padding-right: 0;
	}
}
@media (max-width: 768px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper {
	max-width: 100%;
}

.fl-node-6037c4950902f .pp-gf-content {
	background-color: #ffffff;
			background-size: cover;
			background-repeat: no-repeat;
	}


.fl-node-6037c4950902f .pp-gf-content .gform_wrapper ul li.gfield {
	list-style-type: none !important;
		margin-bottom: 20px;
	}

.fl-builder-content .fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_title,
.fl-builder-content .fl-node-6037c4950902f .pp-gf-content .form-title {
		display: none;
}

.fl-builder-content .fl-node-6037c4950902f .pp-gf-content .form-title {
	display: none;
}

.fl-builder-content .fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_title {
	}

.fl-builder-content .fl-node-6037c4950902f .pp-gf-content .gform_wrapper span.gform_description,
.fl-builder-content .fl-node-6037c4950902f .pp-gf-content .form-description {
		display: block;
}

.fl-builder-content .fl-node-6037c4950902f .pp-gf-content .form-description {
	display: none;
}

.fl-builder-content .fl-node-6037c4950902f .pp-gf-content .gform_wrapper span.gform_description {
	}

.fl-builder-content .fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield .gfield_label {
		color: #333333;
			display: block;
	}


.fl-builder-content .fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield_required {
	}

.fl-builder-content .fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield .ginput_complex.ginput_container label {
	}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .ginput_container label,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper table.gfield_list thead th,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper span.ginput_product_price,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper span.ginput_product_price_label,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper span.ginput_quantity_label,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield_html {
		color: #333333 !important;
		font-family: "UPSBerlingskeSans",Verdana, Arial, sans-serif;font-weight: 700;}


.fl-node-6037c4950902f .pp-gf-content .gform_wrapper span.ginput_product_price {
		color: #dd0000 !important;
	}


.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield .gfield_description {
		color: #000000;
	}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gsection {
		border-bottom-width: 1px;
			border-bottom-color: #cccccc;
				margin-bottom: 20px;
	}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper h2.gsection_title,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper h3.gsection_title {
		color: #333333;
	}


.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield select,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield textarea {
		color: #333333;
		background-color: #ffffff;
		outline: none;
}


.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield select {
	}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]),
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .ginput_complex select {
		margin-bottom: 6px;
	}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .ginput_complex span {
		margin-bottom: 8px;
	}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield input::-webkit-input-placeholder {
	color: #eeeeee;
}
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield input:-moz-placeholder {
	color: #eeeeee;
}
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield input::-moz-placeholder {
	color: #eeeeee;
}
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield input:-ms-input-placeholder {
	color: #eeeeee;
}
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield textarea::-webkit-input-placeholder {
	color: #eeeeee;
}
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield textarea:-moz-placeholder {
	color: #eeeeee;
}
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield textarea::-moz-placeholder {
	color: #eeeeee;
}
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield textarea:-ms-input-placeholder {
	color: #eeeeee;
}


.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']):focus,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield select:focus,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield textarea:focus {
	border-color: #719ece;
}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .top_label input.medium,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .top_label select.medium {
	width: 49% !important;
}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper textarea.medium {
	width: ;}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .ginput_complex .ginput_full input[type="text"],
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .ginput_complex  input[type="text"] {
	width: 97.5% !important;
}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .ginput_complex .ginput_right {
	margin-left: 0 !important;
}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .ginput_complex .ginput_right input,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .ginput_complex .ginput_right select {
	width: ;}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_footer {
		text-align: center;
						justify-content: center;
	}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform-button,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_footer .gform_button,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_page_footer .button,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
		width: 100%;
			color: #330000 ;
		background-color: #ffd100;
		padding-top: 20px;
	padding-bottom: 20px;
			padding-left: 10px;
	padding-right: 10px;
		white-space: normal;
}


.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_page_footer .button {
			margin-bottom: 5px !important;
	}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform-button:hover,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_footer .gform_button:hover,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_page_footer .button:hover {
		color: #330000;
		background: #ffd100;
}


.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield input[type=file] {
	background-color: transparent;
					border-style: none;
					}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .validation_error,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_validation_errors,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_validation_errors > h2,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper li.gfield.gfield_error,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
		color: #dd0000 !important;
		border-color: transparent !important;
			border: none;
		padding-top: 0;
		padding-bottom: 0;
	}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .validation_error,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_validation_errors,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_validation_errors > h2 {
		font-size: 20px !important;
			display: block !important;
	}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield.gfield_error {
	background-color: transparent;
	width: 100%;
}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield.gfield_error .gfield_label {
		margin-left: 0;
}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield_error .validation_message {
		display: block;
			color: #dd0000;
		}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
	margin-top: 8px;
}

.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield_error input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield_error .ginput_container select,
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield_error .ginput_container textarea {
	border-color: #dd0000;
		border-width: 2px !important;
	}


@media only screen and (max-width: 992px) {
	.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform-button,
	.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_footer .gform_button,
	.fl-node-6037c4950902f .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
	.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_page_footer .button,
	.fl-node-6037c4950902f .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
					}
}

@media only screen and (max-width: 768px) {
	.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform-button,
	.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_footer .gform_button,
	.fl-node-6037c4950902f .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
	.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_page_footer .button,
	.fl-node-6037c4950902f .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
					}
}
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform-button, .fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_footer .gform_button,
							.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_page_footer .button {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.fl-node-6037c4950902f .pp-gf-content {
	padding-top: 20px;
	padding-right: 50px;
	padding-bottom: 30px;
	padding-left: 50px;
}
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_title,
							.fl-node-6037c4950902f .form-title {
	font-family: UPSBerlingskeSans, Verdana, Arial, sans-serif;
	font-weight: 700;
}
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper span.gform_description,
							.fl-node-6037c4950902f .form-description {
	font-family: UPSBerlingskeSans, Verdana, Arial, sans-serif;
	font-weight: 400;
}
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper h2.gsection_title, .fl-node-6037c4950902f .pp-gf-content .gform_wrapper h3.gsection_title {
	font-family: UPSBerlingskeSans, Verdana, Arial, sans-serif;
	font-weight: 400;
}
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform-button,
							.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_footer .gform_button, 
							.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gform_page_footer .button {
	font-family: UPSBerlingskeSans, Verdana, Arial, sans-serif;
	font-weight: 700;
	font-size: 20px;
}
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield .gfield_label {
	font-family: UPSBerlingskeSans, Verdana, Arial, sans-serif;
	font-weight: 700;
}
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield .gfield_description {
	font-family: UPSBerlingskeSans, Verdana, Arial, sans-serif;
	font-weight: 400;
}
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
						.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield select,
						.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield textarea {
	font-family: UPSBerlingskeSans, Verdana, Arial, sans-serif;
	font-weight: 400;
	text-align: left;
}
.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
							.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield select,
							.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield textarea {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #eeeeee;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	padding: 10px;
}
@media(max-width: 992px) {
	.fl-node-6037c4950902f .pp-gf-content {
		padding-right: 25px;
		padding-left: 25px;
	}
}
@media(max-width: 768px) {
	.fl-node-6037c4950902f .pp-gf-content {
		padding-top: 10px;
		padding-right: 20px;
		padding-bottom: 10px;
		padding-left: 20px;
	}
	.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
							.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield select,
							.fl-node-6037c4950902f .pp-gf-content .gform_wrapper .gfield textarea {
		padding: 0px;
	}
}
 .fl-node-6037c4950902f > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-m40j2a6foqce > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
.fl-node-w94fpdlb0ez7.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-w94fpdlb0ez7 > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
 .fl-node-0nkulh561wqr > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
.newfooter p, .newfooter sup{
    color: #333333 !important;
    font-size: 12px !important;
    line-height: 18px !important;
}
.newfooter .fl-button-text{
    color: #333333 !important;
    font-size: 14px !important;
    line-height: 18px !important;
}

/* ------------------------------ FONTS ------------------------------ */
@font-face {
	font-family:ups-berlingske-sans;
	src:url(/wp-content/custom-fonts/ups-berlingske-sans/UPSBerlingskeSans-Rg.eot);
	src:url(/wp-content/custom-fonts/ups-berlingske-sans/UPSBerlingskeSans-Rg.eot?#iefix)format('embedded-opentype'),
			url(/wp-content/custom-fonts/ups-berlingske-sans/UPSBerlingskeSans-Rg.woff2)format('woff2'),
			url(/wp-content/custom-fonts/ups-berlingske-sans/UPSBerlingskeSans-Rg.woff)format('woff');
	font-weight:400;
	font-style:normal;
}
.ups-berlingske-sans {
    font-family:ups-berlingske-sans !important;
}
@font-face {
	font-family:ups-berlingske-sans-bd;
	src:url(/wp-content/custom-fonts/ups-berlingske-sans/UPSBerlingskeSans-Bd.eot);
	src:url(/wp-content/custom-fonts/ups-berlingske-sans/UPSBerlingskeSans-Bd.eot?#iefix)format('embedded-opentype'),
			url(/wp-content/custom-fonts/ups-berlingske-sans/UPSBerlingskeSans-Bd.woff2)format('woff2'),
			url(/wp-content/custom-fonts/ups-berlingske-sans/UPSBerlingskeSans-Bd.woff)format('woff');
	font-weight:700;
	font-style:normal;
}
.ups-berlingske-sans-bd {
    font-family:ups-berlingske-sans-bd !important;
}
/* ------------------------------ FONTS ENDS ------------------------------ */



/* ------------------------------ SIZES ------------------------------ */
h1 {
    font-family: 'ups-berlingske-sans-bd', sans-serif !important;
    font-size: 58px !important;
}
h2 {
    font-family: 'ups-berlingske-sans-bd', sans-serif !important;
    line-height: 1.2 !important;
    color: #009CBD !important;
    font-size: 40px !important;
}
h3 {
    font-family: 'ups-berlingske-sans-bd', sans-serif !important;
    line-height: 1.3 !important;
    font-size: 32px !important;
}
h4 {
    font-family: 'ups-berlingske-sans', sans-serif !important;
    line-height: 1.5 !important;
    font-size: 20px !important;
}
h5 {
    font-family: 'ups-berlingske-sans', sans-serif !important;
    line-height: 1 !important;
    font-size: 18px !important;
}
h6 {
    font-family: 'ups-berlingske-sans', sans-serif !important;
    color: #ffffff !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
}
p {
    font-family: 'ups-berlingske-sans', sans-serif !important;
    line-height: 1.5 !important;
    font-size: 16px !important;
    color: #333333 !important;
}
.bold_text {
    font-family: 'ups-berlingske-sans-bd', sans-serif !important;
}
/* ------------------------------ SIZES ENDS ------------------------------ */



/* ------------------------------ HERO ------------------------------ */
.hero_empty {
    padding-top: 250px !important;
    padding-bottom: 250px !important;
}
/* ------------------------------ HERO ENDS ------------------------------ */



/* ------------------------------ PAGE TITLE ------------------------------ */
.page_title {
    background-color: #ffffff !important;
    text-align: center !important;
    z-index: 900 !important;
    position: relative !important;
    top: -165px !important;
    margin-bottom: -165px !important;
    overflow: hidden !important;
}
.hero_text {
    max-width: 1200px !important;
    text-align: left !important;
    margin: auto !important;
}
.page_title h1  {
    color: #009CBD !important;
    line-height: 1.3 !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}
/* ------------------------------ PAGE TITLE ENDS ------------------------------ */



/* ------------------------------ FORM ------------------------------ */
.form_column h2 {
    color: #330000 !important;
    font-size: 32px !important;
}
.form_column h2:hover {
    color: #330000 !important;
    text-decoration: underline !important;
}
.form_column h3 {
    color: #330000 !important;
    font-size: 22px !important;
}
.form_column h4 {
    font-family: 'ups-berlingske-sans-bd', sans-serif !important;
    font-size: 18px !important;
}
.form_column p {
    color: #330000 !important;
    font-family: 'ups-berlingske-sans-bd', sans-serif !important;
}
.form_column .hide-please .gfield_label, .form_column .instruction {
    display: none !important;
}
.form_column .gform_wrapper .gform_footer .gform_button {
    font-family: 'ups-berlingske-sans-bd', sans-serif !important;
}
.validation_message {
    margin-bottom: 10px !important;
    margin-top: -5px !important;
}
button:active, input[type=button]:active, input[type=submit]:active, button:focus, input[type=button]:focus, input[type=submit]:focus {
    background: #428bca;
    color: #fff;
    border: 0 solid #2d6ca2;
    outline: none;
    position: relative;
    top: 0 !important;
}
body img.gform_ajax_spinner {
    display: none !important;
}
.gform_wrapper .gfield_checkbox li input, .gform_wrapper .gfield_checkbox li input[type=checkbox], .gform_wrapper .gfield_radio li input[type=radio] {
    display: -moz-inline-stack !important;
    display: inline-block !important;
    vertical-align: top !important;
    margin-right: 10px !important;
    border-radius: 0 !important;
}
.form_column .pp-gf-content .gform_confirmation_wrapper {
    padding-top: 50px !important;
    padding-right: 0 !important;
    padding-bottom: 30px !important;
    padding-left: 0 !important;
    font-size: 24px !important;
    text-align: center !important;
    color: #333333 !important;
}
/* ------------------------------ FORM ------------------------------ */



/* ------------------------------ AFTER TITLE ------------------------------ */
.after_title {
    max-width: 1200px !important;
    padding-bottom: 50px !important;
    margin-top: -165px !important;
}
.after_title h4 {
    padding-bottom: 0 !important;
}
.after_title a.fl-button {
    background-color: rgba(0, 0, 0, 0) !important;
    border: none !important;
    margin-top: 40px !important;
    margin-left: 30px !important;
}
.after_title a.fl-button * {
    background-color: #FFD100 !important;
    color: #330000 !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 20px 30px !important;
    text-align: left !important;
    text-decoration: none !important;
    font-size: 20px !important;
    font-family: 'ups-berlingske-sans-bd', sans-serif !important;
}
.after_title a.fl-button:hover * {
    text-decoration: underline !important;
}
.hero_btn {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}
.under_picture p {
    text-align: left !important;
    margin-top: -5px !important;
}
.main_text {
    padding-top: 0 !important;
    padding-right: 40px !important;
    padding-left: 0 !important;
}
.main_text h4 {
    line-height: 1.7 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}
.main_dates p {
    font-family: 'ups-berlingske-sans-bd', sans-serif !important;
}
.main_dates h4 {
    padding-bottom: 0 !important;
}
.main_dates {
    padding-top: 20px !important;
    padding-left: 30px !important;
}
.blue_color {
    color: #009CBD !important;
    font-family: 'ups-berlingske-sans-bd', sans-serif !important;
    font-size: 24px !important;
}
.david_pic {
    max-width: 350px !important;
}
.david_name {
    padding-top: 10px !important;
    padding-left: 20px !important;
}
.card_style {
    box-shadow: 0 0px 20px 0 rgba(0,0,0,0.2);
    z-index: 999 !important;
    position: relative !important;
    padding: 0 !important;
}
.card_style h5 {
    line-height: 1.6 !important;
}
/*.after_title ul {*/
/*    font-family: 'ups-berlingske-sans', sans-serif !important;*/
/*    line-height: 1.5 !important;*/
/*    font-size: 20px !important;*/
/*    margin-left: -15px !important;*/
/*    list-style: none !important;*/
/*}*/
/*.after_title li {*/
/*    margin-bottom: 10px !important;*/
/*    color: #333333 !important;*/
/*}*/
/*.after_title ul li::before {*/
/*  content: "\2022" !important;*/
/*  color: #009CBD;*/
/*  font-weight: bold;*/
/*  display: inline-block; */
/*  width: 1em; */
/*  margin-left: -1em; */
/*}*/
/*.after_title .clickhere_link a {*/
/*    color: #009cbd !important;*/
/*    text-decoration: underline !important;*/
/*}*/
/*.after_title a:hover {*/
/*    color: #ffb500 !important;*/
/*}*/
/* ------------------------------ AFTER TITLE ENDS ------------------------------ */



/* ------------------------------ MAIN CONTENT ------------------------------ */
.main_content {
    padding-bottom: 50px !important;
}
.main_content h4 {
    color: #333333 !important;
    line-height: 1.8 !important;
}
.david_video {
    max-width: 600px !important;
    padding-left: 50px !important;
}
/* ------------------------------ MAIN CONTENT ENDS ------------------------------ */

.main_list h4 {
    font-family: 'ups-berlingske-sans-bd', sans-serif !important;
}
.light_blue .zindex {
    z-index: 2 !important;
    position: relative !important;
}
.light_blue h4 {
    font-family: 'ups-berlingske-sans-bd', sans-serif !important;
}
.light_blue h2 {
    font-size: 28px !important;
    line-height: 1.5 !important;
}

/* ------------------------------ QUOTES ------------------------------ */
.quotes {
    background-color: #e5f5f8 !important;
    color: #333333 !important;
}
.quotes p {
    color: #333333 !important;
    font-size: 16px !important;
    margin-bottom: 20px !important;
}
.quote_name {
    font-family: 'ups-berlingske-sans-bd', sans-serif !important;
    font-size: 22px !important;
    padding-bottom: 0 !important;
}
.quote_title {
    font-size: 14px !important;
    padding-top: 0 !important;
}
.quote_text {
    max-width: 800px !important;
    margin: auto !important;
    text-align: center !important;
}
.center_quote {
    max-width: 800px !important;
    margin: auto !important;
    text-align: center !important;
}
.image-cropper {
    max-width: 80px;
    height: auto;
    position: relative;
    overflow: hidden;
}

.image-cropper img{
    display: block;
    margin: 0 auto;
    height: auto;
    width: 80px; 
    margin: -10px 20px 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;  
}
/* ------------------------------ QUOTES ENDS ------------------------------ */



/* ------------------------------ CTA ------------------------------ */
.cta {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    background-color: #009CBD !important;
}
.cta h3 {
    font-size: 24px !important;
}
.cta h2, .cta h3, .cta h4, .cta p {
    color: #ffffff !important;
}
.cta a:hover {
    text-decoration: underline !important;
}
.cta .pp-button-text {
    font-family: 'ups-berlingske-sans-bd', sans-serif !important;
}
.cta .pp-button-text:hover {
    text-decoration: underline !important;
}
/* ------------------------------ CTA ENDS ------------------------------ */



/* ------------------------------ ABOUT ------------------------------ */
.ups_logo {
    max-width: 350px !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}
.walmart_logo {
    max-width: 250px !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}
.about_companies {
    background-color: #e5f5f8 !important;
    color: #333333 !important;
    font-size: 14px !important;
    padding-top: 50px !important;
    padding-bottom: 25px !important;
}
.about_companies p {
    font-size: 14px !important;
}
.about_left {
    padding-right: 30px !important;
}
.about_right {
    padding-left: 30px !important;
}
.other_font {
    font-family: ups-berlingske-sans-bd !important;
}
/* ------------------------------ ABOUT ENDS ------------------------------ */



/* ------------------------------ FOOTER ------------------------------ */
.footer {
    background-color: #e5f5f8 !important;
}
.footer h6 {
    color: #333333 !important;
}
/* ------------------------------ FOOTER ENDS ------------------------------ */



/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
/* -------------------------- MOBILE -------------------------- */
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */



@media only screen and (max-width: 768px) {
    h1 {
        font-size: 38px !important;
    }
    h2 {
        line-height: 1 !important;
        font-size: 32px !important;
    }
    h3 {
        line-height: 1.3 !important;
        font-size: 22px !important;
    }
    h4 {
        line-height: 1.3 !important;
        font-size: 18px !important;
    }
    h5 {
        line-height: 1 !important;
        font-size: 18px !important;
    }
    h6 {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }
    p {
        line-height: 1.5 !important;
        font-size: 16px !important;
    }
/* ------------------------------------------------------------ */
    .hero_empty {
        margin-top: -60px !important;
        padding-top: 160px !important;
        padding-bottom: 160px !important;
    }
/* ------------------------------------------------------------ */
    .page_title {
        top: -100px !important;
        margin-bottom: 0 !important;
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
    .hero_text {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .page_title h1  {
        line-height: 1.2 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
/* ------------------------------------------------------------ */
    .after_title {
        padding-bottom: 50px !important;
        margin-top: -100px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .main_text {
        padding-top: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        padding-bottom: 20px !important;
    }
    .main_text h4 {
        line-height: 1.4 !important;
    }
    .after_title ul {
        line-height: 1.4 !important;
        font-size: 18px !important;
    }
    .hero_btn {
        margin-bottom: 50px !important;
    }
/* ------------------------------------------------------------ */
    .main_content {
        padding-bottom: 20px !important;
        padding-right:20px !important;
        padding-left: 20px !important;
    }
    .main_content h4 {
        line-height: 1.5 !important;
    }
    .david_video {
        max-width: 600px !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
/* ------------------------------------------------------------ */
    .quotes .fl-row-content-wrap {
        margin: 0 !important;
        padding: 0 !important;
    }
    .quote_title {
        padding-bottom:20px !important;
    }
    .center_quote {
        padding-top: 40px !important;
    }
    .quote_picture {
        padding-bottom: 40px !important;
    }
/* ------------------------------------------------------------ */
    .cta {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .fl-cta-button {
        margin-top: 40px !important;
        margin-bottom: 20px !important;
    }
/* ------------------------------------------------------------ */
    .walmart_logo {
        margin-top: 25px !important;
    }
    .about_companies {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    .about_left {
        padding-right: 0 !important;
    }
    .about_right {
        padding-left: 0 !important;
    }
}

@media only screen and (max-width: 320px) {
    h1 {
        font-size: 30px !important;
    }
    .page_title h1  {
        line-height: 1 !important;
    }
}
    
    
    
    
    
/* End Layout CSS */


                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        
        
        			.fl-node-5d49c24a2ea43 .fl-row-content {
				min-width: 0px;
			}
		
        
        			.fl-node-5ff4ab168e8d9 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-5d4043944fb93 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-5d498432064e7 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-k5i6n28mljdb .fl-row-content {
				min-width: 0px;
			}
		