/*
Theme Name: Sail Internet
Author: the Sail Internet Project team
Version: 7.0.0

===============================================*/

/*
Table Of Contents

 1.) Typography
 2.) Default Styles
 3.) Header - Main
 4.) Content - Main
 5.) Footer - Main
 6.) Form Order Steps - Pages (HTML+Wordpress)
 7.) Search - Address Dropdown
 8.) Elementor - Widgets
 9.) Text - Colors

========================================*/


/*
 1.) Typography
----------------------------------------*/

/*
.nunito-sans { font-family: "Nunito Sans", sans-serif; }
.lora { font-family: "Lora", sans-serif; }
*/


/*
 2.) Default Styles
----------------------------------------*/


* {
	margin: 0;
	padding: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	font-family: inherit;
	font-weight: inherit;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
	border: 0;
	margin: 0;
	padding: 0;

}

/* render html5 elements as block */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

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

sub, sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
	font-size: 20px;
}

sub {
	bottom: -0.25em;
}

img {
	max-width: 100%;
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
	line-height: .5em;
	border: 0;
}

/*  Custom animations
/*-------------------------------------------------- */
@-webkit-keyframes
reveal {
 0% {
 opacity: 0;
}
 1% {
 opacity: 0;
 -webkit-transform: scale(0.98) translateY(-15px);
}
 80% {
 -webkit-transform: scale(1);
}
 100% {
 -webkit-transform: translateY(0);
}
}
 @-moz-keyframes
reveal {
 0% {
 opacity: 0;
}
 1% {
 opacity: 0;
 -moz-transform: scale(0.98) translateY(-15px);
}
 80% {
 -moz-transform: scale(1);
}
 100% {
 -moz-transform: translateY(0);
}
}


/* #Basic Styles
================================================== */

body {
	-webkit-font-smoothing: antialiased;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	font-family: "Nunito Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #343335;
	line-height: 22px;
	background: #ffffff;
}

@media (max-width: 767px) {
body {
	font-size: 14px;
	line-height: 20px;
}
}



/* #Links
================================================== */

a {
	color: #f89c25;
	text-decoration: none;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	cursor: pointer;
}

a:hover,
a:focus,
a:active {
	color: #df8510;
	text-decoration: underline;
}

a:visited {
	outline: 0;
}

a[href^="tel:"],
a[href^="fax:"] {
	color: #f89c25;
	text-decoration: none;
}

a:hover[href^="tel:"],
a:focus[href^="tel:"],
a:hover[href^="fax:"],
a:focus[href^="fax:"] {
	color: #df8510;
	text-decoration: underline;
}

a[href^="mailto:"] {
	word-break: break-all;
}


/*= Headings: P, H1, H2, H3, H4, H5, H6
================================================== */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-family: "Lora", serif;
	font-weight: 500;
	padding-bottom: 16px;
}

h1,
.h1 {
	font-size: 40px;
	line-height: 50px;
}

h2,
.h2 {
	font-size: 35px;
	line-height: 45px;
}

h3,
.h3 {
	font-size: 30px;
	line-height: 38px;
}

h4,
.h4{
	font-size: 20px;
	line-height: 28px;
}

h5,
.h5 {
	font-size: 18px;
	line-height: 25px;
}

h6,
.h6 {
	font-size: 16px;
	line-height: 22px;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
	font-weight: inherit;
	font-style: inherit;
	color: inherit;
}

h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover,
h5 a:hover,
.h5 a:hover,
h6 a:hover,
.h6 a:hover {
	color: #f89c25;
	text-decoration: underline;
}

h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child {
	padding-bottom: 0;
}

p {
	padding-bottom: 20px;
}

p:last-child {
	padding-bottom: 0;
}

em {
	font-style: italic;
}

em.fal,
em.far,
em.fas,
em.fab {
	font-style: normal;
}

strong {
	font-weight: 700;
}

.light {
	font-weight: 300;
}

.regular {
	font-weight: 400;
}

.medium {
	font-weight: 500;
}

.semibold {
	font-weight: 600;
}

.bold {
	font-weight: 700;
}

@media (max-width: 767px) {
h1,
.h1 {
	font-size: 30px;
	line-height: 38px;
}

h2,
.h2 {
	font-size: 25px;
	line-height: 33px;
}

h3,
.h3 {
	font-size: 25px;
	line-height: 33px;
}

h4,
.h4{
	font-size: 18px;
	line-height: 24px;
}
}


/* Heading - Link */
.elementor .heading-link a {
	text-decoration: underline;
	-webkit-text-decoration-color: #7bced4;
	-ms-text-decoration-color: #7bced4;
	text-decoration-color: #7bced4;
	-webkit-text-underline-position: under;
	-ms-text-underline-position: under;
	text-underline-position: under;
}

.elementor .heading-link a:after {
	content: "  \f054";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 900;
	font-size: 80%;
}

.elementor .heading-link a:hover,
.elementor .heading-link a:focus,
.elementor .heading-link a:active {
	color: #7bced4;
}


/*= Unorder List
================================================== */

ul,
ol {
	list-style: none;
	/* padding-left: 8px; */
}

li {
	position: relative;
	/* padding-left: 13px; */
}

li:last-child {
	padding-bottom: 20px;
}

ul:last-child li:last-child,
ol:last-child li:last-child {
	padding-bottom: 0;
}

.item li {
	padding-left: 13px;
}
.item ul, .item ol {
	padding-left: 8px;
}

.social-links ul li:before, .item ul li:before, .plan-box ul li:before {
	content: "\f111";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 900;
	font-size: 30%;
	color: #343335;
	position: absolute;
	top: .12em;
	left: 0;
}

.elementor-editor-element-settings li:before,
.elementor-select-preset-list li:before {
	display: none;
}

ul li ul li:before {
	content: "\f068";
	font-size: 45%;
	top: .10em;
}


/*= Order List
================================================== */

ol {
	counter-reset: item;
}

ol > li {
	counter-increment: item;
	padding-left: 30px;
}

ol > li:before {
	content: counter(item)".";
	font-weight: 700;
	color: #343335;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
}


/* List Style - None */
.list-style-none .elementor-widget-container ul,
.list-style-none .elementor-widget-container ol {
	padding-left: 0;
}

.list-style-none .elementor-widget-container li {
	padding-left: 0;
}

.list-style-none .elementor-widget-container li:before {
	display: none;
}

.elementor-icon-list-item:before {
	display: none;
}


/* #Input Styles
================================================== */

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

select,
textarea,
input {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

label {
	width: 100%;
	display: block;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	font-size: 12px;
	color: #343335;
	line-height: 16px;
	padding: 0;
	margin: 0 0 6px 0;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	width: 100%;
	height: 50px;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
	font-size: 16px;
	color: #343335;
	line-height: 18px;
	letter-spacing: 0.02em;
	white-space: nowrap;
	text-overflow: ellipsis;
	background: #ffffff;
	border: 1px solid #d9d9d9;
	border-radius: 5px;
	box-shadow: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	overflow: hidden;
	position: relative;
	padding: 15px 20px;
	margin: 0;
}

textarea {
	height: 136px;
	white-space: normal;
	outline: none;
	resize: none;
	padding-top: 20px;
	padding-bottom: 20px;
}

select {
	background-image: url(img/chevron-down.svg);
	background-size: 16px auto;
	background-repeat: no-repeat;
	background-position: top 15px right 20px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-top: 0;
	padding-right: 40px;
	padding-bottom: 0;
}

select::-ms-expand {
	display:none;
}

select option:not([disabled]) {
	color: #343335;
}

select option.def:not([disabled]),
select.gf_placeholder:not([disabled]) {
	font-weight: 400;
	color: #7a7a7b;
}

::-webkit-input-placeholder,
::-webkit-textarea-placeholder {
	font-weight: 400;
	color: #7a7a7b;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	font-weight: 400;
	color: #7a7a7b;
}

::-moz-placeholder {
	font-weight: 400;
	color: #7a7a7b;
}

::-ms-input-placeholder {
	font-weight: 400;
	color: #7a7a7b;
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
	outline: 0;
	border-color: #f89c25;
	box-shadow: rgba(0, 0, 0, .15) 0 0 6px;
}

@media (max-width: 991px) {
textarea {
	height: 200px;
}
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}


/* #Buttons
================================================== */

/* Arrow Right */
@keyframes arrowright {
	0%   { margin-left: 0; margin-right: 0;}
	75% { margin-left: 5px; margin-right: -5px;}
	100% { margin-left: 0px; margin-right: 0;}
}

@-webkit-keyframes arrowright {
	0%   { margin-left: 0; margin-right: 0;}
	75% { margin-left: 5px; margin-right: -5px;}
	100% { margin-left: 0; margin-right: 0;}
}


/* Custom - Select */
button {
	background: none;
	border: none;
	box-shadow: none;
	text-decoration: none;
	white-space: normal;
	cursor: pointer;
	outline: 0;
	padding: 0;
	margin: 0;
}

button:hover,
button:focus,
button:active,
button:active:focus,
button.active,
button.active:focus {
	outline: 0;
}

.btn,
input[type="button"],
input[type="submit"] {
	width: auto;
	height: auto;
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: #ffffff;
	line-height: 19px;
	letter-spacing: 0.04em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: none;
	white-space: normal;
	background: #f89c25;
	border: none;
	border-radius: 360px;
	box-shadow: none;
	overflow: hidden;
	position: relative;
	z-index: 1;
	cursor: pointer;
	outline: 0;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	padding: 16px 30px 15px 31px;
	margin: 0;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.active:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus,
.btn:not(:disabled):not(.disabled).active {
	color: #ffffff;
	text-decoration: none;
	background: #df8510;
	outline: 0;
}

.btn-white,
.button.btn-white,
input.btn-white[type="button"],
input.btn-white[type="submit"] {
	color: #343335;
	background: #ffffff;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white:active:focus,
.btn-white.active,
.btn-white.active:focus,
.button.btn-white:hover,
.button.btn-white:focus,
.button.btn-white:active,
.button.btn-white:active:focus,
.button.btn-white.active,
.button.btn-white.active:focus,
input.btn-white[type="button"]:hover,
input.btn-white[type="button"]:focus,
input.btn-white[type="button"]:active,
input.btn-white[type="button"]:active:focus,
input.btn-white[type="button"].active,
input.btn-white[type="button"].active:focus,
input.btn-white[type="submit"]:hover,
input.btn-white[type="submit"]:focus,
input.btn-white[type="submit"]:active,
input.btn-white[type="submit"]:active:focus,
input.btn-white[type="submit"].active,
input.btn-white[type="submit"].active:focus,
.btn-white:not(:disabled):not(.disabled).active,
.button.btn-white:not(:disabled):not(.disabled):active {
	color: #343335;
	background: #e8dccd;
}

.btn-black,
.button.btn-black,
input.btn-black[type="button"],
input.btn-black[type="submit"] {
	color: #ffffff;
	background: #343335;
}

.btn-black:hover,
.btn-black:focus,
.btn-black:active,
.btn-black:active:focus,
.btn-black.active,
.btn-black.active:focus,
.button.btn-black:hover,
.button.btn-black:focus,
.button.btn-black:active,
.button.btn-black:active:focus,
.button.btn-black.active,
.button.btn-black.active:focus,
input.btn-black[type="button"]:hover,
input.btn-black[type="button"]:focus,
input.btn-black[type="button"]:active,
input.btn-black[type="button"]:active:focus,
input.btn-black[type="button"].active,
input.btn-black[type="button"].active:focus,
input.btn-black[type="submit"]:hover,
input.btn-black[type="submit"]:focus,
input.btn-black[type="submit"]:active,
input.btn-black[type="submit"]:active:focus,
input.btn-black[type="submit"].active,
input.btn-black[type="submit"].active:focus,
.btn-black:not(:disabled):not(.disabled).active,
.button.btn-black:not(:disabled):not(.disabled):active {
	background: #000000;
}

.disabled {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	opacity: .65;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
	pointer-events: none;
}

.btn-out {
    float: none;
    display: inline-block;
    vertical-align: top;
    margin: 0 -8px -20px -8px;
}

.btn-out .btn,
.btn-out input[type="button"],
.btn-out input[type="submit"] {
	margin: 0 8px 20px 8px;
}

@media (max-width: 767px) {
.btn,
input[type="button"],
input[type="submit"] {
	font-size: 12px;
	line-height: 16px;
	padding: 14px 25px 13px 26px;
}
}


/* #Owl-carousel
=======================================================*/

.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	/* position relative and z-index fix webkit rendering fonts issue */
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	touch-action: manipulation;
	-moz-backface-visibility: hidden;
	/* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	/* fix for flashing background */
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
	display: inline-block;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}


/* No Js */
.no-js .owl-carousel {
	display: block;
}


/* Owl Carousel - Animate Plugin */
.owl-carousel .animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay: 200ms;
	animation-delay: 200ms;
}

.owl-carousel .animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.owl-carousel .animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.owl-carousel .fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

.owl-carousel .animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	animation-name: fadeOut;
	-webkit-animation-duration: 100ms;
	animation-duration: 100ms;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.fadeIn{
	animation-name: fadeIn;
}


/* Owl Carousel - Auto Height Plugin */
.owl-height {
	transition: height 500ms ease-in-out;
}


/* Owl Carousel - Lazy Load Plugin */
.owl-carousel .owl-item {
/**
This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
calculation of the height of the owl-item that breaks page layouts
*/
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
	max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
	transform-style: preserve-3d;
}


/* Owl Carousel - Video Plugin */
.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	/*background: url("owl.video.play.png") no-repeat;*/
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-ms-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}


/* #Slider Controls
================================================== */

/* Previous and Next */
.owl-nav button {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	font-size: 38px!important;
	color: #4d4f53!important;
	line-height: 1em!important;
	text-decoration: none;
	text-align: center;
	background: none!important;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 50%;
	z-index: 2;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	padding: 0;
	margin: 0;
	cursor: pointer;
}

.owl-nav button .fal,
.owl-nav button .far,
.owl-nav button .fas,
.owl-nav button .fa-txt {
	display: inline-block;
	vertical-align: middle;
}

.owl-nav button .fa-txt {
	display: none;
}

.owl-nav button:hover,
.owl-nav button:focus,
.owl-nav button:active {
	color: #f89c25!important;
	background: none!important;
	box-shadow: none;
}

.owl-nav button.disabled {
	cursor: default;
	opacity: 0.75;
	display: none;
}

.owl-nav button.owl-prev {
	left: 0;
	padding: 0;
}

.owl-nav button.owl-next {
	right: 0;
	padding: 0;
}

.owl-nav.disabled {
	display: none;
}

@media (max-width: 767px) {
.owl-nav button {
	font-size: 30px!important;
}
}


/* Bullets */
.owl-dots {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	margin: 40px 0 0 0;
}

.owl-dots button.owl-dot {
	width: 9px;
	height: 9px;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	background: #e0e0e0;
	box-shadow: none;
	border-radius: 360px;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	cursor: pointer;
	position: relative;
	z-index: 3;
	padding: 0;
	margin: 0 7px;
}

.owl-dots button.owl-dot:hover,
.owl-dots button.owl-dot:focus,
.owl-dots button.owl-dot:active,
.owl-dots button.owl-dot.active {
	background: #343335;
	box-shadow: none;
}

.owl-dots.disabled {
	display: none;
}



/* #Flying focus
================================================== */

#flying-focus {
	position: absolute;
	margin: 0;
	background: transparent;
	-webkit-transition-property: left, top, width, height, opacity;
	transition-property: left, top, width, height, opacity;
	-webkit-transition-timing-function: cubic-bezier(0, 0.2, 0, 1);
	transition-timing-function: cubic-bezier(0, 0.2, 0, 1);
	visibility: hidden;
	pointer-events: none;
	box-shadow: -webkit-focus-ring-color 0 0 0 2px;
	border-radius: 0;
}

#flying-focus.flying-focus_visible {
	visibility: visible;
	z-index: 9999;
}

.flying-focus_target {
	outline: none !important; /* Doesn't work in Firefox :( */
}

/* http://stackoverflow.com/questions/71074/how-to-remove-firefoxs-dotted-outline-on-buttons-as-well-as-links/199319 */
.flying-focus_target::-moz-focus-inner {
	border: 0 !important;
}

/* Replace it with @supports rule when browsers catch up */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
#flying-focus {
	box-shadow: none;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -3px;
}
}


/* Skip - Button */
.skip-btn {
	width: 180px;
	height: 40px;
	float: left;
	font-size: 14px;
	color: #ffffff;
	line-height: 40px;
	text-decoration: none;
	text-align: center;
	background: #f89c25;
	border-radius: 0;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	overflow: hidden;
	z-index: 100;
	position: absolute;
	z-index: 1001;
	top: -40px;
	left: 0;
	opacity: 0;
	padding: 0;
	margin: 0;
}

.skip-btn:hover,
.skip-btn:focus,
.skip-btn:active {
	color: #ffffff;
	top: 0;
	opacity: 1;
}


/*= Container - Main
================================================== */

.container-main {
	width: 100%;
	min-height: 100vh;
	float: left;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.container {
	width: 100%;
	max-width: 1110px;
	padding: 0 40px;
	margin: 0 auto;
}

.container.max-750 {
	max-width: 830px;
}

.container.max-830 {
	max-width: 910px;
}

.container.max-1240 {
	max-width: 1320px;
}

@media (max-width: 767px) {
.container {
	padding: 0 20px;
}
}


/* Hidden */
.social-links .hidden {
	width: 1px;
	height: 1px;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
	overflow: hidden;
	position: absolute;
	padding: 0;
}


/* Social - Links */
.social-links {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.social-links ul {
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0 -10px;
}

.social-links ul li {
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0 10px;
}

.social-links ul li:before {
	display: none;
}

.social-links ul li a {
	font-size: 30px;
	color: #f89c25;
	line-height: 30px;
	text-decoration: none;
}

.social-links ul li a:hover,
.social-links ul li a:focus,
.social-links ul li a:active {
	color: #df8510;
	text-decoration: none;
}

@media (max-width: 1199px) {
.social-links ul li a {
	font-size: 28px;
	line-height: 28px;
}
}

@media (max-width: 767px) {
.social-links ul li a {
	font-size: 24px;
	line-height: 24px;
}
}


/* Custom - Video */
.embed-responsive {
	width: 100%;
	background: #000000;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0 0 56.25% 0;
}

.embed-responsive::before {
	display: block;
	content: ""
}

.embed-responsive img,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
	width: 100%;
	height: 100%;
	border: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}

.embed-responsive img {
	z-index: 1;
}

.embed-responsive .play-btn {
	z-index: 2;
}


/* Search - Form */
.searchform {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 0 210px 0 0;
	margin: 0;
}

.searchform label {
	width: 100%;
	padding: 0;
	margin: 0;
}

.searchform select,
.searchform textarea,
.searchform input[type="text"],
.searchform input[type="password"],
.searchform input[type="datetime"],
.searchform input[type="datetime-local"],
.searchform input[type="date"],
.searchform input[type="month"],
.searchform input[type="time"],
.searchform input[type="week"],
.searchform input[type="number"],
.searchform input[type="email"],
.searchform input[type="url"],
.searchform input[type="search"],
.searchform input[type="tel"],
.searchform input[type="color"],
.searchform .uneditable-input {
	height: 60px;
	font-weight: 400;
	font-size: 20px;
	color: #000000;
	line-height: 24px;
	border: none;
	border-radius: 360px;
	padding: 15px 30px;
}

.searchform .btn,
.searchform .button,
.searchform input[type="button"],
.searchform input[type="submit"] {
	width: 200px;
	height: 60px;
	line-height: 60px;
	text-align: left;
	background-image: url(img/caret-right-white.svg);
	background-size: 8px auto;
	background-repeat: no-repeat;
	background-position: top 21px right 30px;
	position: absolute;
	top:0;
	right:0;
	padding: 0 30px!important;
	margin: 0;
}

.searchform .btn:hover,
.searchform .btn:focus,
.searchform .btn:active,
.searchform .btn:active:focus,
.searchform .btn.active,
.searchform .btn.active:focus,
.searchform input[type="button"]:hover,
.searchform input[type="button"]:focus,
.searchform input[type="button"]:active,
.searchform input[type="button"]:active:focus,
.searchform input[type="button"].active,
.searchform input[type="button"].active:focus,
.searchform input[type="submit"]:hover,
.searchform input[type="submit"]:focus,
.searchform input[type="submit"]:active,
.searchform input[type="submit"]:active:focus,
.searchform input[type="submit"].active,
.searchform input[type="submit"].active:focus,
.searchform .btn:not(:disabled):not(.disabled).active {
	background-position: top 21px right 25px;
}

@media (max-width: 767px) {
.searchform {
	padding-right: 160px;
}

.searchform select,
.searchform textarea,
.searchform input[type="text"],
.searchform input[type="password"],
.searchform input[type="datetime"],
.searchform input[type="datetime-local"],
.searchform input[type="date"],
.searchform input[type="month"],
.searchform input[type="time"],
.searchform input[type="week"],
.searchform input[type="number"],
.searchform input[type="email"],
.searchform input[type="url"],
.searchform input[type="search"],
.searchform input[type="tel"],
.searchform input[type="color"],
.searchform .uneditable-input {
	height: 50px;
	font-size: 18px;
	line-height: 22px;
}

.searchform .btn,
.searchform .button,
.searchform input[type="button"],
.searchform input[type="submit"] {
	width: 150px;
	height: 50px;
	font-size: 18px;
	line-height: 50px;
	background-position: top 15px right 30px;
}

.searchform .btn:hover,
.searchform .btn:focus,
.searchform .btn:active,
.searchform .btn:active:focus,
.searchform .btn.active,
.searchform .btn.active:focus,
.searchform input[type="button"]:hover,
.searchform input[type="button"]:focus,
.searchform input[type="button"]:active,
.searchform input[type="button"]:active:focus,
.searchform input[type="button"].active,
.searchform input[type="button"].active:focus,
.searchform input[type="submit"]:hover,
.searchform input[type="submit"]:focus,
.searchform input[type="submit"]:active,
.searchform input[type="submit"]:active:focus,
.searchform input[type="submit"].active,
.searchform input[type="submit"].active:focus,
.searchform .btn:not(:disabled):not(.disabled).active {
	background-position: top 15px right 25px;
}
}

@media (max-width: 499px) {
.searchform {
	padding-right: 0;
}

.searchform .btn,
.searchform .button,
.searchform input[type="button"],
.searchform input[type="submit"] {
	width: 100%;
	position: relative;
	margin-top: 10px;
}
}


/* Elementor Search - Form */
.custom-searchform .elementor-search-form .elementor-search-form__container {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: none;
	border: none;
	box-shadow: none;
	overflow: visible;
	position: relative;
	padding: 0 210px 0 0;
	margin: 0;
}

.custom-searchform .elementor-search-form .elementor-search-form__container label {
	width: 100%;
	padding: 0;
	margin: 0;
}

.custom-searchform .elementor-search-form .elementor-search-form__container select,
.custom-searchform .elementor-search-form .elementor-search-form__container textarea,
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="text"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="password"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="datetime"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="datetime-local"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="date"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="month"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="time"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="week"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="number"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="email"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="url"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="search"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="tel"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="color"],
.custom-searchform .elementor-search-form .elementor-search-form__container .uneditable-input {
	height: 60px;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #2a2a2a;
	line-height: 24px;
	background: #ffffff;
	border: 1px solid #707070;
	border-radius: 360px;
	padding: 15px 30px;
}

