/*
Table Of Contents
 
 1.) Typography
 2.) Default Styles
 3.) Header - Main
 4.) Content - Main
 5.) Footer - Main
 6.) Animates
 7.) Site - Cores

========================================*/

/*
 1.) Typography
----------------------------------------*/

/*
.gf-sora { font-family: "Sora", sans-serif; }
*/


/*
 2.) Default Styles
----------------------------------------*/

* {
	margin: 0;
	padding: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, input, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* render html5 elements as block */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

*, 
*:before, 
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

sub, 
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
	font-size: 20px;
}

sub {
	bottom: -0.25em;
}

img {
	width: auto;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
	line-height: .5em;
}


/*  Custom animations */
@-webkit-keyframes reveal {
 0% {
 opacity: 0;
}

1% {
 opacity: 0;
 -webkit-transform: scale(0.98) translateY(-15px);
}

80% {
 -webkit-transform: scale(1);
}

100% {
 -webkit-transform: translateY(0);
}
}

@-moz-keyframes reveal {
 0% {
 opacity: 0;
}

1% {
 opacity: 0;
 -moz-transform: scale(0.98) translateY(-15px);
}

80% {
 -moz-transform: scale(1);
}

100% {
 -moz-transform: translateY(0);
}
}


/*= Body 
=======================================================*/

body {
	-webkit-font-smoothing: antialiased;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	font-family: "Sora", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #ffffff;
	line-height: 26px;
	background: #0f0f0f;
	margin: 0;
	padding: 0;
}


/*= Links 
=======================================================*/

a {
	color: #ffffff;
	text-decoration: underline;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	cursor: pointer;
}

a:hover,
a:focus,
a:active {
	color: #7755ff;
	text-decoration: underline;
}

a:visited {
	outline: 0;
}

a[href^="tel:"], 
a[href^="fax:"] {
	color: #ffffff;
	text-decoration: none;
}

a:hover[href^="tel:"], 
a:focus[href^="tel:"], 
a:hover[href^="fax:"],
a:focus[href^="fax:"] {
	color: #7755ff;
	text-decoration: underline;
}

a[href^="mailto:"] {
	word-break: break-all;
}


/*= Headings: P, H1, H2, H3, H4, H5, H6 
=======================================================*/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-weight: 800;
	padding-bottom: 15px;
}

h1,
.h1,
h2,
.h2 {
	font-size: 64px; 
	line-height: 81px; 
}

h3,
.h3 {
	font-size: 30px;
	line-height: 44px;
}

h4,
.h4{
	font-size: 24px;
	line-height: 36px;
}

h5,
.h5 {
	font-size: 18px;
	line-height: 28px;
}

h6,
.h6 {
	font-size: 16px;
	line-height: 26px;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
	font-weight: inherit;
	color: inherit;
}

h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover,
h5 a:hover,
.h5 a:hover,
h6 a:hover,
.h6 a:hover {
	color: #7755ff;
	text-decoration: underline;
}

h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child {
	padding-bottom: 0;
}

p {
	padding-bottom: 20px;
}

p:last-child {
	padding-bottom: 0;
}

.txt {
	padding-bottom: 60px;
}

.txt:last-child {
	padding-bottom: 0;
}

@media (max-width: 1199px) {
h1,
.h1,
h2,
.h2 {
	font-size: 54px; 
	line-height: 68px; 
}
}

@media (max-width: 767px) {
h1,
.h1,
h2,
.h2 {
	font-size: 38px; 
	line-height: 50px; 
}

h3,
.h3 {
	font-size: 26px;
	line-height: 40px;
}

h4,
.h4{
	font-size: 22px;
	line-height: 34px;
}

.txt {
	padding-bottom: 50px;
}
}


/*= Unorder List 
=======================================================*/

ul,
ol {
	list-style: none;
}

li {
	position: relative; 
	padding-left: 26px;
	margin-bottom: 10px;
}

li:last-child {
	margin-bottom: 20px;
}

ul:last-child li:last-child,
ol:last-child li:last-child {
	margin-bottom: 0;
}

ul li ul,
ol li ol {
	padding: 10px 0 0 0;
}

ul li:before {
	content: "";
	content: "\f058";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 900; 
	position: absolute;
	top: 50%;
	left: 0;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	margin: -1px 0 1px 0;
}


/*= Order List 
=======================================================*/

ol {
	counter-reset: item;
}

ol > li {
	counter-increment: item;
	padding-left: 25px;
}

ol > li:before {
	content: counter(item)".";
	font-weight: 700;	
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
}


/* #Input Styles
================================================= */

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

