/**
 * Base CSS used by the builder's layout, including rows
 * and columns. Any module specific global CSS should be
 * included in fl-builder-layout-modules.css.
 */

/* 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:not([data-accepts]):before,
.fl-module:not([data-accepts]):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:not([data-accepts]):after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* 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%;
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
  	transform: translate(-50%, -50%);
}
.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 {
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: 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 {
	-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;
	justify-content: flex-end;
	align-items: flex-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 {
	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-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;
}

/* 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;
	}
}
/**
 * Base CSS used by all (or many) modules. This file should
 * not contain any generic layout CSS that doesn't apply to
 * modules. That belongs in fl-builder-layout.css.
 */

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

/* 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-module img {
	max-width: 100%;
}
.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;
}
body.fl-no-js .fl-animation {
	opacity: 1;
}
.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;
}

/* Default button colors for non Beaver Builder themes.
------------------------------------------------------ */

.fl-builder-content a.fl-button,
.fl-builder-content a.fl-button:visited {
	background: #fafafa;
	border: 1px solid #ccc;
	color: #333;
}
.fl-builder-content a.fl-button *,
.fl-builder-content a.fl-button:visited * {
	color: #333;
}@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-col-content {
	display: flex;
	flex-direction: column;
}
.fl-row-fixed-width {
	max-width: 100%;
}
.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-module-content, .fl-module: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-7aij9g45wtme {
	color: rgba(255,255,255,0.9);
}
.fl-builder-content .fl-node-7aij9g45wtme *: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-7aij9g45wtme a {
	color: rgba(255,255,255,0.9);
}

.fl-builder-content .fl-node-7aij9g45wtme a:hover {
	color: rgba(255,255,255,0.9);
}

.fl-builder-content .fl-node-7aij9g45wtme h1,
.fl-builder-content .fl-node-7aij9g45wtme h2,
.fl-builder-content .fl-node-7aij9g45wtme h3,
.fl-builder-content .fl-node-7aij9g45wtme h4,
.fl-builder-content .fl-node-7aij9g45wtme h5,
.fl-builder-content .fl-node-7aij9g45wtme h6,
.fl-builder-content .fl-node-7aij9g45wtme h1 a,
.fl-builder-content .fl-node-7aij9g45wtme h2 a,
.fl-builder-content .fl-node-7aij9g45wtme h3 a,
.fl-builder-content .fl-node-7aij9g45wtme h4 a,
.fl-builder-content .fl-node-7aij9g45wtme h5 a,
.fl-builder-content .fl-node-7aij9g45wtme h6 a {
	color: rgba(255,255,255,0.9);
}


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

	.fl-builder-edit .fl-node-7aij9g45wtme.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-7aij9g45wtme.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-7aij9g45wtme.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-7aij9g45wtme.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-7aij9g45wtme > .fl-row-content-wrap {
	background-color: #F0F4F8;
	background-image: url(https://yamaha-motor-finance.com/wp-content/uploads/2025/04/Finance-Page-Hero-Banner-1.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-7aij9g45wtme > .fl-row-content-wrap:after {
	background-image: linear-gradient(285deg, rgba(0,0,0,0.45) 23%, rgba(0,0,0,0.45) 94%);
}
.fl-node-7aij9g45wtme.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 50vh;
}
.fl-node-7aij9g45wtme .fl-row-content {
	max-width: 100%;
}
@media(max-width: 992px) {
	.fl-node-7aij9g45wtme.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 50vh;
	}
}
@media(max-width: 768px) {
	.fl-node-7aij9g45wtme.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 40vh;
	}
}
 .fl-node-7aij9g45wtme > .fl-row-content-wrap {
	padding-top:10%;
	padding-right:20%;
	padding-bottom:10%;
	padding-left:20%;
}
@media ( max-width: 1200px ) {
 .fl-node-7aij9g45wtme.fl-row > .fl-row-content-wrap {
	padding-top:10%;
	padding-right:10%;
	padding-bottom:10%;
	padding-left:10%;
}
}
@media ( max-width: 992px ) {
 .fl-node-7aij9g45wtme.fl-row > .fl-row-content-wrap {
	padding-top:15%;
	padding-right:10%;
	padding-bottom:15%;
	padding-left:10%;
}
}
@media ( max-width: 768px ) {
 .fl-node-7aij9g45wtme.fl-row > .fl-row-content-wrap {
	padding-top:32%;
	padding-right:5%;
	padding-bottom:10%;
	padding-left:5%;
}
}