.custom-searchform .elementor-search-form .elementor-search-form__container select:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container textarea:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="text"]:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="password"]:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="datetime"]:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="datetime-local"]:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="date"]:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="month"]:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="time"]:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="week"]:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="number"]:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="email"]:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="url"]:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="search"]:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="tel"]:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="color"]:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container .uneditable-input:focus {
	border-color: #0d5d85;
}

.custom-searchform .elementor-search-form .elementor-search-form__container .elementor-search-form__submit {
	width: 200px;
	height: 60px;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #ffffff;
	line-height: 60px;
	letter-spacing: 0.18px;
	text-align: left;
	white-space: normal;
	border: none;
	border-radius: 360px;
	background-color: #434faa;
	background-image: url(img/caret-right-white.svg);
	background-size: 8px auto;
	background-repeat: no-repeat;
	background-position: top 21px right 30px;
	box-shadow: none;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	cursor: pointer;
	outline: 0;
	z-index: 1;
	position: absolute;
	top:0;
	right:0;
	padding: 0 30px!important;
	margin: 0;
}

.custom-searchform .elementor-search-form .elementor-search-form__container .elementor-search-form__submit:hover,
.custom-searchform .elementor-search-form .elementor-search-form__container .elementor-search-form__submit:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container .elementor-search-form__submit:active,
.custom-searchform .elementor-search-form .elementor-search-form__container .elementor-search-form__submit:active:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container .elementor-search-form__submit.active,
.custom-searchform .elementor-search-form .elementor-search-form__container .elementor-search-form__submit.active:focus {
	color: #ffffff;
	background-color: #313986;
	background-position: top 21px right 25px;
}

@media (max-width: 767px) {
.custom-searchform .elementor-search-form .elementor-search-form__container {
	padding-right: 160px;
}

.custom-searchform .elementor-search-form .elementor-search-form__container select,
.custom-searchform .elementor-search-form .elementor-search-form__container textarea,
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="text"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="password"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="datetime"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="datetime-local"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="date"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="month"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="time"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="week"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="number"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="email"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="url"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="search"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="tel"],
.custom-searchform .elementor-search-form .elementor-search-form__container input[type="color"],
.custom-searchform .elementor-search-form .elementor-search-form__container .uneditable-input {
	height: 50px;
	font-size: 18px;
	line-height: 22px;
}

.custom-searchform .elementor-search-form .elementor-search-form__container .elementor-search-form__submit {
	width: 150px;
	height: 50px;
	font-size: 18px;
	line-height: 50px;
	background-position: top 15px right 30px;
}

.custom-searchform .elementor-search-form .elementor-search-form__container .elementor-search-form__submit:hover,
.custom-searchform .elementor-search-form .elementor-search-form__container .elementor-search-form__submit:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container .elementor-search-form__submit:active,
.custom-searchform .elementor-search-form .elementor-search-form__container .elementor-search-form__submit:active:focus,
.custom-searchform .elementor-search-form .elementor-search-form__container .elementor-search-form__submit.active,
.custom-searchform .elementor-search-form .elementor-search-form__container .elementor-search-form__submit.active:focus {
	background-position: top 15px right 25px;
}
}

@media (max-width: 499px) {
.custom-searchform .elementor-search-form .elementor-search-form__container {
	padding-right: 0;
}

.custom-searchform .elementor-search-form .elementor-search-form__container .elementor-search-form__submit {
	width: 100%;
	position: relative;
	margin-top: 10px;
}
}


/* Alert - Information */
.alert-info {
	width: 100%;
	height: 50px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 16px;
	color: #ffffff;
	line-height: 20px;
	letter-spacing: 0.01em;
	text-align: center;
	background: #f89c25;
	position: relative;
	overflow: hidden;
	z-index: 10;
}

@media (max-width: 767px) {
.alert-info {
	height: 40px;
	font-size: 14px;
	line-height: 18px;
}
}


/*
 3.) Header - Main
----------------------------------------*/

.header-main {
	width: 100%;
	float: left;
	background: #ffffff;
	border-bottom: 1px solid rgba(0, 0, 0, .080);
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: relative;
	z-index: 9;
}

@media (min-width: 768px) {
.header-main .container {
	max-width: 1320px;
}
}


/* Site Brand */
.header-main .brand {
	height: 100px;
	float: left;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: relative;
	z-index: 10;
	padding: 20px 0 0 0;
	margin: 0;
}

.header-main .brand img {
	width: 220px;
	display: inline-block;
	vertical-align: top;
}

@media (max-width: 767px) {
.header-main .brand {
	width: 100%;
	height: 60px;
	text-align: center;
	padding: 13px 0 0 0;
	margin: 0;
}

.header-main .brand img {
	width: 150px;
	margin-top: -4px;
}
}

@media (min-width: 992px) {
.header-main .nav-bar {
	float: right;
}

.header-main .nav-bar .nav-max,
.header-main .nav-bar .nav-inn {
	float: left;
}

/* Primary - Menu */
.header-main .primary-menu {
	float: left;
}

.header-main .primary-menu ul {
	float: left;
	padding: 0;
	margin: 0 0 0 -31px;
}

.header-main .primary-menu ul li {
	height: 100px;
	float: left;
	padding: 28px 0;
	margin: 0 0 0 31px;
}

.header-main .primary-menu ul li:before {
	display: none;
}

.header-main .primary-menu ul li > a {
	height: 44px;
	float: left;
	font-weight: 600;
	font-size: 14px;
	color: #343335;
	line-height: 45px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.header-main .primary-menu ul li.menu-item-contact > a {
	color: #7a7a7b;
}

.header-main .primary-menu ul li > a:before {
	content: "";
	width: 0;
	height: 2px;
	float: left;
	background: #343335;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	bottom: 5px;
	left: 50%;
	margin: 0;
	opacity: 0;
}

.header-main .primary-menu ul li .sub-title {
	display: none;
}

.header-main .primary-menu ul li.menu-item-has-children > a {
	padding-right: 15px;
}

.header-main .primary-menu ul li.menu-item-has-children > a:after {
	content: "\f078";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 900;
	font-size: 80%;
	line-height: 80%;
	position: absolute;
	top: 50%;
	right: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	margin: 0;
}

.header-main .primary-menu ul li:hover > a,
.header-main .primary-menu ul li > a:focus,
.header-main .primary-menu ul li.nav-menu-open > a,
.header-main .primary-menu ul li.current-menu-item > a,
.header-main .primary-menu ul li.current-menu-parent > a,
.header-main .primary-menu ul li.current-menu-ancestor > a {
	color: #343335;
}

.header-main .primary-menu ul li:hover > a:before,
.header-main .primary-menu ul li > a:focus:before,
.header-main .primary-menu ul li.nav-menu-open > a:before,
.header-main .primary-menu ul li.current-menu-item > a:before,
.header-main .primary-menu ul li.current-menu-parent > a:before,
.header-main .primary-menu ul li.current-menu-ancestor > a:before {
	width: 100%;
	left: 0;
	opacity: 1;
}

.header-main .primary-menu ul li.menu-item-has-children:hover > a:before,
.header-main .primary-menu ul li.menu-item-has-children > a:focus:before,
.header-main .primary-menu ul li.menu-item-has-children.nav-menu-open > a:before,
.header-main .primary-menu ul li.menu-item-has-children.current-menu-item > a:before,
.header-main .primary-menu ul li.menu-item-has-children.current-menu-parent > a:before,
.header-main .primary-menu ul li.menu-item-has-children.current-menu-ancestor > a:before {
	left: -15px;
}

.header-main .primary-menu ul li.menu-item-has-children:hover > a:after,
.header-main .primary-menu ul li.menu-item-has-children > a:focus:after,
.header-main .primary-menu ul li.menu-item-has-children.nav-menu-open > a:after {
	content: "\f077";
}

.header-main .primary-menu ul li > ul {
	width: 195px;
	float: left;
	background: #ffffff;
	box-shadow: rgba(0, 0, 0, .10) 0 7px 15px;
	transition: all .2s ease-in-out;
	transform-origin: left top;
	transform: scaleY(0);
	visibility: hidden;
	opacity: 0;
	display: block!important;
	position: absolute;
	top: 100%;
	left: -30px;
	padding: 30px;
	margin: 0;
}

.header-main .primary-menu ul li > a:focus+ul,
.header-main .primary-menu ul li:hover > ul,
.header-main .primary-menu ul li.nav-menu-open > ul {
	transform: scaleY(1);
	visibility: visible;
	opacity: 1;
}

.header-main .primary-menu ul li > ul li {
	width: 100%;
	height: auto;
	float: left;
	padding: 0;
	margin: 0 0 20px 0;
}

.header-main .primary-menu ul li > ul li:last-child {
	margin-bottom: 0;
}

.header-main .primary-menu ul li > ul li:before {
	display: none;
}

.header-main .primary-menu ul li > ul li > a {
	width: 100%;
	height: auto;
	line-height: 1.3em;
	text-align: left;
	padding: 0;
	margin: 0;
}

.header-main .primary-menu ul li > ul li > a:before {
	display: none;
}

.header-main .primary-menu ul li > ul li:hover > a,
.header-main .primary-menu ul li > ul li > a:focus,
.header-main .primary-menu ul li > ul li.nav-menu-open > a,
.header-main .primary-menu ul li > ul li.current-menu-item > a,
.header-main .primary-menu ul li > ul li.current-menu-parent > a,
.header-main .primary-menu ul li > ul li.current-menu-ancestor > a {
	color: #f89c25;
}

.header-main .sticky-btm {
	height: 100px;
	float: left;
	padding: 28px 0;
	margin: 0 0 0 37px;
}

.header-main .sticky-btm .btn {
	height: 44px;
	font-weight: 600;
	font-size: 12px;
	line-height: 44px;
	letter-spacing: 0.09em;
	padding: 0 20px 0 21px;
}

.header-main .sticky-btm .social-links {
	display: none;
}
}

@media (max-width: 991px) {
.hiddenscroll-menu {
	overflow: hidden;
}

.header-main .overlay-menu {
	width: 100%;
	height: 100%;
	float: left;
	background: #000000;
	position: fixed;
	top: 100px;
	left: 0;
	z-index: 7;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: top .15s ease-out;
	-moz-transition: top .15s ease-out;
	transition: top .15s ease-out;
	overflow: hidden;
}

/*
.header-main .overlay-menu.active {
	visibility: visible;
	opacity: .90;
	-webkit-transition: opacity .2s ease-out;
	-moz-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}
*/

.header-main .nav-bar {
	width: 100%;
	height: 100%;
	float: left;
	background: #ffffff;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	transition: all 0.2s ease-in-out;
	visibility: hidden;
	overflow: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9;
	padding: 100px 0 0 0;
}

.header-main .nav-bar.active {
	visibility: visible;
	opacity: 1;
}

.header-main .nav-bar .nav-max {
	width: 100%;
	height: 100%;
	float: left;
	display: flex;
	flex-direction: column;
	overflow: auto;
	overflow-x: hidden;
	padding: 0 40px;
}


/* Primary - Menu */
.header-main .primary-menu {
	width: 100%;
	float: left;
	flex: 1 0 auto;
	padding: 30px 0;
}

.header-main .primary-menu ul {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0;
}

.header-main .primary-menu ul li {
	width: 100%;
	float: left;
	border-bottom: 1px solid #dddddd;
	position: relative;
	padding: 0;
	margin: 0;
}

.header-main .primary-menu ul li:last-child {
	border-bottom: none;
}

.header-main .primary-menu ul li:before {
	display: none;
}

.header-main .primary-menu ul li > a {
	width: 100%;
	float: left;
	font-weight: 600;
	font-size: 24px;
	color: #343335;
	line-height: 30px;
	text-decoration: none;
	position: relative;
	padding: 17px 0;
	margin: 0;
}

.header-main .primary-menu ul li .sub-title {
	width: 100%;
	height: 64px;
	float: left;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	cursor: pointer;
	padding: 0;
}

.header-main .primary-menu ul li .sub-title:after {
	content: "\f078";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 400;
	font-size: 20px;
	line-height: 1em;
	position: absolute;
	top: 50%;
	right: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	margin: 0;
}

.header-main .primary-menu ul li .sub-title.active:after {
	content: "\f077";
}

.header-main .primary-menu ul li.menu-item-has-children > .sub-title {
	display: block;
}

.header-main .primary-menu ul li.menu-item-contact > a {
	color: #7a7a7b;
}

.header-main .primary-menu ul li > a:hover,
.header-main .primary-menu ul li > a:focus,
.header-main .primary-menu ul li.nav-menu-open > a,
.header-main .primary-menu ul li.current-menu-item > a,
.header-main .primary-menu ul li.current-menu-parent > a,
.header-main .primary-menu ul li.current-menu-ancestor > a {
	color: #f89c25;
}

.header-main .primary-menu ul li.current-menu-item > .sub-title:after,
.header-main .primary-menu ul li.current-menu-parent > .sub-title:after,
.header-main .primary-menu ul li.current-menu-ancestor > .sub-title:after {
	color: #f89c25;
}

.header-main .primary-menu ul li ul {
	display: none;
	padding: 0 15px 17px 15px;
	margin: 0;
}

.header-main .primary-menu ul li ul li > a {
	font-size: 20px;
	line-height: 26px;
	padding: 12px 0;
}


/* Sticky Btm */
.header-main .sticky-btm {
	width: 100%;
	float: left;
	flex-shrink: 0;
	text-align: center;
	padding: 30px 0;
	margin: 0;
}

.header-main .sticky-btm .btn {
	height: 44px;
	font-weight: 600;
	font-size: 12px;
	line-height: 44px;
	letter-spacing: 0.09em;
	padding: 0 20px 0 21px;
	/* display:none; */
}

.header-main .sticky-btm .btn-wrap {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding-bottom: 30px;
}

.header-main .sticky-btm .btn-wrap:last-child {
	padding-bottom: 0;
}

.header-main .sticky-btm .social-links ul li a {
	font-size: 24px;
	line-height: 24px;
}


/* Alert - Visibe */
.alert-visible .header-main .nav-bar {
	padding: 150px 0 0 0;
}
}

@media (max-width: 767px) {
.header-main .overlay-menu {
	top: 50px;
}

.header-main .nav-bar {
	padding: 50px 0 0 0;
}

.header-main .nav-bar .nav-max {
	padding: 0 20px;
}


/* Alert - Visibe */
.alert-visible .header-main .nav-bar {
	padding: 90px 0 0 0;
}
}


/* Menu - Button */
.header-main .menu-btn {
	min-width: inherit;
	height: 100px;
	float: right;
	flex-wrap: wrap;
	align-items: center;
	font-weight: inherit;
	font-size: inherit;
	color: inherit;
	background: none;
	cursor: pointer;
	position: relative;
	z-index: 10;
	padding: 0;
	margin: 0 0 0 -500px;
	display: none;
}

.header-main .menu-btn .menu-bar {
	width: 32px;
	height: 2px;
	float: left;
	background: #343335;
	text-indent: -99999px;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: relative;
	margin: 9px 0;
}

.header-main .menu-btn .menu-bar:before,
.header-main .menu-btn .menu-bar:after {
	content: "";
	width: 100%;
	height: 2px;
	float: left;
	background: #343335;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	left: 0;
}

.header-main .menu-btn .menu-bar:before {
	top: -9px;
}

.header-main .menu-btn .menu-bar:after {
	top: 9px;
}

.header-main .menu-btn.active .menu-bar {
	background: none;
}

.header-main .menu-btn.active .menu-bar:before,
.header-main .menu-btn.active .menu-bar:after {
	top: 0;
}

.header-main .menu-btn.active .menu-bar:before {
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	transform: rotate3d(0, 0, 1, -45deg);
}

.header-main .menu-btn.active .menu-bar:after {
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	transform: rotate3d(0, 0, 1, 45deg);
}

@media (max-width: 991px) {
.header-main .menu-btn {
	display: flex;
}
}

@media (max-width: 767px) {
.header-main .menu-btn {
	height: 50px;
}

.header-main .menu-btn .menu-bar {
	width: 22px;
	margin: 7px 0;
}

.header-main .menu-btn .menu-bar:before {
	top: -7px;
}

.header-main .menu-btn .menu-bar:after {
	top: 7px;
}

.header-main .menu-btn.active .menu-bar:before,
.header-main .menu-btn.active .menu-bar:after {
	top: 0;
}
}


/*
 4.) Content - Main
----------------------------------------*/

.content-main {
	width: 100%;
	float: left;
	flex: 1 0 auto;
}



/* Arrow - Link */
.arrow-link {
	display: inline-block;
	text-decoration: underline;
	position: relative;
	padding-right: 19px;
}

.arrow-link:after {
	content: "\f054";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 900;
	font-size: 75%;
	position: absolute;
	top: 50%;
	right: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.arrow-link:hover:after,
.arrow-link:focus:after,
.arrow-link:active:after {
	animation: arrowright 0.5s linear 1;
	-webkit-animation-name: arrowright 0.5s linear 1;
}

.arrow-link.sml {
	padding-right: 13px;
}

.arrow-link.sml:after {
	margin-top: 1px;
}

@media (max-width: 767px) {
.arrow-link {
	padding-right: 13px;
}

.arrow-link:after {
	margin-top: 1px;
}
}



/* Video - Box */
.video-box {
	width: 100%;
	text-align: center;
	overflow: hidden;
	margin: 0;
}

.video-box a {
	width: 100%;
	float: left;
	position: relative;
	overflow: hidden;
}

.video-box a img {
	width: 100%;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
}

.video-box a:after {
	content: "";
	width: 100%;
	height: 100%;
	float: left;
	background: url(img/icon-play2.png) no-repeat center center;
	background-size: 16% auto;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.video-box a:hover:after,
.video-box a:focus:after,
.video-box a:active:after {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}



/* Icon - Play */
.icon-play {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
	position: relative;
}

.icon-play:after {
	content: "";
	width: 100%;
	height: 100%;
	float: left;
	background: url(img/icon-play.png) no-repeat center center;
	background-size: 9% auto;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.icon-play img {
	width: 100%;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
}

.icon-play:hover:after,
.icon-play:focus:after,
.icon-play:active:after {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}



/* Heading - Text */
.heading-txt {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	padding-bottom: 100px;
}

.heading-txt h1,
.heading-txt .h1 {
	font-size: 50px;
	line-height: 60px;
}

.heading-txt h2,
.heading-txt .h2 {
	padding-bottom: 10px;
}

.heading-txt .aside {
	width: 100%;
	max-width: 600px;
	float: none;
	display: inline-block;
	vertical-align: top;
}

@media (max-width: 991px) {
.heading-txt h1,
.heading-txt .h1 {
	font-size: 40px;
	line-height: 48px;
}
}

@media (max-width: 767px) {
.heading-txt {
	padding-bottom: 50px;
}

.heading-txt h1,
.heading-txt .h1 {
	font-size: 30px;
	line-height: 38px;
}

.heading-txt h2,
.heading-txt .h2 {
	padding-bottom: 20px;
}
}



/* Heading - Text2 */
.heading-txt2 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	padding-bottom: 80px;
}

.heading-txt2 h1,
.heading-txt2 .h1 {
	font-size: 35px;
	line-height: 45px;
}

.heading-txt2 .aside {
	width: 100%;
	max-width: 850px;
	float: none;
	display: inline-block;
	vertical-align: top;
}

@media (max-width: 767px) {
.heading-txt2 {
	padding-bottom: 40px;
}

.heading-txt2 h1,
.heading-txt2 .h1 {
	font-size: 25px;
	line-height: 33px;
}
}


/* Heading - Text3 */
.heading-txt3 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	text-align: center;
	padding-bottom: 80px;
}

.heading-txt3 h1,
.heading-txt3 .h1 {
	font-size: 30px;
	line-height: 38px;
}

.heading-txt3 .aside {
	width: 100%;
	max-width: 850px;
	float: none;
	display: inline-block;
	vertical-align: top;
}

@media (max-width: 767px) {
.heading-txt3 {
	font-size: 18px;
	line-height: 25px;
	text-align: left;
	padding-bottom: 40px;
}

.heading-txt3 h1,
.heading-txt3 .h1 {
	font-size: 25px;
	line-height: 33px;
}
}



/* Form - Block */
.form-block {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0;
}

.form-block form {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0;
}

.form-block ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 -12px -20px -12px;
}

.form-block ul:last-child {
	padding-bottom: 0;
}

.form-block ul li {
	width: 50%;
	float: left;
	line-height: 1em;
	text-align: left;
	padding: 0 12px 20px 12px;
	margin: 0;
}

.form-block ul li:before {
	display: none;
}

.form-block ul li.full-width {
	width: 100%;
}

.form-block .btm-txt {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	line-height: 20px;
	margin: 30px 0 0 0;
}

.form-block .btn-out {
	width: 100%;
	margin: 30px 0 0 0;
}

.form-block .btn-out .btn,
.form-block .btn-out input[type="button"],
.form-block .btn-out input[type="submit"] {
	margin: 0;
}

input.submit, input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

@media (min-width: 992px) {
.form-block ul li.split-address {
	width: 72%;
}

.form-block ul li.split-unit {
	width: 28%;
}

.form-block ul li.split-email {
	width: 68%;
}

.form-block ul li.split-phone {
	width: 32%;
}
.form-block ul li.split-full {
	width: 100%;
}
}

@media (max-width: 767px) {
.form-block .btm-txt {
	font-size: 12px;
	line-height: 18px;
}
}

@media (max-width: 575px) {
.form-block ul li {
	width: 100%;
}
}
@media (max-width: 320px) {
	.form-split-cont2 .right-cl {
		padding-top:100px !important;
	}
}



/* WPCF7 - Validation */
.wpcf7 {
	width: 100%;
	padding: 0;
	margin: 0;
}

.wpcf7 form span.wpcf7-not-valid-tip {
	width: 100%;
	height: auto;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	color: #e63917;
	line-height: 18px;
	text-align: left;
	padding: 0;
	margin: 10px 0 0 0;
}

.wpcf7 form .wpcf7-response-output {
	width: 100%;
	font-size: 16px;
	color: #e63917;
	line-height: 22px;
	text-align: center;
	border: none;
	padding: 40px 0 0 0;
	margin: 0;
}

.wpcf7 form .wpcf7-not-valid {
	border-color: #e63917;
}

.wpcf7 form .wpcf7-spinner {
	width: 18px;
	height: 18px;
	vertical-align: middle;
	padding: 0;
	margin: 2px 0 -2px 15px;
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
}



/* Plan - Box */
.plan-box {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	background: #FFFFFF;
	box-shadow: 1px 1px 50px -7px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	position: relative;
	padding: 27px 20px 30px 20px;
}

.plan-box .ribbon {
	height: 35px;
	font-weight: 600;
	font-size: 12px;
	color: #343335;
	line-height: 35px;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	background: #f2f2f3;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
	position: absolute;
	top: -35px;
	left: 50%;
	-ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	padding: 0 20px;
}

.plan-box h3 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 34px;
	position: relative;
	padding: 0 60px 0 0;
	margin-bottom: 24px;
}
.plan-box h4 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 34px;
	position: relative;
	padding:0;
	color: #f89c25;
}