select,
textarea,
input {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

label {
	width: 100%;
	display: block;
	font-family: "Sora", sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #ffffff;
	line-height: 22px;
	padding: 0;
	margin: 0 0 10px 0;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	width: 100%;
	height: 50px;
	font-family: "Sora", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #0f0f0f;
	line-height: 22px;
	white-space: nowrap;
	text-overflow: ellipsis;
	background: #ffffff;	
	border: 1px solid #d9d9d9;
	border-radius: 5px;
	box-shadow: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	overflow: hidden;
	position: relative;
	padding: 15px 20px;
	margin: 0;
}

textarea {
	height: 136px;
	white-space: normal;
	outline: none;
	resize: none;
	padding-top: 20px;
	padding-bottom: 20px;
}

select {
	background-image: url(../svg/chevron-down-6.svg);
	background-size: 16px auto;
	background-repeat: no-repeat;
	background-position: top 15px right 20px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-top: 0;
	padding-right: 40px;
	padding-bottom: 0;
}

select::-ms-expand {
	display:none;
}

select option:not([disabled]) {
	color: #0f0f0f;
}

select option.def:not([disabled]),
select.gf_placeholder:not([disabled]) {
	color: #7a7a7b;
}

::-webkit-input-placeholder,
::-webkit-textarea-placeholder {
	color: #7a7a7b;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #7a7a7b;
}

::-moz-placeholder {
	color: #7a7a7b;
}

::-ms-input-placeholder {
	color: #7a7a7b;
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
	outline: 0;
	border-color: #7755ff;
	box-shadow: rgba(0, 0, 0, .15) 0 0 10px;
}

@media (max-width: 991px) {
textarea {
	height: 200px;
}
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}


/* #Buttons
================================================== */

/* Custom - Select */
button {
	background: none;
	border: none;
	box-shadow: none;
	text-decoration: none;
	white-space: normal;
	cursor: pointer;
	outline: 0;
	padding: 0;
	margin: 0;
}

button:hover,
button:focus,
button:active,
button:active:focus,
button.active,
button.active:focus {
	outline: 0;
}

.btn,
input[type="button"],
input[type="submit"] {
	width: auto;
	height: auto;
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-family: "Sora", sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #ffffff;
	line-height: 22px;
	text-align: center;
	text-decoration: none;
	text-shadow: none;
	white-space: normal;
	background: #7755ff;
	border: none;
	border-radius: 900px;
	box-shadow: none;
	overflow: hidden;
	position: relative;
	z-index: 1;
	cursor: pointer;
	outline: 0;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	padding: 20px 40px;
	margin: 0;
}

.btn::before {
	content: "";
	width: 0;
	height: 100%;
	float: left;
	background: #4f2ed0;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.active:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus,
.btn:not(:disabled):not(.disabled).active {
	color: #ffffff;
	text-decoration: none;
	box-shadow: none; 
	outline: 0;
}

input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus {
	background: #4f2ed0;
}

.btn:hover:before,
.btn:focus:before,
.btn:active:before,
.btn:active:focus:before,
.btn.active:before,
.btn.active:focus:before {
	width: 100%;
}

.btn-blank, 
input.btn-blank[type="button"], 
input.btn-blank[type="submit"] {
	color: #ffffff;
	background: none;
	box-shadow: inset #ffffff 0 0 0 1px;
}

.btn-blank::before {
	background: #ffffff; 
}

.btn-blank:hover, 
.btn-blank:focus, 
.btn-blank:active, 
.btn-blank:active:focus, 
.btn-blank.active, 
.btn-blank.active:focus,
input.btn-blank[type="button"]:hover, 
input.btn-blank[type="button"]:focus, 
input.btn-blank[type="button"]:active, 
input.btn-blank[type="button"]:active:focus, 
input.btn-blank[type="button"].active, 
input.btn-blank[type="button"].active:focus, 
input.btn-blank[type="submit"]:hover, 
input.btn-blank[type="submit"]:focus, 
input.btn-blank[type="submit"]:active, 
input.btn-blank[type="submit"]:active:focus, 
input.btn-blank[type="submit"].active, 
input.btn-blank[type="submit"].active:focus,
.btn-blank:not(:disabled):not(.disabled).active { 
	color: #7755ff;
	box-shadow: inset #ffffff 0 0 0 4px;
}

input.btn-blank[type="button"]:hover, 
input.btn-blank[type="button"]:focus, 
input.btn-blank[type="button"]:active, 
input.btn-blank[type="button"]:active:focus, 
input.btn-blank[type="button"].active, 
input.btn-blank[type="button"].active:focus, 
input.btn-blank[type="submit"]:hover, 
input.btn-blank[type="submit"]:focus, 
input.btn-blank[type="submit"]:active, 
input.btn-blank[type="submit"]:active:focus, 
input.btn-blank[type="submit"].active, 
input.btn-blank[type="submit"].active:focus {
	background: #ffffff;
}

.disabled {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	opacity: .65;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
	pointer-events: none;
}

.btn-out {
	width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
}

@media (max-width: 767px) {
.btn,
input[type="button"],
input[type="submit"] {
	padding: 17px 35px;
}
}


/* Table */
table,
tbody,
thead,
tr,
th,
td {
	border-spacing: 0;
	border-collapse: collapse;
}


/* #Owl-carousel
=======================================================*/

.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	/* position relative and z-index fix webkit rendering fonts issue */
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	touch-action: manipulation;
	-moz-backface-visibility: hidden;
	/* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	/* fix for flashing background */
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
	width: 100%;
	display: inline-block;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}


/* No Js */
.no-js .owl-carousel {
	display: block;
}


/* Owl Carousel - Animate Plugin */
.owl-carousel .animated {
	animation-duration: 100ms;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	animation-name: fadeOut;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}


/* Owl Carousel - Auto Height Plugin */
.owl-height {
	transition: height 500ms ease-in-out;
}


/* Owl Carousel - Lazy Load Plugin */
.owl-carousel .owl-item {
/**
This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
calculation of the height of the owl-item that breaks page layouts
*/
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
	max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
	transform-style: preserve-3d;
}


/* Owl Carousel - Video Plugin */
.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url("../404.html") no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-ms-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}