.fl-node-gbd3il9fyqac .fl-row-content {
	max-width: 85%;
}
 .fl-node-gbd3il9fyqac > .fl-row-content-wrap {
	padding-top:3%;
	padding-bottom:6%;
}
@media ( max-width: 768px ) {
 .fl-node-gbd3il9fyqac.fl-row > .fl-row-content-wrap {
	padding-bottom:6%;
}
}





.fl-node-608zkbyhsd24 .fl-row-content {
	max-width: 85%;
}
 .fl-node-608zkbyhsd24 > .fl-row-content-wrap {
	padding-top:0%;
	padding-bottom:0%;
	padding-left:0%;
}





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

	.fl-builder-edit .fl-node-8r7elfsgoxcb.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-8r7elfsgoxcb.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-8r7elfsgoxcb.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-8r7elfsgoxcb.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-8r7elfsgoxcb > .fl-row-content-wrap {
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
.fl-node-8r7elfsgoxcb .fl-row-content {
	max-width: 90%;
}
@media ( max-width: 1200px ) {
 .fl-node-8r7elfsgoxcb.fl-row > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}
}




.fl-node-fmj6nbhas7dp {
	width: 50%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-fmj6nbhas7dp {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
@media ( max-width: 992px ) {
 .fl-node-fmj6nbhas7dp.fl-col > .fl-col-content {
	padding-top:0%;
}
}




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




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




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




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




.fl-node-f2prgy5i701n {
	width: 49%;
}




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




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




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




.fl-node-n2fwab305rep {
	width: 100%;
}
.fl-node-n2fwab305rep > .fl-col-content {
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}




.fl-node-tw0sfbrju5il {
	width: 33%;
}
.fl-node-tw0sfbrju5il > .fl-col-content {
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}




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




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




.fl-node-q53g8wey9nhm {
	width: 50%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-q53g8wey9nhm {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
@media ( max-width: 992px ) {
 .fl-node-q53g8wey9nhm.fl-col > .fl-col-content {
	padding-top:0%;
}
}




.fl-node-to2iw6qjf8xy {
	width: 33%;
}




.fl-node-kxv57u2eybp9 {
	width: 34%;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-node-y9br12em374w.fl-module-heading .fl-heading {
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-y9br12em374w.fl-module-heading .fl-heading {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-y9br12em374w.fl-module-heading .fl-heading {
		text-align: left;
	}
}
 .fl-node-y9br12em374w > .fl-module-content {
	margin-bottom:3%;
}
@media ( max-width: 768px ) {
 .fl-node-y9br12em374w.fl-module > .fl-module-content {
	margin-left:0px;
}
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
.fl-builder-content .fl-node-7gk9s0obhxzn .fl-rich-text, .fl-builder-content .fl-node-7gk9s0obhxzn .fl-rich-text *:not(b, strong) {
	font-style: italic;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-7gk9s0obhxzn .fl-rich-text, .fl-builder-content .fl-node-7gk9s0obhxzn .fl-rich-text *:not(b, strong) {
		text-align: left;
	}
}
 .fl-node-7gk9s0obhxzn > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-7gk9s0obhxzn.fl-module > .fl-module-content {
	margin-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-7gk9s0obhxzn.fl-module > .fl-module-content {
	margin-top:20px;
	margin-right: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-r6casfq4ko1m, .fl-node-r6casfq4ko1m .fl-photo {
	text-align: left;
}
.fl-node-r6casfq4ko1m .fl-photo-img {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
 .fl-node-r6casfq4ko1m > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:30px;
}
@media ( max-width: 768px ) {
 .fl-node-r6casfq4ko1m.fl-module > .fl-module-content {
	margin-left:0px;
}
}
 .fl-node-glsvyjz9tiq1 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-glsvyjz9tiq1.fl-module > .fl-module-content {
	margin-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-glsvyjz9tiq1.fl-module > .fl-module-content {
	margin-left:0px;
}
}
.fl-builder-content .fl-node-y46za3wf9vjk .fl-rich-text, .fl-builder-content .fl-node-y46za3wf9vjk .fl-rich-text *:not(b, strong) {
	font-style: italic;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-y46za3wf9vjk .fl-rich-text, .fl-builder-content .fl-node-y46za3wf9vjk .fl-rich-text *:not(b, strong) {
		text-align: left;
	}
}
 .fl-node-y46za3wf9vjk > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:50px;
}
@media ( max-width: 768px ) {
 .fl-node-y46za3wf9vjk.fl-module > .fl-module-content {
	margin-top:20px;
	margin-left:0px;
}
}
 .fl-node-63e8s9oycxa2 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:50px;
}
@media ( max-width: 768px ) {
 .fl-node-63e8s9oycxa2.fl-module > .fl-module-content {
	margin-left:0px;
}
}
.fl-node-msbyuwtvxn12, .fl-node-msbyuwtvxn12 .fl-photo {
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-msbyuwtvxn12 .fl-photo-content, .fl-node-msbyuwtvxn12 .fl-photo-img {
		width: 100%;
	}
}
 .fl-node-msbyuwtvxn12 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-8hrseyvixk40.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-node-g38r450yq97b, .fl-node-g38r450yq97b .fl-photo {
	text-align: left;
}
.fl-node-g38r450yq97b .fl-photo-content, .fl-node-g38r450yq97b .fl-photo-img {
	width: 100%;
}
.fl-node-g38r450yq97b .fl-photo-img {
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
 .fl-node-g38r450yq97b > .fl-module-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
@media ( max-width: 768px ) {
 .fl-node-g38r450yq97b.fl-module > .fl-module-content {
	margin-right:10px;
	margin-left:10px;
}
}
.fl-node-pwlfj53bey1h, .fl-node-pwlfj53bey1h .fl-photo {
	text-align: left;
}
.fl-node-pwlfj53bey1h .fl-photo-content, .fl-node-pwlfj53bey1h .fl-photo-img {
	width: 100%;
}
 .fl-node-pwlfj53bey1h > .fl-module-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
@media ( max-width: 768px ) {
 .fl-node-pwlfj53bey1h.fl-module > .fl-module-content {
	margin-right:10px;
	margin-left:10px;
}
}
.fl-node-5aj1dw7ep4ig, .fl-node-5aj1dw7ep4ig .fl-photo {
	text-align: left;
}
.fl-node-5aj1dw7ep4ig .fl-photo-content, .fl-node-5aj1dw7ep4ig .fl-photo-img {
	width: 98.5%;
}
 .fl-node-5aj1dw7ep4ig > .fl-module-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
@media ( max-width: 768px ) {
 .fl-node-5aj1dw7ep4ig.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:10px;
	margin-bottom:15px;
	margin-left:10px;
}
}
.fl-node-a48uc5v7lf9w.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 700;
	font-size: 64px;
	text-align: center;
}
@media(max-width: 768px) {
	.fl-node-a48uc5v7lf9w.fl-module-heading .fl-heading {
		font-size: 32px;
	}
}
@media ( max-width: 768px ) {
 .fl-node-a48uc5v7lf9w.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-node-af14jvznkuth.fl-module-heading .fl-heading {
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-af14jvznkuth.fl-module-heading .fl-heading {
		text-align: center;
	}
}
@media(max-width: 992px) {
	.fl-node-af14jvznkuth.fl-module-heading .fl-heading {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-af14jvznkuth.fl-module-heading .fl-heading {
		line-height: 45px;
		text-align: left;
	}
}
 .fl-node-af14jvznkuth > .fl-module-content {
	margin-bottom:3%;
}
@media ( max-width: 768px ) {
 .fl-node-af14jvznkuth.fl-module > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:20px;
	margin-left:0px;
}
}
.fl-node-a49swklp87bt.fl-module-heading .fl-heading {
	text-align: center;
}
@media(max-width: 768px) {
	.fl-node-a49swklp87bt.fl-module-heading .fl-heading {
		line-height: 50px;
		text-align: left;
	}
}
 .fl-node-a49swklp87bt > .fl-module-content {
	margin-bottom:3%;
}
@media ( max-width: 768px ) {
 .fl-node-a49swklp87bt.fl-module > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:3px;
	margin-left:10px;
}
}
.fl-row .fl-col .fl-node-19mivqd6xwt2 h6.fl-heading a,
.fl-row .fl-col .fl-node-19mivqd6xwt2 h6.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-19mivqd6xwt2 h6.fl-heading .fl-heading-text *,
.fl-node-19mivqd6xwt2 h6.fl-heading .fl-heading-text {
	color: #d2232A;
}
.fl-node-19mivqd6xwt2.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 14px;
}
 .fl-node-19mivqd6xwt2 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-19mivqd6xwt2.fl-module > .fl-module-content {
	margin-right:15px;
	margin-left:15px;
}
}
.fl-row .fl-col .fl-node-s4gwnp5t93f1 h6.fl-heading a,
.fl-row .fl-col .fl-node-s4gwnp5t93f1 h6.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-s4gwnp5t93f1 h6.fl-heading .fl-heading-text *,
.fl-node-s4gwnp5t93f1 h6.fl-heading .fl-heading-text {
	color: #d2232A;
}
.fl-node-s4gwnp5t93f1.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 14px;
}
 .fl-node-s4gwnp5t93f1 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-s4gwnp5t93f1.fl-module > .fl-module-content {
	margin-right:15px;
	margin-left:15px;
}
}
.fl-row .fl-col .fl-node-him1cnp9dt6g h6.fl-heading a,
.fl-row .fl-col .fl-node-him1cnp9dt6g h6.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-him1cnp9dt6g h6.fl-heading .fl-heading-text *,
.fl-node-him1cnp9dt6g h6.fl-heading .fl-heading-text {
	color: #d2232A;
}
.fl-node-him1cnp9dt6g.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 14px;
}
 .fl-node-him1cnp9dt6g > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-him1cnp9dt6g.fl-module > .fl-module-content {
	margin-right:15px;
	margin-left:15px;
}
}


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












