@charset "UTF-8";
html *:first-child {
	margin-top: 0;
}

html *:last-child {
	margin-bottom: 0;
}

body {
	font-family: "Lato", Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.41429;
	color: #9b9b9b;
	background-color: #C3D3D5;
}

mark {
	background: #8f859e;
	color: #fff;
	padding: 2px 4px;
}

a {
	color: #faff41;
	text-decoration: none;
	transition: all 250ms ease-in;
}

a:hover, a:focus {
	color: #695f77;
	text-decoration: none;
	outline: none;
}

a[href*='callto'], a[href*='mailto'] {
	white-space: nowrap;
}

a.hover, a.active {
	color: #695f77;
}

.link-gray, .link-gray:active, .link-gray:focus {
	color: #9b9b9b;
}

.link-gray:hover {
	color: #8f859e;
}

.link-gray-dark, .link-gray-dark:active, .link-gray-dark:focus {
	color: #363d41;
}

.link-gray-dark:hover {
	color: #8f859e;
}

.link-gray-darker, .link-gray-darker:active, .link-gray-darker:focus {
	color: #151515;
}

.link-gray-darker:hover {
	color: #8f859e;
}

.link-hover {
	color: #695f77;
}

.link-press {
	color: #695f77;
}

.link-underline {
	text-decoration: underline;
}

.site-map-link {
	color: #151515;
}

.site-map-link:before {
	padding-right: 17px;
	color: #151515;
	font-size: 15px;
}

.heading-link {
	font-size: 18px;
	font-family: "Poppins", Helvetica, Arial, sans-serif;
}

.p a:hover,
.list a:hover {
	text-decoration: underline;
}

.p a.site-map-link,
.list a.site-map-link {
	text-decoration: none;
}

.overflow-hidden {
	overflow: hidden;
}

p {
	margin-bottom: 0;
}

img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.img-rounded {
	border-radius: 4px;
}

/*
*
* Buttons
* --------------------------------------------------
*/
.button {
	display: inline-block;
	position: relative;
	padding: 15px 38px;
	font-size: 16px;
	line-height: 20px;
	border-radius: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border-style: solid;
	text-align: center;
	cursor: pointer;
	vertical-align: middle;
	user-select: none;
	transition: 250ms all ease-in-out;
	font-family: "Poppins", Helvetica, Arial, sans-serif;
	font-weight: 500;
	border-width: 0;
}

.button:focus, .button:active, .button:active:focus {
	outline: none;
}

.button .caret {
	margin-left: 8px;
}

.button.button-effect-ujarak span {
	position: relative;
	z-index: 2;
}

.button.button-effect-ujarak:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: -3px;
	bottom: -3px;
	left: 10%;
	right: 10%;
	transition: all 250ms ease-in;
	opacity: 0;
	z-index: 0;
}

.button.button-effect-ujarak:after {
	content: '';
	position: absolute;
	top: -3px;
	bottom: -3px;
	left: -3px;
	right: -3px;
	z-index: 1;
	transition: all 250ms ease-in;
}

.button.button-effect-ujarak:hover {
	background: transparent;
}

.button.button-effect-ujarak:hover:before {
	opacity: 1;
	left: -1px;
	right: -1px;
}

.button.button-effect-ujarak:hover:after {
	opacity: 0;
	left: 10%;
	right: 10%;
}

.button[class*='-outline'] {
	padding: 11px 38px;
	font-size: 16px;
	line-height: 20px;
	border-radius: 0;
}

.button-block {
	display: block;
	width: 100%;
}

.button-default {
	color: #151515;
	background-color: transparent;
	border-color: #9b9b9b;
}

.button-default:hover, .button-default:focus, .button-default:active, .button-default:hover {
	color: #fff;
	background-color: #151515;
	border-color: #151515;
}

.button-transparent {
	color: #151515;
	background-color: transparent;
	border-color: transparent;
}

.button-transparent:hover, .button-transparent:focus, .button-transparent:active, .button-transparent:hover {
	color: #fff;
	background-color: #151515;
	border-color: #151515;
}

.button-default-outline {
	border-width: 3px;
	color: #151515;
	background-color: transparent;
	border-color: rgba(0, 0, 0, 0.2);
}

.button-default-outline:hover, .button-default-outline:focus, .button-default-outline:active, .button-default-outline:hover {
	color: #fff;
	background-color: #151515;
	border-color: #151515;
}

.button-gray-dark-outline {
	border-width: 3px;
	color: #151515;
	background-color: transparent;
	border-color: #151515;
}

.button-gray-dark-outline:hover, .button-gray-dark-outline:focus, .button-gray-dark-outline:active, .button-gray-dark-outline:hover {
	color: #fff;
	background-color: #151515;
	border-color: #151515;
}

.button-gray-dark-outline.button-effect-ujarak {
	border-width: 0;
	padding: 14px 38px;
	font-size: 16px;
	line-height: 20px;
	border-radius: 0;
}

.button-gray-dark-outline.button-effect-ujarak:before {
	background-color: #151515;
}

.button-gray-dark-outline.button-effect-ujarak:after {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border: 3px solid #151515;
}

.button-gray-dark-outline.button-effect-ujarak:hover {
	background: transparent;
}

.button-white-outline {
	border-width: 3px;
	color: #000;
	background-color: transparent;
	border-color: #fff;
}

.button-white-outline:hover, .button-white-outline:focus, .button-white-outline:active, .button-white-outline:hover {
	color: #fff;
	background-color: #8f859e;
	border-color: #8f859e;
}

.button-white-outline.button-effect-ujarak {
	border-width: 0;
	padding: 14px 38px;
	font-size: 16px;
	line-height: 20px;
	border-radius: 0;
}

.button-white-outline.button-effect-ujarak:before {
	background-color: #8f859e;
}

.button-white-outline.button-effect-ujarak:after {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border: 3px solid #000;
}

.button-white-outline.button-effect-ujarak:focus, .button-white-outline.button-effect-ujarak:active {
	background: #8f859e;
	border-color: #8f859e;
}

.button-white-outline.button-effect-ujarak:focus:after, .button-white-outline.button-effect-ujarak:active:after {
	border: 0;
}

.button-white-outline.button-effect-ujarak:hover {
	background: transparent;
}

.button-white-outline.button-lg.button-square {
	border-radius: 0;
}

.button-secondary-outline {
	border-width: 3px;
	color: #151515;
	background-color: transparent;
	border-color: #dcd1d5;
}

.button-secondary-outline:hover, .button-secondary-outline:focus, .button-secondary-outline:active, .button-secondary-outline:hover {
	color: #fff;
	background-color: #8f859e;
	border-color: #8f859e;
}

.button-secondary-outline.button-effect-ujarak {
	border-width: 0;
	padding: 14px 38px;
	font-size: 16px;
	line-height: 20px;
	border-radius: 0;
}

.button-secondary-outline.button-effect-ujarak:before {
	background-color: #8f859e;
}

.button-secondary-outline.button-effect-ujarak:after {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border: 3px solid #dcd1d5;
}

.button-secondary-outline.button-effect-ujarak:focus, .button-secondary-outline.button-effect-ujarak:active {
	background: #8f859e;
	border-color: #8f859e;
}

.button-secondary-outline.button-effect-ujarak:focus:after, .button-secondary-outline.button-effect-ujarak:active:after {
	border: 0;
}

.button-secondary-outline.button-effect-ujarak:hover {
	background: transparent;
}

.button-secondary-outline.button-lg.button-square {
	border-radius: 0;
}

.button-gray-6-outline {
	border-width: 2px;
	color: #dcd1d5;
	background-color: transparent;
	border-color: #ddd;
}

.button-gray-6-outline:hover, .button-gray-6-outline:focus, .button-gray-6-outline:active, .button-gray-6-outline:hover {
	color: #fff;
	background-color: #8f859e;
	border-color: #8f859e;
}

.button-gray-6-outline.button-effect-ujarak {
	border-width: 0;
	padding: 14px 38px;
	font-size: 16px;
	line-height: 20px;
	border-radius: 0;
}

.button-gray-6-outline.button-effect-ujarak:before {
	background-color: #8f859e;
}

.button-gray-6-outline.button-effect-ujarak:after {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border: 2px solid #ddd;
}

.button-gray-6-outline.button-effect-ujarak:focus, .button-gray-6-outline.button-effect-ujarak:active {
	background: #8f859e;
	border-color: #8f859e;
}

.button-gray-6-outline.button-effect-ujarak:focus:after, .button-gray-6-outline.button-effect-ujarak:active:after {
	border: 0;
}

.button-gray-6-outline.button-effect-ujarak:hover {
	background: transparent;
}

.button-gray-6-outline.button-lg.button-square {
	border-radius: 0;
}

.button-primary {
	color: #fff;
	background-color: #8f859e;
	border-color: #8f859e;
}

.button-primary:hover, .button-primary:focus, .button-primary:active, .button-primary:hover {
	color: #fff;
	background-color: #dcd1d5;
	border-color: #dcd1d5;
}

.button-primary.button-effect-ujarak:before {
	background-color: #dcd1d5;
}

.button-primary.button-effect-ujarak:after {
	background-color: #8f859e;
}

.button-primary.button-effect-ujarak:hover {
	background: transparent;
}

.button-primary-2 {
	color: #fff;
	background-color: #8f859e;
	border-color: #8f859e;
}

.button-primary-2:hover, .button-primary-2:focus, .button-primary-2:active, .button-primary-2:hover {
	color: #fff;
	background-color: #dcd1d5;
	border-color: #dcd1d5;
}

.button-primary-2.button-effect-ujarak:before {
	background-color: #dcd1d5;
}

.button-primary-2.button-effect-ujarak:after {
	background-color: #8f859e;
}

.button-primary-2.button-effect-ujarak:hover {
	background: transparent;
}

.button-secondary {
	color: #fff;
	background-color: #dcd1d5;
	border-color: #dcd1d5;
}

.button-secondary:hover, .button-secondary:focus, .button-secondary:active, .button-secondary:hover {
	color: #fff;
	background-color: #8f859e;
	border-color: #8f859e;
}

.button-secondary.button-effect-ujarak:before {
	background-color: #8f859e;
}

.button-secondary.button-effect-ujarak:after {
	background-color: #dcd1d5;
}

.button-secondary.button-effect-ujarak:hover {
	background: transparent;
}

.button-steel-blue {
	color: #fff;
	background-color: #547ABB;
	border-color: #547ABB;
}

.button-steel-blue:hover, .button-steel-blue:focus, .button-steel-blue:active, .button-steel-blue:hover {
	color: #fff;
	background-color: #3f629d;
	border-color: #3f629d;
}

.button-cerulean {
	color: #fff;
	background-color: #00bbf2;
	border-color: #00bbf2;
}

.button-cerulean:hover, .button-cerulean:focus, .button-cerulean:active, .button-cerulean:hover {
	color: #fff;
	background-color: #00a7d9;
	border-color: #00a7d9;
}

.button-mandy {
	color: #fff;
	background-color: #e75854;
	border-color: #e75854;
}

.button-mandy:hover, .button-mandy:focus, .button-mandy:active, .button-mandy:hover {
	color: #fff;
	background-color: #e12c27;
	border-color: #e12c27;
}

.button-shadow {
	box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.15);
}

.button-shadow:hover {
	box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
}

.button-xs {
	padding: 12px 30px;
	font-size: 14px;
	line-height: 18px;
	border-radius: 3px;
}

.button-xs[class*='-outline'] {
	padding: 10px 15px;
	font-size: 14px;
	line-height: 18px;
	border-radius: 3px;
	padding-bottom: 7px;
}

.button-sm {
	padding: 13px 22px;
	font-size: 14px;
	line-height: 16px;
	border-radius: 3px;
	min-width: auto;
}

.button-sm[class*='-outline'] {
	padding: 13px 22px;
	font-size: 14px;
	line-height: 16px;
	border-radius: 3px;
}

.button-lg {
	padding: 19px 65px;
	font-size: 18px;
	line-height: 20px;
	border-radius: 3px;
}

.button-lg[class*='-outline'] {
	padding: 19px 65px;
		margin-left: 200px;
font-size: 18px;
	line-height: 20px;
	border-radius: 3px;
}

.button-xl {
	padding: 25px 70px;
	font-size: 24px;
	line-height: 24px;
	border-radius: 3px;
}

.button-xl[class*='-outline'] {
	padding: 25px 70px;
	font-size: 24px;
	line-height: 24px;
	border-radius: 3px;
}

.button-circle {
	border-radius: 30px;
}

.button-round {
	border-radius: 8px;
}

.button-square {
	border-radius: 0;
}

.button-ellipse-md {
	border-radius: 5px;
}

.button-ellipse-lg {
	border-radius: 10px;
}

.button.button-icon {
	padding-left: 35px;
	padding-right: 35px;
}

.button.button-icon .icon {
	line-height: inherit;
	vertical-align: middle;
	transition: 0s;
}

.button.button-icon-left .icon {
	float: left;
	padding-right: 10px;
}

.button.button-icon-right .icon {
	float: right;
	padding-left: 10px;
}

.page .button-tags {
	font-size: 12px;
	border-width: 1px;
	font-weight: 500;
	text-transform: uppercase;
}

.button-link {
	font: 700 16px "Poppins", Helvetica, Arial, sans-serif;
	color: #dcd1d5;
}

/*
*
* Form styles
* --------------------------------------------------
*/
.rd-mailform {
	position: relative;
	text-align: left;
}

html .rd-mailform-inline {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	transform: translateY(-15px);
	margin-bottom: -15px;
}

html .rd-mailform-inline > * {
	margin-top: 15px;
}

html .rd-mailform-inline .form-wrap {
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

html .rd-mailform-inline .form-input {
	min-width: 150px;
}

html .rd-mailform-inline .button {
	margin-top: 15px;
	flex: none;
}

.form-input {
	display: block;
	width: 100%;
	height: 50px;
	padding: 12px 15px;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: #9b9b9b;
	background-color: #f5f5f5;
	background-image: none;
	border: 1px solid #f5f5f5;
	border-radius: 0;
	-webkit-appearance: none;
	letter-spacing: .05em;
}

.form-input:focus {
	outline: 0;
}

.form-input:-webkit-autofill ~ label,
.form-input:-webkit-autofill ~ .form-validation {
	color: #000 !important;
}

textarea.form-input {
	height: 135px;
	min-height: 108px;
	max-height: 229.5px;
	resize: vertical;
}

.form-wrap {
	position: relative;
}

.form-wrap + .form-wrap {
	margin-top: 15px;
}

* + .form-button,
.form-wrap + .button {
	margin-top: 30px;
}

label {
	font-weight: 400;
}

.form-label {
	position: absolute;
	top: 25px;
	left: 15px;
	font-family: "Lato", Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: #9b9b9b;
	pointer-events: none;
	z-index: 9;
	transition: .3s;
	transform: translateY(-50%);
}

.form-label.focus {
	opacity: 0;
}

.form-label.auto-fill {
	color: #9b9b9b;
}

@media (min-width: 768px) {
	.form-label-outside {
		position: static;
		text-transform: uppercase;
	}
	.form-label-outside, .form-label-outside.focus, .form-label-outside.auto-fill {
		opacity: 1;
		transform: none;
		color: #9b9b9b;
		font-size: 14px;
		font-weight: 400;
	}
	.form-label-outside + .form-input + .form-validation {
		top: 34px;
	}
}

.form-validation {
	position: absolute;
	right: 10px;
	top: 3px;
	font-size: 11px;
	line-height: 11px;
	color: #d9534f;
	margin-top: 3px;
	transition: .3s;
	z-index: 11;
}

.form-validation-top-left .form-validation {
	top: 0;
	right: auto;
	left: 5px;
}

#form-output-global {
	position: fixed;
	bottom: 30px;
	left: 15px;
	visibility: hidden;
	transform: translateX(-500px);
	transition: .3s all ease;
	z-index: 9999999;
}

#form-output-global.active {
	transform: translateX(0);
	visibility: visible;
}

@media (min-width: 480px) {
	#form-output-global {
		left: 30px;
	}
}

.form-output {
	position: absolute;
	top: 100%;
	left: 0;
	font-size: 14px;
	line-height: 1.5;
	margin-top: 2px;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
}

.form-output.active {
	opacity: 1;
	visibility: visible;
}

.form-output.error {
	color: #d9534f;
}

.form-output.success {
	color: #5cb85c;
}

.radio .radio-custom,
.radio-inline .radio-custom,
.checkbox .checkbox-custom,
.checkbox-inline .checkbox-custom {
	opacity: 0;
}

.radio .radio-custom, .radio .radio-custom-dummy,
.radio-inline .radio-custom,
.radio-inline .radio-custom-dummy,
.checkbox .checkbox-custom,
.checkbox .checkbox-custom-dummy,
.checkbox-inline .checkbox-custom,
.checkbox-inline .checkbox-custom-dummy {
	position: absolute;
	width: 14px;
	height: 14px;
	margin-left: -20px;
	margin-top: 5px;
	outline: none;
	cursor: pointer;
}