/* #Slider Controls
================================================== */

/* Previous and Next */
.owl-nav button {
	width: 48px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	vertical-align: top;
	font-weight: inherit;
	font-size: 20px;
	color: #ffffff;
	line-height: 1em;
	text-decoration: none;
	text-align: center;
	background: none;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	top: 50%;	
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	z-index: 2;
	outline: 0;
	padding: 0;
	margin: 0;
}

.owl-nav button:hover,
.owl-nav button:focus,
.owl-nav button:active {
	color: #7755ff;
	background: none;
	box-shadow: none;
	outline: 0;
}

.owl-nav button.owl-prev {
	left: 0;
}

.owl-nav button.owl-next {
	right: 0;
}

.owl-nav button.disabled {
	opacity: .50;
	cursor: default;
	pointer-events: none;
}

.owl-nav button.disabled:hover,
.owl-nav button.disabled:focus,
.owl-nav button.disabled:active {
	opacity: .50;
}

.owl-nav.disabled {
	display: none;
}

@media (max-width: 767px) {
.owl-nav button {
	width: 32px;
}
}


/* Bullets */
.owl-dots {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	line-height: .5em;
	padding: 0;
	margin: 32px 0 -10px 0;
}

.owl-dots button.owl-dot {
	width: 16px;
	height: 16px;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	background: url(../svg/ellipse-blank.svg) no-repeat center center;
	background-size: 100% auto;
	box-shadow: none;
	border-radius: 0;
	border: none;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: relative;
	cursor: pointer;
	padding: 0;
	margin: 0 7px 10px 7px;
	z-index: 1;
}

.owl-dots button.owl-dot:hover,
.owl-dots button.owl-dot:focus,
.owl-dots button.owl-dot:active,
.owl-dots button.owl-dot.active {
	background: url(../svg/ellipse-fill.svg) no-repeat center center;
	background-size: 100% auto;
	box-shadow: none;
}

.owl-dots.disabled {
	display: none;
}


/* #Flying focus
================================================== */

#flying-focus {
	position: absolute;
	margin: 0;
	background: transparent;
	-webkit-transition-property: left, top, width, height, opacity;
	transition-property: left, top, width, height, opacity;
	-webkit-transition-timing-function: cubic-bezier(0, 0.2, 0, 1);
	transition-timing-function: cubic-bezier(0, 0.2, 0, 1);
	visibility: hidden;
	pointer-events: none;
	box-shadow: -webkit-focus-ring-color 0 0 0 2px; 
	border-radius: 0;
}

#flying-focus.flying-focus_visible {
	visibility: visible;
	z-index: 9999;
}

.flying-focus_target {
	outline: none !important; /* Doesn't work in Firefox :( */
}

/* http://stackoverflow.com/questions/71074/how-to-remove-firefoxs-dotted-outline-on-buttons-as-well-as-links/199319 */
.flying-focus_target::-moz-focus-inner {
	border: 0 !important;
}

/* Replace it with @supports rule when browsers catch up */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
#flying-focus {
	box-shadow: none;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -3px;
}
}


/* Skip - Button */
.skip-btn {
	height: 50px;
	float: left;
	font-weight: 700;
	font-size: 16px;
	color: #ffffff;
	line-height: 50px;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	background: #4f2ed0;	
	border-radius: 90px;
	border: none;
	-webkit-transition: top 1s ease-out, background 1s linear;
	transition: top 1s ease-out, background 1s linear;
	overflow: hidden;
	position: absolute;
	z-index: 1001;
	top: -50px;
	left: 2px;
	opacity: 0;
	padding: 0 25px; 
	margin: 0;
}

.skip-btn:hover,
.skip-btn:focus,
.skip-btn:active {
	top: 2px;
	color: #ffffff;
	text-decoration: none;
	background: #4f2ed0;	
	-webkit-transition: top .1s ease-in, background .5s linear;
	transition: top .1s ease-in, background .5s linear;
	opacity: 1;
}


/* Hidden */
.hidden {
	width: 1px;
	height: 1px;
	clip: rect(0,0,0,0);	
	overflow: hidden;	
	position: absolute;
	padding: 0;
	margin: -1px;
}


/*= Container - Main
=======================================================*/