.fl-node-w5d4ohpz2r8n.fl-button-wrap, .fl-node-w5d4ohpz2r8n .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button {
	padding-top: 15px;
	padding-right: 30px;
	padding-bottom: 15px;
	padding-left: 30px;
}
.fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button, .fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button:visited, .fl-page .fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button, .fl-page .fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button:visited {
	border: 1px solid #c6171e;
	background-color: #d2232a;
}
.fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button:hover, .fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button:focus, .fl-page .fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button:hover, .fl-page .fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button:focus {
	border: 1px solid #8f0c0c;
}
.fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button, .fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button:visited, .fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button:hover, .fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button:focus, .fl-page .fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button, .fl-page .fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button:visited, .fl-page .fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button:hover, .fl-page .fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button:focus {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	box-shadow: 5px 5px 20px 0px rgba(0,0,0,0.2);
}
.fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button:hover, .fl-page .fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button:hover, .fl-page .fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-w5d4ohpz2r8n a.fl-button:hover {
	background-color: #9b1818;
}
 .fl-node-w5d4ohpz2r8n > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:50px;
}
@media ( max-width: 768px ) {
 .fl-node-w5d4ohpz2r8n.fl-module > .fl-module-content {
	margin-left:0px;
}
}


.fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button,
.fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:visited,
.fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button *,
.fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:visited *,
.fl-page .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button,
.fl-page .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:visited,
.fl-page .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button *,
.fl-page .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:visited * {
	color: #ffffff;
}