.radio .radio-custom-dummy,
.radio-inline .radio-custom-dummy,
.checkbox .checkbox-custom-dummy,
.checkbox-inline .checkbox-custom-dummy {
	pointer-events: none;
	background: #ebebeb;
	box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.15);
}

.radio .radio-custom-dummy:after,
.radio-inline .radio-custom-dummy:after,
.checkbox .checkbox-custom-dummy:after,
.checkbox-inline .checkbox-custom-dummy:after {
	position: absolute;
	opacity: 0;
}

.radio .radio-custom:focus,
.radio-inline .radio-custom:focus,
.checkbox .checkbox-custom:focus,
.checkbox-inline .checkbox-custom:focus {
	outline: none;
}

.radio-custom:checked + .radio-custom-dummy:after,
.checkbox-custom:checked + .checkbox-custom-dummy:after {
	opacity: 1;
}

.radio .radio-custom-dummy,
.radio-inline .radio-custom-dummy {
	border-radius: 50%;
}

.radio .radio-custom-dummy:after,
.radio-inline .radio-custom-dummy:after {
	content: '';
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
	background: #151515;
	border-radius: 50%;
}

.checkbox,
.checkbox-inline {
	padding-left: 20px;
}

.checkbox .checkbox-custom-dummy,
.checkbox-inline .checkbox-custom-dummy {
	pointer-events: none;
	border-radius: 3px;
	margin-left: 0;
	left: 0;
}

.checkbox .checkbox-custom-dummy:after,
.checkbox-inline .checkbox-custom-dummy:after {
	content: '\f222';
	font-family: "Material Design Icons";
	font-size: 20px;
	line-height: 10px;
	position: absolute;
	top: 0;
	left: 0;
	color: #151515;
}

.form-button-block .button {
	width: 100%;
}

.form-button {
	display: flex;
	align-items: stretch;
	max-height: 70px;
}

.recaptcha {
	transform: scale(0.9);
	transform-origin: 0 0;
}

.page .form-inline {
	text-align: center;
}

.page .form-inline > * + * {
	margin-top: 20px;
}

@media (min-width: 768px) {
	.page .form-inline {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-align-items: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: 100%;
	}
	.page .form-inline > * + * {
		margin-top: 0;
		margin-left: 30px;
	}
	.page .form-inline .form-wrap {
		-webkit-flex-grow: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
	}
	.page .form-inline .form-input {
		width: 100%;
	}
	.page .form-inline .button {
		display: inline-block;
		-ms-flex-negative: 0;
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
	}
}

.form-comment .form-label-outside {
	text-transform: none;
	color: #151515;
}

.form-comment .form-input {
	background-color: transparent;
	border-radius: 4px;
	color: #151515;
	border-color: #ddd;
	/* Firefox 19+ */
	/* Firefox 18- */
}

.form-comment .form-input::-webkit-input-placeholder {
	color: #151515;
}

.form-comment .form-input::-moz-placeholder {
	color: #151515;
}

.form-comment .form-input:-moz-placeholder {
	color: #151515;
}

.form-comment .form-input:-ms-input-placeholder {
	color: #151515;
}

.form-comment .button {
	font-size: 14px;
	min-width: 180px;
}

h4 + .form-comment {
	margin-top: 10px;
}

.form-search {
	position: relative;
}

.form-search .form-input {
	border: 1px solid #ddd;
	padding-right: 60px;
	color: #000;
	background-color: transparent;
}

.form-search .form-label {
	left: 20px;
	top: 25px;
	color: #9b9b9b;
	font-size: 14px;
}

.form-search-submit {
	position: absolute;
	font-size: 25px;
	right: 20px;
	top: 0;
	bottom: 0;
	padding: 0;
	background: none;
	border: none;
	box-shadow: none;
	color: #151515;
	transition: .3s all ease;
}

.form-search-submit:hover, .form-search-submit:focus {
	color: #8f859e;
	outline: none;
}

.form-wrap_icon {
	position: relative;
	width: 100%;
}

.form-wrap_icon .form-input {
	padding-left: 60px;
}

.form-wrap_icon .form-label {
	left: 60px;
}

.form-wrap_icon::before {
	position: absolute;
	top: 25px;
	left: 22px;
	transform: translateY(-50%);
	margin-right: 7px;
	font-size: 22px;
	line-height: 24px;
	color: #898989;
	z-index: 1;
}

.form-wrap_icon .select2-container .select2-choice {
	padding-left: 0;
}

.form-wrap_icon .select2-container--bootstrap .select2-selection--single {
	padding-left: 60px;
}

.form-wrap_icon__label-outside:before {
	top: auto;
	bottom: 25px;
	transform: translateY(45%);
}

.hotel-booking-form {
	width: 100%;
	text-align: left;
	padding: 20px 20px 20px;
	color: #fff;
	background: #1c6bb0;
	
}

.hotel-booking-form h3 {
	color: inherit;
}

.hotel-booking-form .form-label {
	left: 22px;
	letter-spacing: .05em;
}

.hotel-booking-form .form-input {
	padding-left: 22px;
	background-color: #fff;
}

.hotel-booking-form .select2-container .select2-choice {
	padding-left: 0;
	padding-right: 0;
	background: #fff;
}

.hotel-booking-form .select2-arrow b:before {
	color: #cbcbcb;
}

.hotel-booking-form .button {
	margin-top: 10px;
}

@media (min-width: 480px) {
	.hotel-booking-form {
		padding: 50px 40px 40px;
	}
}

@media (min-width: 1200px) {
	.hotel-booking-form .button {
		font-size: 18px;
		line-height: 20px;
		font-weight: 700;
		padding: 19px 30px;
	}
}

.hotel-booking-form * + .rd-mailform {
	margin-top: 20px;
}

.hotel-booking-form * + .form-wrap {
	margin-top: 5px;
}

.form-label-icon > * {
	display: inline-block;
	vertical-align: middle;
}

.form-label-icon span + span {
	margin-left: 5px;
}

.table-custom {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	font-weight: 400;
	letter-spacing: 0;
	text-align: left;
	background: transparent;
}

.table-custom th,
.table-custom td {
	color: #000;
	background: transparent;
}

.table-custom th {
	padding: 25px 24px;
	font-weight: 700;
	text-transform: uppercase;
	white-space: nowrap;
}

@media (min-width: 768px) {
	.table-custom th {
		padding: 33px 24px;
	}
}

.table-custom td {
	padding: 17px 24px 18px;

	border-bottom: 1px solid #b7b7b7;
}

.table-custom tr:last-of-type td {
	font-weight: 700;
}

.table-custom-primary th {
	color: #fff;
	background: #8f859e;
}

.table-custom-light th {
	background: #f2f3f8;
}

.table-custom-light td + td {
	border-left: 1px solid #b7b7b7;
}

.table-custom-bordered {
	border: 1px solid #b7b7b7;
}

.table-custom-bordered td {
	border: 1px solid #b7b7b7;
}

.table-custom-bordered tbody > tr:first-of-type > td {
	border-top: 0;
}

.table-custom-striped tbody tr:nth-of-type(odd) td {
	background: transparent;
}

.table-custom-striped tbody tr:nth-of-type(even) td {
	background: #f2f3f8;
}

.table-custom-striped tbody td {
	border: 0;
}

.table-round {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}

.table-custom-responsive {
	overflow-x: auto;
	min-height: 0.01%;
}

@media screen and (max-width: 767px) {
	.table-custom-responsive {
		width: 100%;
		margin-bottom: 10px;
		overflow-y: hidden;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		border: 1px solid #b7b7b7;
	}
	.table-custom-responsive > .table-custom > thead > tr > th,
	.table-custom-responsive > .table-custom > thead > tr > td,
	.table-custom-responsive > .table-custom > tbody > tr > th,
	.table-custom-responsive > .table-custom > tbody > tr > td,
	.table-custom-responsive > .table-custom > tfoot > tr > th,
	.table-custom-responsive > .table-custom > tfoot > tr > td {
		white-space: nowrap;
	}
}

/*
*
* Lists
* --------------------------------------------------
*/
ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

.list > li + li {
	margin-top: 10px;
}

.list-xl > li + li {
	margin-top: 40px;
}

@media (min-width: 1200px) {
	.list-xl > li + li {
		margin-top: 90px;
	}
}

.list-inline {
	margin-left: -5px;
	margin-right: -5px;
}

.list-inline > li {
	padding-left: 5px;
	padding-right: 5px;
}

.list-inline-sm {
	margin-left: -15px;
	margin-right: -15px;
	transform: translateY(-7px);
	margin-bottom: -7px;
}

.list-inline-sm > li {
	padding-top: 7px;
	padding-left: 15px;
	padding-right: 15px;
}

.list-unstyled li + li {
	margin-top: 10px;
}

dl {
	margin: 0;
}

.list-desc {
	display: table;
	margin-left: -5px;
	margin-right: -5px;
}

.list-desc > * {
	display: table-cell;
	vertical-align: top;
	padding-left: 5px;
	padding-right: 5px;
	font-weight: 400;
}

.list-desc dt {
	color: #8f859e;
}

.list-desc-secondary dt {
	color: #dcd1d5;
}

.list-terms {
	margin-top: 35px;
}

.list-terms dt + dd {
	margin-top: 5px;
}

.list-terms dd + dt {
	margin-top: 25px;
}

.index-list {
	counter-reset: li;
}

.index-list > li .list-index-counter:before {
	content: counter(li, decimal-leading-zero);
	counter-increment: li;
}

.marked-list {
	text-align: left;
}

.marked-list > li {
	position: relative;
	padding-left: 25px;
	font: 400 14px/24px "Lato", Helvetica, Arial, sans-serif;
	color: #151515;
}

.marked-list > li:before {
	position: absolute;
	top: -1px;
	left: 0;
	content: '\f105';
	font: 400 16px/24px "FontAwesome";
	color: #b7b7b7;
}

.marked-list > li a, .marked-list > li a:active, .marked-list > li a:focus {
	color: inherit;
}

.marked-list > li a:hover {
	color: #8f859e;
}

.marked-list > li + li {
	margin-top: 10px;
}

.marked-list__mod-1 > li {
	padding-bottom: 12px;
	border-bottom: 1px solid #ddd;
}

.marked-list__mod-1 > li:before {
	color: #8f859e;
}

.marked-list-gray-darker > li {
	color: #363d41;
}

.ordered-list {
	counter-reset: li;
	text-align: left;
}

.ordered-list li {
	position: relative;
	padding-left: 25px;
	font: 400 14px/24px "Lato", Helvetica, Arial, sans-serif;
	color: #151515;
}

.ordered-list li:before {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 15px;
	content: counter(li, decimal) ".";
	counter-increment: li;
	color: #b7b7b7;
}

.ordered-list li + li {
	margin-top: 10px;
}

.nav-list li.active a {
	color: #8f859e;
}

.list-column-3 {
	columns: 2;
	column-gap: 30px;
}

@media (min-width: 768px) {
	.list-column-3 {
		columns: 3;
		column-gap: 60px;
	}
}

.list-bars {
	text-align: left;
}

.list-bars li {
	display: block;
}

.list-bars > li + li {
	margin-top: 25px;
}

.list-bars * + .progress {
	margin-top: 19px;
}

.list-bars-item-header {
	color: #9b9b9b;
	text-transform: uppercase;
}


.quote-carousel-wrap {
	padding: 40px 15px;
	box-shadow: 0 0 29px rgba(0, 0, 0, 0.11);
}

.quote-carousel-wrap #child-carousel {
	max-width: 630px;
	margin-left: auto;
	margin-right: auto;
}

.quote-carousel-wrap #child-carousel .slick-list {
	padding: 10px 0;
}

.quote-carousel-wrap #child-carousel .slick-slide {
	pointer-events: none;
}

.quote-carousel-wrap #child-carousel .slick-slide > * {
	pointer-events: auto;
}

.quote-carousel-wrap #child-carousel .slick-slide figure {
	transform: scale3d(0.8, 0.8, 0.8);
	transition: all 250ms ease-in;
}

.quote-carousel-wrap #child-carousel .slick-slide figure:hover,
.quote-carousel-wrap #child-carousel .slick-center.slick-current figure {
	transform: scale3d(1, 1, 1);
}

.quote-carousel-wrap #child-carousel .slick-slide figure:hover img,
.quote-carousel-wrap #child-carousel .slick-center.slick-current figure img {
	box-shadow: 0 0 0 8px #a387af;
}

.quote-carousel-wrap figure {
	display: inline-block;
}

.bg-secondary-3 .quote-carousel-wrap {
	background-color: #323232;
}

.bg-primary .quote-carousel-wrap {
	background-color: #684876;
}

* + .quote-carousel-wrap-vertical {
	margin-top: 30px;
}

.quote-carousel-wrap-vertical figure {
	display: inline-block;
}

.quote-carousel-wrap-vertical .carousel-parent {
	margin-bottom: 0;
	padding: 10px 0;
	background-color: #f3f3f3;
}

.quote-carousel-wrap-vertical .carousel-parent .slick-slide {
	display: flex;
	align-items: center;
}

.quote-carousel-wrap-vertical .carousel-parent .quote-box-body {
	max-height: 170px;
	overflow: hidden;
}

.quote-carousel-wrap-vertical #child-carousel {
	padding-top: 25px;
	padding-bottom: 25px;
	background-color: #e3e3e3;
}

.quote-carousel-wrap-vertical #child-carousel img {
	max-width: 100px;
	transition: 350ms;
}

.quote-carousel-wrap-vertical #child-carousel .slick-slide {
	padding-top: 5px;
	padding-bottom: 5px;
	pointer-events: none;
}

.quote-carousel-wrap-vertical #child-carousel .slick-slide > * {
	pointer-events: auto;
}

/*
*
* Visibility Responsive
* --------------------------------------------------
*/
.reveal-block {
	display: block !important;
}

.reveal-inline-block {
	display: inline-block !important;
}

.reveal-inline {
	display: inline !important;
}

.reveal-flex {
	display: -ms-flexbox !important;
	display: -webkit-flex !important;
	display: flex !important;
}

.veil {
	display: none !important;
}