.container-main {
	width: 100%;
	min-height: 100vh;
	float: left;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.container {
	width: 100%;
	max-width: 1320px;
	padding: 0 50px;
	margin: 0 auto;
}

@media (max-width: 767px) {
.container {
	max-width: 650px;
	padding: 0 25px;
}
}


/* Heading - Txt */
.heading-txt {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	margin-bottom: 70px;
}

.heading-txt:last-child {
	margin-bottom: 0;
}

.heading-txt h1,
.heading-txt .h1,
.heading-txt h2,
.heading-txt .h2 {
	padding-bottom: 25px;
}

.heading-txt h1:last-child,
.heading-txt .h1:last-child,
.heading-txt h2:last-child,
.heading-txt .h2:last-child {
	padding-bottom: 0;
}

.heading-txt p {
	padding-bottom: 30px;
}

.heading-txt p:last-child {
	padding-bottom: 0;
}

.heading-txt .btn-out {
	margin-bottom: 55px;
}

.heading-txt .btn-out:last-child {
	margin-bottom: 0;
}

.heading-txt .aside {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

@media (max-width: 767px) {
.heading-txt {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 50px;
}

.heading-txt h1,
.heading-txt .h1,
.heading-txt h2,
.heading-txt .h2 {
	padding-bottom: 20px;
}

.heading-txt p {
	padding-bottom: 25px;
}

.heading-txt .btn-out {
	margin-bottom: 40px;
}
}


/* Form - Block */
.form-block {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 60px;
}

.form-block:last-child {
	margin-bottom: 0;
}

.form-block form {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0;
}

.form-block ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 -8px -32px -8px;
}

.form-block ul li {
	width: 50%;
	float: left;
	line-height: 1em;
	padding: 0 8px;
	margin: 0 0 32px 0;
}

.form-block ul li:last-child {
	margin-bottom: 32px;
}

.form-block ul li:before {
	display: none;
}

.form-block ul li.full-width {
	width: 100%;
}

.form-block .btn-out {
	margin: 32px 0 0 0;
}

.form-block .btn-out .btn,
.form-block .btn-out input[type="button"],
.form-block .btn-out input[type="submit"] {
	min-width: 228px;
}

@media (max-width: 767px) {
.form-block {
	margin-bottom: 32px;
}

.form-block ul li {
	width: 100%;
}
}


/*
 3.) Header - Main
----------------------------------------*/

.header-main {
	width: 100%;
	float: left;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
}


/* Site Brand */
.header-main .brand {
	height: 90px;
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	z-index: 10;
	padding: 0;
	margin: 0 -500px 0 0;
}

.header-main .brand img {
	width: 100%;
	max-width: 185px;
	display: inline-block;
	vertical-align: top;
}

@media (max-width: 767px) {
.header-main .brand {
	height: 80px;
}

.header-main .brand img {
	max-width: 145px;
}
}


/* Header - Right */
.header-main .header-right {
	height: 80px;
	float: right;
	display: flex;
	flex-wrap: wrap;
	align-items: center;	
	position: relative;
	z-index: 10;
	padding: 0;
	margin: 0 0 0 -500px;
}

.header-main .nav-bar .social-links { 
	float: left;
}

.header-main .nav-bar .social-links ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 0; 
	margin: 0 -7px;
}

.header-main .nav-bar .social-links ul li {
	float: left;
	padding: 0; 
	margin: 0 7px;
}

.header-main .nav-bar .social-links ul li:last-child {
	margin-bottom: 0;
}

.header-main .nav-bar .social-links ul li:before {
	display: none;
}

.header-main .nav-bar .social-links ul li a {
    width: 36px;
    height: 36px;
    float: left;	
	display: flex;
	flex-wrap: wrap;
	align-items: center; 
	justify-content: center;
    font-size: 16px;
    color: #ffffff;
    line-height: 1em;
    text-align: center;
    text-decoration: none;
	box-shadow: inset #ffffff 0 0 0 1px;
    border-radius: 900px;
}

.header-main .nav-bar .social-links ul li a:focus,
.header-main .nav-bar .social-links ul li a:active,
.header-main .nav-bar .social-links ul li a:hover {
	color: #7755ff;
	background: #ffffff;
}

.header-main .nav-bar .cnt-btn {
	float: left;
}

.header-main .nav-bar .cnt-btn .btn {
	font-size: 14px;
	line-height: 50px;
	padding: 0 30px;
}

@media (min-width: 768px) {
.header-main .header-right {
	height: 90px;
}

.header-main .nav-bar {
	float: left;
}

.header-main .nav-bar .nav-max,
.header-main .nav-bar .nav-inn {
	float: left;
}

.header-main .nav-bar .social-links ul {
	padding: 7px 0; 
}

.header-main .nav-bar .cnt-btn {
	margin-left: 20px;
}
}