.fl-node-2k64n17d3lg9.fl-button-wrap, .fl-node-2k64n17d3lg9 .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button {
	padding-top: 15px;
	padding-right: 30px;
	padding-bottom: 15px;
	padding-left: 30px;
}
.fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button, .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button, .fl-page .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:visited {
	border: 1px solid #c6171e;
	background-color: #d2232a;
}
.fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:hover, .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:focus, .fl-page .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:focus {
	border: 1px solid #8f0c0c;
}
.fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button, .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:visited, .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:hover, .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:focus, .fl-page .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button, .fl-page .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:focus {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	box-shadow: 5px 5px 20px 0px rgba(0,0,0,0.2);
}
.fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-2k64n17d3lg9 a.fl-button:hover {
	background-color: #9b1818;
}
 .fl-node-2k64n17d3lg9 > .fl-module-content {
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-2k64n17d3lg9.fl-module > .fl-module-content {
	margin-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-2k64n17d3lg9.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
}
.fl-node-8lskdwf35ejr.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-8lskdwf35ejr > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-8lskdwf35ejr.fl-module > .fl-module-content {
	margin-right:15px;
	margin-left:15px;
}
}
.fl-node-1qf0tpr63g2w.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-1qf0tpr63g2w > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-1qf0tpr63g2w.fl-module > .fl-module-content {
	margin-right:15px;
	margin-left:15px;
}
}
.fl-node-jgs47vkadwzy.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-jgs47vkadwzy > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-jgs47vkadwzy.fl-module > .fl-module-content {
	margin-right:15px;
	margin-left:15px;
}
}
.fl-builder-content .fl-node-zrci4eqwd61u .fl-rich-text, .fl-builder-content .fl-node-zrci4eqwd61u .fl-rich-text *:not(b, strong) {
	font-family: Poppins, sans-serif;
	font-weight: 300;
	font-size: 16px;
}
 .fl-node-zrci4eqwd61u > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:25px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-zrci4eqwd61u.fl-module > .fl-module-content {
	margin-right:15px;
	margin-left:15px;
}
}
@media (max-width: 768px) { .fl-node-zrci4eqwd61u > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-aicwdxr078no .fl-rich-text, .fl-builder-content .fl-node-aicwdxr078no .fl-rich-text *:not(b, strong) {
	font-family: Poppins, sans-serif;
	font-weight: 300;
	font-size: 16px;
}
 .fl-node-aicwdxr078no > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:25px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-aicwdxr078no.fl-module > .fl-module-content {
	margin-right:15px;
	margin-left:15px;
}
}
@media (max-width: 768px) { .fl-node-aicwdxr078no > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-aj0xowznbmc4 .fl-rich-text, .fl-builder-content .fl-node-aj0xowznbmc4 .fl-rich-text *:not(b, strong) {
	font-family: Poppins, sans-serif;
	font-weight: 300;
	font-size: 16px;
}
 .fl-node-aj0xowznbmc4 > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:25px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-aj0xowznbmc4.fl-module > .fl-module-content {
	margin-right:15px;
	margin-left:15px;
}
}
@media (max-width: 768px) { .fl-node-aj0xowznbmc4 > .fl-module-content { margin-bottom:20px; } }
/* Start Global CSS */
.menu-item:hover > .menu-link{
    color: var(--accent-color) !important;
}
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
:root {
    --default-font: "Poppins", sans-serif;
    scroll-behavior: smooth;
}
  