.plan-box h3:last-child {
	margin-bottom: 0;
}

.plan-box h3 .rt {
	font-weight: 800;
	color: #f89c25;
	text-align: right;
	position: absolute;
	top: 50%;
	right: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.plan-box ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 -10px -11px 0;
}

.plan-box ul li {
	width: 100%;
	float: left;
	padding: 0 0 0 25px;
	margin: 0 0 11px 0;
}

.plan-box ul li:before {
	content: "\f058";
	font-size: 16px;
	color: #f89c25;
	top: -1px;
}

.plan-box .sub-txt {
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	line-height: 17px;
}

.plan-box .price-label {
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-weight: 800;
	font-size: 35px;
	line-height: 45px;
}

.plan-box .price-label sub {
	font-size: 50%;
	letter-spacing: 0.04em;
	bottom: 0;
}

.plan-box .offer-label {
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-weight: 700;
	font-size: 10px;
	line-height: 14px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	background: #f2f2f3;
	border-radius: 17px;
	position: relative;
	padding: 6px 12px 5px 29px;
}

.plan-box .offer-label:before {
	content: "\f058";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 400;
	font-size: 16px;
	color: #f89c25;
	position: absolute;
	top: 50%;
	left: 5px;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.plan-box .price-wrap {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding-bottom: 25px;
	margin: 0 0 -5px 0;
}

.plan-box .price-wrap:last-child {
	padding-bottom: 0;
}

.plan-box .price-wrap .sub-txt {
	margin: 0 5px 5px 0;
}

.plan-box .price-wrap .price-label {
	margin: 0 5px 5px 0;
}

.plan-box .price-wrap .offer-label {
	margin: 0 -15px 5px 0;
}

.plan-box .top-wrap {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 25px;
}

.plan-box .top-wrap:last-child {
	margin-bottom: 0;
}

.plan-box .btm-wrap {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.plan-box .divider {
	width: 100%;
	height: 1px;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: #dddddd;
	margin-bottom: 32px;
}

@media (max-width: 991px) {
.plan-box h3 {
	font-size: 24px;
	line-height: 30px;
}
}

@media (max-width: 767px) {

.plan-box {
	box-shadow: 1px 1px 30px -7px rgba(0, 0, 0, 0.2);
	padding: 25px 24px 30px 24px;
}

.plan-box h3 {
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 15px;
}

.plan-box ul {
	margin-right: 0;
}

.plan-box .price-label {
	font-size: 25px;
	line-height: 35px;
}

.plan-box .top-wrap {
	margin-bottom: 20px;
}
}



/* Plan Box - Type2 */
.plan-box.type2 .price-wrap .sub-txt {
	width: 50%;
	padding-right: 20px;
	margin: 0 -2px;
}

.plan-box.type2 .price-wrap .price-label {
	width: 50%;
	text-align: right;
	margin: 0 -2px;
}

.plan-box.type2 .top-wrap {
	margin-bottom: 30px;
}



/* Plan Box - Single */
.plan-box-single {
	width: 100%;
	max-width: 620px;
	text-align: center;
	padding: 0 0 56px 0;
	margin: 0 auto;
}

.plan-box-single:last-child {
	padding-bottom: 0;
}

.plan-box-single .plan-box {
	text-align: left;
	margin-bottom: 40px;
}

.plan-box-single .plan-box:last-child {
	margin-bottom: 0;
}

.plan-box-single .btn-out {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin: 0 0 40px 0;
}

.plan-box-single .btn-out:last-child {
	margin-bottom: 0;
}

.plan-box-single .btn-out .btn {
	margin: 0;
}

@media (min-width: 640px) {
.plan-box-single .plan-box {
	padding: 40px 0;
}

.plan-box-single .plan-box h3 {
	font-size: 24px;
	line-height: 30px;
	padding: 0;
	margin: 0 0 10px 0;
}

.plan-box-single .plan-box h3 .rt {
	display: none;
}

.plan-box-single .plan-box .price-wrap {
	padding: 0;
	margin: 0 0 -10px 0;
}

.plan-box-single .plan-box .price-wrap .price-label {
	width: 100%;
	margin: 0 0 10px 0;
}

.plan-box-single .plan-box .price-wrap .offer-label {
	margin: 0 0 10px 0;
}

.plan-box-single .plan-box .top-wrap {
	width: 45%;
	vertical-align: middle;
	text-align: center;
	padding: 0 30px;
	margin: 0 -2px;
}

.plan-box-single .plan-box .btm-wrap {
	width: 55%;
	vertical-align: middle;
	padding: 0 42px 0 42px;
	margin: 0 -2px;
}

.plan-box-single .plan-box .divider {
	width: 1px;
	height: 100%;
	background: none;
	position: absolute;
	top: 0;
	left: 45%;
	padding: 0;
	margin: 0;
}

.plan-box-single .plan-box .divider:before,
.plan-box-single .plan-box .divider:after {
	content: "";
	width: 100%;
	height: 50%;
	background: #dddddd;
	position: absolute;
	left: 0;
}

.plan-box-single .plan-box .divider:before {
	top: 35px;
}

.plan-box-single .plan-box .divider:after {
	bottom: 35px;
}

.plan-box-single .btn-out .btn-mobile {
	display: none;
}

.plan-box.type2 h3 {
	margin-bottom: 15px;
}

.plan-box.type2 .price-wrap .sub-txt {
	width: 100%;
	max-width: 150px;
	padding: 0;
	margin: 0 auto;
	margin-bottom: 15px;
}

.plan-box.type2 .price-wrap .sub-txt:last-child {
	margin-bottom: 0;
}

.plan-box.type2 .price-wrap .price-label {
	width: 100%;
	text-align: center;
	padding: 0;
	margin: 0;
}

.plan-box.type2 .top-wrap {
	margin-bottom: 0;
}
}

@media (max-width: 767px) {
.plan-box-single {
	padding-bottom: 40px;
}
}

@media (max-width: 639px) {
.plan-box-single .plan-box {
	padding: 35px;
}

.plan-box-single .plan-box h3 {
	font-size: 28px;
	line-height: 34px;
	padding: 0 60px 0 0;
	margin-bottom: 24px;
}

.plan-box-single .plan-box .price-wrap .price-label {
	font-size: 35px;
	line-height: 45px;
}

.plan-box-single .btn-out .btn-desktop {
	display: none;
}

.plan-box-single .plan-box.type2 h3 {
	padding-right: 0;
}
}



/* Plan - Box2 */
.plan-box2 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-weight: 600;
	font-size: 20px;
	line-height: 26px;
	text-align: center;
	background: #FFFFFF;
	box-shadow: 1px 1px 50px -7px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	margin: 0 0 50px 0;
}

.plan-box2:last-child {
	margin-bottom: 0;
}

.plan-box2 .bx-title {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-weight: 700;
	font-size: 18px;
	color: #ffffff;
	line-height: 22px;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	background: #466c8e;
	padding: 11px 20px 10px 20px;
}

.plan-box2 .box-wrap {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 8px 24px 15px;
}

.plan-box2 .name-wrap {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 6px;
}

.plan-box2 .name-wrap:last-child {
	margin-bottom: 0;
}

.plan-box2 .plan-name {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 14px;
}

.plan-box2 .plan-name:last-child {
	margin-bottom: 0;
}

.plan-box2 .plan-price {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-weight: 800;
	font-size: 35px;
	line-height: 45px;
	margin-bottom: 10px;
}

.plan-box2 .plan-price:last-child {
	margin-bottom: 0;
}

.plan-box2 .plan-price sub {
	font-size: 50%;
	letter-spacing: 0.04em;
	bottom: 0;
}

.plan-box2 .offer-wrap {
	float: none;
	display: inline-block;
	vertical-align: top;
	margin: 0 -3px -6px -3px;
}

.plan-box2 .plan-offer,
.plan-box2 .plan-promocode {
	float: none;
	display: inline-block;
	vertical-align: top;
	font-weight: 700;
	font-size: 10px;
	line-height: 14px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	background: #f2f2f3;
	border-radius: 17px;
	position: relative;
	padding: 6px 12px 5px 29px;
	margin: 0 3px 6px 3px;
}

.plan-box2 .plan-offer:before,
.plan-box2 .plan-promocode:before {
	content: "\f058";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 400;
	font-size: 16px;
	color: #f89c25;
	position: absolute;
	top: 50%;
	left: 5px;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

@media (max-width: 991px) {
.plan-box2 {
	border-radius: 10px 10px 0 0;
}

.plan-box2 .plan-name {
	width: auto;
	vertical-align: middle;
	position: relative;
	padding: 0 20px;
	margin: 0;
}

.plan-box2 .plan-name:after {
	content: "";
	width: 6px;
	height: 6px;
	background: #000;
	border-radius: 900px;
	position: absolute;
	top: 50%;
	right: -3px;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.plan-box2 .plan-price {
	width: auto;
	vertical-align: middle;
	padding: 0 20px;
	margin: 0;
}
}

@media (max-width: 767px) {
.plan-box2 .bx-title {
	font-size: 14px;
	line-height: 18px;
	padding: 6px 20px 4px 20px;
}

.plan-box2 .plan-name {
	/* font-weight: 800; */
	font-size: 18px;
	line-height: 25px;
	padding: 0 15px;
}

.plan-box2 .offer-box li {
	margin-bottom: -2px;
}

.plan-box2 .plan-name:after {
	width: 4px;
	height: 4px;
	right: -2px;
}

.plan-box2 .plan-price {
	/* font-weight: 600; */
	font-size: 18px;
	line-height: 25px;
	padding: 0 15px;
}


}



/* Hero - Main */
@media (min-width: 992px) {
.hero-main-cont .elementor-element-populated {
	max-width: 590px;
	position: relative;
	z-index: 1;
}

.hero-main-cont .elementor-element-populated:before {
	content: "";
	width: 10000px;
	height: 100%;
	background: #7bced4;
	position: absolute;
	top: 0;
	right: 100%;
	margin-right: -100px;
	z-index: -1;
}

.hero-main-cont .elementor-element-populated:after {
	content: "";
	width: 100%;
	height: 100%;
	background: url(img/hero-shapes2-dektop.svg) no-repeat right center;
	background-size: auto 100%;
	position: absolute;
	top: 0;
	right: -90px;
	z-index: -1;
}
}

@media (max-width: 991px) {
.hero-main-cont {
	background: #7bced4;
	z-index: 1;
}

.hero-main-cont .elementor-element-populated {
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: -13%;
}

.hero-main-img {
	position: relative;
}

.hero-main-img:after {
	content: "";
	width: 100%;
	height: 36%;
	background: url(img/hero-shapes2-mobile.svg) no-repeat bottom center;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	right: 0;
}
}

@media (max-width: 767px) {
.hero-main-cont .elementor-element-populated {
	max-width: 450px;
	margin-bottom: -10%;
}
}



/* Hero - Inner */
@media (min-width: 992px) {
.hero-inner-cont .elementor-element-populated, 
.hero-inner-cont-biz .elementor-element-populated {
	max-width: 500px;
	position: relative;
	z-index: 1;
}

.hero-inner-cont .elementor-element-populated:before, 
.hero-inner-cont-biz .elementor-element-populated:before {
	content: "";
	width: 10000px;
	height: 100%;
	background: #7dadc8;
	position: absolute;
	top: 0;
	right: 100%;
	margin-right: -100px;
	z-index: -1;
}

.hero-inner-cont-biz .elementor-element-populated:before {
	background: #58186C;
}

.hero-inner-cont .elementor-element-populated:after {
	content: "";
	width: 100%;
	height: 100%;
	background: url(img/hero-shapes-dektop.svg) no-repeat right center;
	background-size: auto 100%;
	position: absolute;
	top: 0;
	right: -90px;
	z-index: -1;
}
.hero-inner-cont-biz .elementor-element-populated:after {
	content: "";
	width: 100%;
	height: 100%;
	background: url(img/hero-shapes-purple-desktop.svg) no-repeat right center;
	background-size: auto 100%;
	position: absolute;
	top: 0;
	right: -90px;
	z-index: -1;
}
}

@media (max-width: 991px) {
.hero-inner-cont {
	background: #7dadc8;
	z-index: 1;
}
.hero-inner-cont-biz {
	background: #58186C;
	z-index: 1;
}

.hero-inner-cont .elementor-element-populated, 
.hero-inner-cont-biz .elementor-element-populated {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: -10%;
}

.hero-inner-img, 
.hero-inner-img-biz {
	position: relative;
}

.hero-inner-img:after, 
.hero-inner-img-biz:after {
	content: "";
	width: 100%;
	height: 32%;
	background: url(img/hero-shapes-mobile.svg) no-repeat bottom center;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	right: 0;
}

.hero-inner-img-biz:after {
	background: url(img/hero-shapes-purple-mobile.svg) no-repeat bottom center;
	background-size: 100% auto;
}
}

@media (max-width: 767px) {
.hero-inner-cont .elementor-element-populated {
	max-width: 450px;
	margin-bottom: -6%;
}
}


/* Hero - Inner2-b */
@media (min-width: 992px) {
	.hero-inner2-cont-b .elementor-element-populated {
		max-width: 590px;
		position: relative;
		z-index: 1;
	}
	
	.hero-inner2-cont-b .elementor-element-populated:before {
		content: "";
		width: 10000px;
		height: 100%;
		background: #70C7CE;
		position: absolute;
		top: 0;
		right: 100%;
		margin-right: -100px;
		z-index: -1;
	}
	
	.hero-inner2-cont-b .elementor-element-populated:after {
		content: "";
		width: 100%;
		height: 100%;
		background: url(img/hero-shapes4-dektop.svg) no-repeat right center;
		background-size: auto 100%;
		position: absolute;
		top: 0;
		right: -90px;
		z-index: -1;
	}
	}
	
	@media (max-width: 991px) {
	.hero-inner2-cont-b {
		background: #70C7CE;
		z-index: 1;
	}
	
	.hero-inner2-cont-b .elementor-element-populated {
		max-width: 650px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: -13%;
	}

	.hero-inner2-img-b {
		position: relative;
	}
	
	.hero-inner2-img-b:after {
		content: "";
		width: 100%;
		height: 36%;
		background: url(img/hero-shapes4-mobile.svg) no-repeat bottom center;
		background-size: 100% auto;
		position: absolute;
		top: 0;
		right: 0;
	}
	
	}
	
	@media (max-width: 767px) {
	.hero-inner2-cont-b .elementor-element-populated {
		max-width: 450px;
		margin-bottom: -10%;
	}
	}


/* Hero - Inner2 */
@media (min-width: 992px) {
.hero-inner2-cont .elementor-element-populated {
	max-width: 590px;
	position: relative;
	z-index: 1;
}

.hero-inner2-cont .elementor-element-populated:before {
	content: "";
	width: 10000px;
	height: 100%;
	background: #466C8E;
	position: absolute;
	top: 0;
	right: 100%;
	margin-right: -100px;
	z-index: -1;
}

.hero-inner2-cont .elementor-element-populated:after {
	content: "";
	width: 100%;
	height: 100%;
	background: url(img/hero-shapes3-dektop.svg) no-repeat right center;
	background-size: auto 100%;
	position: absolute;
	top: 0;
	right: -90px;
	z-index: -1;
}
}

@media (max-width: 991px) {
.hero-inner2-cont {
	background: #466C8E;
	z-index: 1;
}

.hero-inner2-cont .elementor-element-populated {
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: -13%;
}

.hero-inner2-img {
	position: relative;
}

.hero-inner2-img:after {
	content: "";
	width: 100%;
	height: 36%;
	background: url(img/hero-shapes3-mobile.svg) no-repeat bottom center;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	right: 0;
}
}

@media (max-width: 767px) {
.hero-inner2-cont .elementor-element-populated {
	max-width: 450px;
	margin-bottom: -10%;
}
}



/* Find Location - Form Wrap */
.find-location-form-wrap {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	position: relative;
}

.find-location-form-wrap ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
}

.find-location-form-wrap ul li {
	width: 100%;
	float: left;
	line-height: 1em;
	text-align: left;
	padding: 0;
	margin: 0;
}

.find-location-form-wrap ul li:before {
	display: none;
}

.find-location-form-wrap ul li.hide {
	display: none;
}

@media (min-width: 768px) {
.find-location-form-wrap {
	height: 60px;
	background: #ffffff url(img/marker.svg) no-repeat left center;
	background-size: 33px auto;
	background-position: top 13px left 13px;
	border: 1px solid #d9d9d9;
	border-radius: 360px;
}

.find-location-form-wrap select,
.find-location-form-wrap textarea,
.find-location-form-wrap input[type="text"],
.find-location-form-wrap input[type="password"],
.find-location-form-wrap input[type="datetime"],
.find-location-form-wrap input[type="datetime-local"],
.find-location-form-wrap input[type="date"],
.find-location-form-wrap input[type="month"],
.find-location-form-wrap input[type="time"],
.find-location-form-wrap input[type="week"],
.find-location-form-wrap input[type="number"],
.find-location-form-wrap input[type="email"],
.find-location-form-wrap input[type="url"],
.find-location-form-wrap input[type="search"],
.find-location-form-wrap input[type="tel"],
.find-location-form-wrap input[type="color"],
.find-location-form-wrap .uneditable-input {
	height: 58px;
	font-weight: 600;
	font-size: 18px;
	color: #4d4f53;
	line-height: 25px;
	background: none;
	border: none;
	box-shadow: none;
	padding: 20px 255px 20px 56px;
}

.find-location-form-wrap .btn,
.find-location-form-wrap .button,
.find-location-form-wrap input[type="button"],
.find-location-form-wrap input[type="submit"] {
	width: 69px;
	height: 60px;
	float: right;
	text-indent: -99999px;
	border-radius: 360px;
	background: #f89c25 url(img/search-white.svg) no-repeat center center;
	background-size: 29px auto;
	padding: 0;
	margin: 0;
}

.find-location-form-wrap .btn:hover,
.find-location-form-wrap .btn:focus,
.find-location-form-wrap .btn:active,
.find-location-form-wrap .btn:active:focus,
.find-location-form-wrap .btn.active,
.find-location-form-wrap .btn.active:focus,
.find-location-form-wrap input[type="button"]:hover,
.find-location-form-wrap input[type="button"]:focus,
.find-location-form-wrap input[type="button"]:active,
.find-location-form-wrap input[type="button"]:active:focus,
.find-location-form-wrap input[type="button"].active,
.find-location-form-wrap input[type="button"].active:focus,
.find-location-form-wrap input[type="submit"]:hover,
.find-location-form-wrap input[type="submit"]:focus,
.find-location-form-wrap input[type="submit"]:active,
.find-location-form-wrap input[type="submit"]:active:focus,
.find-location-form-wrap input[type="submit"].active,
.find-location-form-wrap input[type="submit"].active:focus,
.find-location-form-wrap .btn:not(:disabled):not(.disabled).active {
	background: #df8510 url(img/search-white.svg) no-repeat center center;
	background-size: 29px auto;
}

.find-location-form-wrap .btn-out {
	width: auto;
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	margin: 0;
}


.find-location-form-wrap ul li.unit {
	width: 225px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.find-location-form-wrap ul li.unit input {
	height: 60px;
	background: #fffbf6;
	border: 1px solid #f89c25;
	border-radius: 0 900px 900px 0;
	padding-left: 20px;
	padding-right: 80px;
}
}

@media (max-width: 767px) {
.find-location-form-wrap select,
.find-location-form-wrap textarea,
.find-location-form-wrap input[type="text"],
.find-location-form-wrap input[type="password"],
.find-location-form-wrap input[type="datetime"],
.find-location-form-wrap input[type="datetime-local"],
.find-location-form-wrap input[type="date"],
.find-location-form-wrap input[type="month"],
.find-location-form-wrap input[type="time"],
.find-location-form-wrap input[type="week"],
.find-location-form-wrap input[type="number"],
.find-location-form-wrap input[type="email"],
.find-location-form-wrap input[type="url"],
.find-location-form-wrap input[type="search"],
.find-location-form-wrap input[type="tel"],
.find-location-form-wrap input[type="color"],
.find-location-form-wrap .uneditable-input {
	border-radius: 360px;
	padding-left: 42px;
}

.find-location-form-wrap .btn,
.find-location-form-wrap .button,
.find-location-form-wrap input[type="button"],
.find-location-form-wrap input[type="submit"] {
	width: 100%;
	max-width: 100px;
	height: 40px;
	border-radius: 360px;
	background: #f89c25 url(img/search-white.svg) no-repeat center center;
	background-size: 22px auto;
	text-indent: -99999px;
	padding: 0;
	margin: 0;
	position: absolute;
    top: 0;
    height: 50px;
    right: 0;
	width: 50px;
}

.find-location-form-wrap .btn:hover,
.find-location-form-wrap .btn:focus,
.find-location-form-wrap .btn:active,
.find-location-form-wrap .btn:active:focus,
.find-location-form-wrap .btn.active,
.find-location-form-wrap .btn.active:focus,
.find-location-form-wrap input[type="button"]:hover,
.find-location-form-wrap input[type="button"]:focus,
.find-location-form-wrap input[type="button"]:active,
.find-location-form-wrap input[type="button"]:active:focus,
.find-location-form-wrap input[type="button"].active,
.find-location-form-wrap input[type="button"].active:focus,
.find-location-form-wrap input[type="submit"]:hover,
.find-location-form-wrap input[type="submit"]:focus,
.find-location-form-wrap input[type="submit"]:active,
.find-location-form-wrap input[type="submit"]:active:focus,
.find-location-form-wrap input[type="submit"].active,
.find-location-form-wrap input[type="submit"].active:focus,
.find-location-form-wrap .btn:not(:disabled):not(.disabled).active {
	background: #df8510 url(img/search-white.svg) no-repeat center center;
	background-size: 22px auto;
}

.find-location-form-wrap .btn-out {
	width: 100%;
	padding: 0;
	margin: 10px 0 0 0;
}

.find-location-form-wrap ul {
	margin: 0 0 -10px 0;
}

.find-location-form-wrap ul li {
	padding: 0 0 10px 0;
}

.find-location-form-wrap ul li.address input {
	background: #ffffff url(img/marker.svg) no-repeat left center;
	background-size: 24px auto;
	background-position: top 13px left 13px;
}

.find-location-form-wrap ul li.unit input {
	background: #ffffff url(img/unit-point.png) no-repeat left center;
	background-size: 9px auto;
	background-position: top 20px left 20px;
}
}



/* Find Location - Form */
.find-location-form {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	background: #f2f2f3;
	padding: 24px 0;
}

@media (max-width: 767px) {
.find-location-form {
	padding: 15px 0;
}
}



/* FAQ Tab - Panels */
.faq-tab-panels {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.faq-tab-panels .faq-tab-links {
	width: 220px;
	float: left;
	position: relative;
	z-index: 1;
	margin: 0 -220px 0 0;
}

.faq-tab-panels .faq-tab-links .item {
	width: 100%;
	float: left;
	margin-bottom: 20px;
}

.faq-tab-panels .faq-tab-links .item:last-child {
	margin-bottom: 0;
}

.faq-tab-panels .faq-tab-links .item a {
	float: left;
	font-weight: 400;
	font-size: 20px;
	color: #7a7a7b;
	line-height: 25px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	padding: 0 0 4px 0;
}

.faq-tab-panels .faq-tab-links .item a:after {
	content: "";
	width: 100%;
	height: 1px;
	float: left;
	background: #343335;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	bottom: 0;
	left: -100%;
	opacity: 0;
}

.faq-tab-panels .faq-tab-links .item a:hover,
.faq-tab-panels .faq-tab-links .item a:focus {
	color: #343335;
}

.faq-tab-panels .faq-tab-links .item.active a {
	font-weight: 600;
	color: #343335;
}

.faq-tab-panels .faq-tab-links .item.active a:after {
	left: 0;
	opacity: 1;
}

.faq-tab-panels .faq-tab-cont {
	width: 100%;
	float: left;
	padding: 0 0 0 250px;
}

.faq-tab-panels .faq-tab-cont .tab-panel {
	display: none;
}

.faq-tab-panels .faq-accord-row {
	width: 100%;
	float: left;
	position: relative;
	overflow: hidden;
	padding: 0 30px;
}

.faq-tab-panels .faq-accord-row:after {
	content: "";
	width: 100%;
	height: 1px;
	background: #dddddd;
	position: absolute;
	bottom: 0;
	left: 30px;
}

.faq-tab-panels .faq-accord-row:first-child {
	margin-top: -29px;
}

.faq-tab-panels .faq-accord-row .faq-accord-title {
	width: 100%;
	float: left;
	font-family: "Lora", serif;
	font-weight: 500;
	font-size: 30px;
	line-height: 38px;
	position: relative;
	cursor: pointer;
	padding: 23px 0;
}

.faq-tab-panels .faq-accord-row .faq-accord-title:before {
	content: "\f067";
	font-family: "Font Awesome\ 5 Pro";
	font-size: 18px;
	line-height: 1em;
	position: absolute;
	top: 50%;
	left: -30px;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	margin-top: 1px;
}

.faq-tab-panels .faq-accord-row .faq-accord-title.active:before {
	content: "\f068";
}

.faq-tab-panels .faq-accord-row .faq-accord-content {
	width: 100%;
	float: left;
	display: none;
	padding: 0 0 40px 0;
}

@media (max-width: 991px) {
.faq-tab-panels .faq-tab-links .item a {
	font-size: 18px;
	line-height: 23px;
}

.faq-tab-panels .faq-accord-row .faq-accord-title {
	font-size: 26px;
	line-height: 34px;
}
}

@media (max-width: 767px) {
.faq-tab-panels .faq-tab-links {
	width: 100%;
	margin: 0 0 70px 0;
}

.faq-tab-panels .faq-tab-links .item {
	text-align: center;
	margin-bottom: 14px;
}

.faq-tab-panels .faq-tab-links .item a {
	float: none;
	display: inline-block;
	vertical-align: top;
	font-size: 18px;
	line-height: 23px;
	padding: 0 0 2px 0;
}

.faq-tab-panels .faq-tab-cont {
	padding: 0;
}

.faq-tab-panels .faq-accord-row {
	padding: 0;
}

.faq-tab-panels .faq-accord-row:before,
.faq-tab-panels .faq-accord-row:after {
	left: 0;
}

.faq-tab-panels .faq-accord-row .faq-accord-title {
	font-size: 25px;
	line-height: 33px;
}

.faq-tab-panels .faq-accord-row .faq-accord-title:before {
	font-size: 18px;
	top: 50%;
	left: auto;
	right: 0;
	margin-top: 1px;
}

.faq-tab-panels .faq-accord-row .faq-accord-content {
	padding: 0 0 30px 0;
}
}



/* FAQ2 Tab - Panels */
.faq2-tab-panels {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.faq2-tab-panels .read-more {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin: 33px 0 0 0;
}

.faq2-tab-panels .read-more a {
	font-weight: 700;
	color: #343335;
	text-decoration: underline;
}

.faq2-tab-panels .read-more a:hover,
.faq2-tab-panels .read-more a:focus,
.faq2-tab-panels .read-more a:active {
	color: #f89c25;
	text-decoration: underline;
}

@media (min-width: 768px) {
.faq2-tab-panels h2,
.faq2-tab-panels .h2 {
	font-size: 30px;
	line-height: 38px;
	padding: 0 0 26px 0;
}

.faq2-tab-panels .faq2-tab-links {
	width: 220px;
	float: left;
	position: relative;
	z-index: 1;
	margin: 0 -220px 0 0;
}

.faq2-tab-panels .faq2-tab-links .item {
	width: 100%;
	float: left;
	margin-bottom: 24px;
}

.faq2-tab-panels .faq2-tab-links .item:last-child {
	margin-bottom: 0;
}

.faq2-tab-panels .faq2-tab-links .item a {
	float: left;
	font-weight: 700;
	font-size: 16px;
	color: #7a7a7b;
	line-height: 20px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	padding: 0 0 4px 0;
}

.faq2-tab-panels .faq2-tab-links .item a:after {
	content: "";
	width: 100%;
	height: 1px;
	float: left;
	background: #f89c25;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	bottom: 0;
	left: -100%;
	opacity: 0;
}

.faq2-tab-panels .faq2-tab-links .item a:hover,
.faq2-tab-panels .faq2-tab-links .item a:focus {
	color: #f89c25;
}

.faq2-tab-panels .faq2-tab-links .item.active a {
	color: #f89c25;
}

.faq2-tab-panels .faq2-tab-links .item.active a:after {
	left: 0;
	opacity: 1;
}

.faq2-tab-panels .faq2-tab-cont {
	width: 100%;
	float: left;
	padding: 0 0 0 250px;
}

.faq2-tab-panels .faq2-tab-cont .tab-panel .faq2-accord-title {
	width: 100%;
	float: left;
	font-family: "Lora", serif;
	font-weight: 500;
	font-size: 30px;
	line-height: 38px;
	pointer-events: none;
	cursor: default;
	padding: 0 0 23px 0;
}

.faq2-tab-panels .faq2-tab-cont .tab-panel {
	font-weight: 600;
	display: none;
}

.faq2-tab-panels .faq2-accord-row:nth-child(1) .faq2-accord-content {
	display: block !important;
}

.faq2-tab-panels .read-more a .tf {
	display: none;
}
}

@media (min-width: 768px) and (max-width: 991px) {
.faq2-tab-panels h2,
.faq2-tab-panels .h2 {
	font-size: 26px;
	line-height: 34px;
}

.faq2-tab-panels .faq2-tab-cont .tab-panel .faq2-accord-title {
	font-size: 26px;
	line-height: 34px;
}
}

@media (max-width: 767px) {
.faq2-tab-panels h2,
.faq2-tab-panels .h2 {
	font-size: 25px;
	line-height: 33px;
	padding-bottom: 23px;
}

.faq2-tab-panels .faq2-tab-links .items-out {
	display: none;
}

.faq2-tab-panels .faq2-accord-row {
	width: 100%;
	float: left;
	display: block !important;
	border-bottom: 1px solid #dddddd;
	position: relative;
	overflow: hidden;
}

.faq2-tab-panels .faq2-accord-row:first-child {
	border-top: 1px solid #dddddd;
}

.faq2-tab-panels .faq2-accord-row .faq2-accord-title {
	width: 100%;
	float: left;
	font-family: "Lora", serif;
	font-weight: 500;
	font-size: 25px;
	line-height: 33px;
	position: relative;
	cursor: pointer;
	padding: 23px 0;
}

.faq2-tab-panels .faq2-accord-row .faq2-accord-title:before {
	content: "\f067";
	font-family: "Font Awesome\ 5 Pro";
	font-size: 18px;
	line-height: 1em;
	position: absolute;
	top: 50%;
	right: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.faq2-tab-panels .faq2-accord-row .faq2-accord-title.active:before {
	content: "\f068";
}

.faq2-tab-panels .faq2-accord-row .faq2-accord-content {
	width: 100%;
	float: left;
	display: none;
	padding: 0 0 30px 0;
}
}



/* Video Tab - Panels */
.video-tab-panels {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.video-tab-panels .video-tab-links {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	padding-bottom: 50px;
}

.video-tab-panels .video-tab-links:last-child {
	padding-bottom: 0;
}

.video-tab-panels .video-tab-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.video-tab-panels .video-tab-cont .tab-panel {
	display: none;
}

.video-tab-panels .video-tab-cont .figure {
	width: 100%;
	text-align: center;
	overflow: hidden;
	margin: 0;
}

.video-tab-panels .video-tab-cont .figure img {
	width: 100%;
}

@media (min-width: 768px) {
.video-tab-panels .video-tab-links {
	margin: 0 0 -20px 0;
}

.video-tab-panels .video-tab-links .video-tab-title {
	display: none;
}

.video-tab-panels .video-tab-links .item {
	float: none;
	display: inline-block;
	vertical-align: top;
	margin: 0 20px 20px 20px;
}

.video-tab-panels .video-tab-links .item:last-child {
	margin: 0;
}

.video-tab-panels .video-tab-links .item a {
	float: left;
	font-weight: 600;
	font-size: 20px;
	color: #7a7a7b;
	line-height: 25px;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	padding: 0;
}

.video-tab-panels .video-tab-links .item a:after {
	content: "";
	width: 0;
	height: 1px;
	float: left;
	background: #f89c25;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	bottom: 0;
	left: 50%;
	opacity: 0;
}

.video-tab-panels .video-tab-links .item a:hover,
.video-tab-panels .video-tab-links .item a:focus {
	color: #f89c25;
}

.video-tab-panels .video-tab-links .item.active a {
	font-weight: 600;
	color: #f89c25;
}

.video-tab-panels .video-tab-links .item.active a:after {
	width: 100%;
	left: 0;
	opacity: 1;
}

.video-tab-panels .video-tab-links .video-tab-items {
	height: auto!important;
	display: block!important;
}
}

@media (max-width: 767px) {
.video-tab-panels {
	text-align: center;
}

.video-tab-panels .video-tab-links {
	width: auto;
	position: relative;
	padding: 0;
	margin-bottom: 35px;
}

.video-tab-panels .video-tab-links:last-child {
	margin-bottom: 0;
}

.video-tab-panels .video-tab-links .video-tab-title {
	height: 40px;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-weight: 600;
	font-size: 18px;
	color: #343335;
	line-height: 40px;
	text-align: left;
	text-decoration: none;
	white-space: nowrap;
	text-overflow: ellipsis;
	cursor: pointer;
	box-shadow: inset #343335 0 0 0 1px;
	position: relative;
	overflow: hidden;
	padding: 0 45px 0 20px;
}

.video-tab-panels .video-tab-links .video-tab-title:after {
	content: "\f078";
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	border: none;
	position: absolute;
	top: 50%;
	right: 20px;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	margin: -1px 0 1px 0;
}

.video-tab-panels .video-tab-links .video-tab-title.active:after {
	content: "\f077";
}

.video-tab-panels .video-tab-links .video-tab-items {
	width: 100%;
	float: left;
	background: #ffffff;
	box-shadow: inset #343335 0 0 0 1px;
	overflow: hidden;
	position: absolute;
	top: 100%;
	left: 0;
	padding: 20px;
	z-index: 3;
	display: none;
}

.video-tab-panels .video-tab-links .item {
	width: 100%;
	float: left;
	margin: 0 0 15px 0;
}

.video-tab-panels .video-tab-links .item:last-child {
	margin: 0;
}

.video-tab-panels .video-tab-links .item a {
	float: left;
	font-weight: 600;
	font-size: 18px;
	color: #343335;
	line-height: 24px;
	text-decoration: none;
}

.video-tab-panels .video-tab-links .item a:hover,
.video-tab-panels .video-tab-links .item a:focus,
.video-tab-panels .video-tab-links .item.active a {
	color: #f89c25;
	text-decoration: underline;
}
}



/* Custom Order - List */
.custom-order-list {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	counter-reset: item;
	padding: 0;
	margin: 0 0 -25px 0;
}

.custom-order-list .list-item {
	width: 100%;
	float: left;
	counter-increment: item;
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	position: relative;
	padding: 0 0 0 75px;
	margin: 0 0 25px 0;
}

.custom-order-list .list-item:before {
	width: 50px;
	height: 50px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	content: counter(item);
	font-weight: 700;
	font-size: 25px;
	color: #ffffff;
	line-height: 1em;
	background: #466c8e;
	border-radius: 900px;
	position: absolute;
	top: 2px;
	left: 0;
	padding: 0;
	margin: 0;
}

.custom-order-list .list-item h3 {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 30px;
	padding-bottom: 8px;
}

.custom-order-list .list-item h3:last-child {
	padding-bottom: 0;
}

@media (max-width: 991px) {
.custom-order-list .list-item {
	padding: 0 0 0 65px;
}

.custom-order-list .list-item:before {
	width: 40px;
	height: 40px;
	font-size: 22px;
	top: 2px;
}

.custom-order-list .list-item h3 {
	font-size: 22px;
	line-height: 28px;
}
}

@media (max-width: 767px) {
.custom-order-list .list-item {
	font-size: 14px;
	line-height: 20px;
	padding: 0 0 0 51px;
}

.custom-order-list .list-item:before {
	width: 34px;
	height: 34px;
	font-size: 18px;
	top: 1px;
}

.custom-order-list .list-item h3 {
	font-size: 18px;
	line-height: 24px;
}
}


/* Custom Order - List2 */
.custom-order-list2 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	counter-reset: item;
	padding: 0;
	margin: 0 0 -15px 0;
}

.custom-order-list2 .list-item {
	width: 100%;
	float: left;
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	position: relative;
	margin: 0 0 15px 0;
}

.custom-order-list2 .list-item h3 {
	min-height: 34px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	counter-increment: item;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	position: relative;
	padding: 0 0 0 42px;
	margin: 0 0 5px 0;
}

.custom-order-list2 .list-item h3:before {
	width: 34px;
	height: 34px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	content: counter(item);
	font-weight: 700;
	font-size: 18px;
	color: #ffffff;
	line-height: 1em;
	background: #466c8e;
	border-radius: 900px;
	position: absolute;
	top: 50%;
	left: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.custom-order-list2 .list-item h3:last-child {
	margin-bottom: 0;
}


/* Find Plan Form Wrap */
.find-plan-form-wrap {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
}

.find-plan-form-wrap ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 -12px -20px -12px;
}

.find-plan-form-wrap ul:last-child {
	padding-bottom: 0;
}

.find-plan-form-wrap ul li {
	width: 50%;
	float: left;
	line-height: 1em;
	text-align: left;
	padding: 0 12px 20px 12px;
	margin: 0;
}

.find-plan-form-wrap ul li:before {
	display: none;
}

.find-plan-form-wrap ul li.address {
	width: 70%;
}

.find-plan-form-wrap ul li.unit {
	width: 30%;
}

.find-plan-form-wrap ul li .wrap {
	width: 100%;
	float: left;
	position: relative;
}

.find-plan-form-wrap .btn-out {
	width: 100%;
	text-align: center;
	margin: 30px 0 0 0;
}

.find-plan-form-wrap .btn-out .btn,
.find-plan-form-wrap .btn-out input[type="button"],
.find-plan-form-wrap .btn-out input[type="submit"] {
	margin: 0;
}

@media (max-width: 767px) {
.find-plan-form-wrap ul li.address {
	width: 100%;
}

.find-plan-form-wrap ul li.unit {
	width: 100%;
}

.find-plan-form-wrap .btn-out {
	margin: 25px 0 0 0;
}
}



/* Find Plan Form */
.find-plan-form {
	width: 100%;
	background: #fff7ec;
	overflow: hidden;
	padding: 80px 0;
}

.find-plan-form .heading-txt {
	padding-bottom: 40px;
}

@media (max-width: 767px) {
.find-plan-form {
	padding: 60px 0;
}

.find-plan-form .heading-txt {
	text-align: left;
	padding-bottom: 25px;
}
}


/* List Style - None */
.location-list-items .elementor-widget-container ul,
.location-list-items .elementor-widget-container ol {
	padding: 0;
	margin: 0 0 -12px 0;
}

.location-list-items .elementor-widget-container li {
	font-size: 18px;
	line-height: 22px;
	padding: 0;
	margin: 0 0 12px 0;
}

.location-list-items .elementor-widget-container li:before {
	display: none;
}

.location-list-items .elementor-widget-container li a {
	color: #343335;
	text-decoration: none;
}

.location-list-items .elementor-widget-container li a:hover,
.location-list-items .elementor-widget-container li a:focus,
.location-list-items .elementor-widget-container li a:active {
	color: #df8510;
	text-decoration: underline;
}

@media (max-width: 991px) {
.location-list-items .elementor-widget-container ul,
.location-list-items .elementor-widget-container ol {
	margin: 0 0 -10px 0;
}

.location-list-items .elementor-widget-container li {
	font-size: 16px;
	line-height: 20px;
	margin: 0 0 10px 0;
}
}

@media (max-width: 767px) {
.location-list-items .elementor-widget-container ul,
.location-list-items .elementor-widget-container ol {
	margin: 0 0 -9px 0;
}

.location-list-items .elementor-widget-container li {
	font-size: 14px;
	line-height: 18px;
	margin: 0 0 9px 0;
}
}



/* Resources - Types */
.resources-types {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	position: relative;
	padding: 0;
	margin-bottom: 55px;
}

.resources-types:last-child {
	margin-bottom: 0;
}

.resources-types .resources-types-wrap {
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

.resources-types .resources-type-title {
	display: block;
	float: left;
	clear: left;
	font-weight: 600;
	font-size: 25px;
	color: #343335;
	line-height: 25px;
	text-decoration: none;
	white-space: nowrap;
	text-overflow: ellipsis;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	padding: 0 30px 0 0;
}

.resources-types .resources-type-title:after {
	content: "\f078";
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	font-size: 80%;
	position: absolute;
	top: 50%;
	right: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	margin: 1px 0 -1px 0;
}

.resources-types .resources-type-title.active:after {
	content: "\f077";
}

.resources-types .resources-type-items {
	display: none;
	float: left;
	clear: left;
	padding: 25px 0 0 0;
}

.resources-types .resources-type-items ul {
	padding: 0;
	margin: 0;
}

.resources-types .resources-type-items ul li {
	padding: 0;
	margin: 0 0 25px 0;
}

.resources-types .resources-type-items ul li:last-child {
	margin: 0;
}

.resources-types .resources-type-items ul li:before {
	display: none;
}

.resources-types .resources-type-items ul li a {
	font-weight: 600;
	font-size: 25px;
	color: #343335;
	line-height: 25px;
	text-decoration: none;
}

.resources-types .resources-type-items ul li a:hover,
.resources-types .resources-type-items ul li a:focus,
.resources-types .resources-type-items ul li.active a {
	color: #f89c25;
	text-decoration: underline;
}

@media (max-width: 767px) {
.resources-types {
	text-align: left;
	margin-bottom: 40px;
}

.resources-types .resources-types-wrap {
	width: 100%;
}

.resources-types .resources-type-title {
	width: 100%;
	height: 44px;
	float: left;
	font-size: 18px;
	line-height: 44px;
	border-bottom: 1px solid #dddddd;
	padding: 0 30px 0 0;
	margin-top: -15px;
}

.resources-types .resources-type-title:after {
	font-size: 100%;
	margin: 1px 0 -1px 0;
}

.resources-types .resources-type-items ul li {
	margin: 0 0 17px 0;
}

.resources-types .resources-type-items ul li a {
	font-size: 18px;
	line-height: 22px;
}
}



/* Category - Links */
.category-links {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding-bottom: 65px;
}

.category-links:last-child {
	padding-bottom: 0;
}

.category-links ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0;
	margin: 0 -18px -25px -18px;
}

.category-links ul li {
	float: left;
	padding: 0;
	margin: 0 18px 25px 18px;
}

.category-links ul li:before {
	display: none;
}

.category-links ul li a {
	font-weight: 600;
	font-size: 20px;
	color: #7a7a7b;
	line-height: 25px;
	text-decoration: none;
}

.category-links ul li a:hover,
.category-links ul li a:focus,
.category-links ul li a.active {
	color: #343335;
	text-decoration: underline;
}

@media (max-width: 767px) {
.category-links {
	padding-bottom: 50px;
}

.category-links ul {
	margin: 0 -8px -16px -8px;
}

.category-links ul li {
	width: 50%;
	padding: 0 8px;
	margin: 0 0 16px 0;
}

.category-links ul li a {
	width: 100%;
	height: 100%;
	float: left;
	font-size: 14px;
	color: #343335;
	line-height: 18px;
	text-align: center;
	box-shadow: #343335 0 0 0 1px;
	border-radius: 5px;
	padding: 8px 10px;
}

.category-links ul li a:hover,
.category-links ul li a:focus,
.category-links ul li a.active {
	color: #ffffff;
	text-decoration: none;
	background: #343335;
}
}



/* Press - List */
.press-list {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.press-list .article-out {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 -12px -55px -12px;
}

.press-list .article {
	width: 33.33333333333333%;
	float: left;
	padding: 0 12px 55px 12px;
}

.press-list .article .box {
	width: 100%;
	height: 100%;
	float: left;
	font-weight: inherit;
	color: #7a7a7b;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.press-list .article .box h3 {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
	font-size: 20px;
	color: #343335;
	line-height: 25px;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	padding-bottom: 15px;
}

.press-list .article .box h3:last-child {
	padding-bottom: 0;
}

.press-list .article .box .date {
	padding-bottom: 8px;
}

.press-list .article .box .date:last-child {
	padding-bottom: 0;
}

.press-list .article .box .read-more {
	text-decoration: underline;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
}

.press-list .article .box .figure {
	width: 100%;
	text-align: center;
	overflow: hidden;
	margin: 0 0 23px 0;
}

.press-list .article .box .figure:last-child {
	margin-bottom: 0;
}

.press-list .article .box .figure img {
	width: 100%;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
}

.press-list .article .box:hover .figure img,
.press-list .article .box:focus .figure img,
.press-list .article .box:active .figure img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.press-list .article .box:hover .aside h3,
.press-list .article .box:focus .aside h3,
.press-list .article .box:active .aside h3 {
	text-decoration: underline;
}

.press-list .article .box:hover .aside .read-more,
.press-list .article .box:focus .aside .read-more,
.press-list .article .box:active .aside .read-more {
	color: #f89c25;
}

@media (max-width: 991px) {
.press-list .article {
	width: 50%;
}
}

@media (max-width: 767px) {
.press-list .article-out {
	margin: 0 -20px -35px -20px;
}

.press-list .article {
	width: 100%;
	padding: 0 20px 35px 20px;
}

.press-list .article .box h3 {
	font-size: 18px;
	line-height: 22px;
	padding-bottom: 17px;
}

.press-list .article .box .figure {
	margin-bottom: 16px;
}
}


/* Press Sticky - Post */
.press-list .article:nth-child(0n+1) {
	width: 100%;
}

.press-list .article:nth-child(0n+1) .box .figure {
	height: 350px;
	margin: 0;
}

.press-list .article:nth-child(0n+1) .box .figure img {
	width: auto;
	max-width: none;
	min-width: 100%;
	min-height: 100%;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
}

.press-list .article:nth-child(0n+1) .box .aside {
	width: 100%;
	height: 100%;
	float: left;
	color: #ffffff;
	background: rgba(52, 51, 53, .30);
	position: absolute;
	top: 0;
	left: 0;
	padding: 40px;
}

.press-list .article:nth-child(0n+1) .box .aside h3 {
	font-size: 24px;
	color: inherit;
	line-height: 30px;
}

.press-list .article:nth-child(0n+1) .box .aside .read-more {
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: #343335;
	line-height: 19px;
	letter-spacing: 0.04em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	background: #ffffff;
	border-radius: 360px;
	overflow: hidden;
	cursor: pointer;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	bottom: 40px;
	padding: 16px 30px 15px 30px;
	margin: 0;
}

.press-list .article:nth-child(0n+1) .box:hover .aside .read-more,
.press-list .article:nth-child(0n+1) .box:focus .aside .read-more,
.press-list .article:nth-child(0n+1) .box:active .aside .read-more {
	background: #e8dccd;
}

.paged .press-list .article:nth-child(0n+1) {
	width: 33.33333333333333%;
}

.paged .press-list .article:nth-child(0n+1) .box .figure {
	height: auto;
	margin: 0 0 23px 0;
}

.paged .press-list .article:nth-child(0n+1) .box .figure img {
	min-width: inherit;
	min-height: inherit;
	width: 100%;
	position: static;
	top: 0;
	left: 0;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}

.paged .press-list .article:nth-child(0n+1) .box .aside {
	height: auto;
	color: inherit;
	background: none;
	position: static;
	top: 0;
	left: 0;
	padding: 0;
}

.paged .press-list .article:nth-child(0n+1) .box .aside h3 {
	font-size: 20px;
	color: #343335;
	line-height: 25px;
}

.paged .press-list .article:nth-child(0n+1) .box .aside .read-more {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	color: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-align: inherit;
	text-decoration: underline;
	text-transform: none;
	background: none;
	border-radius: 0;
	position: static;
	bottom: 0;
	padding: 0;
	margin: 0;
}

.paged .press-list .article:nth-child(0n+1) .box:hover .figure img,
.paged .press-list .article:nth-child(0n+1) .box:focus .figure img,
.paged .press-list .article:nth-child(0n+1) .box:active .figure img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.paged .press-list .article:nth-child(0n+1) .box:hover .aside .read-more,
.paged .press-list .article:nth-child(0n+1) .box:focus .aside .read-more,
.paged .press-list .article:nth-child(0n+1) .box:active .aside .read-more {
	color: #f89c25;
	text-decoration: underline;
	background: none;
}

@media (max-width: 991px) {
.paged .press-list .article:nth-child(0n+1) {
	width: 50%;
}
}

@media (max-width: 767px) {
.press-list .article:nth-child(0n+1) {
	padding-left: 0;
	padding-right: 0;
}

.press-list .article:nth-child(0n+1) .box .aside {
	padding: 40px;
}

.press-list .article:nth-child(0n+1) .box .aside h3 {
	font-size: 18px;
	line-height: 22px;
}

.press-list .article:nth-child(0n+1) .box .aside .read-more {
	font-size: 12px;
	line-height: 16px;
	position: static;
	padding: 14px 25px 13px 25px;
	margin-top: 16px;
}

.paged .press-list .article:nth-child(0n+1) {
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
}

.paged .press-list .article:nth-child(0n+1) .box .aside {
	padding: 0;
}

.paged .press-list .article:nth-child(0n+1) .box .aside h3 {
	font-size: 18px;
	line-height: 22px;
}

.paged .press-list .article:nth-child(0n+1) .box .aside .read-more {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	color: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-align: inherit;
	text-decoration: underline;
	text-transform: none;
	background: none;
	border-radius: 0;
	position: static;
	bottom: 0;
	padding: 0;
	margin: 0;
}
}



/* Videos - List */
.videos-list {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.videos-list .heading-txt {
	font-weight: 600;
	padding-bottom: 50px;
}

.videos-list .heading-txt:last-child {
	padding-bottom: 0;
}

.videos-list .heading-txt h2,
.videos-list .heading-txt .h2 {
	font-size: 30px;
	line-height: 38px;
	padding-bottom: 16px;
}

.videos-list .heading-txt h2:last-child,
.videos-list .heading-txt .h2:last-child {
	padding-bottom: 0;
}

.videos-list .article-out {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 -15px -45px -15px;
}

.videos-list .article {
	width: 50%;
	float: left;
	padding: 0 15px 45px 15px;
}

.videos-list .article .box {
	width: 100%;
	height: 100%;
	float: left;
	font-weight: inherit;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.videos-list .article .box .figure {
	width: 100%;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin: 0 0 25px 0;
}

.videos-list .article .box .figure:last-child {
	margin-bottom: 0;
}

.videos-list .article .box .figure img {
	width: 100%;
}

.videos-list .article .box .figure:after {
	content: "";
	width: 100%;
	height: 100%;
	float: left;
	background: url(img/icon-play.png) no-repeat center center;
	background-size: 9% auto;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.videos-list .article .box .aside {
	width: 100%;
	float: left;
}

.videos-list .article .box .aside h3 {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
	font-size: 24px;
	color: #343335;
	line-height: 30px;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	padding-bottom: 15px;
}

.videos-list .article .box .aside h3:last-child {
	padding-bottom: 0;
}

.videos-list .article .box:hover h3,
.videos-list .article .box:focus h3,
.videos-list .article .box:active h3 {
	text-decoration: underline;
}

.videos-list .article .box:hover .figure:after,
.videos-list .article .box:focus .figure:after,
.videos-list .article .box:active .figure:after {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}

.videos-list .btn-out {
	width: 100%;
	text-align: center;
	margin: 55px 0 0 0;
}

.videos-list .btn-out .btn {
	margin: 0;
}

@media (max-width: 991px) {
.videos-list .article {
	width: 50%;
}
}

@media (max-width: 767px) {
.videos-list .heading-txt {
	padding-bottom: 35px;
}

.videos-list .heading-txt h2,
.videos-list .heading-txt .h2 {
	font-size: 25px;
	line-height: 33px;
}

.videos-list .article-out {
	margin: 0 -20px -35px -20px;
}

.videos-list .article {
	width: 100%;
	padding: 0 20px 35px 20px;
}

.videos-list .article .box .figure {
	margin-bottom: 16px;
}

.videos-list .article .box .aside h3 {
	font-size: 18px;
	line-height: 22px;
	padding-bottom: 17px;
}

.videos-list .btn-out {
	margin: 40px 0 0 0;
}
}


/* Videos Sticky - Post */
@media (min-width: 768px) {
.videos-list .article:nth-child(0n+1) {
	width: 100%;
}

.paged .videos-list .article:nth-child(0n+1) {
	width: 50%;
}
}

@media (min-width: 992px) {
.videos-list .article:nth-child(0n+1) .box .figure {
	height: 0;
	position: relative;
	padding-bottom: 45%;
}

.videos-list .article:nth-child(0n+1) .box .figure img {
	width: auto;
	max-width: none;
	min-width: 100%;
	min-height: 100%;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
}

.paged .videos-list .article:nth-child(0n+1) .box .figure {
	height: auto;
	padding-bottom: 0;
}

.paged .videos-list .article:nth-child(0n+1) .box .figure img {
	min-width: inherit;
	min-height: inherit;
	width: 100%;
	position: static;
	top: 0;
	left: 0;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}
}



/* WP Pagenavi - Out */
.wp-pagenavi-out {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.wp-pagenavi {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	margin: 75px 0 0 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
	float: none;
	display: inline-block;
	vertical-align: top;
	font-weight: 400;
	font-size: 20px;
	color: #7a7a7b;
	line-height: 25px;
	text-decoration: none;
	position: relative;
	padding: 0;
	margin: 10px;
}

.wp-pagenavi a:hover,
.wp-pagenavi a:focus,
.wp-pagenavi a:active {
	color: #343335;
	text-decoration: none;
}

.wp-pagenavi .current {
	color: #343335;
	text-decoration: underline;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	width: 13px;
	text-indent: -99999px;
	padding: 0;
	margin-left: 20px;
	margin-right: 20px;
}

.wp-pagenavi .previouspostslink:before,
.wp-pagenavi .nextpostslink:before {
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 400;
	text-indent: 0;
	position: absolute;
	top: 50%;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.wp-pagenavi .previouspostslink:before {
	content: "\f053";
	left: 0;
}

.wp-pagenavi .nextpostslink:before {
	content: "\f054";
	right: 0;
}

@media (max-width: 767px) {
.wp-pagenavi {
	position: relative;
	margin: 45px 0 0 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
	font-size: 18px;
	line-height: 22px;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	position: absolute;
	margin-left: 0;
	margin-right: 0;
}

.wp-pagenavi .previouspostslink {
	left: 0;
}

.wp-pagenavi .nextpostslink {
	right: 0;
}
}



/* Career Tab - Panels */
.career-tab-panels {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.career-tab-panels .career-tab-links {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 0 70px 0;
	margin: 0 -30px -30px -30px;
}

.career-tab-panels .career-tab-links:last-child {
	padding-bottom: 0;
}

.career-tab-panels .career-tab-links .item {
	float: left;
	padding: 0 30px 30px 30px;
}

.career-tab-panels .career-tab-links .item a {
	float: left;
	font-weight: 600;
	font-size: 20px;
	color: #7a7a7b;
	line-height: 25px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	padding: 0 0 4px 0;
}

.career-tab-panels .career-tab-links .item a:after {
	content: "";
	width: 0;
	height: 2px;
	float: left;
	background: #343335;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	bottom: 0;
	left: 50%;
	opacity: 0;
}

.career-tab-panels .career-tab-links .item a:hover,
.career-tab-panels .career-tab-links .item a:focus {
	color: #343335;
}

.career-tab-panels .career-tab-links .item.active a {
	font-weight: 700;
	color: #343335;
}

.career-tab-panels .career-tab-links .item.active a:after {
	width: 100%;
	left: 0;
	opacity: 1;
}

.career-tab-panels .career-tab-cont {
	width: 100%;
	float: left;
}

.career-tab-panels .career-tab-cont .tab-panel {
	display: none;
}

.career-tab-panels .article {
	width: 100%;
	float: left;
	border-bottom: 1px solid #dddddd;
}

.career-tab-panels .article:first-child {
	margin-top: -23px;
}

.career-tab-panels .article .box {
	width: 100%;
	float: left;
	font-weight: inherit;
	font-size: 14px;
	color: #343335;
	line-height: 20px;
	text-decoration: none;
	position: relative;
	padding: 23px 165px 23px 0;
}

.career-tab-panels .article .box h3 {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
	font-size: 18px;
	color: #343335;
	line-height: 25px;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	padding-bottom: 8px;
}

.career-tab-panels .article .box h3:last-child {
	padding-bottom: 0;
}

.career-tab-panels .article .box .btn-out {
	position: absolute;
	top: 50%;
	right: 0;
	margin: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.career-tab-panels .article .box .btn-out .btn {
	width: 145px;
	height: 44px;
	font-size: 12px;
	line-height: 44px;
	letter-spacing: 0.09em;
	background: #343335;
	padding: 0 0 0 3px;
	margin: 0;
}

.career-tab-panels .article .box:hover h3,
.career-tab-panels .article .box:focus h3,
.career-tab-panels .article .box:active h3 {
	color: #f89c25;
	text-decoration: underline;
}

.career-tab-panels .article .box:hover .btn-out .btn,
.career-tab-panels .article .box:focus .btn-out .btn,
.career-tab-panels .article .box:active .btn-out .btn {
	background: #f89c25;
}

@media (max-width: 991px) {
.career-tab-panels .career-tab-links {
	margin: 0 -20px -20px -20px;
}

.career-tab-panels .career-tab-links .item {
	padding: 0 20px 20px 20px;
}

.career-tab-panels .career-tab-links .item a {
	font-size: 18px;
	line-height: 23px;
}
}

@media (max-width: 767px) {
.career-tab-panels .career-tab-links {
	padding-bottom: 50px;
	margin: 0 0 -14px 0;
}

.career-tab-panels .career-tab-links .item {
	width: 100%;
	text-align: center;
	padding: 0 0 14px 0;
}

.career-tab-panels .career-tab-links .item a {
	float: none;
	display: inline-block;
	vertical-align: top;
	font-size: 18px;
	line-height: 23px;
}

.career-tab-panels .article:first-child {
	border-top: 1px solid #dddddd;
	margin-top: 0;
}

.career-tab-panels .article .box {
	padding: 20px 165px 20px 0;
}

.career-tab-panels .article .box .btn-out .btn {
	height: 42px;
	line-height: 42px;
	letter-spacing: 0.02em;
	padding-left: 1px;
}
}



/* Career Post - Content */
.career-post-cont {
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.01em;
}

.career-post-cont h2,
.career-post-cont h3,
.career-post-cont h4 {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	padding-bottom: 20px;
}

.career-post-cont h2:last-child,
.career-post-cont h3:last-child,
.career-post-cont h4:last-child {
	padding-bottom: 0;
}

@media (max-width: 767px) {
.career-post-cont {
	font-size: 12px;
	line-height: 18px;
}

.career-post-cont h2,
.career-post-cont h3,
.career-post-cont h4 {
	font-size: 14px;
	line-height: 20px;
}
}



/* Slider Reviews */
.slider-reviews {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.slider-reviews .item .box {
	width: 100%;
	float: left;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	box-shadow: inset #d9d9d9 0 0 0 1px;
	border-radius: 20px;
	position: relative;
	padding: 45px 25px 25px 25px;
}

.slider-reviews .item .box:before {
	content: "";
	width: 44px;
	height: 44px;
	background: url(img/quote-ellipse.png) no-repeat center center;
	background-size: 100% auto;
	-ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	position: absolute;
	top: -22px;
	left: 50%;
}

.slider-reviews .item .box .name {
	font-weight: 700;
}

.slider-reviews .item .box p {
	padding-bottom: 20px;
}

.slider-reviews .item .box p:last-child {
	padding-bottom: 0;
}

.slider-reviews .item .box .stars {
	width: 100px;
	height: 17px;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: url(img/stars-empty.svg) no-repeat center left;
	background-size: auto 100%;
	position: relative;
	overflow: hidden;
	margin-bottom: 16px;
}

.slider-reviews .item .box .stars:last-child {
	margin-bottom: 0;
}

.slider-reviews .item .box .stars .inn-value {
	width: 0;
	height: 17px;
	background: url(img/stars-fill.svg) no-repeat center left;
	background-size: auto 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

.slider-reviews .owl-item {
	padding: 27px 0;
}

.slider-reviews .owl-stage {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media (min-width: 992px) {
.slider-reviews .item {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.slider-reviews .item .box {
	font-size: 12px;
	line-height: 18px;
	padding: 45px 15% 25px 15%;
}

.slider-reviews .item .box:before {
	width: 54px;
	height: 54px;
	top: -27px;
}

.slider-reviews .item .box .stars {
	width: 111px;
	height: 19px;
	margin-bottom: 13px;
}

.slider-reviews .item .box .stars .inn-value {
	height: 19px;
}

.slider-reviews .owl-item {
	padding: 27px 0;
}

.slider-reviews .owl-item.center .item {
	margin: 0 -24px;
}

.slider-reviews .owl-item.center .item .box {
	font-size: 14px;
	line-height: 20px;
	padding: 55px 15% 35px 15%;
}

.slider-reviews .owl-item.center .item .box:before {
	width: 65px;
	height: 65px;
	top: -32.5px;
}

.slider-reviews .owl-item.center .item .box p {
	padding-bottom: 25px;
}

.slider-reviews .owl-item.center .item .box .stars {
	width: 135px;
	height: 23px;
	margin-bottom: 20px;
}

.slider-reviews .owl-item.center .item .box .stars .inn-value {
	height: 23px;
}

.slider-reviews .owl-item.center {
	padding: 32.5px 0;
}

.slider-reviews .owl-item:not(.active) + .owl-item.active {
	padding-right: 26px;
}

.slider-reviews .owl-item.active + .owl-item.active + .owl-item.active {
	padding-left: 26px;
}

.slider-reviews .owl-stage {
	align-items: center;
}

.slider-reviews .owl-carousel {
	padding: 0 65px;
}
}

@media (max-width: 991px) {
.slider-reviews {
	margin: 0 -40px;
}

.slider-reviews .item {
	width: 265px;
}

.slider-reviews .owl-dots {
	margin-top: 0;
}

.slider-reviews .owl-stage-outer {
	padding: 0 40px;
}
}

@media (max-width: 767px) {
.slider-reviews {
	margin: 0 -20px;
}

.slider-reviews .owl-stage-outer {
	padding: 0 20px;
}
}



/* Slider - Rewards */
.slider-rewards {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.slider-rewards .item {
	width: 100%;
	max-width: 220px;
	height: 100%;
	float: left;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	color: #ffffff;
	line-height: 20px;
}

.slider-rewards .item h3 {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	padding-bottom: 16px;
}

.slider-rewards .item h3:last-child {
	padding-bottom: 0;
}

.slider-rewards .item p {
	flex: 1 0 auto;
	padding-bottom: 24px;
}

.slider-rewards .item p:last-child {
	padding-bottom: 0;
}

.slider-rewards .item .btn-out {
	flex-shrink: 0;
}

.slider-rewards .owl-stage {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media (min-width: 768px) {
.slider-rewards .item {
	max-width: 100%;
	width: 100%;
}

.slider-rewards .owl-stage-outer {
	overflow: visible!important;
}

.slider-rewards .owl-stage {
	width: auto!important;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	overflow: visible!important;
	padding: 0!important;
	margin: 0 -20px -40px -20px!important;
}

.slider-rewards .owl-stage .owl-item {
	width: 50%!important;
	padding: 0!important;
	padding: 0 20px 40px 20px!important;
}
}

@media (min-width: 992px) {
.slider-rewards .owl-stage .owl-item:nth-child(1),
.slider-rewards .owl-stage .owl-item:nth-child(2) {
	width: 50%!important;
}

.slider-rewards .owl-stage .owl-item:nth-child(3) {
	width: 40%!important;
}
}

@media (max-width: 767px) {
.slider-rewards {
	margin-right: -20px;
}

.slider-rewards .owl-stage .owl-item:nth-child(3) .item {
	max-width: 300px;
}
}



/* Slider - Downinfo */
.slider-downinfo {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.slider-downinfo .item {
	width: 100%;
	max-width: 255px;
	height: 100%;
	float: left;
}

.slider-downinfo .item .plan-box {
	height: 100%;
}

.slider-downinfo .owl-stage {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.slider-downinfo .owl-dots {
	margin: 10px 0 0 0;
}

@media (min-width: 768px) {
.slider-downinfo .item {
	max-width: 100%;
	width: 100%;
}

.slider-downinfo .owl-stage-outer {
	overflow: visible!important;
}

.slider-downinfo .owl-stage {
	width: auto!important;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	overflow: visible!important;
	padding: 0!important;
	margin: 0 -20px -40px -20px!important;
}

.slider-downinfo .owl-stage .owl-item {
	width: 33.33333333333333%!important;
	padding: 0!important;
	padding: 0 20px 40px 20px!important;
}
}

@media (max-width: 767px) {
.slider-downinfo {
	margin: -40px -30px 0 -30px;
}

.slider-downinfo .owl-item {
	padding: 40px 0 30px 0;
}

.slider-downinfo .owl-stage-outer {
	padding: 0 30px;
}
}



/* Download Information Tab - Panels */
.downinfo-tab-panels {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.downinfo-tab-panels .downinfo-tab-links {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	padding-bottom: 85px;
}

.downinfo-tab-panels .downinfo-tab-links:last-child {
	padding-bottom: 0;
}

.downinfo-tab-panels .downinfo-tab-links .downinfo-tab-items {
	width: 100%;
	max-width: 360px;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: #f2f2f3;
	border-radius: 900px;
}

.downinfo-tab-panels .downinfo-tab-links .downinfo-tab-items .item {
	width: 50%;
	float: left;
}

.downinfo-tab-panels .downinfo-tab-links .downinfo-tab-items .item a {
	width: 100%;
	height: 55px;
	float: left;
	font-weight: 700;
	font-size: 16px;
	color: #343335;
	line-height: 55px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	border-radius: 900px;
}

.downinfo-tab-panels .downinfo-tab-links .downinfo-tab-items .item a:hover,
.downinfo-tab-panels .downinfo-tab-links .downinfo-tab-items .item a:focus {
	color: #f89c25;
}

.downinfo-tab-panels .downinfo-tab-links .downinfo-tab-items .item.active a {
	color: #ffffff;
	background: #f89c25;
}

.downinfo-tab-panels .downinfo-tab-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.downinfo-tab-panels .downinfo-tab-cont .tab-panel {
	display: none;
}

.price-label.call-out {
	font-size:170%;
	line-height: 1.1em;
}

@media (min-width: 768px) {
.downinfo-tab-panels .slider-downinfo .owl-stage .owl-item {
	width: 50%!important;
}
}

@media (min-width: 1200px) {
.downinfo-tab-panels .slider-downinfo .owl-stage .owl-item {
	width: 33%!important;
}
.price-label.call-out {
	font-size:170%;
	line-height:2.8em;
}
}

@media (max-width: 767px) {
.downinfo-tab-panels .downinfo-tab-links {
	padding-bottom: 65px;
}

.downinfo-tab-panels .downinfo-tab-links .downinfo-tab-items .item a {
	height: 41px;
	font-size: 14px;
	line-height: 41px;
}
}



/* Feature - List */
.feature-list {
	width: 100%;
	overflow: hidden;
	margin-bottom: 80px;
}

.feature-list:last-child {
	margin-bottom: 0;
}

.feature-list .heading-txt2 {
	padding-bottom: 55px;
}

.feature-list .article-out {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -32px -55px -32px;
}

.feature-list .article {
	width: 33.33333333333333%;
	float: left;
	padding: 0 32px 55px 32px;
}

.feature-list.sidebar .article {
	width: 100%;
	float: left;
	padding: 0 32px 55px 32px;
}

.feature-list .article .box {
	width: 100%;
	float: left;
	font-weight: inherit;
	font-size: 14px;
	color: inherit;
	line-height: 20px;
	text-decoration: none;
}

.feature-list .article .box .icon {
	width: 46px;
	float: left;
	position: relative;
	z-index: 1;
	margin: 2px -46px 0 0;
}

.feature-list .article .box .icon img {
	max-height: 34px;
}

.feature-list .article .box .aside {
	width: 100%;
	float: left;
	padding: 0 0 0 46px;
}

.feature-list .article .box .aside h4 {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 25px;
	padding-bottom: 16px;
}

.feature-list .article .box .aside h4:last-child {
	padding-bottom: 0;
}

@media (max-width: 1199px) {
.feature-list .article {
	padding: 0 16px 32px 16px;
}

.feature-list .article-out {
	margin: 0 -16px -32px -16px;
}
}

@media (min-width:768px) and (max-width: 991px) {
.feature-list .article .box .icon {
	width: 100%;
	margin: 0 0 20px 0;
}

.feature-list .article .box .aside {
	padding: 0;
}
}

@media (max-width: 767px) {
.feature-list {
	margin-bottom: 40px;
}

.feature-list .article-out {
	margin: 0 0 -32px 0;
}

.feature-list .article {
	width: 100%;
	padding: 0 0 32px 0;
}
}



/* Subscribe - Form */
.subscribe-form-cont form {
	width: 100%;
	float: left;
	position: relative;
	padding: 0 190px 0 0;
}

.subscribe-form-cont form select,
.subscribe-form-cont form textarea,
.subscribe-form-cont form input[type="text"],
.subscribe-form-cont form input[type="password"],
.subscribe-form-cont form input[type="datetime"],
.subscribe-form-cont form input[type="datetime-local"],
.subscribe-form-cont form input[type="date"],
.subscribe-form-cont form input[type="month"],
.subscribe-form-cont form input[type="time"],
.subscribe-form-cont form input[type="week"],
.subscribe-form-cont form input[type="number"],
.subscribe-form-cont form input[type="email"],
.subscribe-form-cont form input[type="url"],
.subscribe-form-cont form input[type="search"],
.subscribe-form-cont form input[type="tel"],
.subscribe-form-cont form input[type="color"],
.subscribe-form-cont form .uneditable-input {
	height: 50px;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #343335;
	line-height: 20px;
	letter-spacing: normal;
	background: #ffffff;
	border: none;
	border-radius: 0;
	padding: 12px 16px;
	margin: 0;
}

.subscribe-form-cont form ::-webkit-input-placeholder,
.subscribe-form-cont form ::-webkit-textarea-placeholder {
	color: rgba(52, 51, 53, 0.6);
}

.subscribe-form-cont form input::-moz-placeholder,
.subscribe-form-cont form textarea::-moz-placeholder {
	color: rgba(52, 51, 53, 0.6);
}

.subscribe-form-cont form ::-moz-placeholder {
	color: rgba(52, 51, 53, 0.6);
}

.subscribe-form-cont form ::-ms-input-placeholder {
	color: rgba(52, 51, 53, 0.6);
}

.subscribe-form-cont form .btn,
.subscribe-form-cont form .button,
.subscribe-form-cont form input[type="button"],
.subscribe-form-cont form input[type="submit"] {
	width: 190px;
	height: 50px;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #ffffff;
	line-height: 50px;
	letter-spacing: 0.04em;
	background: #7bced4;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	padding: 0 0 0 3px;
	margin: 0;
}

.subscribe-form-cont form .btn:hover,
.subscribe-form-cont form .btn:focus,
.subscribe-form-cont form .btn:active,
.subscribe-form-cont form .btn:active:focus,
.subscribe-form-cont form .btn.active,
.subscribe-form-cont form .btn.active:focus,
.subscribe-form-cont form input[type="button"]:hover,
.subscribe-form-cont form input[type="button"]:focus,
.subscribe-form-cont form input[type="button"]:active,
.subscribe-form-cont form input[type="button"]:active:focus,
.subscribe-form-cont form input[type="button"].active,
.subscribe-form-cont form input[type="button"].active:focus,
.subscribe-form-cont form input[type="submit"]:hover,
.subscribe-form-cont form input[type="submit"]:focus,
.subscribe-form-cont form input[type="submit"]:active,
.subscribe-form-cont form input[type="submit"]:active:focus,
.subscribe-form-cont form input[type="submit"].active,
.subscribe-form-cont form input[type="submit"].active:focus,
.subscribe-form-cont form .btn:not(:disabled):not(.disabled).active {
	background: #56b6bd;
}

.subscribe-form-cont .es_subscription_message.success {
	color: #ffffff!important;
}

@media (max-width: 767px) {
.subscribe-form-cont form {
	padding: 0;
}

.subscribe-form-cont form .btn,
.subscribe-form-cont form .button,
.subscribe-form-cont form input[type="button"],
.subscribe-form-cont form input[type="submit"] {
	width: 100%;
	position: relative;
	margin: 10px 0 0 0;
}
}


/*
 5.) Footer - Main
----------------------------------------*/

.footer-main {
	width: 100%;
	flex-shrink: 0;
	color: #ffffff;
	background: #343335;
	overflow: hidden;
	padding: 120px 0 50px 0;
}
.footer-main {
	border-top:1px solid #f89c25;
  }
   .footer-main .contact-us {
	  width: 100%;
	  float: left;
	  border-bottom: 1px solid white;
	  padding: 0 0 35px 0;
	  margin: 0 0 50px 0;
  }
  
  .footer-main .contact-us p {
	  font-size: 24px;
	  color: #ffffff;
	  line-height: 28px;
	  padding: 0;
  }
  
  .footer-main .contact-us p a {
	  color: #ffffff;
	  text-decoration: none;
  }
  .footer-main .contact-us .contact-email {
	display:inline;
  }
  
  .footer-main .contact-us p a:hover {
	  color: #f89c25;
  }
  
  .footer-main .contact-us p .divid {
	  margin: 0 8px;
  }
  
  .footer-main .contact-us .left-l {
	  width: 50%;
	  float: left;
	  padding-right: 20px;
  }
  
  .footer-main .contact-us .right-r {
	  width: 50%;
	  float: left;
	  text-align: right;
	  padding-left: 20px;
  }

  @media only screen and (max-width: 1024px) {
	.footer-main .contact-us .contact-email {
		display:block;
	}
  }
  @media only screen and (max-width: 991px) {
  
  .footer-main .contact-us {
	  text-align: center;
  }
  
  .footer-main .contact-us p a {
	color: #ffffff;
	text-decoration: none;
}

  
  .footer-main .contact-us .left-l {
	  width: 100%;
	  padding: 0 0 20px 0;
  }
  
  .footer-main .contact-us .right-r {
	  width: 100%;
	  text-align: center;
	  padding-left: 0;
  }
  
  .footer-main .contact-us {
	  padding: 0 0 30px 0;
	  margin: 0 0 34px 0;
  }
  
  .footer-main .contact-us p .hide-m {
	  display: none;
  }
  
  .footer-main .contact-us .left-l {
	  padding: 0 0 80px 0;
  } 
  }

.footer-main .newsletter-form {
	width: 41.10%;
	float: right;
	padding: 0 0 0 45px;
}

.footer-main .newsletter-form h2,
.footer-main .newsletter-form .h2 {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #ffffff;
	line-height: 26px;
	padding: 0 0 32px 0;
	margin: 0;
}

.footer-main .newsletter-form select,
.footer-main .newsletter-form textarea,
.footer-main .newsletter-form input[type="text"],
.footer-main .newsletter-form input[type="password"],
.footer-main .newsletter-form input[type="datetime"],
.footer-main .newsletter-form input[type="datetime-local"],
.footer-main .newsletter-form input[type="date"],
.footer-main .newsletter-form input[type="month"],
.footer-main .newsletter-form input[type="time"],
.footer-main .newsletter-form input[type="week"],
.footer-main .newsletter-form input[type="number"],
.footer-main .newsletter-form input[type="email"],
.footer-main .newsletter-form input[type="url"],
.footer-main .newsletter-form input[type="search"],
.footer-main .newsletter-form input[type="tel"],
.footer-main .newsletter-form input[type="color"],
.footer-main .newsletter-form .uneditable-input {
	height: 55px;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #343335;
	line-height: 20px;
	letter-spacing: normal;
	background: #ffffff;
	border: none;
	border-radius: 0;
	padding: 12px 16px;
	margin: 0;
}

.footer-main .newsletter-form ::-webkit-input-placeholder,
.footer-main .newsletter-form ::-webkit-textarea-placeholder {
	color: rgba(52, 51, 53, 0.6);
}

.footer-main .newsletter-form input::-moz-placeholder,
.footer-main .newsletter-form textarea::-moz-placeholder {
	color: rgba(52, 51, 53, 0.6);
}

.footer-main .newsletter-form ::-moz-placeholder {
	color: rgba(52, 51, 53, 0.6);
}

.footer-main .newsletter-form ::-ms-input-placeholder {
	color: rgba(52, 51, 53, 0.6);
}

.footer-main .newsletter-form .btn,
.footer-main .newsletter-form .button,
.footer-main .newsletter-form input[type="button"],
.footer-main .newsletter-form input[type="submit"] {
	width: 139px;
	height: 55px;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	font-size: 12px;
	color: #343335;
	line-height: 55px;
	letter-spacing: 0.05em;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	margin: 0;
}

.footer-main .newsletter-form .es_subscription_message.success {
	color: #ffffff!important;
}

.footer-main .newsletter-form .field-wrap {
	width: 100%;
	float: left;
	position: relative;
	padding: 0 139px 0 0;
}

.footer-main .newsletter-form .form-wrap {
	width: 100%;
	float: left;
	padding-bottom: 72px;
}

.footer-main .newsletter-form .form-wrap:last-child {
	padding-bottom: 0;
}

.footer-main .footer-main-menu {
	width: 58.90%;
	float: left;
}

.footer-main .footer-main-menu ul {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0;
}

.footer-main .footer-main-menu ul li {
	width: 100%;
	float: left;
	text-transform: uppercase;
	padding: 0 0 24px 0;
	margin: 0;
}

.footer-main .footer-main-menu ul li:before {
	display: none;
}

.footer-main .footer-main-menu ul li:last-child {
	padding-bottom: 0;
}

.footer-main .footer-main-menu ul li a {
	color: #ffffff;
	text-decoration: none;
	letter-spacing: 0.04em;
}

.footer-main .footer-main-menu ul li a:hover,
.footer-main .footer-main-menu ul li a:focus,
.footer-main .footer-main-menu ul li a:active,
.footer-main .footer-main-menu ul li.current-menu-item > a,
.footer-main .footer-main-menu ul li.current-menu-parent > a,
.footer-main .footer-main-menu ul li.current-menu-ancestor > a,
.footer-main .footer-main-menu ul li.current_page_item > a,
.footer-main .footer-main-menu ul li.current_page_parent > a,
.footer-main .footer-main-menu ul li.current_page_ancestor > a,
.footer-main .footer-main-menu ul li.current-page-item > a,
.footer-main .footer-main-menu ul li.current-page-parent > a,
.footer-main .footer-main-menu ul li.current-page-ancestor > a {
	color: #f89c25;
}

.footer-main .footer-main-menu h2,
.footer-main .footer-main-menu .h2 {
	width: 100%;
	float: left;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 900;
	font-size: 16px;
	line-height: 22px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0 0 24px 0;
}

.footer-main .footer-main-menu .brand {
	width: 100%;
	float: left;
}

.footer-main .footer-main-menu .brand img {
	width: 72px;
}

.footer-main .footer-main-menu .aside-out {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -10px -30px -10px;
}

.footer-main .footer-main-menu .aside {
	width: 25%;
	float: left;
	padding: 0 10px 30px 10px;
}

.footer-main .footer-main-menu .aside > div {
	width: 100%;
	float: left;
}

.footer-main .pre-footer {
	width: 100%;
	float: left;
	padding: 0 0 125px 0;
}

.footer-main .copy-rights {
	float: right;
	font-weight: 600;
	font-size: 12px;
	color: #ffffff;
	line-height: 16px;
	letter-spacing: 0.04em;
	text-align: right;
	text-transform: uppercase;
	margin: 0 -10px;
}

.footer-main .copy-rights p a {
	color: #ffffff;
	text-decoration: none;
}

.footer-main .copy-rights p a:focus,
.footer-main .copy-rights p a:active,
.footer-main .copy-rights p a:hover {
	color: #f89c25;
}

.footer-main .copy-rights ul {
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0 -10px -10px -10px;
}

.footer-main .copy-rights ul li {
	float: none;
	display: inline-block;
	vertical-align: top;
	text-transform: uppercase;
	padding: 0 10px 10px 10px;
	margin: 0;
}

.footer-main .copy-rights ul li:before {
	display: none;
}

.footer-main .copy-rights ul li:last-child {
	padding-bottom: 10px;
}

.footer-main .copy-rights ul li a {
	color: #ffffff;
	text-decoration: none;
}

.footer-main .copy-rights ul li a:hover,
.footer-main .copy-rights ul li a:focus,
.footer-main .copy-rights ul li a:active,
.footer-main .copy-rights ul li.current-menu-item > a,
.footer-main .copy-rights ul li.current-menu-parent > a,
.footer-main .copy-rights ul li.current-menu-ancestor > a,
.footer-main .copy-rights ul li.current_page_item > a,
.footer-main .copy-rights ul li.current_page_parent > a,
.footer-main .copy-rights ul li.current_page_ancestor > a,
.footer-main .copy-rights ul li.current-page-item > a,
.footer-main .copy-rights ul li.current-page-parent > a,
.footer-main .copy-rights ul li.current-page-ancestor > a {
	color: #f89c25;
}

.footer-main .copy-rights > div {
	width: auto;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0 10px;
}

@media (min-width: 768px) {
.footer-main .container {
	max-width: 1320px;
}

}

@media (min-width: 1200px) {
.footer-main .social-links {
	display: none;
}

.footer-main .newsletter-form .social-links {
	display: inline-block;
	text-align: right;
}
}

@media (max-width: 1199px) {
.footer-main {
	padding: 80px 0 40px 0;
}

.footer-main .newsletter-form {
	width: 100%;
	padding: 0 0 70px 0;
}

.footer-main .newsletter-form .form-wrap {
	padding-bottom: 0;
}

.footer-main .newsletter-form .social-links {
	display: none;
}

.footer-main .footer-main-menu {
	width: 100%;
	padding: 0 0 70px 0;
}

.footer-main .pre-footer {
	padding: 0 0 30px 0;
}

.footer-main .pre-footer .social-links {
	text-align: center;
}

.footer-main .copy-rights {
	width: 100%;
	text-align: center;
	margin: 0;
}
}

@media (min-width: 768px) {
.footer-main .footer-main-menu .aside h2,
.footer-main .footer-main-menu .aside .h2 {
	pointer-events: none;
	cursor: default;
}

.footer-main .footer-main-menu .aside > div {
	display: block !important;
}
}

@media (max-width: 767px) {
.footer-main {
	padding: 40px 0;
}

.footer-main .newsletter-form h2,
.footer-main .newsletter-form .h2 {
	font-size: 14px;
	line-height: 20px;
	padding: 0 0 16px 0;
}

.footer-main .newsletter-form select,
.footer-main .newsletter-form textarea,
.footer-main .newsletter-form input[type="text"],
.footer-main .newsletter-form input[type="password"],
.footer-main .newsletter-form input[type="datetime"],
.footer-main .newsletter-form input[type="datetime-local"],
.footer-main .newsletter-form input[type="date"],
.footer-main .newsletter-form input[type="month"],
.footer-main .newsletter-form input[type="time"],
.footer-main .newsletter-form input[type="week"],
.footer-main .newsletter-form input[type="number"],
.footer-main .newsletter-form input[type="email"],
.footer-main .newsletter-form input[type="url"],
.footer-main .newsletter-form input[type="search"],
.footer-main .newsletter-form input[type="tel"],
.footer-main .newsletter-form input[type="color"],
.footer-main .newsletter-form .uneditable-input {
	height: 45px;
	padding: 10px 16px;
}

.footer-main .newsletter-form ::-webkit-input-placeholder,
.footer-main .newsletter-form ::-webkit-textarea-placeholder {
	color: rgba(52, 51, 53, 0.6);
}

.footer-main .newsletter-form input::-moz-placeholder,
.footer-main .newsletter-form textarea::-moz-placeholder {
	color: rgba(52, 51, 53, 0.6);
}

.footer-main .newsletter-form ::-moz-placeholder {
	color: rgba(52, 51, 53, 0.6);
}

.footer-main .newsletter-form ::-ms-input-placeholder {
	color: rgba(52, 51, 53, 0.6);
}

.footer-main .newsletter-form .btn,
.footer-main .newsletter-form .button,
.footer-main .newsletter-form input[type="button"],
.footer-main .newsletter-form input[type="submit"] {
	width: 100%;
	height: 45px;
	line-height: 45px;
	position: relative;
	margin: 8px 0 0 0;
}

.footer-main .newsletter-form .field-wrap {
	padding: 0;
}

.footer-main .footer-main-menu ul li {
	padding: 0 0 20px 0;
}

.footer-main .footer-main-menu ul li a {
	color: rgba(255, 255, 255, 0.6);
}

.footer-main .footer-main-menu ul li a:hover,
.footer-main .footer-main-menu ul li a:focus,
.footer-main .footer-main-menu ul li a:active,
.footer-main .footer-main-menu ul li.current-menu-item > a,
.footer-main .footer-main-menu ul li.current-menu-parent > a,
.footer-main .footer-main-menu ul li.current-menu-ancestor > a,
.footer-main .footer-main-menu ul li.current_page_item > a,
.footer-main .footer-main-menu ul li.current_page_parent > a,
.footer-main .footer-main-menu ul li.current_page_ancestor > a,
.footer-main .footer-main-menu ul li.current-page-item > a,
.footer-main .footer-main-menu ul li.current-page-parent > a,
.footer-main .footer-main-menu ul li.current-page-ancestor > a {
	color: #f89c25;
}

.footer-main .footer-main-menu .aside-out {
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	margin: 0;
}

.footer-main .footer-main-menu .aside {
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding: 0;
}

.footer-main .footer-main-menu .aside:first-child {
	display: none;
}

.footer-main .footer-main-menu .aside h2,
.footer-main .footer-main-menu .aside .h2 {
	font-weight: 600;
	font-size: 18px;
	line-height: 25px;
	cursor: pointer;
	position: relative;
	padding: 16px 0 16px 0;
}

.footer-main .footer-main-menu .aside h2:before,
.footer-main .footer-main-menu .aside .h2:before {
	content: "\f078";
	font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	line-height: 1em;
	position: absolute;
	top: 50%;
	right: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.footer-main .footer-main-menu .aside h2.active:before,
.footer-main .footer-main-menu .aside .h2.active:before {
	content: "\f077";
}

.footer-main .footer-main-menu .aside > div {
	width: 100%;
	float: left;
	display: none;
	padding: 16px 0 24px 0;
}

.footer-main .pre-footer {
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0 0 40px 0;
}

.footer-main .copy-rights {
	width: auto;
	float: none;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	color: rgba(255, 255, 255, 0.6);
	padding: 0;
	margin: 0 0 -20px 0;
}

.footer-main .copy-rights ul li a {
	color: rgba(255, 255, 255, 0.6);
}

.footer-main .copy-rights ul li a:hover,
.footer-main .copy-rights ul li a:focus,
.footer-main .copy-rights ul li a:active,
.footer-main .copy-rights ul li.current-menu-item > a,
.footer-main .copy-rights ul li.current-menu-parent > a,
.footer-main .copy-rights ul li.current-menu-ancestor > a,
.footer-main .copy-rights ul li.current_page_item > a,
.footer-main .copy-rights ul li.current_page_parent > a,
.footer-main .copy-rights ul li.current_page_ancestor > a,
.footer-main .copy-rights ul li.current-page-item > a,
.footer-main .copy-rights ul li.current-page-parent > a,
.footer-main .copy-rights ul li.current-page-ancestor > a {
	color: #f89c25;
}

.footer-main .copy-rights > div {
	width: 100%;
	float: left;
	padding: 0 0 20px 0;
}

.footer-main .copy-rights > div:nth-child(1) {
	order: 2;
}

.footer-main .copy-rights > div:nth-child(2) {
	order: 1;
}
}


/*
 6.) Form Order Steps - Pages(HTML+Wordpress)
-----------------------------------------------*/

/* Address - Box */
.address-box {
	width: 100%;
	max-width: 750px;
	min-height: 140px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	text-align: left;
	background: #f2f2f3;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	padding: 20px 40px 20px 260px;
	margin: 0 auto;
	margin-bottom: 56px;
}

.address-box:last-child {
	margin-bottom: 0;
}

.address-box:after {
	content: "\f058";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 900;
	font-size: 52px;
	color: #f89c25;
	background: #ffffff;
	border-radius: 900px;
	position: absolute;
	top: 50%;
	left: 192px;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: 1;
	margin: 0 0 0 -26px;
}

.address-box .figure {
	width: 192px;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
}

.address-box .figure img {
	width: auto;
	max-width: none;
	min-width: 100%;
	min-height: 100%;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
}

.address-box .embed-responsive {
	width: 192px;
	position: absolute;
	top: 0;
	left: 0;
	padding-bottom: 100%;
	z-index: 1;
}

.address-box #map {
	width: 192px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.address-box a[href^="http://maps.google.com/maps"]{
	display: none !important;
}

.address-box a[href^="https://maps.google.com/maps"]{
	display: none !important;
}

.address-box .gmnoprint a,
.address-box .gmnoprint span,
.address-box .gm-style-cc {
	display: none;
}

.address-box .gmnoprint div {
	background: none !important;
}

.address-box .txt-wrap p {
	padding-bottom: 5px;
}

.address-box .txt-wrap p:last-child {
	padding-bottom: 0;
}

.address-box .txt-wrap p strong {
	font-weight: 800;
}

.address-box.box2 #map,
.address-box.box2 .embed-responsive {
	display: none;
}

@media (max-width: 767px) {
.address-box {
	height: auto;
	font-size: 18px;
	line-height: 25px;
	padding: 0;
	margin-bottom: 26px;
}

.address-box:after {
	display: none;
}

.address-box .figure {
	width: 100%;
	height: 140px;
	position: relative;
}

.address-box .embed-responsive {
	width: 100%;
	position: relative;
	padding-bottom: 140px;
}

.address-box #map {
	width: 100%;
	height: 140px;
	position: relative;
}

.address-box .txt-wrap {
	width: 100%;
	float: left;
	text-align: center;
	position: relative;
	padding: 30px 8% 30px 8%;
}

.address-box .txt-wrap:after {
	content: "\f058";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 900;
	font-size: 52px;
	color: #f89c25;
	background: #ffffff;
	border-radius: 900px;
	position: absolute;
	top: -16px;
	left: 50%;
	-ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	z-index: 1;
	margin: 0;
}
}



/* Plan Top - Txt */
.plan-top-txt,
.plan-top-txt2 {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
	font-size: 20px;
	color: #000000;
	line-height: 28px;
	text-align: center;
	margin-bottom: 80px;
}

.plan-top-txt:last-child,
.plan-top-txt2:last-child {
	margin-bottom: 0;
}

.plan-top-txt p,
.plan-top-txt2 p {
	padding-bottom: 32px;
}

.plan-top-txt p:last-child,
.plan-top-txt2 p:last-child {
	padding-bottom: 0;
}

.plan-top-txt2 {
	font-size: 24px;
	line-height: 32px;
}

@media (max-width: 991px) {
.plan-top-txt2 {
	font-size: 22px;
	line-height: 30px;
}
}

@media (max-width: 767px) {
.plan-top-txt,
.plan-top-txt2 {
	text-align: left;
	margin-bottom: 40px;
}

.plan-top-txt2 {
	font-size: 20px;
	line-height: 28px;
}
}

@media (max-width: 639px) {
.plan-top-txt,
.plan-top-txt2 {
	font-size: 18px;
	line-height: 25px;
}
}



/* Plan Bottom - Txt */
.plan-btm-txt {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	color: #7a7a7b;
	line-height: 20px;
	text-align:center;
}



/* Choose Plan - Cotent */
.choose-plan-cont {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	margin-bottom: 56px;
}

.choose-plan-cont:last-child {
	margin-bottom: 0;
}

.choose-plan-cont .plan-top-txt,
.choose-plan-cont .plan-top-txt2 {
	margin-bottom: 56px;
}

.choose-plan-cont .plan-top-txt:last-child,
.choose-plan-cont .plan-top-txt2:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
.choose-plan-cont {
	margin-bottom: 40px;
}

.choose-plan-cont .plan-top-txt,
.choose-plan-cont .plan-top-txt2 {
	text-align: center;
	margin-bottom: 40px;
}

.choose-plan-cont .plan-top-txt2 {
	text-align: left;
}
}



/* Contact CTA - Desktop */
.cnt-cta-lg {
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	text-align: center;
	margin-bottom: 40px;
}

.cnt-cta-lg:last-child {
	margin-bottom: 0;
}

.cnt-cta-lg p {
	padding-bottom: 16px;
}

.cnt-cta-lg p:last-child {
	padding-bottom: 0;
}

.cnt-cta-lg .btn-out {
	margin: 0;
}

.cnt-cta-lg .btn-out .btn {
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.09em;
	padding: 15px 20px 14px 21px;
	margin: 0;
}

@media (max-width: 767px) {
.cnt-cta-lg {
	font-size: 18px;
	line-height: 25px;
}
}



/* Contact CTA - Mobile */
.cnt-cta-sm {
	display: none;
	margin-bottom: 40px;
}

.cnt-cta-sm:last-child {
	margin-top: 50px;
	margin-bottom: 0;
}

.cnt-cta-sm p {
	width: 100%;
	float: left;
	font-weight: 700;
	font-size: 14px;
	line-height: 19px;
	padding: 0 175px 0 0;
}

.cnt-cta-sm .btn-out {
	width: 159px;
	float: left;
	padding: 0;
	margin: 0 0 0 -159px;
}

.cnt-cta-sm .btn-out .btn {
	width: 100%;
	color: #343335;
	background: none;
	box-shadow: inset #343335 0 0 0 1px;
	padding-left: 10px;
	padding-right: 20px;
	margin: 0;
}

.cnt-cta-sm .btn-out .btn:hover,
.cnt-cta-sm .btn-out .btn:focus,
.cnt-cta-sm .btn-out .btn:active,
.cnt-cta-sm .btn-out .btn:active:focus,
.cnt-cta-sm .btn-out .btn.active,
.cnt-cta-sm .btn-out .btn.active:focus {
	color: #ffffff;
	background: #343335;
}

@media (max-width: 767px) {
.cnt-cta-sm {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
}
}



/* CNT - Txt */
.cnt-txt em {
	width: 27px;
	display: inline-block;
	position: relative;
	top: -2px;
}



/* Address - Box */
.address-bx {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-size: 18px;
	line-height: 25px;
	background: #F2F2F3;
	border: 1px solid #D9D9D9;
	border-radius: 5px;
	position: relative;
	padding: 13px 24px 12px 24px;
	margin-bottom: 30px;
}

.address-bx:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
.address-bx {
	font-size: 14px;
	line-height: 20px;
	padding: 13px 24px 12px 24px;
}
}



/* Slider - Calendar */
.slider-calendar {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	/* padding-bottom: 30px; */
	margin: 10px 0 0 0;
}

.slider-calendar .items-out {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-bottom: 40px;
}

.slider-calendar .items-out:last-child {
	padding-bottom: 0;
}

.slider-calendar .item {
	width: 48px;
	float: left;
}

.slider-calendar .item .month {
	width: 100%;
	float: left;
	font-weight: 700;
	font-size: 16px;
	color: #7A7A7B;
	line-height: 22px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 6px;
	opacity: 0;
}

.slider-calendar .item .month:last-child {
	margin-bottom: 0;
}

.slider-calendar .item.show-month .month {
	opacity: 1;
}

.slider-calendar .item .date {
	width: 48px;
	height: 48px;
	float: left;
	font-weight: 700;
	font-size: 24px;
	color: #000000;
	line-height: 48px;
	text-align: center;
	position: relative;
	margin-bottom: 6px;
}

.slider-calendar .item .date:last-child {
	margin-bottom: 0;
}

.slider-calendar .item .day {
	width: 100%;
	float: left;
	font-weight: 700;
	font-size: 12px;
	color: #B3B3B3;
	line-height: 16px;
	letter-spacing: 0.05em;
}

.slider-calendar .item a {
	width: 100%;
	float: left;
	color: inherit;
	text-align: center;
	text-decoration: none;
}

.slider-calendar .item a.current .date {
	color: #343335;
}

.slider-calendar .item a.current .date:before {
	content: "";
	width: 28px;
	height: 2px;
	float: left;
	background: #343335;
	position: absolute;
	bottom: 7px;
	left: 50%;
	transform: translate(-50%, 0);
}

.slider-calendar .item a.current:hover .date:before,
.slider-calendar .item a.current:focus .date:before {
	display: none;
}

.slider-calendar .item a:focus .date,
.slider-calendar .item a.selected .date {
	color: #F89C25;
	background: #FFF7EC;
	box-shadow: inset #F89C25 0 0 0 1px;
	border-radius: 360px;
}

.slider-calendar .item a:hover .date {
	color: #F89C25;
}

.slider-calendar .owl-nav button {
	width: 32px;
	height: 32px;
	font-weight: 700;
	font-size: 16px !important;
	color: #ffffff !important;
	line-height: 1em !important;
	text-decoration: none;
	text-align: center;
	background: #343335 !important;
	border-radius: 360px;
	margin-top: 2px;
}

.slider-calendar .owl-nav button:hover,
.slider-calendar .owl-nav button:focus,
.slider-calendar .owl-nav button:active {
	color: #ffffff;
	background: #F89C25;
}

.slider-calendar .owl-nav button.owl-prev {
	left: -32px;
	padding-right: 2px;
}

.slider-calendar .owl-nav button.owl-next {
	right: -32px;
	padding-left: 2px;
}

.slider-calendar .times-out {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	font-size: 16px;
	line-height: 22px;
	padding-bottom: 30px;
	margin-right: -40px;
}

.slider-calendar .times-out:last-child {
	padding-bottom: 0;
}

.slider-calendar .times-out p {
	padding-bottom: 24px;
}

.slider-calendar .times-out p:last-child {
	padding-bottom: 0;
}

.slider-calendar .times-out .time {
	float: left;
}

.slider-calendar .times-out .time a {
	float: left;
	font-weight: 700;
	font-size: 13px;
	color: #343335;
	line-height: 17px;
	text-align: center;
	text-decoration: none;
	border: 1px solid #7A7A7B;
	border-radius: 360px;
	padding: 11px 16px 9px 16px;
}

.slider-calendar .times-out .time a:hover,
.slider-calendar .times-out .time a:focus,
.slider-calendar .times-out .time a.selected {
	color: #F89C25;
	background: #FFF7EC;
	border-color: #F89C25;
}

.slider-calendar .times-out .owl-stage {
	display: -webkit-inline-box;
}

@media (max-width: 767px) {
.slider-calendar {
	/* padding-bottom: 25px; */
	}

.slider-calendar .items-out {
	padding-bottom: 30px;
	margin-right: -20px;
}

.slider-calendar .item {
	width: 59px;
	position: relative;
	margin-top: 31px;
}

.slider-calendar .item .month {
	font-size: 14px;
	line-height: 19px;
	text-align: left;
	position: absolute;
	top: -31px;
	left: 0;
	padding: 0;
	margin: 0;
}

.slider-calendar .item .date {
	width: 100%;
	height: auto;
	font-size: 24px;
	line-height: 33px;
	margin-bottom: 9px;
}

.slider-calendar .item .day {
	width: 100%;
	float: left;
	font-weight: 700;
	font-size: 12px;
	color: #B3B3B3;
	line-height: 16px;
	letter-spacing: 0.05em;
}

.slider-calendar .item a {
	width: 100%;
	height: 82px;
	float: left;
	box-shadow: inset #000000 0 0 0 1px;
	border-radius: 10px;
	position: relative;
	padding: 8px 8px;
}

.slider-calendar .item a.current .date:before {
	bottom: 0;
}

.slider-calendar .item a:hover,
.slider-calendar .item a:focus,
.slider-calendar .item a.selected {
	color: #F89C25;
	background: #FFF7EC;
	box-shadow: inset #F89C25 0 0 0 1px;
}

.slider-calendar .item a:hover .date,
.slider-calendar .item a:focus .date,
.slider-calendar .item a.selected .date {
	color: inherit;
	background: none;
	box-shadow: none;
	border-radius: 0;
}

.slider-calendar .item a:hover .day,
.slider-calendar .item a:focus .day,
.slider-calendar .item a.selected .day {
	color: #F89C25;
}

.slider-calendar .owl-nav button {
	display: none;
}

.slider-calendar .times-out {
	margin-right: -20px;
}
}



/* Form - Output */
.form-output {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: #F2F2F3;
	border-radius: 10px;
	position: relative;
	padding: 24px;
	margin-bottom: 30px;
}

.form-output:last-child {
	margin-bottom: 0;
}

.form-output ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 -20px -24px -20px;
}

.form-output ul li {
	float: left;
	font-weight: 600;
	font-size: 14px;
	color: #7A7A7B;
	line-height: 20px;
	padding: 0 20px 24px 20px;
	margin: 0;
}

.form-output ul li:last-child {
	padding-bottom: 24px;
}

.form-output ul li label {
	margin-bottom: 7px;
}

.form-output ul li label:last-child {
	margin-bottom: 0;
}

.form-output ul li:before {
	display: none;
}

.form-output .edit {
	float: right;
	line-height: 1em;
	position: absolute;
	top: -33px;
	right: 0;
}

.form-output .edit a {
	float: left;
	color: #4D4F53;
	background: url(img/icon-edit-gray.svg) no-repeat left center;
	background-size: auto 12px;
	padding: 2px 0 0 18px;
}

.form-output .edit a:focus,
.form-output .edit a:active,
.form-output .edit a:hover {
	color: #F89C25;
	background-image: url(img/icon-edit-orange.svg);
}

@media (max-width: 767px) {
.form-output {
	padding: 24px 30px;
}

.form-output ul {
	width: 100%;
	margin: 0 0 -12px 0;
}

.form-output ul li {
	width: 100%;
	padding: 0 0 15px 0;
}

.form-output ul li:last-child {
	padding-bottom: 15px;
}

.form-output ul li label {
	margin-bottom: 5px;
}

.form-output .edit a {
	background-size: auto 12px;
	padding: 3px 0 0 16px;
}
}



/* Steps */
.steps {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	position: relative;
}

.steps .step-items {
	width: 100%;
	float: left;
	counter-reset: item;
	padding: 0 315px 0 0;
	margin: 0;
}

.steps .step-items .step-item {
	width: 100%;
	min-height: 35px;
	float: left;
	counter-increment: item;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	position: relative;
	padding: 2px 0 41px 59px;
}

.steps .step-items .step-item:before {
	content: counter(item);
	width: 35px;
	height: 35px;
	float: left;
	font-weight: 700;
	font-size: 13px;
	color: #ffffff;
	line-height: 36px;
	text-align: center;
	background: #D9D9D9;
	border-radius: 360px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}

.steps .step-items .step-item:after {
	content: "";
	width: 2px;
	height: 100%;
	float: left;
	border-left: 2px dashed #B3B3B3;
	position: absolute;
	top: 0;
	left: 17px;
}

.steps .step-items .step-item:last-child {
	padding-bottom: 0;
}

.steps .step-items .step-item:last-child:after {
	display: none;
}

.steps .step-items .step-item.current:before {
	background: #F89C25;
}

.steps .step-items .step-item.completed:before {
	content: "\f00c";
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	background: #F89C25;
}

.steps .step-items .step-item .txt {
	padding-bottom: 20px;
}

.steps .step-items .step-item .step-title {
	width: 100%;
	font-weight: 700;
	font-size: 24px;
	color: #000000;
	line-height: 32px;
	position: relative;
	overflow: hidden;
	margin-bottom: 12px;
}

.steps .step-items .step-item .step-title:last-child {
	margin-bottom: 0;
}

.steps .step-items .step-item .step-cont {
	width: 100%;
	float: none;
	display: none;
	vertical-align: top;
	padding-bottom: 20px;
}

.steps .step-items .step-item.current .step-cont,
.steps .step-items .step-item.completed .step-cont {
	display: inline-block;
}

.steps .step-items .step-item .form-block label {
	font-size: 14px;
	line-height: 20px;
}

.steps .order-summary {
	width: 275px;
	float: right;
	position: relative;
	z-index: 1;
	margin: 0 0 0 -275px;
}

@media (min-width: 992px) {
.steps .order-summary .order-inn {
	width: 100%;
	float: left;
}
}

@media (max-width: 991px) {
.steps .step-items {
	padding: 0 0 70px 0;
}

.steps .order-summary {
	width: 100%;
	float: left;
	position: fixed;
	bottom: 0;
	left: 0;
	margin: 0;
	z-index: 5;
	transition: bottom 1s;
}

.steps .order-summary.bup {
	position: relative;
}

.steps .order-summary .order-inn {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.steps .order-summary.sticky-remove {
	position: relative;
	bottom: 0;
	left: 0;
	margin-bottom: -120px;
}

.steps .order-summary.sticky-remove .order-inn {
	margin: 0 -40px;
}

.steps .order-summary .plan-box2 {
	width: 100%;
	float: left;
	margin: 0;
}

.steps .order-summary .cnt-cta-lg {
	display: none;
}
}

@media (max-width: 767px) {
.steps .step-items {
	padding: 0 0 50px 0;
}

.steps .step-items .step-item {
	min-height: 30px;
	padding: 3px 0 40px 0;
}

.steps .step-items .step-item:before {
	width: 30px;
	height: 30px;
	font-size: 12px;
	line-height: 31px;
}

.steps .step-items .step-item:after {
	display: none;
}

.steps .step-items .step-item .txt {
	/* padding-left: 46px;
	padding-bottom: 25px; */
}

.steps .step-items .step-item .step-title {
	font-size: 18px;
	line-height: 25px;
	padding-left: 46px;
}

.steps .step-items .step-item .step-cont {
	padding-bottom: 10px;
}

.steps .order-summary.sticky-remove {
	margin-bottom: -80px;
}

.steps .order-summary.sticky-remove .order-inn {
	margin: 0 -20px;
}

.steps .order-summary.hide {
	bottom: -100px;
}
}



/*  Order Details */
.order-details {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 80px;
}

.order-details:last-child {
	margin-bottom: 0;
}

.order-details .heading-txt2 {
	font-weight: 600;
	font-size: 24px;
	line-height: 33px;
}

.order-details .heading-txt2 h1,
.order-details .heading-txt2 .h1,
.order-details .heading-txt2 h2,
.order-details .heading-txt2 .h2,
.order-details .heading-txt2 h3,
.order-details .heading-txt2 .h3 {
	padding-bottom: 24px;
}

.order-details .heading-txt2 p {
	color: #000000;
}

.order-details .heading-txt2 .icon {
	width: 100%;
	overflow: hidden;
	margin-bottom: 24px;
}

.order-details .heading-txt2 .icon img {
	max-height: 50px;
}

.order-details .heading-txt2 .aside {
	width: 100%;
	max-width: 820px;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.order-details .plan-box3 {
	width: 100%;
	max-width: 380px;
	background: #FFFFFF;
	box-shadow: 1px 1px 50px -7px rgba(0, 0, 0, 0.17);
	border-radius: 10px;
	overflow: hidden;
	padding: 48px;
	margin: 0 auto;
}

.order-details .plan-box3 .aside-out {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.order-details .plan-box3 .aside {
	width: 100%;
	float: left;
	border-right: 1px solid #dddddd;
	font-size: 16px;
	line-height: 22px;
}

.order-details .plan-box3 .aside:last-child {
	border: none;
}

.order-details .plan-box3 .aside h4 {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 20px;
	position: relative;
	padding: 0 0 0 33px;
	margin-bottom: 40px;
}

.order-details .plan-box3 .aside h4 em {
	width: 20px;
	height: 20px;
	float: left;
	line-height: 20px;
	position: absolute;
	top: -1px;
	left: 0;
}

.order-details .plan-box3 .aside h4 em img {
	width: 100%;
}

.order-details .plan-box3 .aside h4:last-child {
	margin-bottom: 0;
}

.order-details .plan-box3 .aside p {
	padding-bottom: 16px;
}

.order-details .plan-box3 .aside p:last-child {
	padding-bottom: 0;
}

.order-details .plan-box3 .aside ul {
	padding: 0;
	margin: 0;
}

.order-details .plan-box3 .aside ul li {
	font-size: 14px;
	color: #7A7A7B;
	line-height: 20px;
	padding: 0;
	margin: 0;
}

.order-details .plan-box3 .aside ul li:before {
	display: none;
}

.order-details .plan-box3 .aside .price {
	width: 100%;
	font-weight: 800;
	font-size: 24px;
	line-height: 32px;
	overflow: hidden;
	margin-bottom: 10px;
}

.order-details .plan-box3 .aside .price sub {
	font-size: 17px;
	top: 0;
	margin-left: 2px;
}

@media (min-width: 768px) {
.order-details .plan-box3.alt-2 {
	max-width: 700px;
	padding: 48px 48px 48px 6.5%;
}

.order-details .plan-box3.alt-2 .aside-out {
	margin: 0 -60px;
}

.order-details .plan-box3.alt-2 .aside {
	width: 42%;
	padding: 0 60px;
}

.order-details .plan-box3.alt-2 .aside:nth-child(even) {
	width: 58%;
}

.order-details .plan-box3.alt-3 {
	max-width: 100%;
}

.order-details .plan-box3.alt-3 .aside-out {
	margin: 0 -48px;
}

.order-details .plan-box3.alt-3 .aside {
	width: 33.33333333333333%;
	padding: 0 48px;
}
}

@media (min-width: 768px) and (max-width: 991px) {
.order-details .plan-box3.alt-3 .aside-out {
	margin: 0 -30px;
}

.order-details .plan-box3.alt-3 .aside {
	width: 31%;
	padding: 0 30px;
}

.order-details .plan-box3.alt-3 .aside:nth-child(2) {
	width: 38%;
}
}

@media (max-width: 767px) {
.order-details {
	margin-bottom: 56px;
}

.order-details .heading-txt2 {
	font-size: 14px;
	line-height: 20px;
}

.order-details .heading-txt2 .icon {
	margin-bottom: 16px;
}

.order-details .heading-txt2 .aside {
	max-width: 240px;
}

.order-details .plan-box3 {
	max-width: 420px;
	padding: 40px;
}

.order-details .plan-box3 .aside {
	font-size: 14px;
	line-height: 20px;
	border: none;
	border-bottom: 1px solid #D9D9D9;
	padding: 0 0 32px 0;
	margin: 0 0 32px 0;
}

.order-details .plan-box3 .aside:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.order-details .plan-box3 .aside h4 {
	margin-bottom: 24px;
}

.order-details .plan-box3 .aside p strong {
	font-size: 18px;
	line-height: 25px;
}

.order-details .plan-box3 .aside p {
	padding-bottom: 8px;
}

.order-details .plan-box3 .aside .price {
	font-weight: 600;
	font-size: 18px;
	line-height: 25px;
	margin-bottom: 10px;
}

.order-details .plan-box3 .aside .price sub {
	font-size: 18px;
}
}



/* Form Split - Content  */
.form-split-cont {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-bottom: 56px;
	margin: 0 -20px -40px -20px;
}

.form-split-cont:last-child {
	padding-bottom: 0;
}

.form-split-cont .left-cl {
	width: 30%;
	float: left;
	padding: 0 20px 40px 20px;
}

.form-split-cont .left-cl h3 {
	padding-bottom: 20px;
}

.form-split-cont .left-cl h3:last-child {
	padding-bottom: 0;
}

.form-split-cont .right-cl {
	width: 70%;
	float: left;
	padding: 0 20px 40px 20px;
}

@media (max-width: 991px) {
.form-split-cont .left-cl {
	width: 40%;
}

.form-split-cont .right-cl {
	width: 60%;
}
}

@media (max-width: 767px) {
.form-split-cont {
	padding-bottom: 40px;
	margin: 0;
}

.form-split-cont .left-cl {
	width: 100%;
	border-top: 1px solid #dddddd;
	padding: 40px 0 40px 0;
}

.form-split-cont .left-cl h3 {
	padding-bottom: 16px;
}

.form-split-cont .right-cl {
	width: 100%;
	padding: 0;
}
}



/* Form Split - Content2  */
.form-split-cont2 {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-bottom: 56px;
}

.form-split-cont2:last-child {
	padding-bottom: 0;
}

.form-split-cont2 .left-cl {
	width: 291px;
	float: left;
	position: relative;
	z-index: 1;
	margin: 0 -291px 0 0;
}

.form-split-cont2 .left-cl .plan-box2 {
	border: 1px solid #D9D9D9;
	box-shadow: none;
}

.form-split-cont2 .right-cl {
	width: 100%;
	float: left;
	padding: 0 0 0 315px;
}

@media (max-width: 991px) {
.form-split-cont2 .left-cl {
	width: 100%;
	padding: 0 0 50px 0;
}

.form-split-cont2 .left-cl .plan-box2 {
	display: none;
}

.form-split-cont2 .right-cl {
	width: 100%;
	padding: 0;
}
}

@media (max-width: 767px) {
.form-split-cont2 {
	padding-bottom: 40px;
}

.form-split-cont2 .left-cl {
	padding-bottom: 40px;
}
}



/* Content - Inner */
.content-inner {
	width: 100%;
	overflow: hidden;
	padding: 90px 0 120px 0;
}

@media (max-width: 767px) {
.content-inner {
	padding: 55px 0 80px 0;
}
}


/* Content - Inner2 */
.content-inner2 {
	width: 100%;
	background: #FFF7EC;
	overflow: hidden;
	padding: 100px 0;
}

@media (max-width: 767px) {
.content-inner2 {
	padding: 60px 0;
}
}


/* Content - Inner3 */
.content-inner3 {
	width: 100%;
	background: #FFF7EC;
	overflow: hidden;
	padding: 80px 0;
}

@media (max-width: 767px) {
.content-inner3 {
	padding: 60px 0;
}
}


/*
 7.) Search - Address Dropdown
----------------------------------------*/

/* Address List - Menu */
.ui-menu {
	max-height: 290px;
	background: #ffffff;
	border-color: #b3b3b3;
	border-radius: 5px;
	overflow: auto;
	overflow-x: hidden;
	padding: 0;
	margin: 3px 0 0 0;
}

.ui-menu li {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: #343335;
	line-height: 18px;
	letter-spacing: 0.02em;
	border: none;
	box-shadow: none;
	padding: 0;
	margin: 0;
}

.ui-menu li:before {
	display: none;
}

.ui-menu li .ui-menu-item-wrapper {
	border: none;
	box-shadow: none;
	padding: 12px 20px;
	margin: 0;
}

.ui-menu li .ui-menu-item-wrapper:hover {
	background: #f89c25;
	box-shadow: none;
}

#ui-id-2.ui-menu {
	border-radius: 10px;
}

#ui-id-2.ui-menu li {
	font-size: 18px;
	line-height: 25px;
	letter-spacing: normal;
}

#ui-id-2.ui-menu li .ui-menu-item-wrapper {
	padding: 16px 24px 16px 56px;
}

@media (max-width: 767px) {
.ui-menu,
#ui-id-2.ui-menu {
	border-radius: 5px;
	margin-top: 3px;
}

.ui-menu li,
#ui-id-2.ui-menu li {
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 0.02em;
}

.ui-menu li .ui-menu-item-wrapper,
#ui-id-2.ui-menu li .ui-menu-item-wrapper {
	padding: 12px 20px;
}
}


/*
 8.) Elementor - Widgets
----------------------------------------*/

/* Custom - Grid Columns */
@media (min-width: 992px) {
.custom-two-column .elementor-container {
	flex-wrap: wrap;
}

.custom-two-column .elementor-column {
	flex: 0 0 50%;
}

.custom-three-column .elementor-container {
	flex-wrap: wrap;
}

.custom-three-column .elementor-column {
	flex: 0 0 33.33%;
}

.custom-four-column .elementor-container {
	flex-wrap: wrap;
}

.custom-four-column .elementor-column {
	flex: 0 0 25%;
}
}


/* Max - Middle */
.max-middle {
    margin: 0 auto;
}

@media (min-width: 768px) {
.col-split-minus-10 > .elementor-container {
	margin: 0 -10px!important;
}
}

@media (min-width: 992px) {
.max-middle-400 .elementor-widget-wrap {
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.max-right-360 {
	justify-content: flex-end;
}

.max-right-360 .elementor-widget-wrap {
	max-width: 400px;
}

.max-left-400 .elementor-widget-wrap {
	max-width: 440px;
}
}

@media (max-width: 767px) {
.custom-image-box .elementor-widget-image-box .elementor-image-box-wrapper {
	text-align: left;
}

.custom-image-box .elementor-widget-image-box .elementor-image-box-wrapper .elementor-image-box-img {
	width: 55px !important;
	float: left;
	margin: 3px -55px 0 0 !important;
}

.custom-image-box .elementor-widget-image-box .elementor-image-box-wrapper .elementor-image-box-content {
	width: 100%;
	float: left;
	padding-left: 55px;
}
}


/* Elementor - Custom
.elementor a {
	text-decoration: underline;
}

.elementor a:hover,
.elementor a:focus,
.elementor a:active {
	text-decoration: underline;
}

.elementor .elementor-button {
	text-decoration: none;
}

.elementor .elementor-button:hover,
.elementor .elementor-button:focus,
.elementor .elementor-button:active {
	text-decoration: none;
}

.elementor .btn {
	text-decoration: none;
}

.elementor .btn:hover,
.elementor .btn:focus,
.elementor .btn:active {
	text-decoration: none;
}

h1.elementor-heading-title {
	line-height: 50px;
}

h2.elementor-heading-title {
	line-height: 45px;
}

h3.elementor-heading-title {
	line-height: 38px;
}

h4.elementor-heading-title {
	line-height: 28px;
}

h5.elementor-heading-title {
	line-height: 25px;
}

h6.elementor-heading-title {
	line-height: 22px;
}

@media (max-width: 767px) {
h1.elementor-heading-title {
	line-height: 38px;
}

h2.elementor-heading-title {
	line-height: 33px;
}

h3.elementor-heading-title {
	line-height: 33px;
}

h4.elementor-heading-title {
	line-height: 24px;
}

h5.elementor-heading-title {
	line-height: 24px;
}

h6.elementor-heading-title {
	line-height: 22px;
}
}
*/


/*
 9.) Text - Colors / Wordpress Cores
------------------------------------------------------*/

.fancybox-button {
	color: #cccccc !important;
	background: rgba(30, 30, 30, .6) !important;
	background-color: rgba(30, 30, 30, 0.6) !important;
	border-radius: 0 !important;
	padding: 10px !important;
}

.txt-12 {
	font-size: 12px;
	line-height: 16px;
}

.txt-14 {
	font-size: 14px;
	line-height: 20px;
}

.txt-16 {
	font-size: 16px;
	line-height: 22px;
}

.txt-18 {
	font-size: 18px;
	line-height: 25px;
}

.txt-20 {
	font-size: 20px;
	line-height: 28px;
}

.txt-shadow {
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
.txt-20 {
	font-size: 18px;
	line-height: 25px;
}
}


/* Colors */
.gray {
	color: #343335!important;
}

.orange {
	color: #f89c25!important;
}

.orange-dark {
	color: #df8510!important;
}

.blue {
	color: #7bced4!important;
}

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

.blue-dark {
	color: #466c8e!important;
}

.blue-medium {
	color: #7dadc8!important;
}

.pink-light {
	color: #fff7ec!important;
}

.pink-dark {
	color: #e8dccd!important;
}

.voilet {
	color: #58186C!important;
}

.white {
	color: #ffffff!important;
}


/* Text - Positions */
.upper-case {
	text-transform: uppercase;
}

.lower-case {
	text-transform: none;
}

.underline {
	text-decoration: underline;
}

.center-align {
	text-align: center;
	justify-content: center;
}

.vertical-align {
	align-items: center;
}

.left-align {
	text-align: left;
}

.right-align {
	text-align: right;
}

@media (max-width: 767px) {
.mobi-align-left {
	text-align: left;
}
}


/* ---------------------------- Text meant only for screen readers ---------------------------- */

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;/* Above WP toolbar */
}


/* ---------------------------- End WordPress Core ---------------------------- */


body.customize-partial-edit-shortcuts-shown .customize-partial-edit-shortcut button {
    padding: 0!important;
    border-radius: 360px!important;
}

.hide-on-mobile, .hide-on-tablet {
	display: block;
}

.hide-until-mobile, .hide-until-tablet {
	display: none;
}


@media (max-width: 992px) {
	.hide-on-tablet {
		display: none;
	}

	.hide-until-tablet {
		display: block;
	}
}
@media (max-width: 767px) {
	.hide-on-mobile {
		display: none;
	}

	.hide-until-mobile {
		display: block;
	}
}

.cart-link {
	position: relative;
	display: none;
	visibility: hidden;
}

.cart-link.active {
	display: block;
	visibility: visible;
}

.cart-link a {
	color: #111;
}

.cart-link:after { 
	
	content: '1';
	font-size: 12px;     
	background: orange;     
	border-radius: 50%;     
	padding: 1px 5px;     
	position: relative;     
	left: -8px;     
	top: -1px;     
	opacity: 0.9;     
	color: white;     
	width: 10px; 
}



.menu-btn .cart-link {
	margin-right: 10px;
}

@media (max-width: 992px) {
	.nav-max .cart-link.active {
		display: none;
		visibility: hidden;
	}
}