@media (max-width: 767px) {
.hiddenscroll-menu {
	overflow: hidden;
}
	
.header-main .overlay-menu {
	width: 100%;
	height: 100%;
	float: left;
	background: #ffffff;
	position: fixed;
	top: 80px;
	left: 0;
	z-index: 7;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: top .15s ease-out;
	-moz-transition: top .15s ease-out;
	transition: top .15s ease-out;
	overflow: hidden;
}

.header-main .overlay-menu.active {
	visibility: visible;
	opacity: .70;
	-webkit-transition: opacity .2s ease-out;
	-moz-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}

.header-main .nav-bar {
	width: 90%;
	max-width: 320px;
	height: 100%;
	float: right;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	overflow: hidden;
	visibility: hidden;
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 9;
	padding: 80px 0 0 0;
}

.header-main .nav-bar:before {
	content: "";
	width: 150%;
	height: 100%;
	box-shadow: inset 0 0 1px 0 #ffffff;
	position: absolute;
	top: 80px;
	left: -25%;
}

.header-main .nav-bar.active {
	visibility: visible;
	right: 0;
}

.header-main .nav-bar .nav-max {
	width: 100%;
	height: 100%;
	float: left;
	background: #0f0f0f;	
	overflow: auto;
	overflow-x: hidden;
}

.header-main .nav-bar .nav-inn {
	width: 100%;
	float: left;
	position: relative;
	padding: 50px 40px;
}

.header-main .nav-bar .social-links {
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}

.header-main .nav-bar .cnt-btn {
	width: 100%;
	text-align: center;
}
}


/* Menu - Button */
.header-main .menu-btn {
	min-width: inherit;
	float: left;
	font-weight: inherit;
	font-size: inherit;
	color: inherit;
	background: none;
	cursor: pointer;
	position: relative;
	z-index: 10;
	padding: 0;
	margin: 0;
	display: none;
}

.header-main .menu-btn .menu-bar {
	width: 27px;
	height: 2px;
	float: left;
	background: #ffffff;
	text-indent: -99999px;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: relative;
	margin: 9px 0;
}

.header-main .menu-btn .menu-bar:before,
.header-main .menu-btn .menu-bar:after {
	content: "";
	width: 100%;
	height: 2px;
	float: left;
	background: #ffffff;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	left: 0;
}

.header-main .menu-btn .menu-bar:before {
	top: -9px;
}

.header-main .menu-btn .menu-bar:after {
	top: 9px;
}

.header-main .menu-btn.active .menu-bar {
	background: none;
}

.header-main .menu-btn.active .menu-bar:before,
.header-main .menu-btn.active .menu-bar:after {
	top: 0;
}

.header-main .menu-btn.active .menu-bar:before {
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	transform: rotate3d(0, 0, 1, -45deg);
}

.header-main .menu-btn.active .menu-bar:after {
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	transform: rotate3d(0, 0, 1, 45deg);
}

@media (max-width: 767px) {
.header-main .menu-btn {
	display: flex;
}
}


/*
 4.) Content - Main
----------------------------------------*/

.content-main {
	width: 100%;
	float: left;
	flex: 1 0 auto;
	overflow: hidden;
	padding-top: 170px;
}

@media (max-width: 767px) {
.content-main {
	padding-top: 135px;
}
}