:root { 
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #000000; /* Default color used for the majority of the text content across the entire website */
    --heading-color: -webkit-linear-gradient(0deg, var(--accent-color) 1.4%, var(--default-color) 89.14%); /* Color for headings, subheadings and title throughout the website */
    --accent-color: #D2232A; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

:root {
    --nav-color: var(--default-color);  /* The default color of the main navmenu links */
    --nav-hover-color: var(--accent-color); /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: var(--default-color); /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: var(--accent-color); /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
    --btn-default: var(--accent-color);
}

html, body{
    max-width: 100%;
    overflow-x: hidden;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
  }
  
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

.btn_default{
    background: var(--btn-default);
    color: var(--contrast-color);
    border-radius: 12px;
    min-width: 120px;
    padding: 1rem 0.75rem;
    border: none;
    cursor: pointer;
    display: inline-block;
    &:hover{
        color: var(--contrast-color);
    }
}

h2{
    background: var(--heading-color);
    font-family: var(--default-font);
    font-weight: 700;
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    text-transform: capitalize;
}

h2.col_white{
    -webkit-text-fill-color: var(--contrast-color);
}

h1,h2,h3,h4,h5,h6{
    font-weight: 700;
}
h5{
font-size: 24px !important;
    font-weight: 700 !important;
    font-style: normal !important;
    text-transform: capitalize!important;}
    h6{
            font-size: 16px !important;
    font-style: normal !important;
    margin-bottom: 0!important;
    }
    p{
        font-size: 16px!important;
    font-style: normal!important;
    font-weight: 400!important;
    }

ul{
    padding: 0;
}

li{
    list-style-type: none;
}

.gap-8{
    gap: 8px;
}

.gy-12{
    row-gap: 12px;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}
  
.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 13vw;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--default-font);
}

.header .logo span {
    color: var(--accent-color);
    font-size: 36px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--default-color);
    border: 2px solid var(--default-color);
    font-size: 18px;
    padding: 8px 26px;
    margin: 0;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    border: 2px solid var(--accent-color);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}
.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }
  
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
  
    .navmenu li {
        position: relative;
    }
  
    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }
  
    .navmenu>ul>li:last-child {
        padding-right: 0;
    }
  
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 18px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }
  
    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }
  
    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: color-mix(in srgb, var(--nav-color) 80%, black 50%);
    }
  
    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu .dropdown ul li {
        min-width: 200px;
    }
  
    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }
  
    .navmenu .dropdown ul a i {
        font-size: 12px;
    }
  
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
  
    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }
  
    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}
  
/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }
  
    .navmenu {
        padding: 0;
        z-index: 9997;
    }
  
    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }
  
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }
  
    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }
  
    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }
  
    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }
  
    .mobile-nav-active {
        overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}


/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/

