h1, h2, h3, h4, h5, h6 {
	color: #1c1f21;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 6.4px 0;
	margin: 0 0 0.4rem 0;
	letter-spacing: -0.5px;
}

h2 {
	font-size: 28.8px;
	font-size: 1.8rem;
}

h3 {
	font-size: 24px;
	font-size: 1.5rem;
}

h4 {
	font-size: 17.6px;
	font-size: 1.1rem;
}

p {
	color: #707070;
	line-height: 1.9;
	margin: 0 0 1.2em;
}

a {
	color: #707070;
	-webkit-transition: ease color 300ms;
	transition: ease color 300ms;
}


/* Mask Up */
@-webkit-keyframes maskUp {
	from {
		-webkit-transform: translate(0, 100%);
		transform: translate(0, 100%);
	}

	to {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}

@keyframes maskUp {
	from {
		-webkit-transform: translate(0, 100%);
		transform: translate(0, 100%);
	}

	to {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}
/* Mask Right */
@-webkit-keyframes maskRight {
	from {
		-webkit-transform: translate(-100%, 0);
		transform: translate(-100%, 0);
	}

	to {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}

@keyframes maskRight {
	from {
		-webkit-transform: translate(-100%, 0);
		transform: translate(-100%, 0);
	}

	to {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}
/* Mask Down */
@-webkit-keyframes maskDown {
	from {
		-webkit-transform: translate(0, -100%);
		transform: translate(0, -100%);
	}

	to {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}

@keyframes maskDown {
	from {
		-webkit-transform: translate(0, -100%);
		transform: translate(0, -100%);
	}

	to {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}
/* Mask Left */
@-webkit-keyframes maskLeft {
	from {
		-webkit-transform: translate(100%, 0);
		transform: translate(100%, 0);
	}

	to {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}

@keyframes maskLeft {
	from {
		-webkit-transform: translate(100%, 0);
		transform: translate(100%, 0);
	}

	to {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}
/* Fade In Up Shorter */
@-webkit-keyframes fadeInUpShorter {
	from {
		opacity: 0;
		-webkit-transform: translate(0, 50px);
		transform: translate(0, 50px);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInUpShorter {
	from {
		opacity: 0;
		-webkit-transform: translate(0, 50px);
		transform: translate(0, 50px);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
/* Fade In Left Shorter */
@-webkit-keyframes fadeInLeftShorter {
	from {
		opacity: 0;
		-webkit-transform: translate(50px, 0);
		transform: translate(50px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}

@keyframes fadeInLeftShorter {
	from {
		opacity: 0;
		-webkit-transform: translate(50px, 0);
		transform: translate(50px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}
/* Fade In Right Shorter */
@-webkit-keyframes fadeInRightShorter {
	from {
		opacity: 0;
		-webkit-transform: translate(-50px, 0);
		transform: translate(-50px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}

@keyframes fadeInRightShorter {
	from {
		opacity: 0;
		-webkit-transform: translate(-50px, 0);
		transform: translate(-50px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}
/* Fade In Down Shorter */
@-webkit-keyframes fadeInDownShorter {
	from {
		opacity: 0;
		-webkit-transform: translate(0, -50px);
		transform: translate(0, -50px);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}

@keyframes fadeInDownShorter {
	from {
		opacity: 0;
		-webkit-transform: translate(0, -50px);
		transform: translate(0, -50px);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}
/* Fade In Down Shorter - Absolute Center */
@-webkit-keyframes fadeInDownShorterAbsCenter {
	from {
		opacity: 0;
		-webkit-transform: translate(-50%, -50px);
		transform: translate(-50%, -50px);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
	}
}

@keyframes fadeInDownShorterAbsCenter {
	from {
		opacity: 0;
		-webkit-transform: translate(-50%, -50px);
		transform: translate(-50%, -50px);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
	}
}
/* Expand In */
@-webkit-keyframes expandIn {
	from {
		opacity: 0;
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}

	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes expandIn {
	from {
		opacity: 0;
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}

	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
/* Blur In */
@-webkit-keyframes blurIn {
	from {
		opacity: 0;
		-webkit-filter: blur(20px);
		filter: blur(20px);
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}

	to {
		opacity: 1;
		-webkit-filter: blur(0);
		filter: blur(0);
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes blurIn {
	from {
		opacity: 0;
		-webkit-filter: blur(20px);
		filter: blur(20px);
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}

	to {
		opacity: 1;
		-webkit-filter: blur(0);
		filter: blur(0);
		-webkit-transform: none;
		transform: none;
	}
}
/* Carousel Fade In Right */
@-webkit-keyframes doubleCarouselFadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate(15%, -50%);
		transform: translate(15%, -50%);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
}

@keyframes doubleCarouselFadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate(15%, -50%);
		transform: translate(15%, -50%);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
}
/* Carousel Fade In Left */
@-webkit-keyframes doubleCarouselFadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate(-15%, -50%);
		transform: translate(-15%, -50%);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
}

@keyframes doubleCarouselFadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate(-15%, -50%);
		transform: translate(-15%, -50%);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
}
/* Steps Fade In Up */
@-webkit-keyframes stepsFadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate(-50%, 25%);
		transform: translate(-50%, 25%);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
}

@keyframes stepsFadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate(-50%, 25%);
		transform: translate(-50%, 25%);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
}
/* Steps Fade In Left */
@-webkit-keyframes stepsFadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate(-75%, -50%);
		transform: translate(-75%, -50%);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
}

@keyframes stepsFadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate(-75%, -50%);
		transform: translate(-75%, -50%);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
}
/* Steps Fade In Right */
@-webkit-keyframes stepsFadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate(-25%, -50%);
		transform: translate(-25%, -50%);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
}

@keyframes stepsFadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate(-25%, -50%);
		transform: translate(-25%, -50%);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
}
/* Text bg Fade In Up */
@-webkit-keyframes textBgFadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate(-50%, 200%);
		transform: translate(-50%, 200%);
	}

	to {
		opacity: 0.06;
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
	}
}

@keyframes textBgFadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate(-50%, 200%);
		transform: translate(-50%, 200%);
	}

	to {
		opacity: 0.06;
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
	}
}

@-webkit-keyframes textBgFadeInUpDark {
	from {
		opacity: 0;
		-webkit-transform: translate(-50%, 200%);
		transform: translate(-50%, 200%);
	}

	to {
		opacity: 0.02;
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
	}
}

@keyframes textBgFadeInUpDark {
	from {
		opacity: 0;
		-webkit-transform: translate(-50%, 200%);
		transform: translate(-50%, 200%);
	}

	to {
		opacity: 0.02;
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
	}
}
/* Text bg Fade In Up 2 */
@-webkit-keyframes textBgFadeInUp2 {
	from {
		opacity: 0;
		-webkit-transform: translate(-50%, 200%);
		transform: translate(-50%, 200%);
	}

	to {
		opacity: 0.5;
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
	}
}

@keyframes textBgFadeInUp2 {
	from {
		opacity: 0;
		-webkit-transform: translate(-50%, 200%);
		transform: translate(-50%, 200%);
	}

	to {
		opacity: 0.5;
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
	}
}
/* Header Reveal */
@-webkit-keyframes headerReveal {
	from {
		top: -150px;
	}

	to {
		top: 0;
	}
}

@keyframes headerReveal {
	from {
		top: -150px;
	}

	to {
		top: 0;
	}
}
/* Fade In Scale */
@-webkit-keyframes fadeInScale {
	from {
		opacity: 0;
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
	}

	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
	}

	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
/* Highlight */
@-webkit-keyframes highlight {
	0% {
		background-color: transparent;
	}

	50% {
		background-color: #f1f3f7;
	}

	100% {
		background-color: transparent;
	}
}

@keyframes highlight {
	0% {
		background-color: transparent;
	}

	50% {
		background-color: #f1f3f7;
	}

	100% {
		background-color: transparent;
	}
}
/* Slider Scroll Button Animation */
@-webkit-keyframes sliderScrollButton {
	0% {
		opacity: 1;
		-webkit-transform: translate3d(-50%, 0, 0);
		transform: translate3d(-50%, 0, 0);
	}

	70% {
		opacity: 1;
		-webkit-transform: translate3d(-50%, 10px, 0);
		transform: translate3d(-50%, 10px, 0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(-50%, 10px, 0);
		transform: translate3d(-50%, 10px, 0);
	}
}

@keyframes sliderScrollButton {
	0% {
		opacity: 1;
		-webkit-transform: translate3d(-50%, 0, 0);
		transform: translate3d(-50%, 0, 0);
	}

	70% {
		opacity: 1;
		-webkit-transform: translate3d(-50%, 10px, 0);
		transform: translate3d(-50%, 10px, 0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(-50%, 10px, 0);
		transform: translate3d(-50%, 10px, 0);
	}
}
/* Background Scale Out */
@-webkit-keyframes scaleOut {
	from {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes scaleOut {
	from {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
/* Animations */
.animated {
	-webkit-animation-duration: 750ms;
	animation-duration: 750ms;
	-webkit-animation-timing-function: cubic-bezier(0.03, 0.025, 0, 0.97);
	animation-timing-function: cubic-bezier(0.03, 0.025, 0, 0.97);
}

.appear-animation {
	opacity: 0;
}

.appear-animation-visible {
	opacity: 1;
}

.maskUp {
	-webkit-animation-name: maskUp;
	animation-name: maskUp;
}

.maskRight {
	-webkit-animation-name: maskRight;
	animation-name: maskRight;
}

.maskDown {
	-webkit-animation-name: maskDown;
	animation-name: maskDown;
}

.maskLeft {
	-webkit-animation-name: maskLeft;
	animation-name: maskLeft;
}

.fadeInUpShorter {
	-webkit-animation-name: fadeInUpShorter;
	animation-name: fadeInUpShorter;
}

.fadeInLeftShorter {
	-webkit-animation-name: fadeInLeftShorter;
	animation-name: fadeInLeftShorter;
}

.fadeInRightShorter {
	-webkit-animation-name: fadeInRightShorter;
	animation-name: fadeInRightShorter;
}

.fadeInDownShorter {
	-webkit-animation-name: fadeInDownShorter;
	animation-name: fadeInDownShorter;
}

.fadeInDownShorterAbsCenter {
	-webkit-animation-name: fadeInDownShorterAbsCenter;
	animation-name: fadeInDownShorterAbsCenter;
}

.expandIn {
	-webkit-animation-name: expandIn;
	animation-name: expandIn;
}

.blurIn {
	-webkit-animation-name: blurIn;
	animation-name: blurIn;
}

.doubleCarouselFadeInRight {
	-webkit-animation-name: doubleCarouselFadeInRight;
	animation-name: doubleCarouselFadeInRight;
}

.doubleCarouselFadeInLeft {
	-webkit-animation-name: doubleCarouselFadeInLeft;
	animation-name: doubleCarouselFadeInLeft;
}

.stepsFadeInUp {
	-webkit-animation-name: stepsFadeInUp;
	animation-name: stepsFadeInUp;
}

.stepsFadeInLeft {
	-webkit-animation-name: stepsFadeInLeft;
	animation-name: stepsFadeInLeft;
}

.stepsFadeInRight {
	-webkit-animation-name: stepsFadeInRight;
	animation-name: stepsFadeInRight;
}

.textBgFadeInUp {
	-webkit-animation-name: textBgFadeInUp;
	animation-name: textBgFadeInUp;
}

.textBgFadeInUpDark {
	-webkit-animation-name: textBgFadeInUpDark;
	animation-name: textBgFadeInUpDark;
}

.textBgFadeInUp2 {
	-webkit-animation-name: textBgFadeInUp2;
	animation-name: textBgFadeInUp2;
}

.fadeInScale {
	-webkit-animation-name: fadeInScale;
	animation-name: fadeInScale;
}

.scaleOut {
	-webkit-animation-name: scaleOut;
	animation-name: scaleOut;
}

/* Hover 3d Effect */
.hover-in {
	-webkit-transition: .1s ease-out !important;
	transition: .1s ease-out !important;
}

.hover-out {
	-webkit-transition: .1s ease-in !important;
	transition: .1s ease-in !important;
}

.hover-3d {
	-webkit-transition: none;
	transition: none;
}

/* Hover Anim */
.hover-anim.hover-anim-effect-1 {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all 0.7s cubic-bezier(0.2, 1, 0.22, 1);
	transition: all 0.7s cubic-bezier(0.2, 1, 0.22, 1);
}

.hover-anim.hover-anim-effect-1:hover {
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

/* Highlight Anim */
.highlight-anim {
	-webkit-animation-name: highlight;
	animation-name: highlight;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
}
.overlay {
	/* Backward */
}

.overlay:before {
	content: ' ';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	background: #1c1f21;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: ease opacity 300ms 100ms;
	transition: ease opacity 300ms 100ms;
}

.overlay:hover:before, .overlay.overlay-show:before, .overlay.show:before {
	opacity: 0.8;
}

.overlay.overlay-op-8:hover:before, .overlay.overlay-op-8.overlay-show:before, .overlay.overlay-op-8.show:before {
	opacity: 0.8;
}

.nav {
	padding-left: 0;
}

.nav > .nav-item > .nav-link {
	color: #707070;
}

.btn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 12px;
	font-size: 0.75rem;
	font-family: "Montserrat", sans-serif;
	cursor: pointer;
	-webkit-transition: all 0.1s;
	transition: all 0.1s;
}

.btn-4 {
	padding: 11.076px 35.692px !important;
	padding: 0.6923076923rem 2.2307692308rem !important;
}

.btn-h-3 {
	padding-left: 41.846px !important;
	padding-left: 2.6153846154rem !important;
	padding-right: 41.846px !important;
	padding-right: 2.6153846154rem !important;
}

.btn-h-4 {
	padding-left: 54.153px !important;
	padding-left: 3.3846153846rem !important;
	padding-right: 54.153px !important;
	padding-right: 3.3846153846rem !important;
}

.btn-rounded {
	border-radius: 50px;
}

.btn-outline {
	border-width: 2px;
	border-radius: 50px;
}

.btn-icon-effect-1 .wrap {
	position: relative;
}

.btn-icon-effect-1 .wrap span {
	position: relative;
	display: inline-block;
	width: 100%;
	left: 0;
	-webkit-transition: ease left 300ms;
	transition: ease left 300ms;
}

.btn-icon-effect-1 .wrap i, .btn-icon-effect-1 .wrap strong {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	opacity: 0;
	font-size: 17.6px;
	font-size: 1.1rem;
	max-width: 20px;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
	-webkit-transition: ease right 300ms, ease opacity 300ms;
	transition: ease right 300ms, ease opacity 300ms;
}

.btn-dark,
html.sticky-header-active .btn-sticky-dark {
	border-color: #1c1f21;
	color: #FFF;
	background-color: #1c1f21;
}

.btn-dark.btn-outline,
html.sticky-header-active .btn-sticky-dark.btn-outline {
	background: transparent;
	border-color: #1c1f21;
	color: #1c1f21;
}

.form-control {
	border-color: transparent;
	font-size: 12.8px;
	font-size: 0.8rem;
	padding: 14.4px 12px;
	padding: 0.9rem .75rem;
	height: auto !important;
	border-radius: 0;
}

.form-control:not(.form-control-lg) {
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.3;
}

.form-control:not(.form-control-sm):not(.form-control-lg) {
	font-size: 12.8px;
	font-size: 0.8rem;
	line-height: 1.3;
}

.custom-select-1 {
	position: relative;
}

.custom-select-1:before {
	content: '\f107';
	font-family: "Font Awesome 5 Free";
	position: absolute;
	display: block;
	top: 11px;
	right: 18px;
	color: #b5b5b5;
	font-weight: 900;
	pointer-events: none;
}

.custom-select-1 select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

[data-icon],
.animated-icon {
	position: relative;
	opacity: 0;
}

.image-frame {
	position: relative;
	display: block;
	text-decoration: none;
	max-width: 100%;
	z-index: 0;
	/* Image Frames Styles */
}

.image-frame img {
	position: relative;
	z-index: 1;
}

.owl-carousel {
	/* Rounded Style 1 */
	/* Owl Dots Styles */
	/* Owl Nav Styles */
	/* Nav Colors */
	/* Nav Size */
}

.owl-carousel .owl-item {
	-ms-touch-action: auto !important;
	touch-action: auto !important;
}

.owl-carousel .owl-nav {
	top: 50%;
	position: absolute;
	margin-top: -23px;
	width: 100%;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
	display: inline-block;
	position: absolute;
	width: 30px;
	height: 30px;
	outline: none;
}

.owl-carousel .owl-nav .owl-prev {
	left: -5px;
}

.owl-carousel .owl-nav .owl-prev:before {
	font-family: 'Font Awesome 5 Free';
	content: "\f053";
	position: relative;
	left: -1px;
	top: 1px;
	font-weight: 900;
}

.owl-carousel .owl-nav .owl-next {
	right: -5px;
}

.owl-carousel .owl-nav .owl-next:before {
	font-family: 'Font Awesome 5 Free';
	content: "\f054";
	position: relative;
	left: 2px;
	top: 1px;
	font-weight: 900;
}

.owl-carousel .owl-nav.disabled + .owl-dots {
	margin-top: 16px;
	margin-top: 1rem;
}

.owl-carousel .owl-prev, .owl-carousel .owl-next {
	outline: none;
}

.owl-carousel .owl-dots {
	margin-top: 32px;
	margin-top: 2rem;
}

.owl-carousel .owl-dots .owl-dot {
	outline: none;
}

.owl-carousel.dots-style-3 {
	margin-bottom: 30px;
}

.owl-carousel.dots-style-3 .owl-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.owl-carousel.dots-style-3 .owl-dots .owl-dot {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.owl-carousel.dots-style-3 .owl-dots .owl-dot span {
	width: 4px;
	height: 4px;
	-webkit-transition: ease all 300ms 300ms;
	transition: ease all 300ms 300ms;
}

.owl-carousel.dots-style-3 .owl-dots .owl-dot.active span {
	background: #CCC;
	-webkit-transition: ease all 300ms;
	transition: ease all 300ms;
	-webkit-transform: scale(2);
	transform: scale(2);
}

.owl-carousel.nav-style-3 .owl-nav .owl-prev,
.owl-carousel.nav-style-3 .owl-nav .owl-next {
	background: transparent;
	color: #CCC;
	font-size: 28.8px;
	font-size: 1.8rem;
}

.owl-carousel.nav-style-3 .owl-nav .owl-prev {
	left: -45px;
}

.owl-carousel.nav-style-3 .owl-nav .owl-prev:before {
	content: '\f104';
}

.owl-carousel.nav-style-3 .owl-nav .owl-next {
	right: -45px;
}

.owl-carousel.nav-style-3 .owl-nav .owl-next:before {
	content: '\f105';
}

.owl-carousel.nav-color-dark .owl-nav .owl-prev,
.owl-carousel.nav-color-dark .owl-nav .owl-next {
	color: #1c1f21 !important;
}

@media (max-width: 575px) {
	.owl-carousel.nav-style-3 {
		margin-right: auto;
		margin-left: auto;
	}
}

.text-decoration-none {
	text-decoration: none !important;
}

.top-sub-title {
	font-family: "Montserrat", sans-serif;
	font-size: 0.9em;
}

.lead {
	font-size: 1.2em;
	line-height: 1.8;
	color: #777;
}

.hover-effect-1 {
	position: relative;
}

.hover-effect-1:after {
	content: '';
	display: block;
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	border-width: 0.2px;
	border-style: solid;
	border-color: inherit;
	opacity: 0;
	-webkit-transform: translate3d(0, -8px, 0);
	transform: translate3d(0, -8px, 0);
	-webkit-transition: ease opacity 300ms, ease transform 300ms;
	transition: ease opacity 300ms, ease transform 300ms;
}

.hover-effect-2 {
	opacity: 1;
	-webkit-transition: ease opacity 300ms;
	transition: ease opacity 300ms;
}

.icon-box h1, .icon-box h2, .icon-box h3, .icon-box h4 {
	font-weight: 700;
	margin-bottom: 9.6px;
	margin-bottom: 0.6rem;
}

.icon-box .icon-box-icon i.fa,
.icon-box .icon-box-icon i.fas,
.icon-box .icon-box-icon i.far,
.icon-box .icon-box-icon i.fal,
.icon-box .icon-box-icon i.fab,
.icon-box .icon-box-icon i.icons,
.icon-box .icon-box-icon i.lnr {
	position: relative;
}

.icon-box .icon-box-icon object,
.icon-box .icon-box-icon img {
	position: relative;
}

.icon-box .icon-box-icon i {
	font-size: 40px;
	font-size: 2.5rem;
}

.icon-box .icon-box-icon.icon-box-icon-no-top i,
.icon-box .icon-box-icon.icon-box-icon-no-top .animated-icon {
	top: 0 !important;
}

.icon-box.icon-box-style-1 {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
}

.icon-box.icon-box-style-1 .icon-box-icon {
	padding-right: 16px;
	padding-right: 1rem;
}

.icon-box.icon-box-style-1 .icon-box-icon i.fa,
.icon-box.icon-box-style-1 .icon-box-icon i.fas,
.icon-box.icon-box-style-1 .icon-box-icon i.far,
.icon-box.icon-box-style-1 .icon-box-icon i.fal,
.icon-box.icon-box-style-1 .icon-box-icon i.fab,
.icon-box.icon-box-style-1 .icon-box-icon i.icons,
.icon-box.icon-box-style-1 .icon-box-icon i.lnr {
	font-size: 36.8px;
	font-size: 2.3rem;
	top: 8px;
}

.icon-box.icon-box-style-1 h1, .icon-box.icon-box-style-1 h2, .icon-box.icon-box-style-1 h3, .icon-box.icon-box-style-1 h4 {
	margin-bottom: 16px;
	margin-bottom: 1rem;
}

.icon-box.icon-box-style-1 .icon-box-info p {
	font-size: 14.4px;
	font-size: 0.9rem;
}

.icon-box.icon-box-style-5, .icon-box.icon-box-style-8 {
	text-align: center;
}

.icon-box.icon-box-style-5 .icon-box-icon, .icon-box.icon-box-style-8 .icon-box-icon {
	margin: 0 auto 24px;
	margin: 0 auto 1.5rem;
	border-radius: 100%;
	width: 100px;
	height: 100px;
	text-align: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.icon-box.icon-box-style-5 .icon-box-icon object,
.icon-box.icon-box-style-5 .icon-box-icon img, .icon-box.icon-box-style-8 .icon-box-icon object,
.icon-box.icon-box-style-8 .icon-box-icon img {
	margin: 0 auto;
}

.card {
	border: 1px solid #EDEDEE;
	border-radius: 0;
	background: transparent;
}

.card .card-body {
	padding: 35.2px;
	padding: 2.2rem;
}

.card.card-style-1 {
	-webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.testimonial .testimonial-author > span strong {
	font-size: 17.6px;
	font-size: 1.1rem;
	font-weight: 800;
	color: #1c1f21;
	letter-spacing: -0.8px;
}

.testimonial .testimonial-author > span span {
	display: block;
}

.testimonial.testimonial-style-1 blockquote p {
	font-size: 19.2px;
	font-size: 1.2rem;
	letter-spacing: -0.5px;
	color: #1c1f21;
}

.social-icons {
	margin: 0;
	padding: 0;
	width: auto;
}

.social-icons li {
	display: inline-block;
	margin: -1px 1px 0 2px;
	padding: 0;
	border-radius: 100%;
	overflow: visible;
	-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.social-icons li a {
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	background: #FFF;
	border-radius: 100%;
	display: block;
	height: 2.4em;
	font-size: 1.1em;
	line-height: 2.4em;
	width: 2.4em;
	text-align: center;
	color: #999;
	text-decoration: none;
}

.social-icons.social-icons-transparent li {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.social-icons.social-icons-transparent li a {
	background: transparent;
}

.call-to-action {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 4.6153846154em 0;
	/* If have parallax */
	/* Call To Action with Text Background */
}

.call-to-action h1, .call-to-action h2, .call-to-action h3, .call-to-action h4, .call-to-action h5, .call-to-action h6 {
	margin-bottom: 0;
}

.call-to-action h2 {
	font-size: 2.1em;
}

.call-to-action p {
	font-size: 1.1em;
}

.call-to-action .btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.call-to-action .container, .call-to-action .container-fluid {
	position: relative;
	z-index: 3;
}

.call-to-action .container > .row, .call-to-action .container-fluid > .row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.call-to-action .container > .row > [class*="col-"], .call-to-action .container-fluid > .row > [class*="col-"] {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.call-to-action .container > .row > [class*="col-"]:nth-child(2), .call-to-action .container-fluid > .row > [class*="col-"]:nth-child(2) {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	text-align: center;
}

@media (max-width: 767px) {
	.call-to-action .container > .row > [class*="col-"]:nth-child(2), .call-to-action .container-fluid > .row > [class*="col-"]:nth-child(2) {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media (max-width: 767px) {
	.call-to-action > [class*="col-"]:not([class*="col-xs"]) {
		width: 100%;
	}

	.call-to-action .container > .row [class*="col-"]:not([class*="col-xs"]) {
		width: 100%;
	}
}

.call-to-action.call-to-action-height-2 {
	padding: 49.23px 0;
	padding: 3.0769230769rem 0;
}

.call-to-action.call-to-action-text-light .call-to-action-content h1, .call-to-action.call-to-action-text-light .call-to-action-content h2, .call-to-action.call-to-action-text-light .call-to-action-content h3, .call-to-action.call-to-action-text-light .call-to-action-content h4, .call-to-action.call-to-action-text-light .call-to-action-content h5, .call-to-action.call-to-action-text-light .call-to-action-content h6, .call-to-action.call-to-action-text-light .call-to-action-content p, .call-to-action.call-to-action-text-light .call-to-action-content a:not(.btn), .call-to-action.call-to-action-text-light .call-to-action-content span {
	color: #FFF;
}

@media (max-width: 767px) {
	.call-to-action .call-to-action-content,
	.call-to-action .call-to-action-btn {
		margin: 0;
		padding: 20px;
		position: static;
		width: auto;
	}
}

.counters .counter {
	text-align: center;
	margin: 50px 0;
}

@media (max-width: 767px) {
	.counters .counter {
		margin: 80px 0;
	}
}

.counters strong,
.counters label {
	font-family: "Montserrat", sans-serif;
}

.counters strong {
	display: block;
	font-weight: 900;
	font-size: 3.6923076923em;
	line-height: 1;
	margin-bottom: 4.8px;
	margin-bottom: 0.3rem;
}

.counters label {
	display: block;
	font-weight: 100;
	font-size: 1.1538461538em;
	line-height: 1;
	letter-spacing: 0.5px;
}

html .scroll-to-top {
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	background: #404040;
	border-radius: 100%;
	bottom: 10px;
	color: #FFF;
	display: block;
	height: 35px;
	opacity: 0;
	padding: 5px;
	position: fixed;
	text-align: center;
	text-decoration: none;
	width: 35px;
	z-index: 1040;
	font-size: 10px;
	right:100px;
	bottom:25px;
}

html .scroll-to-top.visible {
	opacity: 0.75;
}

html .scroll-to-top i {
	position: relative;
	top: 1px;
}

/* Responsive */
@media (max-width: 991px) {
	html .scroll-to-top.hidden-mobile {
		display: none !important;
	}
}
/* Flags */
.flag {
	width: 16px;
	height: 11px;
	background: url(../img/flags.png) no-repeat;
	margin-top: -1px;
}

.flag.flag-ad {
	background-position: -16px 0;
}

.flag.flag-ae {
	background-position: -32px 0;
}

.dropdown-toggle:after {
	content: none;
}

/* Particles */
@-webkit-keyframes expandParticles {
	from {
		-webkit-transform: scale(0.2);
		transform: scale(0.2);
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.learn-more {
	color: #1c1f21;
}

.learn-more:hover {
	color: #CCC;
}

.learn-more:hover i {
	margin-left: 8px;
}

.learn-more i {
	margin-left: 5px;
	-webkit-transition: ease margin-left 300ms;
	transition: ease margin-left 300ms;
}