/* Section - Wrap */
.section-wrap {
	width: 100%;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.section-wrap .lines-wrap {
	width: 100%;
	height: 100%;
	float: left;
	background: url(../png/bg-lines.png) no-repeat bottom center;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}

@media (min-width: 992px) {
.section-wrap .lines-wrap {
	animation-delay: 1.7s;
}
}

@media (min-width: 1200px) {
.section-wrap {
	min-height: 872px;
}
}

@media (min-width: 1718px) {
.section-wrap .lines-wrap {
	background-size: 100% 872px;
}
}


/* Section - 1 */
.section-1 {
	width: 100%;
	overflow: hidden;
	padding-bottom: 90px;
}

.section-1 .powered-by img {
	width: 80%;
	max-width: 365px;
}

@media (max-width: 767px) {
.section-1 {
	padding-bottom: 70px;
}

.section-1 .powered-by img {
	width: 70%;
	max-width: 280px;
}
}


/* Section - 2 */
.section-2 {
	width: 100%;
	overflow: hidden;
	padding-bottom: 90px;
}

.section-2 .container {
	max-width: 1450px;
	padding: 0;
}

.section-2 .heading-txt .aside {
	max-width: 1200px;
	padding: 0 50px;
}

.section-2 .slider-wrap {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.section-2 .slider-wrap .item {
	width: 190px;
	min-height: 310px;
	float: left;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
}

.section-2 .slider-wrap .item .box {
	width: 100%;
	float: left;
	font-weight: inherit;
	text-decoration: none;
	text-align: center;
	pointer-events: none;
	cursor: default;
}

.section-2 .slider-wrap .item p {
	margin: 0 -30px;
}

.section-2 .slider-wrap .item .figure {
	width: 100%;
	height: 235px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	overflow: hidden;
	margin-bottom: 20px;
}

.section-2 .slider-wrap .item .figure img {
	width: 190px;
	height: 190px;
	border: 7px solid #e7e7e7;
	border-radius: 900px;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
}

.section-2 .slider-wrap .center .item {
	width: 235px;
}

.section-2 .slider-wrap .center .item .box {
	pointer-events: visible;
	cursor: pointer;
}

.section-2 .slider-wrap .center .item .box:hover,
.section-2 .slider-wrap .center .item .box:focus,
.section-2 .slider-wrap .center .item .box:active {
	text-decoration: underline;
}

.section-2 .slider-wrap .center .item .figure {
	margin-bottom: 40px;
}

.section-2 .slider-wrap .center .item .figure img {
	width: 235px;
	height: 235px;
}

.section-2 .slider-wrap  .owl-carousel .owl-stage {
	display: flex;
	justify-content: center;
}

@media (min-width: 992px) {
.section-2 .slider-wrap {
	animation-delay: 0.7s;
}
}

@media (max-width: 1399px) {
.section-2 {
	padding-bottom: 70px;
}

.section-2 .container {
	max-width: 1250px;
}

.section-2 .slider-wrap .item {
	width: 170px;
}

.section-2 .slider-wrap .item .figure {
	height: 210px;
	margin-bottom: 20px;
}

.section-2 .slider-wrap .item .figure img {
	width: 170px;
	height: 170px;
	border-width: 5px;
}

.section-2 .slider-wrap .center .item {
	width: 210px;
}

.section-2 .slider-wrap .center .item .figure {
	margin-bottom: 40px;
}

.section-2 .slider-wrap .center .item .figure img {
	width: 210px;
	height: 210px;
}
}

@media (max-width: 1199px) {
.section-2 {
	padding-bottom: 60px;
}
}

@media (max-width: 767px) {
.section-2 {
	padding-bottom: 30px;
}

.section-2 .heading-txt .aside {
	max-width: 650px;
	padding: 0 25px;
}

.section-2 .slider-wrap .item {
	width: 130px;
	min-height: 260px;
	font-size: 14px;
	line-height: 20px;
}

.section-2 .slider-wrap .item .figure {
	height: 180px;
	margin-bottom: 10px;
}

.section-2 .slider-wrap .item .figure img {
	width: 130px;
	height: 130px;
	border-width: 4px;
}

.section-2 .slider-wrap .center .item {
	width: 180px;
}

.section-2 .slider-wrap .center .item .figure {
	margin-bottom: 28px;
}

.section-2 .slider-wrap .center .item .figure img {
	width: 180px;
	height: 180px;
}
}


/* Section - 3 */
.section-3 {
	width: 100%;
	text-align: center;
	background: linear-gradient(180deg, #0f0f0f 44.27%, rgba(35, 28, 61, 0.41) 59.9%, #382a6d 76.04%, #7755ff 99.47%, #03010b 99.48%);
	overflow: hidden;
	padding: 30px 0 0 0;
}

.section-3 .heading-txt p {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}

.section-3 .figure {
	width: 100%;
	text-align: center;
	overflow: hidden;
}

.section-3 .figure img {
	width: 55%;
	max-width: 425px;
}

@media (max-width: 767px) {
.section-3 .heading-txt p {
	max-width: 580px;
}

.section-3 .figure img {
	width: 75%;
	max-width: 390px;
}
}


/* Section - 4 */
.section-4 {
	width: 100%;
	overflow: hidden;
	padding: 70px 0 0 0;
}

.section-4 .container {
	max-width: 1220px;
}

.section-4 ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0 0 -19% 0;
}

.section-4 ul li {
	width: 30.87%;
	padding: 0;
	margin: 0;
}

.section-4 ul li:before {
	display: none;
}

.section-4 ul li img {
	width: 100%;
}

.section-4 ul li:nth-child(2) {
	width: 41%;
	position: relative;
	z-index: 5;
	margin: 0 -1.40%;
}

@media (min-width: 992px) {
.section-4 ul li:nth-child(1) {
	animation-delay: 0.7s;
}

.section-4 ul li:nth-child(2) {
	animation-delay: 0.1s;
}

.section-4 ul li:nth-child(3) {
	animation-delay: 0.7s;
}
}

@media (max-width: 1199px) {
.section-4 {
	padding: 60px 0 0 0;
}
}

@media (max-width: 767px) {
.section-4 {
	padding: 50px 0 0 0;
}

.section-4 .container {
	max-width: 650px;
}
}


/* Section - 5 */
.section-5 {
	width: 100%;
	font-weight: 600;
	font-size: 28px;
	line-height: 40px;
	text-align: center;
	background: #7755FF;
	overflow: hidden;
	padding: 90px 0 60px 0;
}

.section-5 .container {
	max-width: 1420px;
}

.section-5 .category-links {
	width: 100%; 
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin: 0 0 70px 0;
}

.section-5 .category-links:last-child {
	margin-bottom: 0;
}

.section-5 .category-links ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0 -4px -10px -4px;
}

.section-5 .category-links ul li {
	padding: 0;
	margin: 0 4px 10px 4px;
}

.section-5 .category-links ul li:before {
	display: none;
}

.section-5 .category-links ul li a {
	float: left;
	font-size: 16px;
	color: #0f0f0f;
	line-height: 20px;
	text-decoration: none;
	background: #ffffff;
	border-radius: 360px;
	overflow: hidden; 
	position: relative;	
	z-index: 1;
	padding: 18px 26px;
}

.section-5 .category-links ul li a:before {
	content: "";
	width: 0;
	height: 100%;
	float: left;
	background: #0f0f0f; 
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 0;
	left: 0; 
	z-index: -1;
}

.section-5 .category-links ul li a:hover,
.section-5 .category-links ul li a:focus,
.section-5 .category-links ul li a:active {
	color: #ffffff;
}

.section-5 .category-links ul li a:hover:before,
.section-5 .category-links ul li a:focus:before,
.section-5 .category-links ul li a:active:before {
	width: 100%;
}

.section-5 .category-links ul li:last-child a { 
	width: 56px; 
	height: 56px; 	
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap; 
	align-items: center; 
	justify-content: center;
	font-size: 100%; 
	padding: 0;
}

.section-5 .aside {
	width: 100%;
	max-width: 1000px;
	float: none;
	display: inline-block;
	vertical-align: top;
}

@media (max-width: 1199px) {
.section-5 {
	font-size: 24px;
	line-height: 36px;
	padding: 80px 0 50px 0;
}

.section-5 .category-links {
	margin: 0 0 60px 0;
}
}

@media (max-width: 767px) {
.section-5 {
	font-size: 22px;
	line-height: 34px;
	padding: 60px 0 40px 0;
}

.section-5 .container {
	max-width: 650px;
}

.section-5 .category-links {
	margin: 0 0 50px 0;
}

.section-5 .category-links ul li a {
	padding: 15px 26px;
}

.section-5 .category-links ul li:last-child a { 
	width: 50px; 
	height: 50px; 	
}
}


/*
 5.) Footer - Main
----------------------------------------*/

.footer-main {
	width: 100%;
	float: left;
	flex-shrink: 0;
	overflow: hidden;
}

.footer-main .inner-cont {
	width: 100%;
	float: left;
	position: relative;
	padding: 100px 0;
}

.footer-main .bg-img {
	width: 46.60%;
	float: left;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
}

.footer-main .bg-img img {
	max-width: 100%;
}

.footer-main .chat-box {
	width: 46.60%;
	float: left;
	text-align: center;
	position: relative;
	z-index: 10;
	margin: 0 0 -160px 0;
}

.footer-main .chat-box .box {
	width: 100%;
	max-width: 330px;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

.footer-main .chat-box .box ul {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0 0 -30px 0;
}

.footer-main .chat-box .box ul li {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 0 30px 0;
}

.footer-main .chat-box .box ul li:before {
	display: none;
}

.footer-main .chat-box .box ul li .label-txt {
	width: 42.90%;
	font-weight: 600;
	font-size: 10px;
	color: #192965;
	line-height: 14px;
	text-align: right;
	position: relative;
	margin: 0 -9.57% 0 0;
}

.footer-main .chat-box .box ul li .label-txt .label-box {
	float: none;
	display: inline-block;
	vertical-align: top;
	background: #ffffff;
	border-radius: 7px;
	position: relative;
	padding: 8px 8px 8px 25px;
}

.footer-main .chat-box .box ul li .label-txt .label-box em {
	position: absolute;
	top: 50%;
	left: 8px;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.footer-main .chat-box .box ul li .label-txt .label-box em img {
	max-height: 14px;
}

.footer-main .chat-box .box ul li .txt-box {
	width: 66.66%;
	font-size: 11px;
	line-height: 15px;
	background: rgba(255, 255, 255, 0.24);
	border-radius: 0 15px 0 15px;
	position: relative;
	padding: 22px 12px;
	margin: 18px 0 0 0;
}

.footer-main .chat-box .box ul li:nth-child(even) .label-txt {
	text-align: left;
	margin: 0 0 0 -9.57%;
	left: 66.66%;
}

.footer-main .chat-box .box ul li:nth-child(even) .txt-box {
	border-radius: 15px 0 15px 0;
	right: 33.33%;
}

.footer-main .cta-box {
	width: 100%;
	background: #1D1D1D;
	border-radius: 40px;
	overflow: hidden;
	padding: 75px 75px;
	margin-bottom: 30px;
}

.footer-main .cta-box:last-child {
	padding-bottom: 0;
}

.footer-main .cta-box .aside {
	width: 46.60%;
	float: right;
}

.footer-main .cta-box .aside h3,
.footer-main .cta-box .aside .h3 {
	max-width: 460px;
	font-weight: 600;
	font-size: 28px;
	line-height: 40px;
	padding-bottom: 40px;
}

.footer-main .cta-box .aside h3:last-child,
.footer-main .cta-box .aside .h3:last-child {
	padding-bottom: 0;
}

.footer-main .cta-box .aside .app-store {
	width: 100%;
	float: left;
}

.footer-main .cta-box .aside .app-store img {
	max-height: 71px;
}

.footer-main .copyrights {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.56);
	line-height: 18px;
	position: relative;
	z-index: 10;
}

.footer-main .copyrights p {
	width: 50%;
	text-align: right;
	padding: 0 0 0 20px;
}

.footer-main .copyrights .brand {
	width: 50%;
	padding: 0 20px 0 0;
}

.footer-main .copyrights .brand img {
	max-height: 44px;
}

@media (min-width: 992px) {
.footer-main .bg-img {
	animation-delay: 0.1s;
}

.footer-main .chat-box .box {
	animation-delay: 0.7s;
}

.footer-main .cta-box .aside {
	animation-delay: 0.7s;
}
}

@media (max-width: 1199px) {
.footer-main .inner-cont {
	padding: 80px 0;
}

.footer-main .cta-box {
	border-radius: 35px;
	padding: 60px 60px;
}

.footer-main .cta-box .aside h3,
.footer-main .cta-box .aside .h3 {
	max-width: 100%;
	font-size: 24px;
	line-height: 36px;
	padding-bottom: 35px;
}
}

@media (max-width: 991px) {
.footer-main .cta-box {
	padding: 60px 40px;
}
}

@media (max-width: 767px) {
.footer-main .container {
	max-width: 640px;
}

.footer-main .inner-cont {
	padding: 60px 0;
}

.footer-main .bg-img {
	width: 100%;
	position: relative;
	margin: -75% 0 0 0;
}

.footer-main .bg-img img {
	max-width: 100%;
}

.footer-main .chat-box {
	width: 100%;
	margin: 0;
}

.footer-main .cta-box { 
	text-align: center;
	border-radius: 30px;
	padding: 40px 30px;
}

.footer-main .cta-box .aside {
	width: 100%;
}


.footer-main .cta-box .aside h3,
.footer-main .cta-box .aside .h3 {
	font-size: 22px;
	line-height: 32px;
	padding-bottom: 30px;
}

.footer-main .cta-box .aside .app-store img {
	max-height: 60px;
}

.footer-main .copyrights p {
	width: 100%;
	text-align: center;
	padding: 0;
}

.footer-main .copyrights .brand {
	width: 100%;
	text-align: center;
	padding: 0 0 30px 0;
}
}


/*
 6.) Animates
----------------------------------------*/

/* Content - Inner */
.content-inner {
	width: 100%;
	overflow: hidden;
	padding: 0 0 100px 0;	
}

@media (max-width: 991px) {
.content-inner {
	padding: 0 0 80px 0;	
}
}

@media (max-width: 767px) {
.content-inner {
	padding: 0 0 60px 0;	
}
}


/* Wow */
.wow {
	visibility: hidden;
	opacity: 0;
}

@media (max-width: 991px) {
.zoomIn,
.fadeInUp,
.fadeInDown,
.fadeInLeft,
.fadeInRight { 
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn; 
}
}


/* Animation - Delay */
@media (min-width: 992px) {
.delay-1 {
	animation-delay: 0.1s;
}

.delay-2 {
	animation-delay: 0.4s;
}

.delay-3 {
	animation-delay: 0.7s;
}

.delay-4 {
	animation-delay: 1.1s;
}

.delay-5 {
	animation-delay: 1.4s;
}

.delay-6 {
	animation-delay: 1.7s;
}

.delay-7 {
	animation-delay: 2s;
}

.delay-8 {
	animation-delay: 2.3s;
}

.delay-9 {
	animation-delay: 2.6s;
}

.delay-10 {
	animation-delay: 2.9s;
}
}


/*
 7.) Site - Cores
------------------------------------------------------*/

/* Text - Colors */
.voilet {
	color: #7755ff!important;
}

.black {
	color: #0f0f0f!important;
}

.white {
	color: #ffffff!important;
}


/* Font - Weights */
.light {
	font-weight: 300!important; 
}

.regular {
	font-weight: 400!important; 
}

.medium {
	font-weight: 500!important; 
}

.semi-bold {
	font-weight: 600!important; 
}

.bold {
	font-weight: 700!important; 
}

.extra-bold {
	font-weight: 800!important; 
}

.black {
	font-weight: 900!important; 
}


/* Text - Positions */
.upper-case { 
	text-transform: uppercase!important;
}

.lower-case { 
	text-transform: none!important;
}

.underline {
	text-decoration: underline!important; 
}

.center-align {
	text-align: center!important;
	justify-content: center!important;
}

.vertical-align {
	align-items: center!important;
}

.left-align {
	text-align: left!important;
}

.right-align {
	text-align: right!important;
}


/* Padding/Margin - None */
.p-top-none {
	padding-top: 0!important;
}

.p-bottom-none {
	padding-bottom: 0!important;
}

.m-top-none {
	margin-top: 0!important;
}

.m-bottom-none {
	margin-bottom: 0!important;
}