#manage_account{
    background-image: url('../image/myaccount_bg.webp');
    background-size: cover; /* Ensures the image covers the entire area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    padding: 7rem 5rem 7rem 10vw;
}

#latest_offers{
    padding: 5rem 10rem;
    @media (max-width: 991px) {
        padding: 5rem 10%;
    }
    .offer_card{
        .offer_img{
            width: 250px;
            height: 220px;
            margin-right: 24px;
            border-radius: 10px;
        }
        .sub-head{
            font-size: 12px;
            color: var(--accent-color);
            font-weight: 700;
        }
        h4{
            padding: 1rem 0;
            font-weight: 500;
        }
    }
}


#prequalified_card{
    padding: 5vw 0;
    #prequalified_tile{
        backdrop-filter: blur(34px);
        box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.12);
        border-radius: 20px;
        img{
            top: 0;
            right: 10px;
        }
    }
}

#yamaha_adventure{
    background-image: url(../image/home/yamaha_adventur.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--contrast-color);
    .overlay{
        background: rgba(0, 0, 0, 0.5);
        padding: 10vw;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer.footer {
    background-color: #191919 !important;
    color: #ccc;
    overflow: hidden;
    padding: 3.4375rem 0;
}

@media (min-width:768px) {
    .footer {
        padding: 80px 0
    }
}

@media (min-width:1200px) {
    .footer {
        padding: 82px 0
    }
}

.footer__inner-wrapper {
    margin: 0 auto;
    padding-left: 18px;
    padding-right: 18px
}

@media (min-width:768px) {
    .footer__inner-wrapper {
        padding-left: 48px;
        padding-right: 48px
    }
}

@media (min-width:1200px) {
    .footer__inner-wrapper {
        max-width: 1180px;
        padding-left: 0;
        padding-right: 0
    }
}

.footer h4 {
    color: #fff;
    margin: 0 0 20px;
    text-align: center
}

@media (min-width:768px) {
    .footer h4 {
        text-align: left
    }
}

.footer__first-row {
    margin-bottom: 40px
}

@media (min-width:768px) {
    .footer__first-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between
    }
}

@media (min-width:992px) {
    .footer__first-row {
        margin-bottom: 42px
    }
}

@media (min-width:1200px) {
    .footer__second-row {
        align-items: center;
        display: flex;
        justify-content: space-between
    }
}

.footer__bottom-row {
    display: flex;
    flex-direction: column
}

@media (min-width:1200px) {
    .footer__bottom-row {
        flex-direction: row;
        justify-content: space-between
    }
}

.footer__copy {
    font-family: Maven Pro, sans-serif;
    font-size: .8125rem;
    letter-spacing: .01625rem;
    line-height: 1.46;
    margin-bottom: 16px;
    text-align: center
}

@media (min-width:768px) {
    .footer__copy {
        line-height: 1;
        margin-bottom: 20px;
        text-align: left
    }
}

@media (min-width:1200px) {
    .footer__copy {
        margin: 0
    }
}

.footer__hr {
    border-bottom: 1px solid #bcbcbc;
    margin-bottom: 24px;
    opacity: .5;
    padding-bottom: 24px
}

@media (min-width:768px) {
    .footer__hr {
        margin-bottom: 39px;
        padding-bottom: 41px
    }
}

@media (min-width:1200px) {
    .footer__hr {
        margin-bottom: 31px;
        padding-bottom: 21px
    }
}

@media (min-width:768px) {
    .footer-navigation {
        display: flex;
        justify-content: flex-start
    }
}

@media (min-width:992px) {
    .footer-navigation {
        margin-right: 120px
    }
}

.footer-navigation__column {
    margin-bottom: 30px
}

@media (min-width:768px) {
    .footer-navigation__column {
        margin: 0 48px 33px 0;
        width: 180px
    }

    .footer-navigation__column:last-child {
        margin: 0 0 33px
    }
}

@media (min-width:1200px) {
    .footer-navigation__column {
        margin: 0 20px 33px 0
    }

    .footer-navigation__column:last-child {
        margin: 0 0 33px
    }
}

.footer-navigation__column-header-wrapper {
    border-bottom: 1px solid #bcbcbc;
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding-bottom: 5px
}

@media (min-width:768px) {
    .footer-navigation__column-header-wrapper {
        border-bottom: none;
        display: block;
        margin: 0 0 15px
    }
}

@media (min-width:1200px) {
    .footer-navigation__column-header-wrapper {
        margin: 0 0 13px
    }
}

.footer-navigation__column-header-expand-button {
    background-color: transparent;
    border: 0;
    color: #fff;
    position: relative;
    text-align: center;
    width: 65px
}

.footer-navigation__column-header-expand-button i {
    background-image: url(/static/images/footer-menu-arrow-icon.svg);
    background-size: cover;
    height: 7px;
    left: 27px;
    position: absolute;
    top: 7px;
    transform: rotate(180deg);
    width: 16px
}

.footer-navigation__column-header-expand-button--expanded i {
    transform: rotate(0)
}

.footer-navigation__column-header-expand-button:focus {
    outline: none
}

@media (min-width:768px) {
    .footer-navigation__column-header-expand-button {
        display: none
    }
}

.footer-navigation__column-header {
    display: block;
    flex-grow: 1;
    font-size: .9375rem;
    margin-bottom: 0
}

@media (min-width:992px) {
    .footer-navigation__column-header {
        font-size: 1rem
    }
}

.footer-navigation__menu {
    list-style-type: none;
    margin: 0;
    padding: 0
}

@media (min-width:768px) {
    .footer-navigation__menu {
        display: block !important;
        height: auto !important;
        visibility: visible
    }
}

.footer-navigation__menu-item {
    margin: 0;
    padding: 4px 0 0
}

.footer-navigation__menu-item:first-child {
    padding: 3px 0 0
}

@media (min-width:768px) {
    .footer-navigation__menu-item {
        margin: 0 0 2px;
        padding: 0
    }
}

.footer-navigation__link {
    color: #ccc;
    font-family: Maven Pro, sans-serif;
    font-size: .875rem;
    letter-spacing: .0175rem;
    line-height: 1.93;
    text-decoration: none
}

.footer-navigation__link:hover {
    text-decoration: underline
}

.footer-bottom-navigation__bottom-menu {
    list-style-type: none;
    margin: 0;
    padding: 0
}

@media (min-width:768px) {
    .footer-bottom-navigation__bottom-menu {
        display: flex;
        font-size: .8125rem;
        justify-content: flex-start;
        line-height: 1
    }
}

@media (min-width:1200px) {
    .footer-bottom-navigation__bottom-menu {
        justify-content: flex-end
    }
}

.footer-bottom-navigation__bottom-menu-item {
    margin: 0;
    text-align: center
}

@media (min-width:768px) {
    .footer-bottom-navigation__bottom-menu-item {
        margin-left: 2ch
    }

    .footer-bottom-navigation__bottom-menu-item:first-child {
        margin-left: 0
    }
}

@media (min-width:1200px) {
    .footer-bottom-navigation__bottom-menu-item {
        text-align: left
    }
}

.footer-bottom-navigation__link {
    color: #ccc;
    font-family: Maven Pro, sans-serif;
    font-size: .8125rem;
    letter-spacing: .01625rem;
    line-height: 2.08;
    text-decoration: none
}

.footer-bottom-navigation__link:hover {
    text-decoration: underline
}

@media (min-width:768px) {
    .footer-bottom-navigation__link {
        line-height: 1
    }

    .footer-apps-links {
        align-items: center;
        display: flex;
        justify-content: flex-start;
        margin-bottom: 38px
    }
}

@media (min-width:1200px) {
    .footer-apps-links {
        margin-bottom: 0
    }
}

.footer-apps-links__header {
    text-align: center
}

@media (min-width:768px) {
    .footer-apps-links__header {
        margin: 0 !important;
        text-align: left;
        width: 201px
    }
}

.footer-apps-links__list {
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin: 0 auto 30px;
    padding: 0
}

@media (min-width:768px) {
    .footer-apps-links__list {
        justify-content: flex-start;
        margin: 0;
        width: 66%
    }
}

.footer-apps-links__list-item {
    margin: 0 5px
}

.footer-apps-links__link {
    display: block;
    height: 40px
}

.footer-apps-links__link img {
    max-height: 100%
}

.footer-social-links-list {
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0
}

@media (min-width:768px) {
    .footer-social-links-list {
        justify-content: flex-start
    }
}

@media (min-width:1200px) {
    .footer-social-links-list {
        justify-content: flex-end
    }
}

.footer-social-links-list__item {
    margin: 0 12px
}

.footer-social-links-list__item:first-child {
    margin-left: 0
}

.footer-social-links-list__item:last-child {
    margin-right: 0
}

.footer-social-links-list__link {
    color: #fff;
    text-decoration: none
}

.footer-social-links-list__link:hover {
    color: #d2232a
}

.footer-social-links-list__link i {
    font-size: 1.5rem
}

@media (min-width: 768px) {
    .header__logo-image {
        max-width:180px
    }

    .footer__first-row {
        justify-content: center
    }

    .footer-navigation {
        justify-content: space-between;
        margin-right: 0;
        width: 100%
    }

    .footer-navigation__column {
        width: 280px
    }

    .footer-navigation .header__logo-image {
        max-width: 209px
    }

    .basic-hero-block__header {
        max-width: 1268px
    }

    .basic-hero-block--has-background-image {
        min-height: 420px;
        padding-bottom: 0;
        padding-top: 0
    }

    .basic-hero-block--has-background-image.basic-hero-block--top-padding-large {
        padding-top: 80px
    }

    .basic-hero-block--has-background-image.basic-hero-block--bottom-padding-large {
        padding-bottom: 80px
    }

    .basic-hero-block--has-background-image.basic-hero-block--top-padding-xlarge {
        padding-top: 160px
    }

    .basic-hero-block--has-background-image.basic-hero-block--bottom-padding-xlarge {
        padding-bottom: 160px
    }

    .owners-hub-overview-block__title {
        font-size: 2.188rem
    }

    .checklist__lead-heading {
        font-size: 21px
    }

    .checklist__content--right .checklist__lead-heading {
        margin: 0 0 20px
    }

    .checklist__list+.checklist__list {
        margin-top: 0
    }
}


/*--------------------------------------------------------------
# Financing Page
--------------------------------------------------------------*/