@media (min-width: 480px) {
	.reveal-xs-block {
		display: block !important;
	}
	.reveal-xs-inline-block {
		display: inline-block !important;
	}
	.reveal-xs-inline {
		display: inline !important;
	}
	.reveal-xs-flex {
		display: -ms-flexbox !important;
		display: -webkit-flex !important;
		display: flex !important;
	}
	.veil-xs {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.reveal-sm-block {
		display: block !important;
	}
	.reveal-sm-inline-block {
		display: inline-block !important;
	}
	.reveal-sm-inline {
		display: inline !important;
	}
	.reveal-sm-flex {
		display: -ms-flexbox !important;
		display: -webkit-flex !important;
		display: flex !important;
	}
	.veil-sm {
		display: none !important;
	}
}

@media (min-width: 992px) {
	.reveal-md-block {
		display: block !important;
	}
	.reveal-md-inline-block {
		display: inline-block !important;
	}
	.reveal-md-inline {
		display: inline !important;
	}
	.reveal-md-flex {
		display: -ms-flexbox !important;
		display: -webkit-flex !important;
		display: flex !important;
	}
	.veil-md {
		display: none !important;
	}
}

@media (min-width: 1200px) {
	.reveal-lg-block {
		display: block !important;
	}
	.reveal-lg-inline-block {
		display: inline-block !important;
	}
	.reveal-lg-inline {
		display: inline !important;
	}
	.reveal-lg-flex {
		display: -ms-flexbox !important;
		display: -webkit-flex !important;
		display: flex !important;
	}
	.veil-lg {
		display: none !important;
	}
}

@media (min-width: 1800px) {
	.reveal-xl-block {
		display: block !important;
	}
	.reveal-xl-inline-block {
		display: inline-block !important;
	}
	.reveal-xl-inline {
		display: inline !important;
	}
	.reveal-xl-flex {
		display: -ms-flexbox !important;
		display: -webkit-flex !important;
		display: flex !important;
	}
	.veil-xl {
		display: none !important;
	}
}

/*
*
* Element groups
* --------------------------------------------------
*/
html .page .group {
	transform: translateY(-20px);
	margin-bottom: -20px;
	margin-left: -15px;
}

html .page .group > *, html .page .group > *:first-child {
	display: inline-block;
	margin-top: 20px;
	margin-left: 15px;
}

html .page .group-xs {
	transform: translateY(-5px);
	margin-bottom: -5px;
	margin-left: -12px;
}

html .page .group-xs > *, html .page .group-xs > *:first-child {
	display: inline-block;
	margin-top: 5px;
	margin-left: 12px;
}

html .page .group-sm {
	transform: translateY(-10px);
	margin-bottom: -10px;
	margin-left: -10px;
}

html .page .group-sm > *, html .page .group-sm > *:first-child {
	display: inline-block;
	margin-top: 10px;
	margin-left: 10px;
}

html .page .group-lg {
	transform: translateY(-10px);
	margin-bottom: -10px;
	margin-left: -20px;
}

html .page .group-lg > *, html .page .group-lg > *:first-child {
	display: inline-block;
	margin-top: 10px;
	margin-left: 20px;
}

html .page .group-xl {
	transform: translateY(-27px);
	margin-bottom: -27px;
	margin-left: -27px;
}

html .page .group-xl > *, html .page .group-xl > *:first-child {
	display: inline-block;
	margin-top: 27px;
	margin-left: 27px;
}

@media (min-width: 992px) {
	html .page .group-xl {
		transform: translateY(-25px);
		margin-bottom: -25px;
		margin-left: -40px;
	}
	html .page .group-xl > *, html .page .group-xl > *:first-child {
		display: inline-block;
		margin-top: 25px;
		margin-left: 40px;
	}
}

@media (min-width: 1200px) {
	html .page .group-xl {
		transform: translateY(-30px);
		margin-bottom: -30px;
		margin-left: -90px;
	}
	html .page .group-xl > *, html .page .group-xl > *:first-child {
		display: inline-block;
		margin-top: 30px;
		margin-left: 90px;
	}
}

html .page .group-top > *, html .page .group-top > *:first-child {
	vertical-align: top;
}

html .page .group-middle {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

html .page .group-center {
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

html .page .group-bottom > *, html .page .group-bottom > *:first-child {
	vertical-align: bottom;
}

/*
*
* Contexts
* --------------------------------------------------
*/
.bg-gray-dark, .bg-primary, .bg-gray-10, .bg-gray-13, .bg-gray-11, .bg-secondary-3, .bg-half-secondary-3, .one-screen-page, .context-dark {
	color: #fff;
}

.bg-gray-dark h1, .bg-primary h1, .bg-gray-10 h1, .bg-gray-13 h1, .bg-gray-11 h1, .bg-secondary-3 h1, .bg-half-secondary-3 h1, .one-screen-page h1, .context-dark h1, .bg-gray-dark .heading-1, .bg-primary .heading-1, .bg-gray-10 .heading-1, .bg-gray-13 .heading-1, .bg-gray-11 .heading-1, .bg-secondary-3 .heading-1, .bg-half-secondary-3 .heading-1, .one-screen-page .heading-1, .context-dark .heading-1, .bg-gray-dark h2, .bg-primary h2, .bg-gray-10 h2, .bg-gray-13 h2, .bg-gray-11 h2, .bg-secondary-3 h2, .bg-half-secondary-3 h2, .one-screen-page h2, .context-dark h2, .bg-gray-dark .heading-2, .bg-primary .heading-2, .bg-gray-10 .heading-2, .bg-gray-13 .heading-2, .bg-gray-11 .heading-2, .bg-secondary-3 .heading-2, .bg-half-secondary-3 .heading-2, .one-screen-page .heading-2, .context-dark .heading-2, .bg-gray-dark h3, .bg-primary h3, .bg-gray-10 h3, .bg-gray-13 h3, .bg-gray-11 h3, .bg-secondary-3 h3, .bg-half-secondary-3 h3, .one-screen-page h3, .context-dark h3, .bg-gray-dark .heading-3, .bg-primary .heading-3, .bg-gray-10 .heading-3, .bg-gray-13 .heading-3, .bg-gray-11 .heading-3, .bg-secondary-3 .heading-3, .bg-half-secondary-3 .heading-3, .one-screen-page .heading-3, .context-dark .heading-3, .bg-gray-dark h4, .bg-primary h4, .bg-gray-10 h4, .bg-gray-13 h4, .bg-gray-11 h4, .bg-secondary-3 h4, .bg-half-secondary-3 h4, .one-screen-page h4, .context-dark h4, .bg-gray-dark .heading-4, .bg-primary .heading-4, .bg-gray-10 .heading-4, .bg-gray-13 .heading-4, .bg-gray-11 .heading-4, .bg-secondary-3 .heading-4, .bg-half-secondary-3 .heading-4, .one-screen-page .heading-4, .context-dark .heading-4, .bg-gray-dark h5, .bg-primary h5, .bg-gray-10 h5, .bg-gray-13 h5, .bg-gray-11 h5, .bg-secondary-3 h5, .bg-half-secondary-3 h5, .one-screen-page h5, .context-dark h5, .bg-gray-dark .heading-5, .bg-primary .heading-5, .bg-gray-10 .heading-5, .bg-gray-13 .heading-5, .bg-gray-11 .heading-5, .bg-secondary-3 .heading-5, .bg-half-secondary-3 .heading-5, .one-screen-page .heading-5, .context-dark .heading-5, .bg-gray-dark h6, .bg-primary h6, .bg-gray-10 h6, .bg-gray-13 h6, .bg-gray-11 h6, .bg-secondary-3 h6, .bg-half-secondary-3 h6, .one-screen-page h6, .context-dark h6, .bg-gray-dark .heading-6, .bg-primary .heading-6, .bg-gray-10 .heading-6, .bg-gray-13 .heading-6, .bg-gray-11 .heading-6, .bg-secondary-3 .heading-6, .bg-half-secondary-3 .heading-6, .one-screen-page .heading-6, .context-dark .heading-6, .bg-gray-dark, .bg-primary, .bg-gray-10, .bg-gray-13, .bg-gray-11, .bg-secondary-3, .bg-half-secondary-3, .one-screen-page, .context-dark {
	color: #fff;
}

.bg-gray-dark .button-secondary-outline, .bg-primary .button-secondary-outline, .bg-gray-10 .button-secondary-outline, .bg-gray-13 .button-secondary-outline, .bg-gray-11 .button-secondary-outline, .bg-secondary-3 .button-secondary-outline, .bg-half-secondary-3 .button-secondary-outline, .one-screen-page .button-secondary-outline, .context-dark .button-secondary-outline {
	color: #fff;
	background-color: transparent;
	border-color: #dcd1d5;
}

.bg-gray-dark .button-secondary-outline:hover, .bg-primary .button-secondary-outline:hover, .bg-gray-10 .button-secondary-outline:hover, .bg-gray-13 .button-secondary-outline:hover, .bg-gray-11 .button-secondary-outline:hover, .bg-secondary-3 .button-secondary-outline:hover, .bg-half-secondary-3 .button-secondary-outline:hover, .one-screen-page .button-secondary-outline:hover, .context-dark .button-secondary-outline:hover, .bg-gray-dark .button-secondary-outline:focus, .bg-primary .button-secondary-outline:focus, .bg-gray-10 .button-secondary-outline:focus, .bg-gray-13 .button-secondary-outline:focus, .bg-gray-11 .button-secondary-outline:focus, .bg-secondary-3 .button-secondary-outline:focus, .bg-half-secondary-3 .button-secondary-outline:focus, .one-screen-page .button-secondary-outline:focus, .context-dark .button-secondary-outline:focus, .bg-gray-dark .button-secondary-outline:active, .bg-primary .button-secondary-outline:active, .bg-gray-10 .button-secondary-outline:active, .bg-gray-13 .button-secondary-outline:active, .bg-gray-11 .button-secondary-outline:active, .bg-secondary-3 .button-secondary-outline:active, .bg-half-secondary-3 .button-secondary-outline:active, .one-screen-page .button-secondary-outline:active, .context-dark .button-secondary-outline:active, .bg-gray-dark .button-secondary-outline:hover, .bg-primary .button-secondary-outline:hover, .bg-gray-10 .button-secondary-outline:hover, .bg-gray-13 .button-secondary-outline:hover, .bg-gray-11 .button-secondary-outline:hover, .bg-secondary-3 .button-secondary-outline:hover, .bg-half-secondary-3 .button-secondary-outline:hover, .one-screen-page .button-secondary-outline:hover, .context-dark .button-secondary-outline:hover {
	color: #151515;
	background-color: #fff;
	border-color: #fff;
}

.bg-gray-dark .button-secondary-outline.button-effect-ujarak:before, .bg-primary .button-secondary-outline.button-effect-ujarak:before, .bg-gray-10 .button-secondary-outline.button-effect-ujarak:before, .bg-gray-13 .button-secondary-outline.button-effect-ujarak:before, .bg-gray-11 .button-secondary-outline.button-effect-ujarak:before, .bg-secondary-3 .button-secondary-outline.button-effect-ujarak:before, .bg-half-secondary-3 .button-secondary-outline.button-effect-ujarak:before, .one-screen-page .button-secondary-outline.button-effect-ujarak:before, .context-dark .button-secondary-outline.button-effect-ujarak:before {
	background-color: #fff;
}

.bg-gray-dark .button-secondary-outline.button-effect-ujarak:after, .bg-primary .button-secondary-outline.button-effect-ujarak:after, .bg-gray-10 .button-secondary-outline.button-effect-ujarak:after, .bg-gray-13 .button-secondary-outline.button-effect-ujarak:after, .bg-gray-11 .button-secondary-outline.button-effect-ujarak:after, .bg-secondary-3 .button-secondary-outline.button-effect-ujarak:after, .bg-half-secondary-3 .button-secondary-outline.button-effect-ujarak:after, .one-screen-page .button-secondary-outline.button-effect-ujarak:after, .context-dark .button-secondary-outline.button-effect-ujarak:after {
	border: 3px solid #dcd1d5;
}

.bg-gray-dark .button-secondary-outline.button-effect-ujarak:focus, .bg-primary .button-secondary-outline.button-effect-ujarak:focus, .bg-gray-10 .button-secondary-outline.button-effect-ujarak:focus, .bg-gray-13 .button-secondary-outline.button-effect-ujarak:focus, .bg-gray-11 .button-secondary-outline.button-effect-ujarak:focus, .bg-secondary-3 .button-secondary-outline.button-effect-ujarak:focus, .bg-half-secondary-3 .button-secondary-outline.button-effect-ujarak:focus, .one-screen-page .button-secondary-outline.button-effect-ujarak:focus, .context-dark .button-secondary-outline.button-effect-ujarak:focus, .bg-gray-dark .button-secondary-outline.button-effect-ujarak:active, .bg-primary .button-secondary-outline.button-effect-ujarak:active, .bg-gray-10 .button-secondary-outline.button-effect-ujarak:active, .bg-gray-13 .button-secondary-outline.button-effect-ujarak:active, .bg-gray-11 .button-secondary-outline.button-effect-ujarak:active, .bg-secondary-3 .button-secondary-outline.button-effect-ujarak:active, .bg-half-secondary-3 .button-secondary-outline.button-effect-ujarak:active, .one-screen-page .button-secondary-outline.button-effect-ujarak:active, .context-dark .button-secondary-outline.button-effect-ujarak:active {
	background: #fff;
	border-color: #fff;
}

.bg-gray-dark .button-secondary-outline.button-effect-ujarak:focus:after, .bg-primary .button-secondary-outline.button-effect-ujarak:focus:after, .bg-gray-10 .button-secondary-outline.button-effect-ujarak:focus:after, .bg-gray-13 .button-secondary-outline.button-effect-ujarak:focus:after, .bg-gray-11 .button-secondary-outline.button-effect-ujarak:focus:after, .bg-secondary-3 .button-secondary-outline.button-effect-ujarak:focus:after, .bg-half-secondary-3 .button-secondary-outline.button-effect-ujarak:focus:after, .one-screen-page .button-secondary-outline.button-effect-ujarak:focus:after, .context-dark .button-secondary-outline.button-effect-ujarak:focus:after, .bg-gray-dark .button-secondary-outline.button-effect-ujarak:active:after, .bg-primary .button-secondary-outline.button-effect-ujarak:active:after, .bg-gray-10 .button-secondary-outline.button-effect-ujarak:active:after, .bg-gray-13 .button-secondary-outline.button-effect-ujarak:active:after, .bg-gray-11 .button-secondary-outline.button-effect-ujarak:active:after, .bg-secondary-3 .button-secondary-outline.button-effect-ujarak:active:after, .bg-half-secondary-3 .button-secondary-outline.button-effect-ujarak:active:after, .one-screen-page .button-secondary-outline.button-effect-ujarak:active:after, .context-dark .button-secondary-outline.button-effect-ujarak:active:after {
	border-color: #fff;
}

.bg-gray-dark .button-secondary-outline.button-effect-ujarak:hover, .bg-primary .button-secondary-outline.button-effect-ujarak:hover, .bg-gray-10 .button-secondary-outline.button-effect-ujarak:hover, .bg-gray-13 .button-secondary-outline.button-effect-ujarak:hover, .bg-gray-11 .button-secondary-outline.button-effect-ujarak:hover, .bg-secondary-3 .button-secondary-outline.button-effect-ujarak:hover, .bg-half-secondary-3 .button-secondary-outline.button-effect-ujarak:hover, .one-screen-page .button-secondary-outline.button-effect-ujarak:hover, .context-dark .button-secondary-outline.button-effect-ujarak:hover {
	background: transparent;
}

.bg-gray-dark h1, .bg-primary h1, .bg-gray-10 h1, .bg-gray-13 h1, .bg-gray-11 h1, .bg-secondary-3 h1, .bg-half-secondary-3 h1, .one-screen-page h1, .context-dark h1, .bg-gray-dark h2, .bg-primary h2, .bg-gray-10 h2, .bg-gray-13 h2, .bg-gray-11 h2, .bg-secondary-3 h2, .bg-half-secondary-3 h2, .one-screen-page h2, .context-dark h2, .bg-gray-dark h3, .bg-primary h3, .bg-gray-10 h3, .bg-gray-13 h3, .bg-gray-11 h3, .bg-secondary-3 h3, .bg-half-secondary-3 h3, .one-screen-page h3, .context-dark h3, .bg-gray-dark h4, .bg-primary h4, .bg-gray-10 h4, .bg-gray-13 h4, .bg-gray-11 h4, .bg-secondary-3 h4, .bg-half-secondary-3 h4, .one-screen-page h4, .context-dark h4, .bg-gray-dark h5, .bg-primary h5, .bg-gray-10 h5, .bg-gray-13 h5, .bg-gray-11 h5, .bg-secondary-3 h5, .bg-half-secondary-3 h5, .one-screen-page h5, .context-dark h5, .bg-gray-dark h6, .bg-primary h6, .bg-gray-10 h6, .bg-gray-13 h6, .bg-gray-11 h6, .bg-secondary-3 h6, .bg-half-secondary-3 h6, .one-screen-page h6, .context-dark h6, .bg-gray-dark .heading-1, .bg-primary .heading-1, .bg-gray-10 .heading-1, .bg-gray-13 .heading-1, .bg-gray-11 .heading-1, .bg-secondary-3 .heading-1, .bg-half-secondary-3 .heading-1, .one-screen-page .heading-1, .context-dark .heading-1, .bg-gray-dark .heading-2, .bg-primary .heading-2, .bg-gray-10 .heading-2, .bg-gray-13 .heading-2, .bg-gray-11 .heading-2, .bg-secondary-3 .heading-2, .bg-half-secondary-3 .heading-2, .one-screen-page .heading-2, .context-dark .heading-2, .bg-gray-dark .heading-3, .bg-primary .heading-3, .bg-gray-10 .heading-3, .bg-gray-13 .heading-3, .bg-gray-11 .heading-3, .bg-secondary-3 .heading-3, .bg-half-secondary-3 .heading-3, .one-screen-page .heading-3, .context-dark .heading-3, .bg-gray-dark .heading-4, .bg-primary .heading-4, .bg-gray-10 .heading-4, .bg-gray-13 .heading-4, .bg-gray-11 .heading-4, .bg-secondary-3 .heading-4, .bg-half-secondary-3 .heading-4, .one-screen-page .heading-4, .context-dark .heading-4, .bg-gray-dark .heading-5, .bg-primary .heading-5, .bg-gray-10 .heading-5, .bg-gray-13 .heading-5, .bg-gray-11 .heading-5, .bg-secondary-3 .heading-5, .bg-half-secondary-3 .heading-5, .one-screen-page .heading-5, .context-dark .heading-5, .bg-gray-dark .heading-6, .bg-primary .heading-6, .bg-gray-10 .heading-6, .bg-gray-13 .heading-6, .bg-gray-11 .heading-6, .bg-secondary-3 .heading-6, .bg-half-secondary-3 .heading-6, .one-screen-page .heading-6, .context-dark .heading-6 {
	color: #fff;
}

.bg-gray-dark .divider, .bg-primary .divider, .bg-gray-10 .divider, .bg-gray-13 .divider, .bg-gray-11 .divider, .bg-secondary-3 .divider, .bg-half-secondary-3 .divider, .one-screen-page .divider, .context-dark .divider {
	background-color: #636e74;
}

.bg-gray-dark .divider-secondary, .bg-primary .divider-secondary, .bg-gray-10 .divider-secondary, .bg-gray-13 .divider-secondary, .bg-gray-11 .divider-secondary, .bg-secondary-3 .divider-secondary, .bg-half-secondary-3 .divider-secondary, .one-screen-page .divider-secondary, .context-dark .divider-secondary {
	background-color: #dcd1d5;
}

.bg-gray-dark .rd-mailform .form-input, .bg-primary .rd-mailform .form-input, .bg-gray-10 .rd-mailform .form-input, .bg-gray-13 .rd-mailform .form-input, .bg-gray-11 .rd-mailform .form-input, .bg-secondary-3 .rd-mailform .form-input, .bg-half-secondary-3 .rd-mailform .form-input, .one-screen-page .rd-mailform .form-input, .context-dark .rd-mailform .form-input,
.bg-gray-dark .rd-mailform .form-label,
.bg-primary .rd-mailform .form-label,
.bg-gray-10 .rd-mailform .form-label,
.bg-gray-13 .rd-mailform .form-label,
.bg-gray-11 .rd-mailform .form-label,
.bg-secondary-3 .rd-mailform .form-label,
.bg-half-secondary-3 .rd-mailform .form-label,
.one-screen-page .rd-mailform .form-label,
.context-dark .rd-mailform .form-label,
.bg-gray-dark .rd-mailform .form-label-outside,
.bg-primary .rd-mailform .form-label-outside,
.bg-gray-10 .rd-mailform .form-label-outside,
.bg-gray-13 .rd-mailform .form-label-outside,
.bg-gray-11 .rd-mailform .form-label-outside,
.bg-secondary-3 .rd-mailform .form-label-outside,
.bg-half-secondary-3 .rd-mailform .form-label-outside,
.one-screen-page .rd-mailform .form-label-outside,
.context-dark .rd-mailform .form-label-outside,
.bg-gray-dark .rd-mailform .form-validation,
.bg-primary .rd-mailform .form-validation,
.bg-gray-10 .rd-mailform .form-validation,
.bg-gray-13 .rd-mailform .form-validation,
.bg-gray-11 .rd-mailform .form-validation,
.bg-secondary-3 .rd-mailform .form-validation,
.bg-half-secondary-3 .rd-mailform .form-validation,
.one-screen-page .rd-mailform .form-validation,
.context-dark .rd-mailform .form-validation {
	color: #fff;
}

.bg-gray-dark .rd-mailform .form-input, .bg-primary .rd-mailform .form-input, .bg-gray-10 .rd-mailform .form-input, .bg-gray-13 .rd-mailform .form-input, .bg-gray-11 .rd-mailform .form-input, .bg-secondary-3 .rd-mailform .form-input, .bg-half-secondary-3 .rd-mailform .form-input, .one-screen-page .rd-mailform .form-input, .context-dark .rd-mailform .form-input {
	background: rgba(255, 255, 255, 0.47);
	border: 0;
}

.bg-gray-dark .form-wrap_icon::before, .bg-primary .form-wrap_icon::before, .bg-gray-10 .form-wrap_icon::before, .bg-gray-13 .form-wrap_icon::before, .bg-gray-11 .form-wrap_icon::before, .bg-secondary-3 .form-wrap_icon::before, .bg-half-secondary-3 .form-wrap_icon::before, .one-screen-page .form-wrap_icon::before, .context-dark .form-wrap_icon::before {
	color: #fff;
}

.bg-gray-dark .counter-box, .bg-primary .counter-box, .bg-gray-10 .counter-box, .bg-gray-13 .counter-box, .bg-gray-11 .counter-box, .bg-secondary-3 .counter-box, .bg-half-secondary-3 .counter-box, .one-screen-page .counter-box, .context-dark .counter-box,
.bg-gray-dark .counter-box .counter-box-header,
.bg-primary .counter-box .counter-box-header,
.bg-gray-10 .counter-box .counter-box-header,
.bg-gray-13 .counter-box .counter-box-header,
.bg-gray-11 .counter-box .counter-box-header,
.bg-secondary-3 .counter-box .counter-box-header,
.bg-half-secondary-3 .counter-box .counter-box-header,
.one-screen-page .counter-box .counter-box-header,
.context-dark .counter-box .counter-box-header {
	color: #fff;
}

.bg-gray-dark .counter-box-minimal .counter, .bg-primary .counter-box-minimal .counter, .bg-gray-10 .counter-box-minimal .counter, .bg-gray-13 .counter-box-minimal .counter, .bg-gray-11 .counter-box-minimal .counter, .bg-secondary-3 .counter-box-minimal .counter, .bg-half-secondary-3 .counter-box-minimal .counter, .one-screen-page .counter-box-minimal .counter, .context-dark .counter-box-minimal .counter,
.bg-gray-dark .counter-box-minimal .counter-box-title,
.bg-primary .counter-box-minimal .counter-box-title,
.bg-gray-10 .counter-box-minimal .counter-box-title,
.bg-gray-13 .counter-box-minimal .counter-box-title,
.bg-gray-11 .counter-box-minimal .counter-box-title,
.bg-secondary-3 .counter-box-minimal .counter-box-title,
.bg-half-secondary-3 .counter-box-minimal .counter-box-title,
.one-screen-page .counter-box-minimal .counter-box-title,
.context-dark .counter-box-minimal .counter-box-title {
	color: #fff;
}

.bg-gray-dark .quote-circle cite, .bg-primary .quote-circle cite, .bg-gray-10 .quote-circle cite, .bg-gray-13 .quote-circle cite, .bg-gray-11 .quote-circle cite, .bg-secondary-3 .quote-circle cite, .bg-half-secondary-3 .quote-circle cite, .one-screen-page .quote-circle cite, .context-dark .quote-circle cite,
.bg-gray-dark .quote-circle .quote-text,
.bg-primary .quote-circle .quote-text,
.bg-gray-10 .quote-circle .quote-text,
.bg-gray-13 .quote-circle .quote-text,
.bg-gray-11 .quote-circle .quote-text,
.bg-secondary-3 .quote-circle .quote-text,
.bg-half-secondary-3 .quote-circle .quote-text,
.one-screen-page .quote-circle .quote-text,
.context-dark .quote-circle .quote-text,
.bg-gray-dark .quote-circle .quote-boxed-meta,
.bg-primary .quote-circle .quote-boxed-meta,
.bg-gray-10 .quote-circle .quote-boxed-meta,
.bg-gray-13 .quote-circle .quote-boxed-meta,
.bg-gray-11 .quote-circle .quote-boxed-meta,
.bg-secondary-3 .quote-circle .quote-boxed-meta,
.bg-half-secondary-3 .quote-circle .quote-boxed-meta,
.one-screen-page .quote-circle .quote-boxed-meta,
.context-dark .quote-circle .quote-boxed-meta {
	color: #fff;
}

.bg-gray-dark .list-nav-marked > li, .bg-primary .list-nav-marked > li, .bg-gray-10 .list-nav-marked > li, .bg-gray-13 .list-nav-marked > li, .bg-gray-11 .list-nav-marked > li, .bg-secondary-3 .list-nav-marked > li, .bg-half-secondary-3 .list-nav-marked > li, .one-screen-page .list-nav-marked > li, .context-dark .list-nav-marked > li {
	color: #fff;
}

.bg-gray-dark .terms-list-inline dt:after, .bg-primary .terms-list-inline dt:after, .bg-gray-10 .terms-list-inline dt:after, .bg-gray-13 .terms-list-inline dt:after, .bg-gray-11 .terms-list-inline dt:after, .bg-secondary-3 .terms-list-inline dt:after, .bg-half-secondary-3 .terms-list-inline dt:after, .one-screen-page .terms-list-inline dt:after, .context-dark .terms-list-inline dt:after,
.bg-gray-dark .terms-list-inline dd,
.bg-primary .terms-list-inline dd,
.bg-gray-10 .terms-list-inline dd,
.bg-gray-13 .terms-list-inline dd,
.bg-gray-11 .terms-list-inline dd,
.bg-secondary-3 .terms-list-inline dd,
.bg-half-secondary-3 .terms-list-inline dd,
.one-screen-page .terms-list-inline dd,
.context-dark .terms-list-inline dd {
	color: #fff;
}

.bg-gray-dark .link, .bg-primary .link, .bg-gray-10 .link, .bg-gray-13 .link, .bg-gray-11 .link, .bg-secondary-3 .link, .bg-half-secondary-3 .link, .one-screen-page .link, .context-dark .link, .bg-gray-dark .link:active, .bg-primary .link:active, .bg-gray-10 .link:active, .bg-gray-13 .link:active, .bg-gray-11 .link:active, .bg-secondary-3 .link:active, .bg-half-secondary-3 .link:active, .one-screen-page .link:active, .context-dark .link:active, .bg-gray-dark .link:focus, .bg-primary .link:focus, .bg-gray-10 .link:focus, .bg-gray-13 .link:focus, .bg-gray-11 .link:focus, .bg-secondary-3 .link:focus, .bg-half-secondary-3 .link:focus, .one-screen-page .link:focus, .context-dark .link:focus {
	color: #fff;
}

.bg-gray-dark .link:hover, .bg-primary .link:hover, .bg-gray-10 .link:hover, .bg-gray-13 .link:hover, .bg-gray-11 .link:hover, .bg-secondary-3 .link:hover, .bg-half-secondary-3 .link:hover, .one-screen-page .link:hover, .context-dark .link:hover {
	color: #8f859e;
}

.bg-gray-dark .terms-list dd, .bg-primary .terms-list dd, .bg-gray-10 .terms-list dd, .bg-gray-13 .terms-list dd, .bg-gray-11 .terms-list dd, .bg-secondary-3 .terms-list dd, .bg-half-secondary-3 .terms-list dd, .one-screen-page .terms-list dd, .context-dark .terms-list dd {
	color: #fff;
}

.bg-gray-dark .button-gray-dark-outline, .bg-primary .button-gray-dark-outline, .bg-gray-10 .button-gray-dark-outline, .bg-gray-13 .button-gray-dark-outline, .bg-gray-11 .button-gray-dark-outline, .bg-secondary-3 .button-gray-dark-outline, .bg-half-secondary-3 .button-gray-dark-outline, .one-screen-page .button-gray-dark-outline, .context-dark .button-gray-dark-outline {
	color: #fff;
	background-color: transparent;
	border-color: #fff;
}

.bg-gray-dark .button-gray-dark-outline:hover, .bg-primary .button-gray-dark-outline:hover, .bg-gray-10 .button-gray-dark-outline:hover, .bg-gray-13 .button-gray-dark-outline:hover, .bg-gray-11 .button-gray-dark-outline:hover, .bg-secondary-3 .button-gray-dark-outline:hover, .bg-half-secondary-3 .button-gray-dark-outline:hover, .one-screen-page .button-gray-dark-outline:hover, .context-dark .button-gray-dark-outline:hover, .bg-gray-dark .button-gray-dark-outline:focus, .bg-primary .button-gray-dark-outline:focus, .bg-gray-10 .button-gray-dark-outline:focus, .bg-gray-13 .button-gray-dark-outline:focus, .bg-gray-11 .button-gray-dark-outline:focus, .bg-secondary-3 .button-gray-dark-outline:focus, .bg-half-secondary-3 .button-gray-dark-outline:focus, .one-screen-page .button-gray-dark-outline:focus, .context-dark .button-gray-dark-outline:focus, .bg-gray-dark .button-gray-dark-outline:active, .bg-primary .button-gray-dark-outline:active, .bg-gray-10 .button-gray-dark-outline:active, .bg-gray-13 .button-gray-dark-outline:active, .bg-gray-11 .button-gray-dark-outline:active, .bg-secondary-3 .button-gray-dark-outline:active, .bg-half-secondary-3 .button-gray-dark-outline:active, .one-screen-page .button-gray-dark-outline:active, .context-dark .button-gray-dark-outline:active, .bg-gray-dark .button-gray-dark-outline:hover, .bg-primary .button-gray-dark-outline:hover, .bg-gray-10 .button-gray-dark-outline:hover, .bg-gray-13 .button-gray-dark-outline:hover, .bg-gray-11 .button-gray-dark-outline:hover, .bg-secondary-3 .button-gray-dark-outline:hover, .bg-half-secondary-3 .button-gray-dark-outline:hover, .one-screen-page .button-gray-dark-outline:hover, .context-dark .button-gray-dark-outline:hover {
	color: #151515;
	background-color: #fff;
	border-color: #fff;
}

.bg-gray-dark .button-gray-dark-outline.button-effect-ujarak:before, .bg-primary .button-gray-dark-outline.button-effect-ujarak:before, .bg-gray-10 .button-gray-dark-outline.button-effect-ujarak:before, .bg-gray-13 .button-gray-dark-outline.button-effect-ujarak:before, .bg-gray-11 .button-gray-dark-outline.button-effect-ujarak:before, .bg-secondary-3 .button-gray-dark-outline.button-effect-ujarak:before, .bg-half-secondary-3 .button-gray-dark-outline.button-effect-ujarak:before, .one-screen-page .button-gray-dark-outline.button-effect-ujarak:before, .context-dark .button-gray-dark-outline.button-effect-ujarak:before {
	background-color: #fff;
}

.bg-gray-dark .button-gray-dark-outline.button-effect-ujarak:after, .bg-primary .button-gray-dark-outline.button-effect-ujarak:after, .bg-gray-10 .button-gray-dark-outline.button-effect-ujarak:after, .bg-gray-13 .button-gray-dark-outline.button-effect-ujarak:after, .bg-gray-11 .button-gray-dark-outline.button-effect-ujarak:after, .bg-secondary-3 .button-gray-dark-outline.button-effect-ujarak:after, .bg-half-secondary-3 .button-gray-dark-outline.button-effect-ujarak:after, .one-screen-page .button-gray-dark-outline.button-effect-ujarak:after, .context-dark .button-gray-dark-outline.button-effect-ujarak:after {
	border: 3px solid #fff;
}

.bg-gray-dark .button-gray-dark-outline.button-effect-ujarak:hover, .bg-primary .button-gray-dark-outline.button-effect-ujarak:hover, .bg-gray-10 .button-gray-dark-outline.button-effect-ujarak:hover, .bg-gray-13 .button-gray-dark-outline.button-effect-ujarak:hover, .bg-gray-11 .button-gray-dark-outline.button-effect-ujarak:hover, .bg-secondary-3 .button-gray-dark-outline.button-effect-ujarak:hover, .bg-half-secondary-3 .button-gray-dark-outline.button-effect-ujarak:hover, .one-screen-page .button-gray-dark-outline.button-effect-ujarak:hover, .context-dark .button-gray-dark-outline.button-effect-ujarak:hover {
	background: transparent;
}

.bg-gray-dark .box-bordered, .bg-primary .box-bordered, .bg-gray-10 .box-bordered, .bg-gray-13 .box-bordered, .bg-gray-11 .box-bordered, .bg-secondary-3 .box-bordered, .bg-half-secondary-3 .box-bordered, .one-screen-page .box-bordered, .context-dark .box-bordered,
.bg-gray-dark .services-box-main-var-1,
.bg-primary .services-box-main-var-1,
.bg-gray-10 .services-box-main-var-1,
.bg-gray-13 .services-box-main-var-1,
.bg-gray-11 .services-box-main-var-1,
.bg-secondary-3 .services-box-main-var-1,
.bg-half-secondary-3 .services-box-main-var-1,
.one-screen-page .services-box-main-var-1,
.context-dark .services-box-main-var-1,
.bg-gray-dark .services-box-main-var-1-inner,
.bg-primary .services-box-main-var-1-inner,
.bg-gray-10 .services-box-main-var-1-inner,
.bg-gray-13 .services-box-main-var-1-inner,
.bg-gray-11 .services-box-main-var-1-inner,
.bg-secondary-3 .services-box-main-var-1-inner,
.bg-half-secondary-3 .services-box-main-var-1-inner,
.one-screen-page .services-box-main-var-1-inner,
.context-dark .services-box-main-var-1-inner {
	border-color: rgba(255, 255, 255, 0.22);
}

.bg-gray-dark .btn-primary, .bg-primary .btn-primary, .bg-gray-10 .btn-primary, .bg-gray-13 .btn-primary, .bg-gray-11 .btn-primary, .bg-secondary-3 .btn-primary, .bg-half-secondary-3 .btn-primary, .one-screen-page .btn-primary, .context-dark .btn-primary {
	color: #8f859e;
	background-color: #fff;
	border-color: #fff;
}

.bg-gray-dark .btn-primary:hover, .bg-primary .btn-primary:hover, .bg-gray-10 .btn-primary:hover, .bg-gray-13 .btn-primary:hover, .bg-gray-11 .btn-primary:hover, .bg-secondary-3 .btn-primary:hover, .bg-half-secondary-3 .btn-primary:hover, .one-screen-page .btn-primary:hover, .context-dark .btn-primary:hover, .bg-gray-dark .btn-primary:focus, .bg-primary .btn-primary:focus, .bg-gray-10 .btn-primary:focus, .bg-gray-13 .btn-primary:focus, .bg-gray-11 .btn-primary:focus, .bg-secondary-3 .btn-primary:focus, .bg-half-secondary-3 .btn-primary:focus, .one-screen-page .btn-primary:focus, .context-dark .btn-primary:focus, .bg-gray-dark .btn-primary:active, .bg-primary .btn-primary:active, .bg-gray-10 .btn-primary:active, .bg-gray-13 .btn-primary:active, .bg-gray-11 .btn-primary:active, .bg-secondary-3 .btn-primary:active, .bg-half-secondary-3 .btn-primary:active, .one-screen-page .btn-primary:active, .context-dark .btn-primary:active, .bg-gray-dark .btn-primary:hover, .bg-primary .btn-primary:hover, .bg-gray-10 .btn-primary:hover, .bg-gray-13 .btn-primary:hover, .bg-gray-11 .btn-primary:hover, .bg-secondary-3 .btn-primary:hover, .bg-half-secondary-3 .btn-primary:hover, .one-screen-page .btn-primary:hover, .context-dark .btn-primary:hover {
	color: #8f859e;
	background-color: #f2f2f2;
	border-color: #f2f2f2;
}

.bg-gray-dark .select2-container--bootstrap .select2-selection--single .select2-selection__rendered, .bg-primary .select2-container--bootstrap .select2-selection--single .select2-selection__rendered, .bg-gray-10 .select2-container--bootstrap .select2-selection--single .select2-selection__rendered, .bg-gray-13 .select2-container--bootstrap .select2-selection--single .select2-selection__rendered, .bg-gray-11 .select2-container--bootstrap .select2-selection--single .select2-selection__rendered, .bg-secondary-3 .select2-container--bootstrap .select2-selection--single .select2-selection__rendered, .bg-half-secondary-3 .select2-container--bootstrap .select2-selection--single .select2-selection__rendered, .one-screen-page .select2-container--bootstrap .select2-selection--single .select2-selection__rendered, .context-dark .select2-container--bootstrap .select2-selection--single .select2-selection__rendered {
	color: #fff;
}

.page .bg-gray-dark .text-secondary, .page .bg-primary .text-secondary, .page .bg-gray-10 .text-secondary, .page .bg-gray-13 .text-secondary, .page .bg-gray-11 .text-secondary, .page .bg-secondary-3 .text-secondary, .page .bg-half-secondary-3 .text-secondary, .page .one-screen-page .text-secondary, .page .context-dark .text-secondary {
	color: #dcd1d5;
}

.page .bg-gray-dark a.text-secondary:hover, .page .bg-primary a.text-secondary:hover, .page .bg-gray-10 a.text-secondary:hover, .page .bg-gray-13 a.text-secondary:hover, .page .bg-gray-11 a.text-secondary:hover, .page .bg-secondary-3 a.text-secondary:hover, .page .bg-half-secondary-3 a.text-secondary:hover, .page .one-screen-page a.text-secondary:hover, .page .context-dark a.text-secondary:hover,
.page .bg-gray-dark a.text-secondary:focus,
.page .bg-primary a.text-secondary:focus,
.page .bg-gray-10 a.text-secondary:focus,
.page .bg-gray-13 a.text-secondary:focus,
.page .bg-gray-11 a.text-secondary:focus,
.page .bg-secondary-3 a.text-secondary:focus,
.page .bg-half-secondary-3 a.text-secondary:focus,
.page .one-screen-page a.text-secondary:focus,
.page .context-dark a.text-secondary:focus {
	color: #c6b4bb;
}

.bg-primary .list-desc dt {

	color: #dcd1d5;
}

.bg-gray-11 .rd-mailform .form-input {
	background: #4d4d4d;
	border: 0;
}

.bg-gray-11 .select2-container .select2-choice {
	background-color: #4d4d4d;
	border: 1px solid #4d4d4d;
	color: #fff;
}

.bg-gray-11 .select2-container.select2-dropdown-open .select2-choice {
	border-color: #4d4d4d;
}

.context-light h1, .layout-panel-wrap h1, .context-light .heading-1, .layout-panel-wrap .heading-1, .context-light h2, .layout-panel-wrap h2, .context-light .heading-2, .layout-panel-wrap .heading-2, .context-light h3, .layout-panel-wrap h3, .context-light .heading-3, .layout-panel-wrap .heading-3, .context-light h4, .layout-panel-wrap h4, .context-light .heading-4, .layout-panel-wrap .heading-4, .context-light h5, .layout-panel-wrap h5, .context-light .heading-5, .layout-panel-wrap .heading-5, .context-light h6, .layout-panel-wrap h6, .context-light .heading-6, .layout-panel-wrap .heading-6, .context-light, .layout-panel-wrap {
	color: #000;
}

/*
*
* Sections
* --------------------------------------------------
*/
.section-xxs {
	padding-top: 30px;
	padding-bottom: 30px;
}

.section-sm {
	padding-top: 50px;
	padding-bottom: 60px;
}

.section-md {
	padding-top: 65px;
	padding-bottom: 75px;
}

.section-md-top {
	padding-top: 65px;
}

.section-lg {
	padding-top: 100px;
	padding-bottom: 100px;
}

@media (min-width: 768px) {
	.section-sm {
		padding-top: 80px;
		padding-bottom: 90px;
	}
	.section-md {
		padding-top: 95px;
		padding-bottom: 110px;
	}
	.section-md-top {
		padding-top: 95px;
	}
	.section-lg {
		padding-top: 150px;
		padding-bottom: 155px;
	}
}

.section-relative {
	position: relative;
	z-index: 1;
}

.section-wrap-content-var-1 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
	padding: 30px;
}

.section-wrap-content-var-1-inner {
	max-width: 420px;
}

@media (max-width: 480px) {
	.section-grid-demonstration [class^="col"] {
		padding: 5px;
	}
}

.section-grid-demonstration .grid-demonstration-item {
	background: #ebebeb;
}

@media (min-width: 768px) {
	.section-grid-demonstration .grid-demonstration-item {
		padding: 35px 30px;
		text-align: left;
	}
}

@media (max-width: 1199px) {
	.section-grid-demonstration .grid-demonstration-item h3 {
		font-size: 16px;
		line-height: 16px;
	}
	.section-grid-demonstration .grid-demonstration-item p {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		width: 100%;
	}
}

.section-grid-demonstration .divider + .row {
	margin-top: 35px;
}

/**
* Custom sections
*/
.section-wrap {
	position: relative;
	padding: 1px 0;
	overflow: hidden;
}

.section-wrap .section-wrap-inner {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	transform: translateY(-35px);
	margin-bottom: -35px;
	pointer-events: none;
	width: 100%;
}

.section-wrap .section-wrap-inner > *:before {
	content: '';
	display: table;
	width: 0;
}

.section-wrap .section-wrap-inner > * {
	margin-top: 35px;
	pointer-events: auto;
}

.section-wrap .section-wrap-inner > * {
	width: 100%;
}

.section-wrap .section-wrap-aside {
	bottom: -1px;
}

.section-wrap .google-map {
	width: 100%;
	max-width: none;
}

.section-wrap .box-minimal {
	width: 100%;
	max-width: none;
}

.section-wrap .section-wrap-image {
	position: relative;
	top: -1px;
	overflow: hidden;
	height: 300px;
}

.section-wrap .section-wrap-image img {
	position: absolute;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	max-width: none;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -30%);
}

@supports (object-fit: cover) {
	.section-wrap .section-wrap-image img {
		top: 0;
		left: 0;
		transform: none;
		height: 100%;
		width: 100%;
		object-fit: cover;
		object-position: center center;
	}
}

@media (min-width: 768px) {
	.section-wrap .section-wrap-image {
		height: 500px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.section-wrap .box-width-small {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 992px) {
	.section-wrap .section-wrap-aside {
		position: absolute;
		top: -4px;
		right: 0;
		bottom: -4px;
		height: auto;
		width: calc(50% - 190px);
	}
	.section-wrap .section-wrap-aside.section-wrap-aside-custom {
		width: 50%;
	}
	.section-wrap .section-wrap-aside .jp-video-single {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
	.section-wrap .section-wrap-aside .jp-video .jp-jplayer {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		width: auto !important;
		height: auto !important;
	}
	.section-wrap .section-wrap-aside .jp-video .jp-jplayer img, .section-wrap .section-wrap-aside .jp-video .jp-jplayer video {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
		height: 100% !important;
	}
	.section-wrap .section-wrap-aside .google-map {
		height: calc(100% + 1px);
	}
	.section-wrap .section-wrap-aside img {
		height: 100%;
		width: 100%;
	}
	.section-wrap .section-wrap-aside.section-wrap-image-right img {
		position: relative;
		left: auto;
		top: auto;
		transform: none;
		object-position: 90% center;
	}
	.ie-10 .section-wrap .section-wrap-aside.section-wrap-image-right img,
	.ie-11 .section-wrap .section-wrap-aside.section-wrap-image-right img {
		left: 90%;
		transform: translate(-90%, -50%);
	}
	.ie-10 .section-wrap .section-wrap-aside .jp-video .jp-jplayer img,
	.ie-10 .section-wrap .section-wrap-aside img,
	.ie-11 .section-wrap .section-wrap-aside .jp-video .jp-jplayer img,
	.ie-11 .section-wrap .section-wrap-aside img {
		position: absolute;
		top: 50%;
		left: 50%;
		width: auto;
		height: auto;
		transform: translate(-50%, -50%);
	}
	.ie-10 .section-wrap .section-wrap-aside .jp-video .jp-jplayer video,
	.ie-11 .section-wrap .section-wrap-aside .jp-video .jp-jplayer video {
		left: 50%;
		transform: translateX(-50%);
		width: 110% !important;
		height: 100% !important;
	}
	.section-wrap .section-wrap-content {
		max-width: 620px;
	}
}

@media (min-width: 992px) {
	.section-wrap.section-wrap-sm .section-wrap-aside {
		width: 41.6%;
	}
	.section-wrap.section-wrap-bigger .section-wrap-aside {
		width: 50%;
	}
	.section-wrap.section-wrap-equal .section-wrap-aside {
		width: 50%;
	}
	.section-wrap.section-wrap-equal .section-wrap-aside .section-wrap-content {
		max-width: 630px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.section-wrap.section-wrap-lg .section-wrap-aside {
		position: relative;
		top: 1px;
		width: 100%;
		height: 500px;
	}
	.section-wrap.section-wrap-lg.section-reverse .section-wrap-inner {
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
	}
}

@media (min-width: 1200px) {
	.section-wrap .section-wrap-aside {
		width: calc(50% - 160px);
	}
	.section-wrap .section-wrap-aside.section-wrap-aside-custom {
		width: calc(50% - 30px);
	}
	.section-wrap.section-wrap-bigger .section-wrap-aside {
		width: calc(50% + 100px);
	}
	.section-wrap.section-wrap-equal .section-wrap-aside {
		width: 50%;
	}
	.section-wrap .section-wrap-content {
		max-width: 770px;
	}
}

@media (min-width: 1800px) {
	.section-wrap .section-wrap-aside {
		width: calc(50% - 360px);
	}
	.section-wrap .section-wrap-aside.section-wrap-aside-custom {
		width: 50%;
	}
	.section-wrap.section-wrap-bigger .section-wrap-aside {
		width: calc(50% + 180px);
	}
	.section-wrap .section-wrap-content {
		max-width: 880px;
	}
}

.section-wrap.section-reverse .section-wrap-inner {
	-ms-flex-flow: row-reverse wrap-reverse;
	flex-flow: row-reverse wrap-reverse;
}

.section-wrap.section-reverse .range {
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.section-wrap.section-reverse .section-wrap-aside {
	left: 0;
	right: auto;
}

@media (min-width: 992px) {
	.section-wrap.section-md-reverse .section-wrap-inner {
		-ms-flex-flow: row-reverse wrap-reverse;
		flex-flow: row-reverse wrap-reverse;
	}
	.section-wrap.section-md-reverse .section-wrap-aside {
		left: 0;
		right: auto;
	}
}

.banner img {
	width: 100%;
}

.footer-banner {
	padding-top: 0;
}

.banner-top {
	display: none;
}

@media (min-width: 1200px) {
	.banner-top {
		display: block;
	}
}

/*
*
* Offsets
* --------------------------------------------------
*/
* + p {
	margin-top: 20px;
}

* + hr {
	margin-top: 10px;
}

p + p {
	margin-top: 24px;
}

h3 + * {
	margin-top: 35px;
}

h1 + h2 {
	margin-top: 32px;
}

h2 + h3 {
	margin-top: 32px;
}

h3 + h4 {
	margin-top: 32px;
}

h4 + h5 {
	margin-top: 40px;
}

h5 + h6 {
	margin-top: 40px;
}

h1 + p {
	margin-top: 5px;
}

h2 + p {
	margin-top: 20px;
}

h3 + p {
	margin-top: 20px;
}

h4 + p {
	margin-top: 20px;
}

h5 + p {
	margin-top: 20px;
}

h6 + p {
	margin-top: 20px;
}

p + h2 {
	margin-top: 45px;
}

p + h3 {
	margin-top: 45px;
}

p + h4 {
	margin-top: 45px;
}

p + h5 {
	margin-top: 45px;
}

p + h6 {
	margin-top: 45px;
}

img + p {
	margin-top: 15px;
}

h3 + img {
	margin-top: 42px;
}

h3 + hr {
	margin-top: 15px;
}

p + .list-marked {
	margin-top: 10px;
}

p + .marked-list {
	margin-top: 15px;
}

p + .ordered-list {
	margin-top: 15px;
}

h4 + .box-comment {
	margin-top: 40px;
}

h3 + .divider {
	margin-top: 25px;
}

p + .group {
	margin-top: 15px;
}

hr + .list {
	margin-top: 25px;
}

.list + h4 {
	margin-top: 30px;
}

* + .rd-mailform {
	margin-top: 30px;
}

* + .list-desc {
	margin-top: 15px;
}

* + .list-unstyled {
	margin-top: 23px;
}

* + .group-xl {
	margin-top: 45px;
}

* + .group-sm {
	margin-top: 45px;
}

* + .quote-default {
	margin-top: 45px;
}

* + .quote-secondary {
	margin-top: 45px;
}

* + .rd-search-results {
	margin-top: 45px;
}

* + .services-single-box {
	margin-top: 35px;
}

* + .button {
	margin-top: 25px;
}

* + .isotope-wrap {
	margin-top: 35px;
}

* + .list-bars {
	margin-top: 50px;
}

.quote-secondary + * {
	margin-top: 45px;
}

.aside-title + * {
	margin-top: 22px;
}

.extra-large + * {
	margin-top: 30px;
}

.range + h3 {
	margin-top: 80px;
}

.subtitle + h3 {
	margin-top: 15px;
}

.quote-default + p {
	margin-top: 30px;
}

.range + hr {
	margin-top: 20px;
}

.shell + .shell {
	margin-top: 60px;
}

.range + .range {
	margin-top: 60px;
}

@media (min-width: 768px) {
	* + .button {
		margin-top: 40px;
	}
	p + .group {
		margin-top: 25px;
	}
}

@media (min-width: 992px) {
	* + .isotope-wrap {
		margin-top: 50px;
	}
	.list + h4 {
		margin-top: 60px;
	}
}

.inset-left-25 {
	padding-left: 25px;
}

html .range-75,
html .range-90 {
	position: relative;
	transform: translateY(-50px);
	margin-bottom: -50px;
	pointer-events: none;
}

html .range-75 > *:before,
html .range-90 > *:before {
	content: '';
	display: table;
	width: 0;
}

html .range-75 > *,
html .range-90 > * {
	margin-top: 50px;
	pointer-events: auto;
}

html .range-60 {
	position: relative;
	transform: translateY(-60px);
	margin-bottom: -60px;
	pointer-events: none;
}

html .range-60 > *:before {
	content: '';
	display: table;
	width: 0;
}

html .range-60 > * {
	margin-top: 60px;
	pointer-events: auto;
}

html .range-50 {
	position: relative;
	transform: translateY(-50px);
	margin-bottom: -50px;
	pointer-events: none;
}

html .range-50 > *:before {
	content: '';
	display: table;
	width: 0;
}

html .range-50 > * {
	margin-top: 50px;
	pointer-events: auto;
}

html .range-40 {
	position: relative;
	transform: translateY(-40px);
	margin-bottom: -40px;
	pointer-events: none;
}

html .range-40 > *:before {
	content: '';
	display: table;
	width: 0;
}

html .range-40 > * {
	margin-top: 40px;
	pointer-events: auto;
}

html .range-30 {
	position: relative;
	transform: translateY(-30px);
	margin-bottom: -30px;
    margin-left: -120px;
	margin-right: -120px;
    pointer-events: none;
}

html .range-30 > *:before {
	content: '';
	display: table;
	width: 0;
}

html .range-30 > * {
	margin-top: 30px;
	pointer-events: auto;
}

html .range-15 {
	position: relative;
	transform: translateY(-15px);
	margin-bottom: -15px;
	pointer-events: none;
}

html .range-15 > *:before {
	content: '';
	display: table;
	width: 0;
}

html .range-15 > * {
	margin-top: 15px;
	pointer-events: auto;
}

html .range-0 {
	position: relative;
	transform: translateY(0);
	margin-bottom: 0;
	pointer-events: none;
}

html .range-0 > *:before {
	content: '';
	display: table;
	width: 0;
}

html .range-0 > * {
	margin-top: 0;
	pointer-events: auto;
}

html .spacing-20 {
	position: relative;
	transform: translateY(-20px);
	margin-bottom: -20px;
	pointer-events: none;
}

html .spacing-20 > *:before {
	content: '';
	display: table;
	width: 0;
}

html .spacing-20 > * {
	margin-top: 0px;
	pointer-events: auto;
}

@media (min-width: 992px) {
	html .range-md-30 {
		transform: translateY(-30px);
		margin-bottom: -30px;
	}
	html .range-md-30 > * {
		margin-top: 30px;
	}
	html .range-75 {
		position: relative;
		transform: translateY(-75px);
		margin-bottom: -75px;
		pointer-events: none;
	}
	html .range-75 > *:before {
		content: '';
		display: table;
		width: 0;
	}
	html .range-75 > * {
		margin-top: 75px;
		pointer-events: auto;
	}
	html .range-90 {
		position: relative;
		transform: translateY(-90px);
		margin-bottom: -90px;
		pointer-events: none;
	}
	html .range-90 > *:before {
		content: '';
		display: table;
		width: 0;
	}
	html .range-90 > * {
		margin-top: 90px;
		pointer-events: auto;
	}
}

.range.spacing-20 {
	margin-left: -5px;
	margin-right: -5px;
}

.range.spacing-20 [class*='cell'] {
	padding-left: 0px;
	padding-right: 0px;
}

/*
*
* Modules
* ==================================================
*/
/*
*
* Flex Grid system
* --------------------------------------------------
*/
.shell,
.shell-wide,
.shell-fluid {
	margin-right: auto;
	margin-left: auto;
	padding-left: 0px;
	padding-right: 0px;
}

.shell,
.shell-wide {
	min-width: 300px;
	max-width: 480px;
}

@media (min-width: 768px) {
	.shell,
	.shell-wide {
		max-width: 750px;
	}
}

@media (min-width: 992px) {
	.shell,
	.shell-wide {
		max-width: 970px;
	}
}

@media (min-width: 1024px) {
	.shell,
	.shell-wide {
		max-width: 1200px;
	}
}

@media (min-width: 1024px) {
	.shell-wide {
		max-width: 100%;
	}
}

@media (min-width: 1024px) {
	.shell-fluid-inset-lg-50 {
		padding-left: 0px;
		padding-right: 0px;
	}
}

.range {
	margin-left: -15px;
	margin-right: -15px;
}

.range > .range {
	margin-left: 0;
	margin-right: 0;
}

.range-center {
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.range-left {
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.range-right {
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.range-justify {
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.range-around {
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.range-top {
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.range-reverse {
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.range-middle {
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.range-bottom {
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.range-spacer {
	-webkit-flex-basis: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	max-width: 100%;
}

[class*="cell-"] {
	padding-left: 0px;
	padding-right: 0px;
}

html.lt-ie-10 * + .range,
* + .range {
	margin-top: 50px;
}

html.lt-ie-10 * + [class*='cell-'],
* + [class*='cell-'],
html.lt-ie-10 * + .range-sm,
* + .range-sm {
	margin-top: 30px;
}

html.lt-ie-10 * + .range-lg,
* + .range-lg {
	margin-top: 66px;
}

html.lt-ie-10 .range-condensed,
.range-condensed {
	margin-left: 0;
	margin-right: 0;
}

html.lt-ie-10 .range-condensed > [class*='cell'],
.range-condensed > [class*='cell'] {
	padding-left: 0;
	padding-right: 0;
}

html.lt-ie-10 .range-condensed > * + [class*='cell'],
.range-condensed > * + [class*='cell'] {
	margin-top: 0;
}

html.lt-ie-10 .range-narrow,
.range-narrow {
	margin-left: -5px;
	margin-right: -5px;
}

html.lt-ie-10 .range-narrow > [class*='cell'],
.range-narrow > [class*='cell'] {
	padding-left: 0px;
	padding-right: 0px;
}

html.lt-ie-10 .range-narrow > * + [class*='cell'],
.range-narrow > * + [class*='cell'] {
	padding-left: 0px;
	padding-right: 0px;
}

.range {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex: 0 1 auto;
	-webkit-flex: 0 1 auto;
	flex: 0 1 auto;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.range > .range {
	-webkit-flex-basis: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	max-width: 100%;
}

.range-vertical {
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.range > [class*='cell'] {
	-ms-flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
	flex: 0 0 auto;
	-webkit-flex-basis: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	max-width: 100%;
}

@media (min-width: 480px) {
	* + [class*='cell-xs-'] {
		margin-top: 0;
	}
	.range-xs-center {
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.range-xs-left {
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.range-xs-right {
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.range-xs-justify {
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.range-xs-around {
		-webkit-justify-content: space-around;
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	.range-xs-top {
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.range-xs {
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.range-xs-reverse {
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.range-xs-middle {
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.range-xs-bottom {
		-webkit-align-items: flex-end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
	.cell-xs-top {
		-webkit-align-self: flex-start;
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.cell-xs-middle {
		-webkit-align-self: center;
		-ms-flex-item-align: center;
		align-self: center;
	}
	.cell-xs-bottom {
		-webkit-align-self: flex-end;
		-ms-flex-item-align: end;
		align-self: flex-end;
	}
	.range > .cell-xs-preffix-0 {
		margin-left: 0%;
	}
	.range > .cell-xs-1 {
		-webkit-flex-basis: 8.33333%;
		-ms-flex-preferred-size: 8.33333%;
		flex-basis: 8.33333%;
		max-width: 8.33333%;
	}
	.range > .cell-xs-preffix-1 {
		margin-left: 8.33333%;
	}
	.range > .cell-xs-2 {
		-webkit-flex-basis: 16.66667%;
		-ms-flex-preferred-size: 16.66667%;
		flex-basis: 16.66667%;
		max-width: 16.66667%;
	}
	.range > .cell-xs-preffix-2 {
		margin-left: 16.66667%;
	}
	.range > .cell-xs-3 {
		-webkit-flex-basis: 25%;
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%;
	}
	.range > .cell-xs-preffix-3 {
		margin-left: 25%;
	}
	.range > .cell-xs-4 {
		-webkit-flex-basis: 33.33333%;
		-ms-flex-preferred-size: 33.33333%;
		flex-basis: 33.33333%;
		max-width: 33.33333%;
	}
	.range > .cell-xs-preffix-4 {
		margin-left: 33.33333%;
	}
	.range > .cell-xs-5 {
		-webkit-flex-basis: 41.66667%;
		-ms-flex-preferred-size: 41.66667%;
		flex-basis: 41.66667%;
		max-width: 41.66667%;
	}
	.range > .cell-xs-preffix-5 {
		margin-left: 41.66667%;
	}
	.range > .cell-xs-6 {
		-webkit-flex-basis: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}
	.range > .cell-xs-preffix-6 {
		margin-left: 50%;
	}
	.range > .cell-xs-7 {
		-webkit-flex-basis: 58.33333%;
		-ms-flex-preferred-size: 58.33333%;
		flex-basis: 58.33333%;
		max-width: 58.33333%;
	}
	.range > .cell-xs-preffix-7 {
		margin-left: 58.33333%;
	}
	.range > .cell-xs-8 {
		-webkit-flex-basis: 66.66667%;
		-ms-flex-preferred-size: 66.66667%;
		flex-basis: 66.66667%;
		max-width: 66.66667%;
	}
	.range > .cell-xs-preffix-8 {
		margin-left: 66.66667%;
	}
	.range > .cell-xs-9 {
		-webkit-flex-basis: 75%;
		-ms-flex-preferred-size: 75%;
		flex-basis: 95%;
		max-width: 95%;
	}
	.range > .cell-xs-preffix-9 {
		margin-left: 75%;
	}
	.range > .cell-xs-10 {
		-webkit-flex-basis: 83.33333%;
		-ms-flex-preferred-size: 83.33333%;
		flex-basis: 83.33333%;
		max-width: 83.33333%;
	}
	.range > .cell-xs-preffix-10 {
		margin-left: 83.33333%;
	}
	.range > .cell-xs-11 {
		-webkit-flex-basis: 91.66667%;
		-ms-flex-preferred-size: 91.66667%;
		flex-basis: 91.66667%;
		max-width: 91.66667%;
	}
	.range > .cell-xs-preffix-11 {
		margin-left: 91.66667%;
	}
	.range > .cell-xs-12 {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	.range > .cell-xs-preffix-12 {
		margin-left: 100%;
	}
	.range > .cell-xs-1-5 {
		-webkit-flex-basis: 20%;
		-ms-flex-preferred-size: 20%;
		flex-basis: 20%;
		max-width: 20%;
	}
}

@media (min-width: 768px) {
	* + [class*='cell-sm-'] {
		margin-top: 0;
	}
	.range-sm-center {
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.range-sm-left {
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.range-sm-right {
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.range-sm-justify {
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.range-sm-around {
		-webkit-justify-content: space-around;
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	.range-sm-top {
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.range-sm {
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.range-sm-reverse {
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.range-sm-middle {
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.range-sm-bottom {
		-webkit-align-items: flex-end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
	.cell-sm-top {
		-webkit-align-self: flex-start;
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.cell-sm-middle {
		-webkit-align-self: center;
		-ms-flex-item-align: center;
		align-self: center;
	}
	.cell-sm-bottom {
		-webkit-align-self: flex-end;
		-ms-flex-item-align: end;
		align-self: flex-end;
	}
	.range > .cell-sm-preffix-0 {
		margin-left: 0%;
	}
	.range > .cell-sm-1 {
		-webkit-flex-basis: 8.33333%;
		-ms-flex-preferred-size: 8.33333%;
		flex-basis: 8.33333%;
		max-width: 8.33333%;
	}
	.range > .cell-sm-preffix-1 {
		margin-left: 8.33333%;
	}
	.range > .cell-sm-2 {
		-webkit-flex-basis: 16.66667%;
		-ms-flex-preferred-size: 16.66667%;
		flex-basis: 16.66667%;
		max-width: 16.66667%;
	}
	.range > .cell-sm-preffix-2 {
		margin-left: 16.66667%;
	}
	.range > .cell-sm-3 {
		-webkit-flex-basis: 25%;
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%;
	}
	.range > .cell-sm-preffix-3 {
		margin-left: 25%;
	}
	.range > .cell-sm-4 {
		-webkit-flex-basis: 33.33333%;
		-ms-flex-preferred-size: 33.33333%;
		flex-basis: 33.33333%;
		max-width: 33.33333%;
	}
	.range > .cell-sm-preffix-4 {
		margin-left: 33.33333%;
	}
	.range > .cell-sm-5 {
		-webkit-flex-basis: 41.66667%;
		-ms-flex-preferred-size: 41.66667%;
		flex-basis: 41.66667%;
		max-width: 41.66667%;
	}
	.range > .cell-sm-preffix-5 {
		margin-left: 41.66667%;
	}
	.range > .cell-sm-6 {
		-webkit-flex-basis: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}
	.range > .cell-sm-preffix-6 {
		margin-left: 50%;
	}
	.range > .cell-sm-7 {
		-webkit-flex-basis: 58.33333%;
		-ms-flex-preferred-size: 58.33333%;
		flex-basis: 58.33333%;
		max-width: 58.33333%;
	}
	.range > .cell-sm-preffix-7 {
		margin-left: 58.33333%;
	}
	.range > .cell-sm-8 {
		-webkit-flex-basis: 66.66667%;
		-ms-flex-preferred-size: 66.66667%;
		flex-basis: 66.66667%;
		max-width: 66.66667%;
	}
	.range > .cell-sm-preffix-8 {
		margin-left: 66.66667%;
	}
	.range > .cell-sm-9 {
		-webkit-flex-basis: 75%;
		-ms-flex-preferred-size: 75%;
		flex-basis: 75%;
		max-width: 75%;
	}
	.range > .cell-sm-preffix-9 {
		margin-left: 75%;
	}
	.range > .cell-sm-10 {
		-webkit-flex-basis: 83.33333%;
		-ms-flex-preferred-size: 83.33333%;
		flex-basis: 83.33333%;
		max-width: 83.33333%;
	}
	.range > .cell-sm-preffix-10 {
		margin-left: 83.33333%;
	}
	.range > .cell-sm-11 {
		-webkit-flex-basis: 91.66667%;
		-ms-flex-preferred-size: 91.66667%;
		flex-basis: 91.66667%;
		max-width: 91.66667%;
	}
	.range > .cell-sm-preffix-11 {
		margin-left: 91.66667%;
	}
	.range > .cell-sm-12 {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	.range > .cell-sm-preffix-12 {
		margin-left: 100%;
	}
	.range > .cell-sm-1-5 {
		-webkit-flex-basis: 20%;
		-ms-flex-preferred-size: 20%;
		flex-basis: 20%;
		max-width: 20%;
	}
}

@media (min-width: 992px) {
	* + [class*='cell-md-'] {
		margin-top: 0;
	}
	.range-md-center {
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.range-md-left {
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.range-md-right {
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.range-md-justify {
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.range-md-around {
		-webkit-justify-content: space-around;
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	.range-md-top {
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.range-md {
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.range-md-reverse {
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.range-md-middle {
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.range-md-bottom {
		-webkit-align-items: flex-end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
	.cell-md-top {
		-webkit-align-self: flex-start;
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.cell-md-middle {
		-webkit-align-self: center;
		-ms-flex-item-align: center;
		align-self: center;
	}
	.cell-md-bottom {
		-webkit-align-self: flex-end;
		-ms-flex-item-align: end;
		align-self: flex-end;
	}
	.range > .cell-md-preffix-0 {
		margin-left: 0%;
	}
	.range > .cell-md-1 {
		-webkit-flex-basis: 8.33333%;
		-ms-flex-preferred-size: 8.33333%;
		flex-basis: 8.33333%;
		max-width: 8.33333%;
	}
	.range > .cell-md-preffix-1 {
		margin-left: 8.33333%;
	}
	.range > .cell-md-2 {
		-webkit-flex-basis: 16.66667%;
		-ms-flex-preferred-size: 16.66667%;
		flex-basis: 16.66667%;
		max-width: 16.66667%;
	}
	.range > .cell-md-preffix-2 {
		margin-left: 16.66667%;
	}
	.range > .cell-md-3 {
		-webkit-flex-basis: 25%;
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%;
	}
	.range > .cell-md-preffix-3 {
		margin-left: 25%;
	}
	.range > .cell-md-4 {
		-webkit-flex-basis: 33.33333%;
		-ms-flex-preferred-size: 33.33333%;
		flex-basis: 33.33333%;
		max-width: 33.33333%;
	}
	.range > .cell-md-preffix-4 {
		margin-left: 33.33333%;
	}
	.range > .cell-md-5 {
		-webkit-flex-basis: 41.66667%;
		-ms-flex-preferred-size: 41.66667%;
		flex-basis: 41.66667%;
		max-width: 41.66667%;
	}
	.range > .cell-md-preffix-5 {
		margin-left: 41.66667%;
	}
	.range > .cell-md-6 {
		-webkit-flex-basis: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}
	.range > .cell-md-preffix-6 {
		margin-left: 50%;
	}
	.range > .cell-md-7 {
		-webkit-flex-basis: 58.33333%;
		-ms-flex-preferred-size: 58.33333%;
		flex-basis: 58.33333%;
		max-width: 58.33333%;
	}
	.range > .cell-md-preffix-7 {
		margin-left: 58.33333%;
	}
	.range > .cell-md-8 {
		-webkit-flex-basis: 66.66667%;
		-ms-flex-preferred-size: 66.66667%;
		flex-basis: 66.66667%;
		max-width: 66.66667%;
	}
	.range > .cell-md-preffix-8 {
		margin-left: 66.66667%;
	}
	.range > .cell-md-9 {
		-webkit-flex-basis: 75%;
		-ms-flex-preferred-size: 75%;
		flex-basis: 75%;
		max-width: 75%;
	}
	.range > .cell-md-preffix-9 {
		margin-left: 75%;
	}
	.range > .cell-md-10 {
		-webkit-flex-basis: 83.33333%;
		-ms-flex-preferred-size: 83.33333%;
		flex-basis: 83.33333%;
		max-width: 83.33333%;
	}
	.range > .cell-md-preffix-10 {
		margin-left: 83.33333%;
	}
	.range > .cell-md-11 {
		-webkit-flex-basis: 91.66667%;
		-ms-flex-preferred-size: 91.66667%;
		flex-basis: 91.66667%;
		max-width: 91.66667%;
	}
	.range > .cell-md-preffix-11 {
		margin-left: 91.66667%;
	}
	.range > .cell-md-12 {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	.range > .cell-md-preffix-12 {
		margin-left: 100%;
	}
	.range > .cell-md-1-5 {
		-webkit-flex-basis: 20%;
		-ms-flex-preferred-size: 20%;
		flex-basis: 20%;
		max-width: 20%;
	}
}

@media (min-width: 1200px) {
	* + [class*='cell-lg-'] {
		margin-top: 0;
	}
	.range-lg-center {
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.range-lg-left {
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.range-lg-right {
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.range-lg-justify {
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.range-lg-around {
		-webkit-justify-content: space-around;
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	.range-lg-top {
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.range-lg {
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.range-lg-reverse {
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.range-lg-middle {
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.range-lg-bottom {
		-webkit-align-items: flex-end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
	.cell-lg-top {
		-webkit-align-self: flex-start;
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.cell-lg-middle {
		-webkit-align-self: center;
		-ms-flex-item-align: center;
		align-self: center;
	}
	.cell-lg-bottom {
		-webkit-align-self: flex-end;
		-ms-flex-item-align: end;
		align-self: flex-end;
	}
	.range > .cell-lg-preffix-0 {
		margin-left: 0%;
	}
	.range > .cell-lg-1 {
		-webkit-flex-basis: 8.33333%;
		-ms-flex-preferred-size: 8.33333%;
		flex-basis: 8.33333%;
		max-width: 8.33333%;
	}
	.range > .cell-lg-preffix-1 {
		margin-left: 8.33333%;
	}
	.range > .cell-lg-2 {
		-webkit-flex-basis: 16.66667%;
		-ms-flex-preferred-size: 16.66667%;
		flex-basis: 16.66667%;
		max-width: 16.66667%;
	}
	.range > .cell-lg-preffix-2 {
		margin-left: 16.66667%;
	}
	.range > .cell-lg-3 {
		-webkit-flex-basis: 25%;
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%;
	}
	.range > .cell-lg-preffix-3 {
		margin-left: 25%;
	}
	.range > .cell-lg-4 {
		-webkit-flex-basis: 33.33333%;
		-ms-flex-preferred-size: 33.33333%;
		flex-basis: 33.33333%;
		max-width: 33.33333%;
	}
	.range > .cell-lg-preffix-4 {
		margin-left: 33.33333%;
	}
	.range > .cell-lg-5 {
		-webkit-flex-basis: 41.66667%;
		-ms-flex-preferred-size: 41.66667%;
		flex-basis: 41.66667%;
		max-width: 41.66667%;
	}
	.range > .cell-lg-preffix-5 {
		margin-left: 41.66667%;
	}
	.range > .cell-lg-6 {
		-webkit-flex-basis: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}
	.range > .cell-lg-preffix-6 {
		margin-left: 50%;
	}
	.range > .cell-lg-7 {
		-webkit-flex-basis: 58.33333%;
		-ms-flex-preferred-size: 58.33333%;
		flex-basis: 58.33333%;
		max-width: 58.33333%;
	}
	.range > .cell-lg-preffix-7 {
		margin-left: 58.33333%;
	}
	.range > .cell-lg-8 {
		-webkit-flex-basis: 66.66667%;
		-ms-flex-preferred-size: 66.66667%;
		flex-basis: 66.66667%;
		max-width: 66.66667%;
	}
	.range > .cell-lg-preffix-8 {
		margin-left: 66.66667%;
	}
	.range > .cell-lg-9 {
		-webkit-flex-basis: 75%;
		-ms-flex-preferred-size: 75%;
		flex-basis: 75%;
		max-width: 75%;
	}
	.range > .cell-lg-preffix-9 {
		margin-left: 75%;
	}
	.range > .cell-lg-10 {
		-webkit-flex-basis: 83.33333%;
		-ms-flex-preferred-size: 83.33333%;
		flex-basis: 83.33333%;
		max-width: 83.33333%;
	}
	.range > .cell-lg-preffix-10 {
		margin-left: 83.33333%;
	}
	.range > .cell-lg-11 {
		-webkit-flex-basis: 91.66667%;
		-ms-flex-preferred-size: 91.66667%;
		flex-basis: 91.66667%;
		max-width: 91.66667%;
	}
	.range > .cell-lg-preffix-11 {
		margin-left: 91.66667%;
	}
	.range > .cell-lg-12 {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	.range > .cell-lg-preffix-12 {
		margin-left: 100%;
	}
	.range > .cell-lg-1-5 {
		-webkit-flex-basis: 20%;
		-ms-flex-preferred-size: 20%;
		flex-basis: 20%;
		max-width: 20%;
	}
}

@media (min-width: 1800px) {
	* + [class*='cell-xl-'] {
		margin-top: 0;
	}
	.range-xl-center {
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.range-xl-left {
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.range-xl-right {
		-webkit-justify-content: flex-end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.range-xl-justify {
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.range-xl-around {
		-webkit-justify-content: space-around;
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	.range-xl-top {
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.range-xl {
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.range-xl-reverse {
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.range-xl-middle {
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.range-xl-bottom {
		-webkit-align-items: flex-end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
	.cell-xl-top {
		-webkit-align-self: flex-start;
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.cell-xl-middle {
		-webkit-align-self: center;
		-ms-flex-item-align: center;
		align-self: center;
	}
	.cell-xl-bottom {
		-webkit-align-self: flex-end;
		-ms-flex-item-align: end;
		align-self: flex-end;
	}
	.range > .cell-xl-preffix-0 {
		margin-left: 0%;
	}
	.range > .cell-xl-1 {
		-webkit-flex-basis: 8.33333%;
		-ms-flex-preferred-size: 8.33333%;
		flex-basis: 8.33333%;
		max-width: 8.33333%;
	}
	.range > .cell-xl-preffix-1 {
		margin-left: 8.33333%;
	}
	.range > .cell-xl-2 {
		-webkit-flex-basis: 16.66667%;
		-ms-flex-preferred-size: 16.66667%;
		flex-basis: 16.66667%;
		max-width: 16.66667%;
	}
	.range > .cell-xl-preffix-2 {
		margin-left: 16.66667%;
	}
	.range > .cell-xl-3 {
		-webkit-flex-basis: 25%;
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%;
	}
	.range > .cell-xl-preffix-3 {
		margin-left: 25%;
	}
	.range > .cell-xl-4 {
		-webkit-flex-basis: 33.33333%;
		-ms-flex-preferred-size: 33.33333%;
		flex-basis: 33.33333%;
		max-width: 33.33333%;
	}
	.range > .cell-xl-preffix-4 {
		margin-left: 33.33333%;
	}
	.range > .cell-xl-5 {
		-webkit-flex-basis: 41.66667%;
		-ms-flex-preferred-size: 41.66667%;
		flex-basis: 41.66667%;
		max-width: 41.66667%;
	}
	.range > .cell-xl-preffix-5 {
		margin-left: 41.66667%;
	}
	.range > .cell-xl-6 {
		-webkit-flex-basis: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}
	.range > .cell-xl-preffix-6 {
		margin-left: 50%;
	}
	.range > .cell-xl-7 {
		-webkit-flex-basis: 58.33333%;
		-ms-flex-preferred-size: 58.33333%;
		flex-basis: 58.33333%;
		max-width: 58.33333%;
	}
	.range > .cell-xl-preffix-7 {
		margin-left: 58.33333%;
	}
	.range > .cell-xl-8 {
		-webkit-flex-basis: 66.66667%;
		-ms-flex-preferred-size: 66.66667%;
		flex-basis: 66.66667%;
		max-width: 66.66667%;
	}
	.range > .cell-xl-preffix-8 {
		margin-left: 66.66667%;
	}
	.range > .cell-xl-9 {
		-webkit-flex-basis: 75%;
		-ms-flex-preferred-size: 75%;
		flex-basis: 75%;
		max-width: 75%;
	}
	.range > .cell-xl-preffix-9 {
		margin-left: 75%;
	}
	.range > .cell-xl-10 {
		-webkit-flex-basis: 83.33333%;
		-ms-flex-preferred-size: 83.33333%;
		flex-basis: 83.33333%;
		max-width: 83.33333%;
	}
	.range > .cell-xl-preffix-10 {
		margin-left: 83.33333%;
	}
	.range > .cell-xl-11 {
		-webkit-flex-basis: 91.66667%;
		-ms-flex-preferred-size: 91.66667%;
		flex-basis: 91.66667%;
		max-width: 91.66667%;
	}
	.range > .cell-xl-preffix-11 {
		margin-left: 91.66667%;
	}
	.range > .cell-xl-12 {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	.range > .cell-xl-preffix-12 {
		margin-left: 100%;
	}
	.range > .cell-xl-1-5 {
		-webkit-flex-basis: 20%;
		-ms-flex-preferred-size: 20%;
		flex-basis: 20%;
		max-width: 20%;
	}
}

/*
*
* Owl Carousel
* --------------------------------------------------
*/
.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 {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

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

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

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

/* 
 *  Core Owl Carousel CSS File
 */
.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 {
	margin-top: 30px;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
}

.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-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
	cursor: pointer;
	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 {
	display: none;
}

.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-grab {
	cursor: move;
	cursor: -webkit-grab;
	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 - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity 400ms ease;
}

/* 
 * 	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;
	font: 400 40px/80px 'FontAwesome';
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:before {
	content: '\f144';
}

.owl-carousel .owl-video-play-icon:hover {
	-webkit-transform: scale(1.3);
	transform: scale(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;
}

/*
 * Owl Navigation
 */
.owl-prev, .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font: 400 46px/50px 'FontAwesome';
	color: #fff;
	pointer-events: auto;
}

.owl-prev:hover, .owl-next:hover {
	color: #8f859e;
}

.owl-prev {
	left: 10px;
}

.owl-prev:before {
	content: '\f104';
}

.owl-next {
	right: 10px;
}

.owl-next:before {
	content: '\f105';
}

/*
*
* Swiper
* --------------------------------------------------
*/
.swiper-container {
	height: calc(100vh - 50px);
	min-height: 520px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	/* Fix of Webkit flickering */
	z-index: 1;
}

@media (max-width: 360px) {
	.swiper-container .shell {
		min-width: 100%;
	}
}

.swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper {
	transform-style: preserve-3d;
}

.swiper-container-no-flexbox .swiper-slide {
	float: left;
}

.swiper-container-vertical > .swiper-wrapper {
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
	transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
	flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
	transition-timing-function: ease-out;
	margin: 0 auto;
}

/* a11y */
.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
	touch-action: pan-y;
}

.swiper-wp8-vertical {
	touch-action: pan-x;
}

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper {
	/* Windows 8 IE 10 fix */
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	transform-origin: 50%;
	animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	background-position: 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@keyframes swiper-preloader-spin {
	100% {
		transform: rotate(360deg);
	}
}

.swiper-slide > .vide__body,
.swiper-slide > .parallax_cnt {
	height: 100%;
}

.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: none;
	font-size: 26px;
	line-height: 1;
	color: #fff;
	text-align: center;
	cursor: pointer;
	transition: .2s ease-in;
	will-change: transform;
	z-index: 10;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	color: #8f859e;
}

@media (min-width: 768px) {
	.swiper-button-prev,
	.swiper-button-next {
		display: block;
	}
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}

.swiper-button-prev {
	left: 30px;
}

.swiper-button-next {
	right: 30px;
}

.swiper-pagination {
	display: block;
	text-align: center;
	transition: .3s;
	transform: translate3d(0, 0, 0);
	z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}

.swiper-pagination .swiper-pagination-bullet {
	position: relative;
	width: 20px;
	height: 20px;
	display: inline-block;
	border-radius: 100%;
	background: #84d3eb;
	transition: .2s;
}

.swiper-pagination .swiper-pagination-bullet:before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	content: "";
	display: inline-block;
	border: 4px solid #fff;
	border-radius: 50%;
	opacity: 0;
	transition: 250ms;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before, .swiper-pagination .swiper-pagination-bullet:hover:before {
	top: -7px;
	bottom: -7px;
	right: -7px;
	left: -7px;
	opacity: 1;
}

.swiper-pagination.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}

.swiper-pagination-black .swiper-pagination-bullet {
	background: rgba(0, 0, 0, 0.6);
}

.swiper-pagination-black .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: black;
}

.swiper-container-vertical .swiper-pagination {
	position: absolute;
	bottom: 20px;
	width: 100%;
}

.swiper-container-vertical .swiper-pagination .swiper-pagination-bullet {
	margin: 0 10px;
}

@media (min-width: 768px) {
	.swiper-container-vertical .swiper-pagination {
		right: 43px;
		top: 50%;
		bottom: auto;
		width: auto;
		transform: translate3d(0px, -50%, 0);
	}
	.swiper-container-vertical .swiper-pagination .swiper-pagination-bullet {
		margin: 15px 0;
		display: block;
	}
}

.swiper-container-horizontal .swiper-pagination {
	bottom: 20px;
	left: 0;
	width: 100%;
}

.swiper-container-horizontal .swiper-pagination .swiper-pagination-bullet {
	margin: 0 12px;
}

.swiper-slide {
	position: relative;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-negative: 0;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	white-space: nowrap;
	background-position: center;
}

@media (max-width: 767px) {
	.swiper-slide:last-of-type {
		background-position: 90%;
	}
}

.swiper-slide h1, .swiper-slide .heading-1, .swiper-slide h2, .swiper-slide .heading-2, .swiper-slide h3, .swiper-slide .heading-3, .swiper-slide h4, .swiper-slide .heading-4, .swiper-slide h5, .swiper-slide .heading-5, .swiper-slide h6, .swiper-slide .heading-6 {
	color: #e7d055;
	text-shadow: 0.02em 0.02em 0.02em #333;
}

.swiper-slide .button:before, .swiper-slide .button:after {
	will-change: transform;
}

.swiper-slide:before {
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
	background-color: rgba(255, 255, 255, 0.6);
	z-index: 1;
}

.swiper-slide-caption {
	position: relative;
	z-index: 2;
	width: 100%;
	white-space: normal;
	overflow: hidden;
}

.swiper-slide-caption p {
	display: none;
}

@media (min-width: 768px) {
	.swiper-slide-caption p {
		display: block;
	}
}

@media (min-width: 768px) {
	.swiper-slide:before {
		content: none;
	}
}

.swiper-counter {
	pointer-events: none;
	display: none;
}

.swiper-counter .total {
	color: #dcd1d5;
}

@media (min-width: 768px) {
	.swiper-counter {
		display: block;
		text-align: center;
		font-size: 24px;
		font-family: "Poppins", Helvetica, Arial, sans-serif;
		font-weight: 300;
	}
}

@media (min-width: 1200px) {
	.swiper-counter {
		font-size: 30px;
	}
}

.swiper-counter, .swiper-counter span {
	position: relative;
	z-index: 9;
}

.swiper-counter .count {
	display: inline-block;
	width: 18px;
}

.swiper-counter .next {
	display: none;
}

.swiper-inner {
	position: absolute;
	z-index: 10;
	bottom: 20px;
	width: 100%;
}

@media (min-width: 768px) {
	.swiper-inner {
		right: 0;
		bottom: 0;
		display: flex;
		align-items: center;
		width: 250px;
		padding: 16px 0;
		background-color: #fff;
	}
	.swiper-inner > * {
		flex-grow: 1;
		width: 100%;
	}
	.swiper-inner:before {
		position: absolute;
		left: -20px;
		top: 10px;
		bottom: -10px;
		width: 20px;
		background-color: #fff;
		transform: skewY(-45deg);
		content: "";
	}
}

@media (min-width: 1200px) {
	.swiper-inner {
		width: 315px;
		padding: 32px 0 15px;
	}
}

.slider-subtitle-group {
	position: relative;
	overflow: hidden;
	line-height: 0;
}

.slider-subtitle-group .decoration-line + * {
	margin-top: 15px;
}

.slider-subtitle-group h4 {
	font-weight: 300;
}

@media (min-width: 768px) {
	.slider-subtitle-group {
		margin-left: 40px;
		padding-left: 20px;
		padding-bottom: 10px;
	}
	.slider-subtitle-group > * + *,
	.slider-subtitle-group .decoration-line + * {
		margin-top: 10px;
	}
}

@media (min-width: 1200px) {
	.slider-subtitle-group {
		margin-left: 58px;
		padding-left: 28px;
	}
}

.decoration-line {
	display: inline-block;
	width: 50px;
	height: 4px;
	background-color: #e7d055;
		text-shadow: 0.02em 0.02em 0.02em #333;

}

@media (min-width: 768px) {
	.decoration-line {
		position: absolute;
			margin-left: 200px;
top: 0;
		left: 0;
		bottom: 0;
		height: 100%;
		z-index: 1;
		width: 4px;
	}
}

.swiper-centered {
	height: auto;
}

.swiper-centered .swiper-slide {
	display: block;
	will-change: transform;
}

.swiper-centered .swiper-button-next,
.swiper-centered .swiper-button-prev {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #8f859e;
	font-size: 21px;
}

.swiper-centered .swiper-button-next:hover,
.swiper-centered .swiper-button-prev:hover {
	background-color: #dcd1d5;
	color: #fff;
}

.swiper-centered .swiper-slide-caption {
	overflow: visible;
	will-change: transform;
}

.swiper-centered .portfolio-item {
	overflow: visible;
	will-change: transform;
}

.swiper-style-2 {
	max-height: 750px;
}

@media (min-width: 1200px) {
	.swiper-style-2 {
		min-height: 750px;
	}



}

.swiper-scale-effect .swiper-slide-cover {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: 8.5s ease-out;
	transform: scale(0.5);
}

.swiper-scale-effect .swiper-slide:nth-child(1) .swiper-slide-cover {
	transform-origin: 0 0;
}

.swiper-scale-effect .swiper-slide:nth-child(2) .swiper-slide-cover {
	transform: scale(0.5);
	transform-origin: 100% 100%;
}

.swiper-scale-effect .swiper-slide:nth-child(3) .swiper-slide-cover {
	transform-origin: 50% 50%;
}

.swiper-scale-effect .swiper-slide.swiper-slide-active .swiper-slide-cover {
	transform: scale(0.5);
}

.swiper-scale-effect .swiper-slide:nth-child(2).swiper-slide-active .swiper-slide-cover {
	transform: scale(0.5);
}

/*
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE
------------------------------------------------------------------------------------------------------------------------
*/
.mCustomScrollbar {
	-ms-touch-action: pinch-zoom;
	touch-action: pinch-zoom;
	/* direct pointer events to js */
}

.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action {
	-ms-touch-action: auto;
	touch-action: auto;
}

.mCustomScrollBox {
	/* contains plugin's markup */
	position: relative;
	overflow: hidden;
	height: 100%;
	max-width: 100%;
	outline: none;
	direction: ltr;
}

.mCSB_container {
	/* contains the original content */
	overflow: hidden;
	width: auto;
	height: auto;
}

/*
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR
y-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_inside > .mCSB_container {
	margin-right: 30px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
	margin-right: 0;
}

/* non-visible scrollbar */
.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
	/* RTL direction/left-side scrollbar */
	margin-right: 0;
	margin-left: 30px;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
	margin-left: 0;
}

/* RTL direction/left-side scrollbar */
.mCSB_scrollTools {
	/* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
	position: absolute;
	width: 16px;
	height: auto;
	left: auto;
	top: 0;
	right: 0;
	bottom: 0;
}

.mCSB_outside + .mCSB_scrollTools {
	right: -26px;
}

/* scrollbar position: outside */
.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
	/* RTL direction/left-side scrollbar */
	right: auto;
	left: 0;
}

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
	left: -26px;
}

/* RTL direction/left-side scrollbar (scrollbar position: outside) */
.mCSB_scrollTools .mCSB_draggerContainer {
	/* contains the draggable element and dragger rail markup */
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: auto;
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
	margin: 20px 0;
}

.mCSB_scrollTools .mCSB_draggerRail {
	width: 16px;
	height: 100%;
	margin: 0 auto;
	border-radius: 0;
}

.mCSB_scrollTools .mCSB_dragger {
	/* the draggable element */
	cursor: pointer;
	width: 100%;
	height: 30px;
	/* minimum dragger height */
	z-index: 1;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	/* the dragger element */
	position: relative;
	width: 16px;
	height: 100%;
	margin: 0 auto;
	border-radius: 0;
	text-align: center;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
	width: 12px;
	/* auto-expanded scrollbar */
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
	width: 8px;
	/* auto-expanded scrollbar */
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
	display: block;
	position: absolute;
	height: 20px;
	width: 100%;
	overflow: hidden;
	margin: 0 auto;
	cursor: pointer;
}

.mCSB_scrollTools .mCSB_buttonDown {
	bottom: 0;
}

/*
*
* Select 2
* --------------------------------------------------
*/
/*
Version: 3.5.4 Timestamp: Sun Aug 30 13:30:32 EDT 2015
*/
.select2-container {
	margin: 0;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
}

.select2-container-active {
	border: 1px solid #8f859e;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
	/*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
	-webkit-box-sizing: border-box;
	/* webkit */
	-moz-box-sizing: border-box;
	/* firefox */
	box-sizing: border-box;
	/* css3 */
}

.select2-container .select2-choice {
	display: block;
	position: relative;
	color: #9b9b9b;
	background-color: #f5f5f5;
	padding: 12px 15px;
	text-decoration: none;
}

.select2-container .select2-choice > .select2-chosen {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.select2-arrow {
	display: inline-block;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	line-height: 1;
}

.select2-arrow b:before {
	display: inline-block;
	font-weight: 400;
	content: "";
	font-family: 'FontAwesome';
	font-size: 15px;
	transform: rotate(0deg);
}

.select2-dropdown-open .select2-arrow b:before {
	transform: rotate(180deg);
}

.select2-container .select2-choice abbr {
	display: none;
}

.select2-drop-mask {
	border: 0;
	margin: 0;
	padding: 0;
	position: fixed;
	left: 0;
	top: 0;
	min-height: 100%;
	min-width: 100%;
	height: auto;
	width: auto;
	opacity: 0;
	z-index: 99;
	/* styles required for IE to work */
	background-color: #fff;
	filter: alpha(opacity=0);
}

.select2-drop {
	width: 100%;
	margin-top: -1px;
	position: absolute;
	z-index: 100;
	top: 100%;
	background: #fff;
	color: #9b9b9b;
	border: 1px solid #f5f5f5;
	border-top: 0;
}

.select2-drop-active {
	border: 1px solid #8f859e;
	border-top: 0;
}

.select2-drop.select2-drop-above {
	margin-top: 1px;
	border-top: 1px solid #f5f5f5;
	border-bottom: 0;
}

.select2-drop.select2-drop-above.select2-drop-active {
	border: 1px solid #8f859e;
}

.select2-search {
	display: none !important;
	width: 100%;
	padding: 4px 4px 0;
	position: relative;
	z-index: 10000;
	white-space: nowrap;
}

.select2-search:before {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(calc(-50% + 4px));
	display: inline-block;
	content: '\f43b';
	font-family: 'Material Design Icons';
	font-size: 20px;
	line-height: 1;
}

.select2-search input {
	width: 100%;
	padding: 5px 35px 5px 5px;
	margin: 0;
	outline: 0;
	font-size: 1em;
	background-color: #f5f5f5;
	color: #9b9b9b;
	border: 1px solid #f5f5f5;
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
	border: 1px solid #f5f5f5;
	border-top-color: transparent;
}

.select2-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* results */
.select2-results {
	padding: 4px 4px;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.select2-results li.select2-result-with-children > .select2-result-label {
	font-weight: bold;
}

.select2-results .select2-result-label {
	padding: 3px 7px 4px;
	margin: 0;
	cursor: pointer;
	min-height: 1em;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.select2-results .select2-highlighted {
	background: #8f859e;
	color: #fff;
}

.select2-results li em {
	background: #fff;
	font-style: normal;
}

.select2-results .select2-highlighted em {
	background: transparent;
}

.select2-results .select2-highlighted ul {
	background: #fff;
	color: #000;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
	display: list-item;
	padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
	color: #fff;
	background: #8f859e;
	display: list-item;
	cursor: default;
}

.select2-results .select2-disabled {
	background: #f2f3f8;
	display: list-item;
	cursor: default;
}

.select2-results .select2-selected {
	display: none;
}

.select2-results .select2-ajax-error {
	background: rgba(255, 50, 50, 0.2);
}

.select2-more-results {
	background: #f4f4f4;
	display: list-item;
}

/* disabled styles */
.select2-container.select2-container-disabled .select2-choice {
	background-color: #f4f4f4;
	background-image: none;
	border: 1px solid #ddd;
	cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
	background-color: #f4f4f4;
	background-image: none;
	border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
	display: none;
}

/* multiselect */
.select2-container-multi {
	display: flex;
	align-items: stretch;
	height: auto;
	min-height: 50px;
}

.select2-container-multi .select2-choices {
	display: flex;
	flex-flow: row;
	align-items: center;
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	line-height: 0;
	cursor: text;
	overflow: hidden;
}

.select2-locked {
	padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
	min-height: 26px;
}

.select2-container-multi .select2-choices .select2-search-field {
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
	width: 100% !important;
	outline: 0;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
	padding: 4px 5px 4px 20px;
	margin: 3px 0 3px 5px;
	position: relative;
	line-height: 13px;
	cursor: default;
	border: 1px solid gainsboro;
	background-clip: padding-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: gainsboro;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
	cursor: default;
}

.select2-search-choice-close {
	display: block;
	width: 12px;
	height: 13px;
	position: absolute;
	right: 3px;
	top: 3px;
	color: #363d41;
}

.select2-search-choice-close:before {
	display: inline-block;
	content: '\f24c';
	font-family: 'Material Design Icons';
	font-size: 12px;
	line-height: 1;
}

.select2-container-multi .select2-search-choice-close {
	left: 3px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
	background-color: #f4f4f4;
	background-image: none;
	border: 1px solid #ddd;
	cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
	padding: 3px 5px 3px 5px;
	border: 1px solid #ddd;
	background-image: none;
	background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
	display: none;
	background: none;
}

/* end multiselect */
.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
	text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
	clip: rect(0 0 0 0) !important;
	width: 1px !important;
	height: 1px !important;
	border: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	position: absolute !important;
	outline: 0 !important;
	left: 0px !important;
	top: 0px !important;
}

.select2-display-none {
	display: none;
}

.select2-measure-scrollbar {
	position: absolute;
	top: -10000px;
	left: -10000px;
	width: 100px;
	height: 100px;
	overflow: scroll;
}

.select2-search.select2-search-hidden {
	visibility: hidden;
	display: none;
	pointer-events: none;
}

.select2-search.select2-search-hidden label,
.select2-search.select2-search-hidden input {
	visibility: hidden;
	display: none;
	pointer-events: none;
}

.select2-drop-mask {
	display: none !important;
}

.dtp {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 2000;
}

.dtp > .dtp-content {
	background: #fff;
	max-width: 300px;
	box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.15);
	position: relative;
	left: 50%;
	margin: 0 auto;
}

@media (max-width: 767px) {
	.dtp > .dtp-content {
		max-height: 90vh;
		overflow-y: auto;
	}
}

.dtp-header {
	background: #8f859e;
	color: #fff;
	text-align: center;
	padding: 0.3rem;
	position: relative;
}

.dtp-date, .dtp-time {
	background: #a9a1b5;
	text-align: center;
	color: #fff;
	padding: 10px;
}

.dtp-date > div {

	padding: 0;
	margin: 0;
}

.dtp-actual-month {
	font-size: 1.5em;
}

.dtp-actual-num, .dtp-actual-maxtime {
	font-size: 3em;
	line-height: 0.9;
}

.dtp-actual-year {
	font-size: 1.5em;
	color: #fff;
}

.dtp-picker {
	padding: 1rem;
	text-align: center;
}

.dtp-picker-month, .dtp-actual-time {
	font-weight: 500;
	text-align: center;
}

.dtp-close {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1rem;
}

.dtp-close > a {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
}

.dtp table.dtp-picker-days {
	margin: 0;
	border: none;
}

.dtp table.dtp-picker-days tr {
	border: none;
}

.dtp table.dtp-picker-days tr > td {
	border: none;
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	padding: 1rem 0.3rem;
}

.dtp table.dtp-picker-days tr > td > span.dtp-select-day {
	color: #BDBDBD !important;
}

.dtp table.dtp-picker-days tr > td > a {
	color: #000;
	width: 24px;
	height: 24px;
	display: inline-block;
	text-align: center;
	line-height: 24px;
	border-radius: 50%;
	transition: .3s all ease;
}

.dtp .dtp-picker-time > a {
	color: #000;
	padding: 0.4rem 0.5rem 0.5rem 0.6rem;
	border-radius: 50% !important;
}

.dtp table.dtp-picker-days tr > td > a.selected {
	background: #8f859e;
	color: #fff;
}

.dtp table.dtp-picker-days tr > th {
	color: #000;
	text-align: center;
	font-weight: 700;
	padding: 0.4rem 0.3rem;
	border-bottom: none;
}

.dtp .p10, .dtp .p20, .dtp .p60, .dtp .p80 {
	display: inline-block;
	vertical-align: middle;
}

.dtp .p10 {
	width: 10%;
}

.dtp .p10 > a {
	color: #ebebeb;
	transition: .3s all ease;
}

.dtp .p10 > a:hover {
	color: #fff;
}

.dtp .p20 {
	width: 20%;
}

.dtp .p60 {
	width: 60%;
}

.dtp .p80 {
	width: 80%;
}

.dtp-picker-month {
	display: none !important;
}

.dtp-meridien-am, .dtp-meridien-pm {
	position: relative;
	top: 10px;
	color: #000;
	font-weight: 500;
	padding: 0.7rem 0.5rem;
	border-radius: 50% !important;
	text-decoration: none;
	background: #eee;
	font-size: 1rem;
}

.dtp-actual-meridien a.selected {
	background: #8f859e;
	color: #fff;
}

.dtp-picker-time {
	position: absolute;
	width: 30px;
	height: 30px;
	font-size: 1em;
	border-radius: 50%;
	cursor: pointer;
	font-weight: 500;
	text-align: center !important;
}

.dtp-picker-time > a {
	display: block;
	line-height: 23px;
	padding: 0.3rem 0.3rem 0.3rem 0.3rem;
}

.dtp-picker-time > a.dtp-select-hour.selected {
	background: #8f859e;
	color: #fff;
}

.dtp-picker-time > a.dtp-select-hour.disabled {
	color: #363d41;
}

.dtp-picker-time > a.dtp-select-minute.disabled {
	color: #363d41;
}

.dtp-picker-time > a.dtp-select-minute.selected {
	background: #8f859e;
	color: #fff;
}

.dtp-picker-clock {
	margin: 1rem 2rem 0 2rem;
	padding: 1rem;
	border-radius: 50% !important;
	background: white;
}

.dtp-clock-center {
	width: 15px;
	height: 15px;
	background: #363d41;
	border-radius: 50%;
	position: absolute;
	z-index: 50;
}

html[class*="ie"] .dtp-clock-center {
	display: none;
}

.dtp-hand, .dtp-hour-hand {
	position: absolute;
	width: 4px;
	margin-left: -2px;
	background: #363d41;
	transform: rotate(0deg);
	transform-origin: bottom;
	z-index: 1;
}

html[class*="ie"] .dtp-hand, html[class*="ie"] .dtp-hour-hand {
	display: none;
}

.dtp-minute-hand {
	width: 2px;
	margin-left: -1px;
}

.dtp-hand.on {
	background: #8f859e;
}

.dtp-buttons {
	padding: 0 1rem 1rem 1rem;
	text-align: right;
}

.dtp .invisible {
	visibility: hidden;
}

.dtp .left {
	float: left;
}

.dtp .right {
	float: right;
}

.dtp-btn-cancel,
.dtp-btn-ok {
	transition: 250ms all ease-in-out;
	font-family: "Poppins", Helvetica, Arial, sans-serif;
	font-weight: 700;
	padding: 12px 30px;
	font-size: 14px;
	line-height: 18px;
	border-radius: 3px;
	color: #fff;
	background-color: #8f859e;
	border-color: #8f859e;
}

.dtp-btn-cancel:hover, .dtp-btn-cancel:focus, .dtp-btn-cancel:active, .dtp-btn-cancel:hover,
.dtp-btn-ok:hover,
.dtp-btn-ok:focus,
.dtp-btn-ok:active,
.dtp-btn-ok:hover {
	color: #fff;
	background-color: #dcd1d5;
	border-color: #dcd1d5;
}

.dtp-btn-cancel:active:focus,
.dtp-btn-ok:active:focus {
	outline: 0;
	background: #dcd1d5;
	border-color: #dcd1d5;
}

.dtp-buttons {
	margin-left: -5px;
	margin-right: -5px;
}

.dtp-buttons > * {
	margin: 0 5px;
}

.slick-slider {
	position: relative;
	display: block;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
}

.slick-track:before, .slick-track:after {
	content: "";
	display: table;
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}

[dir="rtl"] .slick-slide {
	float: right;
}

.slick-slide:focus {
	outline: none;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

.slick-loading .slick-list {
	background: #fff url("./../images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
	position: absolute;
	display: block;
	height: 20px;
	width: 20px;
	line-height: 0;
	font-size: 0;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.6);
	color: transparent;
	top: 50%;
	margin-top: -10px\9;
	/*lte IE 8*/
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	padding: 0;
	border: none;
	outline: none;
	z-index: 9;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	outline: none;
	background: transparent;
	color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
	opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
	opacity: 0.25;
}

.slick-prev:before, .slick-next:before {
	font-family: "Lato", Helvetica, Arial, sans-serif;
	font-size: 20px;
	line-height: 1;
	color: white;
	opacity: 0.75;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-prev {
	left: 0;
}

[dir="rtl"] .slick-prev {
	left: auto;
	right: 0;
}

.slick-prev:before {
	content: "←";
}

[dir="rtl"] .slick-prev:before {
	content: "→";
}

.slick-next {
	right: 0;
}

[dir="rtl"] .slick-next {
	left: 0;
	right: auto;
}

.slick-next:before {
	content: "→";
}

[dir="rtl"] .slick-next:before {
	content: "←";
}

/* Dots */
.slick-slider {
	margin-bottom: 30px;
}

.slick-dots {
	position: absolute;
	bottom: -45px;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	width: 100%;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	height: 20px;
	width: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	border: 0;
	background: transparent;
	display: block;
	height: 20px;
	width: 20px;
	outline: none;
	line-height: 0;
	font-size: 0;
	color: transparent;
	padding: 5px;
	cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
	outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
	opacity: 1;
}

.slick-dots li button:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "•";
	width: 20px;
	height: 20px;
	font-family: "Lato", Helvetica, Arial, sans-serif;
	font-size: 6px;
	line-height: 20px;
	text-align: center;
	color: black;
	opacity: 0.25;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
	color: black;
	opacity: 0.75;
}

#child-carousel .slick-slide {
	cursor: pointer;
}