#card_benefit, #our_plan{
    padding: 5vw 10vw;
    li{
        font-weight: 500;
        font-size: 14px;
    }
    img{
        border-radius: 10px;
        width: 100%;
        display: block;
        margin: auto;
    }
}





/****Menu****/




/****Lalit***/
 ul.tick{
     padding-left: 0px;
 }
 ul.tick li {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 500;
        }

        ul.tick li::before {
            content: "check";
    font-family: "Material Icons";
    font-size: 10px;
    color: white;
    background-color: black;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
        }

h2.fl-heading span.fl-heading-text{    font-size: 40px;
    font-family: poppins;
    font-weight: 700;}
p {
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-family: 'Poppins';
}
.fl-button span.fl-button-text{
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins';
}
.ast-primary-header-bar{
border:none;}
#ast-hf-menu-1 li a.menu-link{
font-size: 18px;
    font-weight: 500;
}
.ast-container{
    max-width: 100%;}
    .ast-grid-right-center-section{
    justify-content: flex-end;}
a.ast-header-account-link.ast-header-account-type-text{
text-decoration: none;
    border: 2pt solid #000;
    padding: 10px;
}
a.ast-header-account-link.ast-header-account-type-text span.ast-header-account-text{
font-weight: 500;
    font-size: 18px;
    color: #000;
    text-decoration: none;
}
h4{font-size: 24px; font-weight: 500; font-style: normal !important;}
.sub-head{font-size: 14px;color:  #d2232a; font-style: normal !important; font-weight: 700;}
.site-below-footer-wrap[data-section="section-below-footer-builder"] .ast-builder-grid-row{max-width:  100% !important;}

.site-below-footer-wrap{
    padding: 0px;
}
.d-sm-none{display: block;}
@media (max-width: 768px){
   .w-50.w-sm-100{width: 100% !important;}
    
}
#ast-hf-menu-1 li#menu-item-104 a{text-decoration: none;
    color: var(--ast-global-color-3);
    font-size: 18px;
    font-weight: 500;
    padding: 0px 20px;
}
.fl-photo-img-jpg, .fl-photo-img-png{overflow: hidden;}
.image-hover-effect img {
    transition: transform 0.3s ease-in-out;
}

.image-hover-effect:hover img {
    transform: scale(1.1);
}
.border-radius-15{border-radius: 15px;}
.image-hover-effect.border-radius-15 .fl-photo-content{border-radius: 15px;}
#ast-hf-menu-1 li a{color: #fff;}
#ast-hf-menu-1 li#menu-item-104 a{color:#fff;}
a.ast-header-account-link.ast-header-account-type-text {
    text-decoration: none;
    border: 2pt solid #fff;
    padding: 5px 15px;
    background: #fff;
    color: #000;
    border-radius: 10px;
}
/****Lalit****/

/* End Layout CSS */

