/*
Main colors:
n/a
*/

/* RESET CSS */

html, body, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
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,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
	box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
	color: #353535;
    line-height: 1;
	/*Scroll to section
	scroll-behavior: smooth;*/
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

/* ----- DEFAULT STYLES ----- */

body {
	font-family: 'Poppins', sans-serif;
}

body main:after {
	content: "";
	position: fixed;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	visibility: hidden;
	opacity: 0;
	background: none;
	transition: 150ms;
}

body.overlay main:after {
	visibility: visible;
	opacity: 1;
	background: none;
	background: rgb(47 31 56 / 20%);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	z-index: 5;
	transition: 150ms;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h1, h2 {font-weight: 700;}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

a {
    text-decoration: none;
	color: #454545;
}

a:hover {
    text-decoration: none;
	color: #00ACED;
}

p {
    font-size: 16px;
	line-height: 20px;
	margin: 0;
}

/*text colors*/
.normal-text {color: #232323;}
.white-text {color: #fff;}

img {
    max-width: 100%;
}

iframe {
    width: 100%;
}

input,
textarea {
	padding: 5px 10px;
	border: 1px solid #e2e2e2;
	border-radius: 5px;
	background: #f9f9f9;
	transition: 250ms;
	outline: none;
	width: 100%;
	/*max-width: 600px;*/
}

input:hover,
textarea:hover {
	border: 1px solid #d2d2d2;
	transition: 250ms;
}

input:focus,
textarea:focus,
input:active,
textarea:active {
	background: #fff;
	border: 1px solid #196CE1;
}

button {
	font-size: 16px;
	padding: 10px 20px;
	outline: none;
    border-radius: 5px;
    background: #4868B8;
    outline: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    transition: 300ms;
    line-height: normal;
    font-weight: 500;
	display: inline-block;
}

button:hover {
	background: #196CE1;
    transition: 300ms;
}

button:active,
button:focus {
	outline: none;
}

.separator {height: 1px; background-color: #e2e2e2;}

/*----- HACKS AND FIXES -----*/

.clearfix {
    *zoom: 1;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

/*----- ADDINGS -----*/
.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12 {
	position:relative;
    min-height:1px;
    padding-right:15px;
    padding-left:15px
}

@media (min-width:450px){
	.col-xs-1{
		float:left;
		width:8.33333%
	}
	.col-xs-2{
		float:left;
		width:16.66667%
	}
	.col-xs-3{
		float:left;
		width:25%
	}
	.col-xs-4{
		float:left;
		width:33.33333%
	}
	.col-xs-5{
		float:left;
		width:41.66667%
	}
	.col-xs-6{
		float:left;
		width:50%
	}
	.col-xs-7{
		float:left;
		width:58.33333%
	}
	.col-xs-8{
		float:left;
		width:66.66667%
	}
	.col-xs-9{
		float:left;
		width:75%
	}
	.col-xs-10{
		float:left;
		width:83.33333%
	}
	.col-xs-11{
		float:left;
		width:91.66667%
	}
	.col-xs-12{
		float:left;
		width:100%
	}
	.pull-xs-0{
		right:auto
	}
	.pull-xs-1{
		right:8.33333%
	}
	.pull-xs-2{
		right:16.66667%
	}
	.pull-xs-3{
		right:25%
	}
	.pull-xs-4{
		right:33.33333%
	}
	.pull-xs-5{
		right:41.66667%
	}
	.pull-xs-6{
		right:50%
	}
	.pull-xs-7{
		right:58.33333%
	}
	.pull-xs-8{
		right:66.66667%
	}
	.pull-xs-9{
		right:75%
	}
	.pull-xs-10{
		right:83.33333%
	}
	.pull-xs-11{
		right:91.66667%
	}
	.pull-xs-12{
		right:100%
	}
	.push-xs-0{
		left:auto
	}
	.push-xs-1{
		left:8.33333%
	}
	.push-xs-2{
		left:16.66667%
	}
	.push-xs-3{
		left:25%
	}
	.push-xs-4{
		left:33.33333%
	}
	.push-xs-5{
		left:41.66667%
	}
	.push-xs-6{
		left:50%
	}
	.push-xs-7{
		left:58.33333%
	}
	.push-xs-8{
		left:66.66667%
	}
	.push-xs-9{
		left:75%
	}
	.push-xs-10{
		left:83.33333%
	}
	.push-xs-11{
		left:91.66667%
	}
	.push-xs-12{
		left:100%
	}
	.offset-xs-1{
		margin-left:8.33333%
	}
	.offset-xs-2{
		margin-left:16.66667%
	}
	.offset-xs-3{
		margin-left:25%
	}
	.offset-xs-4{
		margin-left:33.33333%
	}
	.offset-xs-5{
		margin-left:41.66667%
	}
	.offset-xs-6{
		margin-left:50%
	}
	.offset-xs-7{
		margin-left:58.33333%
	}
	.offset-xs-8{
		margin-left:66.66667%
	}
	.offset-xs-9{
		margin-left:75%
	}
	.offset-xs-10{
		margin-left:83.33333%
	}
	.offset-xs-11{
		margin-left:91.66667%
	}
}

/*----- LINE HEIGHT -----*/
.lh-none {line-height: 0;}
.lh {line-height: normal;}
.lh-xs {line-height: 1;}
.lh-sm {line-height: 1.25;}
.lh-md {line-height: 1.5;}
.lh-lg {line-height: 2;}
.lh-xl {line-height: 2.5;}
.lh-2xl {line-height: 3;}

/*----- LETTER SPACING -----*/
.ls-none {letter-spacing: 0px;}
.ls {letter-spacing: normal;}
.ls-xs {letter-spacing: 0.5px;}
.ls-sm {letter-spacing: 1px;}
.ls-md {letter-spacing: 1.5px;}
.ls-lg {letter-spacing: 2px;}
.ls-xl {letter-spacing: 2.5px;}
.ls-2xl {letter-spacing: 3px;}


/*----- TABLES -----*/

.table {
    width: 100%;
}

.table thead {
	/*n/a*/
}

.table thead th {
	/*n/a*/
}

.table tbody {
	/*n/a*/
}

.table tbody tr {
	/*n/a*/
}

.table tbody tr td {
	/*n/a*/
}

/*----- CONTAINERS -----*/

.container,
.container980,
.container1200,
.container1300,
.container1400,
.container1470,
.container1500,
.container1600 {
	width: 100%;
	margin: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.container {
	max-width: 1770px;
	position: relative;
}

.container1600 {
	max-width: 1600px;
	position: relative;
}

.container1500 {
	max-width: 1500px;
	position: relative;
}

.container1470 {
	max-width: 1470px;
	position: relative;
}

.container1400 {
	max-width: 1400px;
	position: relative;
}

.container1300 {
	max-width: 1300px;
	position: relative;
}

.container1200 {
	max-width: 1200px;
	position: relative;
}

.container980 {
	max-width: 980px;
	position: relative;
}

@media only screen and (max-width: 1500px) {
	.container,
	.container980,
	.container1200,
	.container1300,
	.container1400,
	.container1470,
	.container1500,
	.container1600 {
		padding: 0 20px;
	}
}

.tcenter {text-align:center;}
.tright {text-align:right;}
.tleft {text-align:left;}
.hide {display: none;}

/*----- END CONTAINERS -----*/


/*--- Bootstrap update*/
label {
    margin-bottom: .5rem;
}

.uploadForm .custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin-bottom: 0;
}

.uploadForm .mb-3, .uploadForm .my-3 {
    margin-bottom: 1rem;
}

.uploadForm input {
    overflow: visible;
	cursor: pointer;
}

.uploadForm .custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin: 0;
    opacity: 0;
}

.uploadForm label {
	display: inline-block;
    margin-bottom: .5rem;
}

.uploadForm .custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.uploadForm .custom-control-label::before, .uploadForm .custom-file-label, .uploadForm .custom-select {
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.uploadForm .custom-file-input:focus~.custom-file-label {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.uploadForm .custom-file-input.red:focus~.custom-file-label {
    border-color: #d5354b;
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,.25);
}

.uploadForm .custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + .75rem);
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0;
}

.uploadForm .custom-file-input:lang(en)~.custom-file-label::after {
    content: "Browse";
}

.uploadForm p + div {
	margin-top: 10px;
}

.right-button {
	display: inline-block;
	width: 100%;
	text-align: right;
}

.left-button {
	display: inline-block;
	width: 100%;
	text-align: left;
}

.btn-upco-red {
    color: #fff;
    background-color: #FF5A5F;
    border-color: #FF5A5F;
}

.btn-upco-red:hover {
	color: #fff;
	background: #d5354b;
    border: 1px solid #d5354b;
}

.btn-upco-red:focus {
	box-shadow: 0 0 0 0.2rem rgba(220,53,69,.5);
}

.btn-upco-anim {
    color: #fff;
    background: linear-gradient(230deg, #23B0DB, #6A6EAE, #D76BA7);
    background-size: 300% 300%;
    -webkit-animation: rbow 40s ease infinite;
    -moz-animation: rbow 40s ease infinite;
    -o-animation: rbow 40s ease infinite;
    animation: rbow 40s ease infinite;
    border-color: none;
	opacity: 0.9;
	transition: 200ms;
}

.btn-upco-anim:hover {
	color: #fff;
	opacity: 1;
	transition: 200ms;
}

.btn-upco-anim:focus {
	box-shadow: 0 0 0 0.2rem rgba(107, 189, 224, 0.4);
}

.btn-upco-blue,
.btn-upco-blue:active {
    color: #fff;
    background-color: #29ABE2;
    border-color: #29ABE2;
}

.btn-upco-blue:hover {
	color: #fff;
	background: #129dd8;
    border: 1px solid #129dd8;
}

.btn-upco-blue:focus {
	box-shadow: 0 0 0 0.2rem rgba(107, 189, 224, 0.4);
}

/*purple*/

.btn.btn-upco-purple {
	padding: 10px 20px;
}

.btn.btn-upco-purple {
	color: #fff;
	background-color: #7c3eed;
    border-color: #7c3eed;
}

.btn-upco-purple {
    color: #fff;
    background-color: #7c3eed;
    border-color: #7c3eed;
}

.btn-upco-purple:hover {
	color: #fff !important;
	background: #6e2fe1;
    border: 1px solid #6e2fe1;
}

.btn.btn-upco-purple:active,
.btn-upco-purple:focus {
	box-shadow: 0 0 0 0.2rem rgba(107, 189, 224, 0.4);
}

/*purple inv*/

.btn.btn-upco-purple-inv {
	padding: 10px 20px;
}

.btn.btn-upco-purple-inv {
	color: #7c3eed;
	background-color: none;
    border-color: #7c3eed;
}

.btn-upco-purple-inv {
    color: #7c3eed;
    background-color: none;
    border-color: #7c3eed;
}

.btn-upco-purple-inv:hover {
	color: #fff !important;
	background: #6e2fe1;
    border: 1px solid #6e2fe1;
}

.btn.btn-upco-purple-inv:active,
.btn-upco-purple-inv:focus {
	box-shadow: 0 0 0 0.2rem rgba(107, 189, 224, 0.4);
}

/**/

.btn-upco-white {
    color: #fff;
    background-color: none;
    border-color: #fff;
}

.btn-upco-white:hover {
	color: #454545 !important;
	background: #fff;
    border: 1px solid #fff;
}

.btn-upco-white:focus {
	box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.4);
}

.form-control.red {
	box-shadow: none;
}

.form-control.red:focus {
	box-shadow: 0 0 0 0.2rem rgba(220,53,69,.5);
	border-color: #FF5A5F;
}

.form-control.width {
	width: 100%;
	max-width: 250px;
}

/*Full width button*/
.btn.full {
	width: 100%;
}

/*with white border*/
.btn-upco-red-border {
    color: #fff;
    background-color: #FF5A5F;
    border-color: #FF5A5F;
	border: 1px solid #fff;
}

.btn-upco-red-border:hover {
	color: #fff;
	background: #d5354b;
}

.btn-upco-red-border:focus {
	box-shadow: 0 0 0 0.2rem rgba(220,53,69,.5);
}

/*inverted buttons*/

.btn-upco-inv {
	color: #fff;
	background: none;
	border-color: #fff;
}

header {
	position: relative;
	z-index: 5;
}

header .container {
	position: unset;
}

@media screen and (max-width: 980px) {
	header .container > div {
		padding: 10px;
	}
}

header.white .btn-upco-inv,
header.whiteh .btn-upco-inv,
header.sticky .btn-upco-inv {
    color: #a2a2a2;
    background-color: #fff;
    border-color: #a2a2a2;
}

.btn-upco-inv:hover {
	background: #fff;
}

header.white .btn-upco-inv:hover,
header.whiteh .btn-upco-inv:hover,
header.sticky .btn-upco-inv:hover {
	color: #fff;
	background: #a2a2a2;
}

.btn-upco-inv:focus {
	box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25)
}

.form-control.inv:focus {
	border-color: #a2a2a2;
	box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25)
}
/*--- End Bootstrap update*/

/*--- Checkbox, Radio and Switch ---*/

ul.switches {
	display: inline-block;
}

ul.switches + ul.switches {
	margin: 5px;
}

ul.switches li {
	padding: 5px;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
	input[type='checkbox'],
	input[type='radio'] {
		--active: #275EFE;
		--active-inner: #fff;
		--focus: 2px rgba(39, 94, 254, .3);
		--border: #BBC1E1;
		--border-hover: #275EFE;
		--background: #fff;
		--disabled: #F6F8FF;
		--disabled-inner: #E1E6F9;
		-webkit-appearance: none;
		-moz-appearance: none;
		height: 21px;
		outline: none;
		display: inline-block;
		vertical-align: top;
		position: relative;
		margin: 0;
		cursor: pointer;
		border: 1px solid var(--bc, var(--border));
		background: var(--b, var(--background));
		-webkit-transition: background .3s, border-color .3s, box-shadow .2s;
		transition: background .3s, border-color .3s, box-shadow .2s;
	}
	
	/*red*/
	.red input[type='checkbox'],
	.red input[type='radio'] {
		--active: #FF5A5F;
		--border: #FF5A5F;
		--border-hover: #FF5A5F;
		--focus: 2px rgba(255, 90, 95, 0.3);
	}
	
	.grey input[type='checkbox'],
	.grey input[type='radio'] {
		--active: #777;
		--border: #777;
		--border-hover: #777;
		--focus: 2px rgba(119, 119, 119, 0.4);
	}
	
	input[type='checkbox']:after,
	input[type='radio']:after {
		content: '';
		display: block;
		left: 0;
		top: 0;
		position: absolute;
		-webkit-transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
		transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
		transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
		transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
	}
	
	input[type='checkbox']:checked,
	input[type='radio']:checked {
		--b: var(--active);
		--bc: var(--active);
		--d-o: .3s;
		--d-t: .6s;
		--d-t-e: cubic-bezier(.2, .85, .32, 1.2);
	}
	
	input[type='checkbox']:disabled,
	input[type='radio']:disabled {
		--b: var(--disabled);
		cursor: not-allowed;
		opacity: .9;
	}
	
	input[type='checkbox']:disabled:checked,
	input[type='radio']:disabled:checked {
		--b: var(--disabled-inner);
		--bc: var(--border);
	}
	
	input[type='checkbox']:disabled + label,
	input[type='radio']:disabled + label {
		cursor: not-allowed;
	}
	
	input[type='checkbox']:hover:not(:checked):not(:disabled),
	input[type='radio']:hover:not(:checked):not(:disabled) {
		--bc: var(--border-hover);
	}
	
	input[type='checkbox']:focus,
	input[type='radio']:focus {
		box-shadow: 0 0 0 var(--focus);
	}
	
	input[type='checkbox']:not(.switch),
	input[type='radio']:not(.switch) {
		width: 21px;
	}
	
	input[type='checkbox']:not(.switch):after,
	input[type='radio']:not(.switch):after {
		opacity: var(--o, 0);
	}
	
	input[type='checkbox']:not(.switch):checked,
	input[type='radio']:not(.switch):checked {
		--o: 1;
	}
	
	input[type='checkbox'] + label,
	input[type='radio'] + label {
		font-size: 14px;
		line-height: 26px;
		display: inline-block;
		vertical-align: top;
		cursor: pointer;
		margin-left: 4px;
	}

	input[type='checkbox']:not(.switch) {
		border-radius: 7px;
	}
	
	input[type='checkbox']:not(.switch):after {
		width: 5px;
		height: 9px;
		border: 2px solid var(--active-inner);
		border-top: 0;
		border-left: 0;
		left: 7px;
		top: 4px;
		-webkit-transform: rotate(var(--r, 20deg));
				transform: rotate(var(--r, 20deg));
	}
	
	input[type='checkbox']:not(.switch):checked {
		--r: 43deg;
	}
	
	input[type='checkbox'].switch {
		width: 38px;
		border-radius: 11px;
	}
	
	input[type='checkbox'].switch:after {
		left: 2px;
		top: 2px;
		border-radius: 50%;
		width: 15px;
		height: 15px;
		background: var(--ab, var(--border));
		-webkit-transform: translateX(var(--x, 0));
				transform: translateX(var(--x, 0));
	}
	
	input[type='checkbox'].switch:checked {
		--ab: var(--active-inner);
		--x: 17px;
	}
	
	input[type='checkbox'].switch:disabled:not(:checked):after {
		opacity: .6;
	}

	input[type='radio'] {
		border-radius: 50%;
	}
	
	input[type='radio']:after {
		width: 19px;
		height: 19px;
		border-radius: 50%;
		background: var(--active-inner);
		opacity: 0;
		-webkit-transform: scale(var(--s, 0.7));
				transform: scale(var(--s, 0.7));
	}
	
	input[type='radio']:checked {
		--s: .5;
	}
}

/*----- START GLOBAL -----*/

.sectionBox {
	padding: 90px 0;
	overflow: hidden;
	position: relative;
}

.animated-box {
	background: linear-gradient(230deg, #23B0DB, #6A6EAE, #D76BA7);
    background-size: 300% 300%;
    -webkit-animation: rbow 60s ease infinite;
    -moz-animation: rbow 60s ease infinite;
    -o-animation: rbow 60s ease infinite;
    animation: rbow 60s ease infinite;
}

@-webkit-keyframes rbow {
    0%{background-position:0% 96%}
    50%{background-position:100% 5%}
    100%{background-position:0% 96%}
}
@-moz-keyframes rbow {
    0%{background-position:0% 96%}
    50%{background-position:100% 5%}
    100%{background-position:0% 96%}
}
@-o-keyframes rbow {
    0%{background-position:0% 96%}
    50%{background-position:100% 5%}
    100%{background-position:0% 96%}
}
@keyframes rbow { 
    0%{background-position:0% 96%}
    50%{background-position:100% 5%}
    100%{background-position:0% 96%}
}

/*----- START HEADER -----*/

main .main-wrapper .height-wall {
	background-color: #F0F9FF;
}

main .main-wrapper .left {
	position: relative;
}

@media screen and (max-width: 991px) {
	main .main-wrapper .left {
		position: absolute;
		top: 0;
        bottom: 0;
		left: 0;
        right: 0;
	}
}

main .main-wrapper .left .img-wrap {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: url('../../img/images/sweetfacewall.png');
	background-repeat: no-repeat;
    background-size: 35% auto;
    background-position: 25% -80px;
    background-attachment: fixed;
	transition: 300ms;
}

main .main-wrapper .left.joe .img-wrap {
	background-image: url('../../img/images/joebio.png');
	background-size: 38%;
}


main .main-wrapper .left.joe.paul .img-wrap {
	background-image: url('../../img/images/paulbio.png');
	background-size: 44%;
}

/*mediaq for different images / cases*/
@media screen and (max-width: 1800px) {
	main .main-wrapper .left .img-wrap {
		background-size: 40%;
		background-position: 21% -80px;
	}

	main .main-wrapper .left.joe .img-wrap {
		background-size: 42%;
        background-position: 20% -80px;
	}

	main .main-wrapper .left.joe.paul .img-wrap {
		background-size: 50%;
        background-position: 18% -80px;
	}
}

@media screen and (max-width: 1600px) {
	main .main-wrapper .left .img-wrap {
		background-position: 15% -80px;
		background-size: 45% auto;
	}

	main .main-wrapper .left.joe .img-wrap {
		background-size: 50%;
        background-position: 10% -80px;
	}

	main .main-wrapper .left.joe.paul .img-wrap {
		background-size: 56%;
        background-position: 10% -80px;
	}
}

@media screen and (max-width: 1400px) {
	main .main-wrapper .left .img-wrap {
		background-position: 0% -80px;
        background-size: 50% auto;
	}

	main .main-wrapper .left.joe .img-wrap {
		background-size: 57%;
        background-position: 0% -80px;
	}

	main .main-wrapper .left.joe.paul .img-wrap {
		background-size: 66%;
        background-position: 0% -80px;
	}
}

@media screen and (max-width: 1200px) {
	main .main-wrapper .left .img-wrap {
		background-position: 0% -80px;
        background-size: 51.5% auto;
	}

	main .main-wrapper .left.joe .img-wrap {
		background-size: 68%;
        background-position: -20% -80px;
	}

	main .main-wrapper .left.joe.paul .img-wrap {
		background-size: 80%;
        background-position: -40% -80px;
	}
}

@media screen and (max-width: 991px) {
	main .main-wrapper .left .img-wrap,
	main .main-wrapper .left.joe .img-wrap,
	main .main-wrapper .left.joe.paul .img-wrap {
		background-position: center top;
        background-size: 100% auto;
	}

	main .main-wrapper .left .img-wrap .overlay {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background: rgb(233 236 239 / 70%);
	}

	main .main-wrapper .left .img-wrap:before {
		content: "";
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 15%;
		background: linear-gradient(180deg,rgba(240, 249, 255, 1) 5%, rgba(255, 255, 255, 0) 100%);
		z-index: 1;
	}

	main .main-wrapper .left .img-wrap:after {
		content: "";
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		height: 30%;
		background: linear-gradient(0deg,rgba(240, 249, 255, 1) 5%, rgba(255, 255, 255, 0) 100%);
		z-index: 1;
	}
}

@media screen and (max-width: 550px) {
	main .main-wrapper .left .img-wrap,
	main .main-wrapper .left.joe .img-wrap,
	main .main-wrapper .left.joe.paul .img-wrap {
        background-size: cover;
	}
}

.sweetface-wrap {
	position: absolute;
	left: 0;
	right: 0;
	top: 20px;
	text-align: center;
}

@media screen and (max-width: 991px) {
	.sweetface-wrap {
		display: none;
	}
}

.sweetface-wrap img {
	max-width: 380px;
}

main .main-wrapper .left .left-wrap {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}

@media screen and (max-width: 991px) {
	main .main-wrapper .left .left-wrap .overlay {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background: rgb(233 236 239 / 70%);
	}

	main .main-wrapper .left .left-wrap:before {
		content: "";
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 15%;
		background: linear-gradient(180deg,rgba(240, 249, 255, 1) 5%, rgba(255, 255, 255, 0) 100%);
		z-index: 1;
	}

	main .main-wrapper .left .left-wrap:after {
		content: "";
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		height: 20%;
		background: linear-gradient(0deg,rgba(240, 249, 255, 1) 5%, rgba(255, 255, 255, 0) 100%);
		z-index: 1;
	}
}

main .main-wrapper .left .left-wrap > img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 250ms;
}

main .main-wrapper .left.joe .left-wrap > img.biojoe {
	visibility: visible;
	opacity: 1;
}

main .main-wrapper .left.joe .left-wrap > img.biopaul {
	visibility: hidden;
	opacity: 0;
}

main .main-wrapper .left.joe.paul .left-wrap > img.biojoe {
	visibility: hidden;
	opacity: 0;
}

main .main-wrapper .left.joe.paul .left-wrap > img.biopaul {
	visibility: visible;
	opacity: 1;
}

main .main-wrapper .right {
	min-height: 100vh;
}

/*START LOADER*/
.pgwrap {
	display: inline-block;
    position: fixed;
	background: #fff;
    background: rgba(255, 255, 255);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1000;
	height: 100%;
	text-align: center;
	visibility: visible;
	opacity: 1;
	transition: 450ms;
}

.pgwrap.loaded {
	visibility: hidden;
	opacity: 0;
	transition: 450ms;
}

.pgloader {
	display: inline-block;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 45%;
	margin-left: -24px;
	left: 0;
	right: 0;
	margin: auto;
}

.pgloader .img-wrap {
	position: absolute;
    height: 30px;
    top: 23px;
    left: auto;
    right: auto;
    text-align: center;
    width: 80px;
	left: 1px;
}

.pgloader .img-wrap img {
	max-width: none;
    height: 100%;
    display: inline-block;
}

.pgloader .img-wrap .loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #E564AC;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 

.lds-roller {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-roller div {
	animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	transform-origin: 40px 40px;
}

.lds-roller div:after {
	content: " ";
	display: block;
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	margin: -4px 0 0 -4px;
	/*Animation*/
	background: linear-gradient(270deg, #149180, #0875d2);
    background-size: 400% 400%;
    -webkit-animation: phead 11s ease infinite;
    -moz-animation: phead 11s ease infinite;
    -o-animation: phead 11s ease infinite;
    animation: phead 11s ease infinite;
}

.lds-roller div:nth-child(1) {
	animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
	top: 63px;
	left: 63px;
}

.lds-roller div:nth-child(2) {
	animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
	top: 68px;
	left: 56px;
}

.lds-roller div:nth-child(3) {
	animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
	top: 71px;
	left: 48px;
}

.lds-roller div:nth-child(4) {
	animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
	top: 72px;
	left: 40px;
}

.lds-roller div:nth-child(5) {
	animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
	top: 71px;
	left: 32px;
}

.lds-roller div:nth-child(6) {
	animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
	top: 68px;
	left: 24px;
}

.lds-roller div:nth-child(7) {
	animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
	top: 63px;
	left: 17px;
}

.lds-roller div:nth-child(8) {
	animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
	top: 56px;
	left: 12px;
}

@keyframes lds-roller {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/*END LOADER*/

header {
	width: 100%;
    background: rgb(0 0 0 / 0.4);
    /*padding: 17px 0;*/
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    transition: 250ms;
}

.landingPage header {
	background: none;
	transition: 250ms;
}

.landingPage header:hover {
	background: #fff;
	transition: 250ms;
}

/*Start sticky*/
header.sticky {
	position: fixed;
	background: #fff;
	background: rgb(255 255 255 / 99%);
	box-shadow: 0px 3px 9px -9px #000;
	/*padding: 10px 0;*/
	transition: 250ms;
}

header.white,
header.whiteh {
	position: fixed;
	background: #fff;
	transition: 250ms;
}

.stickycontent {
	padding-top: 0px;
}

/*End sticky*/

/*START LOGO*/
.footer-logo,
.footer-logo a,
.mainLogo,
.mainLogo a {
	display: inline-block;
	position: relative;
    bottom: -1px;
}

.mainLogo {
	cursor: pointer;
}

.footer-logo a,
.mainLogo a {
	height: 3rem;
	position: relative;
}

.mainLogo img,
.footer-logo img {
	width: auto;
    height: 100%;
}
/*END LOGO*/

/*START MAIN MENU*/
ul.mainMenu {
	display: inline-block;
	margin-left: 20px;
	text-align: center;
}

@media screen and (max-width: 980px) {
	ul.mainMenu {
		display: none;
	}
}

ul.mainMenu h1,
ul.mainMenu h2,
ul.mainMenu h3,
ul.mainMenu h4,
ul.mainMenu h5,
ul.mainMenu strong {
	color: #252160;
}

ul.mainMenu > li {
	display: table-cell;
	vertical-align: middle;
}

ul.mainMenu > li > a {
	padding: 37px 17px;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color: #252160;
	transition: 200ms;
}

ul.mainMenu > li > a.active {
	text-decoration: underline;
}

header.sticky ul.mainMenu > li > a {
	padding: 27px 17px;
	transition: 200ms;
}

header.white ul.mainMenu > li > a,
header.whiteh ul.mainMenu > li > a,
header.sticky ul.mainMenu > li > a {
	color: #252160;
	transition: 250ms;
}

ul.mainMenu:hover > li > a {
	color: #b6b9c7;
	transition: 200ms;
}

ul.mainMenu:hover > li:hover > a {
	color: #252160;
	transition: 200ms;
}

header.white ul.mainMenu:hover > li > a,
header.whiteh ul.mainMenu:hover > li > a,
header.sticky ul.mainMenu:hover > li > a {
	color: #b6b9c7;
}

ul.mainMenu:hover > li.has-children:hover > a {
	color: #252160;
	transition: 200ms;
}

header.white ul.mainMenu:hover > li > a:hover,
header.whiteh ul.mainMenu:hover > li > a:hover,
header.sticky ul.mainMenu:hover > li > a:hover {
	color: #252160;
}

ul.mainMenu:hover > li.has-children:hover > a > i {
	color: #00ACED;
	transition: 250ms;
}

ul.mainMenu > li > a i {
	font-size: 14px;
	margin-left: 5px;
}

ul.mainMenu li a.unlink {
	cursor: pointer;
}

ul.mainMenu > li.has-children.open > a {
	color: #fff;
}

header.white ul.mainMenu li.has-children.open > a,
header.whiteh ul.mainMenu li.has-children.open > a,
header.sticky ul.mainMenu li.has-children.open > a {
	text-decoration: none;
    color: #42cac2;
}

ul.mainMenu > li.has-children  > div.submenu {
	width: 100%;
	padding: 30px 0;
	position: absolute;
	top: 100%;
	z-index: 1;
	left: 0;
	right: 0;
	background: #FAFAFB;
	overflow: hidden;
	height: 0px;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 13px 27px -5px #32325d21, 0 8px 16px -8px #00000026, 0 -6px 16px -6px #00000008;
	transition: 250ms;
}

ul.mainMenu > li.has-children:hover > div.submenu {
	opacity: 1;
	visibility: visible;
	transition: 250ms;
}

ul.mainMenu > li.has-children:hover > div.submenu.one {height:100px;}
ul.mainMenu > li.has-children:hover > div.submenu.one-half {height:150px;}
ul.mainMenu > li.has-children:hover > div.submenu.two {height:200px;}
ul.mainMenu > li.has-children:hover > div.submenu.two-half {height:250px;}
ul.mainMenu > li.has-children:hover > div.submenu.three {height:300px;}
ul.mainMenu > li.has-children:hover > div.submenu.three-half {height:350px;}
ul.mainMenu > li.has-children:hover > div.submenu.four {height:400px;}
ul.mainMenu > li.has-children:hover > div.submenu.four-half {height:450px;}
ul.mainMenu > li.has-children:hover > div.submenu.five {height:500px;}
ul.mainMenu > li.has-children:hover > div.submenu.five-half {height:550px;}

ul.mainMenu li.has-children div.submenu .row > .last {
	border-left: 1px solid #dad7e1;
}

ul.mainMenu li.has-children div.submenu .row > div > a {
	display: inline-block;
    margin-bottom: 30px;
    font-weight: 500;
	letter-spacing: -1px;
    font-size: 18px;
}

ul.mainMenu li.has-children div.submenu .row h3 i {
	margin-right: 10px;
    color: #7c3eed;
}

ul.mainMenu li.has-children div.submenu .img-wrap {
	height: 30px;
    display: inline-block;
    vertical-align: middle;
	margin-bottom: 0px !important;
}

ul.mainMenu li.has-children div.submenu .img-wrap img {
	height: 100%;
	width: auto;
}

ul.mainMenu li.has-children div.submenu .img-wrap span {
	border-left: 2px solid #e2e2e2;
    color: #565656;
    font-weight: 500;
    position: relative;
    top: -8px;
    margin-left: 10px;
    padding-left: 14px;
}

ul.mainMenu li.has-children div.submenu .row > div > ul {
	display: inline-block;
	margin: auto;
	text-align: left;
}

ul.mainMenu li.has-children div.submenu .row > div > ul li {
	padding: 5px 5px 5px 0;
	font-size: 15px;
}

ul.mainMenu li.has-children div.submenu .row > div > ul li i {
	font-size: 12px;
    color: #007bff;
    margin-right: 5px;
    font-family: 'FontAwesome';
    font-weight: 300;
    position: relative;
    bottom: 2px;
}

ul.mainMenu li.has-children div.submenu .border-left-grey {
	border-left: 1px solid #ECF1F5;
}

ul.mainMenu li.has-children div.submenu .small-title a {
	margin-bottom: 20px !important;
}

ul.mainMenu li.has-children div.submenu .cat-title span {
	margin-right: 10px;
}

ul.mainMenu li.has-children div.submenu a {
	color: #252160;
	padding: 7px 10px;
	border-radius: 5px;
	display: inline-block;
}

@media screen and (max-width: 1400px) {
	ul.mainMenu li.has-children div.submenu a {
		font-size: 14px;		
	}
}

ul.mainMenu li.has-children div.submenu a:hover {
	color: #00ACED;
	background-color: #F2F2F4;
	transition: 200ms;
}

ul.mainMenu li.has-children div.submenu span.new-tag {
	background-color: #00ACED;
    padding: 0 3px;
    font-weight: 500;
    color: #fff;
    font-size: 10px;
    border-radius: 5px;
    margin-right: 2px;
    letter-spacing: 0.5px;
    position: relative;
    top: -1px;
}

@media screen and (max-width: 1400px) {
	ul.mainMenu li.has-children div.submenu span.new-tag {
		margin-right: 0px;
	}
}

/*END MAIN MENU*/

/*START MOBILE MENU BUTTON*/
.hamburger {
    float: right;
	display: none;
	margin-top: 3px;
}

@media screen and (max-width: 991px) {
	.hamburger {
		display: inline;
		position: fixed;
		top: 20px;
        right: 25px;
		z-index: 100;
	}
}

.hamburger button {
	color: #292B2C;
	background: none;
	padding: 0px 0px 6px 30px;
	transition: 250ms;
}

header.white .hamburger button,
header.sticky .hamburger button {
	color: #252160;
	transition: 250ms;
}

header.white .hamburger button:hover,
header.sticky .hamburger button:hover {
	color: #454545;
}

.hamburger button i {
	font-size: 35px;
}
/*END MOBILE MENU BUTTON*/

/*START MOBILE MENU*/
body.is-mobile {
	overflow: hidden;
}

.mobileMenu {
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	left: auto;
	z-index: 50;
	opacity: 0;
	visibility: hidden;
	transition: 600ms;
}

.mobileMenu.is-active {
	content: "";
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: none;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	visibility: visible;
	opacity: 1;
	right: 0;
	transition: 400ms;
}

.mobileMenu .wrap {
	position: absolute;
	z-index: 50;
	background: #fff;
	box-shadow: 0px 0px 45px -15px #000;
	width: 320px;
	top: 0;
    bottom: 0;
    right: 0;
	overflow-y: auto;
}

.mobileMenu .wrap .botspace {
	border-bottom: 5px solid #dad7e1;
}

.mobileMenu .wrap .botspace {
	border-bottom: 1px solid #e2e2e2;
}

.mobileMenu .wrap .botspace span {
    margin-left: 20px;
    font-weight: 300;
    font-size: 20px;
    color: #82869d;
}

.mobileMenu .wrap .botspace button {
	border-left: 1px solid #e2e2e2;
    padding: 3px 20px;
    background: none;
    color: #292B2C;
    font-size: 35px;
    border-radius: 0px;
    transition: 250ms;
}

.mobileMenu .wrap .botspace button:hover {
	background: #f2f2f2;
	transition: 250ms;
}

.mobileMenu .wrap > ul {
	position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    bottom: 50px;
    overflow-y: auto;
	padding-bottom: 96px;
}

.mobileMenu .wrap > ul li {
	position: relative;
}

.mobileMenu .wrap > ul li .mini-title {
	background-color: #e0e3f3;
    display: block;
    border-bottom: 1px solid #dad7e1;
    padding: 10px;
    font-size: 12px;
    color: #525770;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.mobileMenu .wrap > ul li > a {
	transition: 200ms;
}

.mobileMenu .wrap > ul li.active > a {
	transition: 200ms;
	color: #6e2fe1;
}

.mobileMenu .wrap > ul li a {
	display: block;
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid #dad7e1;
    font-size: 16px;
    font-weight: 500;
    color: #252160;
}

.mobileMenu .wrap > ul li span.dropdown {
	position: absolute;
	overflow: hidden;
	right: 0;
	top: 0;
	bottom: 0;
	width: 57px;
}

.mobileMenu .wrap > ul li span.dropdown i {
	position: absolute;
	color: #252160;
	font-size: 25px;
}

/*open sub-menu*/
/*plus*/
.mobileMenu .wrap > ul li span.dropdown i.fa-plus {
	visibility: visible;
	opacity: 1;
	left: 17px;
    top: 16px;
	transition: 250ms;
}

.mobileMenu .wrap > ul li span.dropdown i.fa-minus {
	visibility: hidden;
	opacity: 0;
	left: 35px;
    top: 16px;
	transition: 250ms;
}

/*minus*/
.mobileMenu .wrap > ul li span.dropdown.open i.fa-plus {
	visibility: hidden;
	opacity: 0;
	left: 35px;
    top: 16px;
	transition: 250ms;
}

.mobileMenu .wrap > ul li span.dropdown.open i.fa-minus {
	visibility: visible;
	opacity: 1;
	left: 17px;
    top: 16px;
	transition: 250ms;
}
/*end open sub-menu*/

.mobileMenu .wrap > ul > li > ul {
	display: none;
}

.mobileMenu .wrap > ul > li > ul li a {
	background: #F7F5FD;
	padding-left: 40px;
}

.mobileMenu .wrap .btn-upco-inv {
	color: #a2a2a2;
    background-color: #fff;
    border-color: #a2a2a2;
	padding-left: 28px;
    padding-right: 28px;
}

.mobileMenu .wrap .btn-upco-inv:hover {
	color: #fff;
    background: #a2a2a2;
}

/*--START MOBILE BOTTOM--*/

.mobileMenu .wrap .mobile-bottom {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	background: #fff;
}

.mobileMenu .wrap .mobile-bottom .mobileButtons {
	border-top: 1px solid #e2e2e2;
	padding: 20px 25px;
}

.mobileMenu .wrap .mobile-bottom .mobileButtons a {
	border: none;
	width: 100%;
	padding: 5px 0px;
}

.mobileMenu .wrap .mobile-bottom .mobileButtons a button {
	width: 100%;
}

.mobileMenu .wrap .mobile-bottom .socials {
	padding: 8px 10px;
	border-top: 1px solid #e2e2e2;
}

@media screen and (max-height: 500px) {
	.mobileMenu .wrap .mobile-bottom .socials {
		position: relative;
	}
}

.mobileMenu .wrap .mobile-bottom .socials a {
	background: #EEE7FB;
	padding: 7px 7px 5px 6px;
    margin: 7px;
    border-radius: 5px;
    width: 30px;
    display: inline-block;
    text-align: center;
}

.mobileMenu .wrap .mobile-bottom .socials a i {
	font-family: 'FontAwesome';
    font-weight: 300;
	color: #4f1daf;
}
/*END MOBILE MENU*/

/*----- END HEADER -----*/

/*START PAGE HEADER*/
.headPanel {
	background: #f7f5fd;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	position: relative;
	transition: 250ms;
}

@media screen and (max-width: 991px) {
	.headPanel {
		height: auto;
		padding: 100px 0 50px;
		text-align: center;
	}
}

.headPanel p {
	font-size: 18px;
}

.headPanel .img-wrap {
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0 13px 27px -5px #32325d40, 0 8px 16px -8px #0000004d, 0 -6px 16px -6px #00000008;
}

.headPanel .img-wrap img {
	display: block;
}

/*Scroller animation*/
.scroll-downs {
	position: absolute;
	right: 0;
	bottom: 40px;
	left: 0;
	margin: auto;
	width: 31px;
	height: 49px;
	opacity: 1;
	visibility: visible;
	transition: 250ms;
}

@media screen and (max-width: 1000px) {
	.scroll-downs {
		bottom: 0px;
		opacity: 0;
		visibility: hidden;
		transition: 250ms;
	}
}

.mousey {
	width: 3px;
	padding: 5px 12px;
	height: 35px;
	border: 2px solid #7c3eed;
	border-radius: 25px;
	opacity: 0.75;
	box-sizing: content-box;
}

.scroller {
	width: 3px;
	height: 10px;
	border-radius: 25%;
	background-color: #00ACED;
	animation-name: scroll;
	animation-duration: 2.2s;
	animation-timing-function: cubic-bezier(.15,.41,.69,.94);
	animation-iteration-count: infinite;
}

@keyframes scroll {
	0% { opacity: 0; }
	10% { transform: translateY(0); opacity: 1; }
	100% { transform: translateY(15px); opacity: 0;}
}

/*END PAGE HEADER*/

/*----- START FOOTER -----*/

/*START FOOTER TOP*/
.footerTop {
	background: #fbfcfd;
	position: relative;
	font-size: 15px;
}

.footerTop a {
	color: #000;
}

.footerTop a:hover {
	color: #6a31d9;
}

.footerTop a span.hiring {
	padding: 2px 5px;
    background: #7c3eed;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: 700;
    border-radius: 5px;
	margin-left: 5px;
}

/**/
.hiring.animation {
  position: relative;
  animation: move 1s infinite;
}

@keyframes move {
  0% {left: 0;}
  50% {left: 2px;}
  100% {left: 0;}
}

.hiring.animation:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  animation: shine 1s infinite;
}

@keyframes shine {
  0% {box-shadow: 0 0 3px #fff;}
  50% {box-shadow: 0 0 3px #fff, 0 0 20px #fff;}
  100% {box-shadow: 0 0 3px #fff;}
}
/**/

.footerTop .privacy-panel a {
	font-size: 14px;
	margin-right: 35px;
	font-weight: 500;
}

.footerTop .privacy-panel a:last-child {
	margin-right: 0;
}

.footerTop .socials a {
	background: #EEE7FB;
    padding: 7px 7px 8px;
    margin: 7px;
    border-radius: 5px;
    width: 30px;
    display: inline-block;
    text-align: center;
}

.footerTop .socials a i {
	font-family: 'FontAwesome';
    font-weight: 300;
	color: #4f1daf;
}
/*END FOOTER TOP*/

/*START FOOTER BOTTOM*/
footer {
	position: relative;
    width: 100%;
    bottom: 0;
    z-index: 50;
}

.footerBottom {
	padding: 20px 0;
	background: #fff;
    background: rgb(0 0 0 / 30%);
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
	z-index: 100;
    backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	height: 98px;
}

.footerBottom h1 {
	font-weight: 800;
    color: #292B2C;
	display: block;
	text-align: left;
    width: 100%;
	padding-right: 50px;
	transition: 250ms;
}

@media screen and (max-width: 850px) {
	.footerBottom h1 {
		font-size: 40px;
	}
}

@media screen and (max-width: 740px) {
	.footerBottom h1 {
		font-size: 30px;
	}
}

.footerBottom .copyright {
	display: inline-block;
	color: #fff;
}

.footerBottom .copyright a {
	color: #fff;
}

.footerBottom .copyright a:hover {
	text-decoration: underline;
}
/*END FOOTER BOTTOM*/

/*Start content colored sections*/
.section {padding: 90px 0; background: #fff;}
.section.purple {background-color: #7C3EED;}
.section.light-purple {background-color: #F7F5FD;}

.section h1,
.section h2 {
	font-weight: 500;
}

.dim-shadow {box-shadow: 0 13px 27px -5px #32325d40, 0 8px 16px -8px #0000004d, 0 -6px 16px -6px #00000008;}
/*End content colored sections*/

/*Start back to top*/
#back-to-top:focus {
	background: none;
}

#back-to-top {
    position: fixed;
    bottom: -50px;
    right: 15px;
    z-index: 50;
	width: 50px;
    height: 50px;
    border-radius: 3px;
    background: none;
    text-align: center;
    color: #444;
    cursor: pointer;
    border: 0;
    text-decoration: none;
	padding: 0;
    -webkit-transition: 200ms;
    -o-transition: 200ms;
    transition: 200ms;
    opacity: 0;
}

#back-to-top i {
	font-size: 20px;
    line-height: normal;
    color: #fff;
    position: relative;
    left: 2px;
    bottom: 0px;
    top: 2px;
}

#back-to-top.show {
	bottom: 25px;
    opacity: 1;
	-webkit-transition: 250ms;
	-o-transition: 250ms;
	transition: 250ms;
}

#back-to-top:before {
	content: "";
	width: 40px;
	height: 40px;
	border-radius: 100%;
	/*border: 1px solid rgb(173 141 231);*/
	background: #E564AC;
	/*background: linear-gradient(230deg, #23B0DB, #6A6EAE, #D76BA7);
	background: linear-gradient(280deg, rgb(124 62 237) 1%, rgb(145 94 237) 100%);*/
    background-size: 300% 300%;
    /*-webkit-animation: rbow 40s ease infinite;
    -moz-animation: rbow 40s ease infinite;
    -o-animation: rbow 40s ease infinite;
    animation: rbow 40s ease infinite;*/
	/**/
	opacity: 1;
	opacity: 0.9;
	transition: 250ms;
	position: absolute;
    top: 6px;
    left: 5px;
	transition: 200ms;
}

.lds-ripple {
	display: inline-block;
    position: relative;
    width: 0;
    height: 0;
    bottom: 42px;
    right: 45.5px;
}

.lds-ripple div {
	position: absolute;
	border: 4px solid #6A6EAE;
	opacity: 0;
	border-radius: 50%;
}

#back-to-top.show .lds-ripple div {
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1);
}

#back-to-top.show .lds-ripple div:nth-child(2) {
	animation-delay: -0.5s;
}

@keyframes lds-ripple {
	
	0% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	
	100% {
		top: 0px;
		left: 0px;
		width: 72px;
		height: 72px;
		opacity: 0;
		visibility: hidden;
	}
	
}
/*End back to top*/

/*----- END FOOTER -----*/

/*----- END GLOBAL -----*/

/*----- START LANDING -----*/

/*START VIDEO SECTION*/
.videoSection iframe {
	width: 100%;
	max-width: 1025px;
	height: 600px;
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 0 13px 27px -5px #32325d40, 0 8px 16px -8px #0000004d, 0 -6px 16px -6px #00000008;
}
/*END VIDEO SECTION*/

/*START SMART SECTION*/
.smartSection .box {
	border-color: #ad8de7 !important;
	background: rgb(124,62,237);
	background: linear-gradient(0deg, rgba(124,62,237,1) 0%, rgba(151,100,245,1) 100%);
}
/*END SMART SECTION*/

/*START BOX CARDS SECTION*/
.boxCards .box {background-color: #f8f8f8;}

.boxCards .box + .box {
	margin-top: 60px;
}

@media screen and (max-width: 767px) {
	.boxCards .box + .box {
		margin-top: 25px;
	}
}

.boxCards .box .mini-title,
.boxCards .box h2,
.boxCards .box p {
	margin-bottom: 30px;
}

.boxCards .box .mini-title {
	color: #00ACED;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
}

.boxCards .box p {font-weight: 500;}

.boxCards .box a {
	font-weight: 500;
	color: #00ACED;
	text-decoration: underline;
}

/*Blue Cards*/
.boxCards .box.blue {background-color: #F8F9FF;}

.boxCards .box.blue a,
.boxCards .box.blue .mini-title {color: #5884d5;}

/*Purple Cards*/
.boxCards .box.purple {background-color: #FAF6FE;}

.boxCards .box.purple a,
.boxCards .box.purple .mini-title {color: #7C3EED;}

/*Pink Cards*/
.boxCards .box.pink {background-color: #FEF8FF;}

.boxCards .box.pink a,
.boxCards .box.pink .mini-title {color: #E473FF;}

.boxCards .box a:hover {color: #232323}

/*END BOX CARDS SECTION*/

/*START BOOK SECTION*/
.bookSection {
	position: relative;
}

.bookSection .sublay {
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.bookSection .sublay img.first {
	position: absolute;
	top: -180px;
    left: -200px;
	transition: 200ms;
}

.bookSection .sublay img.second {
	position: absolute;
	top: -140px;
    left: -170px;
	transition: 500ms;
}

.bookSection .sublay img.third {
	position: absolute;
	bottom: -250px;
    right: -240px;
	transition: 800ms;
}

@media screen and (max-width: 1350px) {
	.bookSection .sublay img.first {left: -320px;}
	.bookSection .sublay img.second {left: -310px;}
	.bookSection .sublay img.third {right: -360px;}
}

@media screen and (max-width: 980px) {
	.bookSection .sublay img.first {left: -420px;}
	.bookSection .sublay img.second {left: -420px;}
	.bookSection .sublay img.third {right: -460px;}
}

@media screen and (max-width: 720px) {
	.bookSection .sublay img.first,
	.bookSection .sublay img.second {left: -150%;}
	.bookSection .sublay img.third {right: -150%;}
}

@media screen and (max-width: 719px) {
	.bookSection .sublay img.first,
	.bookSection .sublay img.second,
	.bookSection .sublay img.third {display: none;}
}
/*END BOOK SECTION*/

/*----- END LANDING -----*/

/*----- START GLOBAL PAGES -----*/

/*START PAGE HEADER*/
.pageHeader {
	display: inline-block;
	width: 100%;
	overflow: hidden;
	position: relative;
}

/*LOGIN MODAL*/
.loginButton {
	display: inline-block;
}

.loginMain {
	background: rgba(0, 0, 0, 0.6);
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: 300ms;
}

.loginMain.open {
	opacity: 1;
	visibility: visible;
	transition: 400ms;
}

.loginMain .modalWrap {
	background: #fff;
	border-radius: 10px;
	max-width: 400px;
	min-height: 150px;
	margin: auto;
	position: absolute;
	right: 15px;
	left: 15px;
	top: 15%;
	box-shadow: 0px 3px 7px -4px #000;
	transition: 250ms;
}

.loginMain .modalWrap.medium {
	max-width: 700px;
}

.loginMain .modalWrap.large {
	max-width: 1000px;
}

.loginMain.open .modalWrap {
	top: 20%;
	transition: 250ms;
}

.loginMain .modalWrap .forgot {
	margin-left: 20px;
}

.loginMain .modalWrap .modalHead {padding: 20px; border-bottom: 1px solid #e2e2e2;}
.loginMain .modalWrap .modalHead h1 {margin: 0 !important; font-size: 28px; display: inline-block;}
.loginMain .modalWrap .modalHead .closeLogin {
	padding: 0;
    background: none;
    border: none;
    line-height: normal;
    cursor: pointer;
    float: right;
    top: 2px;
    color: #353535;
    text-align: center;
    display: inline-block;
	padding: 5px 6px 2px 0;
}
.loginMain .modalWrap .modalHead .closeLogin:focus,
.loginMain .modalWrap .modalHead .closeLogin:active {
	outline: auto;
}
.loginMain .modalWrap .modalHead .closeLogin i {margin: 0; margin-left: 5px; font-size: 20px;}
.loginMain .modalWrap .modalHead .closeLogin:hover i {opacity: 0.8;}
.loginMain .modalWrap .modalContent {padding: 20px;}
.loginMain .modalWrap .modalContent p {margin: 0;}
.loginMain .modalWrap .modalContent p + p {margin-top: 10px;}

.loginMain .modalWrap .loginLogo {
	display: inline-block;
	width: 100%;
	margin: 20px 0 30px 0;
	text-align: center;
}

.loginMain .modalWrap form span.req {
	font-size: 14px;
	color: red;
	margin-left: 3px;
}

.loginMain a.pink {
	color: #F836C3;
	text-decoration: underline;
}

.loginMain a.pink:hover {
	text-decoration: none;
}

.login-links {
	display: inline-block;
	width: 100%;
	font-size: 14px;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #e2e2e2;
	text-align: center;
}

.login-links > div + div {
	margin-top: 7px;
}

.login-links a {
	padding: 2px;
}

.login-message {
	height: 0px;
	overflow: hidden;
	text-align: center;
	color: red;
	font-weight: 600;
	visibility: hidden;
	opacity: 0;
	transition: 200ms;
}

.login-message.alert {
	height: auto;
	overflow: auto;
	visibility: visible;
	opacity: 1;
}

.login-mailto {
	line-height: normal;
	text-align: center;
}

/*LOGIN MODAL*/

/*----- END GLOBAL PAGES -----*/

/*----- START ABOUT PAGE -----*/
.aboutBoxes .box {
	position: relative;
}

.aboutBoxes .box .overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.aboutBoxes .box .overlay img {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	width: 60px;
	height: auto;
	left: -50%;
	transition: 200ms;
}

.aboutBoxes .box .overlay img.first {
	top: 10px;
}

.aboutBoxes .box .overlay img.second {
	top: 20px;
}

.aboutBoxes .box .overlay:hover img.first {
	visibility: visible;
	opacity: 0.3;
	transition: 300ms;
	left: 25px;
}

.aboutBoxes .box .overlay:hover img.second {
	visibility: visible;
	opacity: 0.5;
	transition: 600ms;
	left: 15px;
}

.aboutBoxes .box i {
	color: #7c3eed;
	font-size: 40px;
	margin-bottom: 25px;
}

.aboutBoxes .box h3 {
	font-weight: 500;
	margin-bottom: 20px;
}
/*----- END ABOUT PAGE -----*/

/*----- START PRODUCTS PAGE -----*/

/*START PRODUCT TABS*/

/*buttons*/
.productsTabs .cleanTabs .tabButtons span {
	margin: 8px 6px;
    display: inline-block;
}

@media screen and (max-width: 500px) {
	.productsTabs .cleanTabs .tabButtons span {
		margin: 8px 6px;
		display: block;
	}
}

.productsTabs .cleanTabs .tabButtons span a {
	display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	
	cursor: pointer;
	padding: 10px 20px;
	
	color: #7c3eed;
    background-color: none;
    border-color: #7c3eed;
}

@media screen and (max-width: 500px) {
	.productsTabs .cleanTabs .tabButtons span a {
		width: 100%;
	}
}

.productsTabs .cleanTabs .tabButtons span a:hover,
.productsTabs .cleanTabs .tabButtons span.active a {
	color: #fff !important;
    background: #6e2fe1;
    border: 1px solid #6e2fe1;
}

/*tabs*/

.productsTabs .cleanTabs .panel {
	text-align: left;
	width: 100%;
	padding: 30px 25px;
	border: 1px solid #f2f2f2;
	border-radius: 6px;
	box-shadow: 0 13px 27px -5px #32325d40, 0 8px 16px -8px #0000004d, 0 -6px 16px -6px #00000008;
	background-color: #6e2fe1;
	color: #fff;
}

/*.productsTabs .cleanTabs .panel > div {
	text-align: left;
	width: 100%;
	max-width: 904px;
	padding: 30px 25px;
	border: 1px solid #f2f2f2;
	border-radius: 6px;
	box-shadow: 0 13px 27px -5px #32325d40, 0 8px 16px -8px #0000004d, 0 -6px 16px -6px #00000008;
}*/

.productsTabs .cleanTabs .panel > div h3 {
	font-weight: 700;
}

/*Area Room*/

.area-room {
	position: relative;
	width: 100%;
	height: auto;
}

.panel-overlay {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/*END PRODUCT TABS*/

/*START PRODUCT SECTION*/

.productSection .mini-title {
	color: #7C3EED;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
	margin-bottom: 20px;
}

.productSection h2 {
	margin-bottom: 30px;
}

.productSection a {
	font-size: 15px;
	color: #7C3EED;
	font-weight: 700;
}

.productSection a:hover {
	text-decoration: underline;
}

.productSection .list p {
	font-weight: 700;
    font-size: 18px;
}

.productSection .list p + p {
	margin-top: 10px;
}

.productSection .list p i {
	color: #7C3EED;
	font-size: 25px;
	position: relative;
	top: -1px;
	margin-right: 10px;
}

.productSection.white-text .list p i {
	color: #fff;
}

.productSection.white-text a {
	color: #fff;
}

.productSection .img-wrap img {
	max-width: none;
	height: auto;
	width: 100%;
	-o-object-fit: cover;
    object-fit: cover;
}

/*END PRODUCT SECTION*/

/*START DOUBLE CARD*/

.doubleCard .card {
	overflow: hidden;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 13px 27px -5px #32325d40, 0 8px 16px -8px #0000004d, 0 -6px 16px -6px #00000008;
}

.doubleCard .card .mini-title {
	color: #7C3EED;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}

.doubleCard .card h2 {
	font-weight: 700;
	margin-bottom: 15px;
	padding: 0 25px;
}

.doubleCard .card p {
	padding: 0 25px;
	margin: 0px;
}

.doubleCard .card a {
	font-size: 18px;
	color: #7C3EED;
	font-weight: 700;
}

.doubleCard .card a:hover {
	text-decoration: underline;
}

.doubleCard .card .img-wrap img {
	display: block;
	width: 100%;
	height: 250px;
	-o-object-fit: cover;
    object-fit: cover;
}

/*END DOUBLE CARD*/

/*----- END PRODUCTS PAGE -----*/

/*----- START PRODUCT PAGE -----*/
.productWrap .left .productContent {
	padding-right: 50px;
}

.productWrap .right .productContent {
	padding-right: 0px;
	padding-left: 50px;
}

@media screen and (max-width: 767px) {
	.productWrap .left .productContent {
		padding-right: 0px;
	}

	.productWrap .right .productContent {
		padding-right: 0px;
		padding-left: 0px;
	}
	
	.productWrap .right {
		margin-top: 50px;
	}
}

.productWrap .productContent .title {
    display: inline-block;
    margin-bottom: 20px;
    color: #5f5f5f;
	font-size: 40px;
    font-weight: 500;
}

.productWrap .productContent .subtitle {
	font-size: 25px;
    margin-bottom: 40px;
    font-weight: 300;
    color: #999;
}

.productWrap .productContent > p > a,
.productWrap .productContent > a {
	display: inline-block;
	margin-top: 20px;
	color: #2877a9;
}

.piecloudPage .productWrap .productContent > p > a,
.piecloudPage .productWrap .productContent > a {
	color: #b274a5;
}

.productWrap .productContent > p > a:hover,
.productWrap .productContent > a:hover {
	text-decoration: underline;
}

.upmarketPage .sectionBox .productWrap .productContent .title,
.piecloudPage .sectionBox .productWrap .productContent .title,
.propupPage .sectionBox .productWrap .productContent .title {
	position: relative;
	z-index: 1;
}

.upmarketPage .sectionBox .productWrap .productContent .title {
	color: #2877a9;
}

.piecloudPage .sectionBox .productWrap .productContent .title {
	color: #b274a5;
}

.propupPage .sectionBox .productWrap .productContent .title {
	color: #df8819;
}

.upmarketPage .sectionBox .productWrap .productContent .title:before,
.piecloudPage .sectionBox .productWrap .productContent .title:before,
.propupPage .sectionBox .productWrap .productContent .title:before {
	content: "";
    position: absolute;
    display: inline-block;
    height: 0px;
    width: 65%;
    background: #f2f2f2;
    left: -200px;
    bottom: 5px;
	border-radius: 4px;
    z-index: -1;
	opacity: 0;
	visibility: hidden;
	transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.upmarketPage .sectionBox.grey .productWrap .productContent .title:before,
.piecloudPage .sectionBox.grey .productWrap .productContent .title:before,
.propupPage .sectionBox.grey .productWrap .productContent .title:before {
	background: #e8e8e8;
}

.upmarketPage .sectionBox:hover .productWrap .productContent .title:before,
.piecloudPage .sectionBox:hover .productWrap .productContent .title:before,
.propupPage .sectionBox:hover .productWrap .productContent .title:before {
	height: 10px;
	bottom: 0px;
	left: -20px;
	opacity: 1;
	visibility: visible;
	transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.productWrap .productContent p {
	display: block;
	line-height: 24px;
	font-size: 16px;
}

.productWrap .productContent p + p {
	margin-top: 10px;
}

.productWrap .productContent p a {
	margin: 0;
}

.productWrap .productContent .optionList {
	margin-top: 30px;
	margin-bottom: 40px;
	display: inline-block;
	width: 100%;
}

@media screen and (max-width: 500px) {
	.productWrap .productContent .optionList {
		text-align: center;
	}
}

.productWrap .productContent .optionList li {
	display:block;
	margin-top: 15px;
}

.productWrap .productContent .optionList li a {
	border-radius: 5px;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 100%);
	color: #454545;
    border: 1px solid #d2d2d2;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    padding: 15px 20px;
    display: inline-block;
	width: 100%;
	opacity: 0.9;
    transition: 200ms;
}

.upmarketPage .productWrap .productContent .optionList li a {
	border-color: #2877a9;
	color: #2877a9;
}

.piecloudPage .productWrap .productContent .optionList li a {
	border-color: #b274a5;
	color: #b274a5;
}

.propupPage .productWrap .productContent .optionList li a {
	border-color: #df8819;
	color: #df8819;
}

.productWrap .productContent .optionList li a i {
	margin-right: 15px;
	font-size: 20px;
	width: 30px;
	text-align: center;
}

.productWrap .productContent .optionList li a:hover {
	color: #fff;
	opacity: 1;
    transition: 200ms;
}

.upmarketPage .productWrap .productContent .optionList li a:hover {
	color: #fff;
	background: #2877a9;
	transition: 200ms;
}

.piecloudPage .productWrap .productContent .optionList li a:hover {
	color: #fff;
	background: #b274a5;
	transition: 200ms;
}

.propupPage .productWrap .productContent .optionList li a:hover {
	color: #fff;
	background: #df8819;
	transition: 200ms;
}

.productWrap .productContent .optionList li a:after {
	background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .2;
    position: absolute;
    top: -50px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 650ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 650ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
}

.productWrap .productContent .optionList li a:hover:after {
	left: 120%;
    -webkit-transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.productWrap .productContent .optionList li a span {
	z-index: 1;	
}

.productWrap .img-wrap {
	display: inline-block;
	width: 100%;
	position: relative;
	text-align: center !important;
}

.productWrap .left .img-wrap {
	text-align: left;
}

.productWrap .right .img-wrap {
	text-align: right;
}

.productWrap .img-wrap img {
	display: inline-block;
	width: auto;
	height: auto;
}

.productWrap .img-wrap > img {
	opacity: 0.2;
}

.propupPage .productWrap .img-wrap > img {
	opacity: 0;
}

.productWrap .img-wrap .overlay-img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
}

.productWrap .img-wrap .overlay-img img {
	width: auto;
	height: 100%;
}

.productWrap .img-wrap .overlay-img.bottom img {
	position: absolute;
	bottom: 0;
}

.productWrap .img-wrap .overlay-img.left img {
	position: absolute;
	left: 0;
	right: auto;
}

.productWrap .img-wrap .overlay-img.right img {
	position: absolute;
	left: auto;
	right: 0;
}

.productSection .acc-list {
	text-align: left;
    border-radius: 6px;
    border: 1px solid #AD8DE8 !important;
    background: rgb(124,62,237);
    background: linear-gradient(0deg, rgba(124,62,237,1) 0%, rgba(151,100,245,1) 100%);
}

.productSection .acc-list .acc-box + .acc-box {
	border-top: 1px solid #AD8DE8;
}

.productSection .acc-list .acc-box .title {
	cursor: pointer;
	padding: 30px;
	line-height: normal;
	font-size: 18px;
	font-weight: 500;
	transition: 200ms;
}

.productSection .acc-list .acc-box.open .title {
	color: #83cde9;
	transition: 200ms;
}

.productSection .acc-list .acc-box .content {
	padding: 0 30px 30px 30px;
	display: none;
}

.productSection .acc-list .acc-box .content .divider {
	display: block;
	height: 1px;
	background-color: #dad7e1;
}

.productSection .acc-list .acc-box .content p + p {
	margin-top: 10px;
}

.productSection .acc-list .acc-box .content .resume i {
	color: #7c3eed;
	font-size: 30px;
	margin-right: 15px;
}

.productSection .acc-list .acc-box .content .resume p {
	font-weight: 500;
}

.productSection .acc-list .acc-box .content .resume a {
	color: #7c3eed;
}

.productSection .acc-list .acc-box .content .resume a:hover {
	text-decoration: underline;
}
/*----- END PRODUCT PAGE -----*/

/*----- START FAQ / CAREER PAGE -----*/
.page.faq .headPanel,
.page.careers .headPanel {
	height: auto;
	padding: 140px 0 70px 0;
}

.faqSection .boxColumn > h2 {
	margin-bottom: 10px;
}

.faqSection .boxColumn > p {
	margin-bottom: 30px;
}

.faqSection .boxColumn .acc-list {
	text-align: left;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	box-shadow: 0 10px 40px rgba(93,33,210,.05);
}

.faqSection .boxColumn .acc-list .acc-box + .acc-box {
	border-top: 1px solid #e2e2e2;
}

.faqSection .boxColumn .acc-list .acc-box .title {
	cursor: pointer;
	padding: 30px;
	line-height: normal;
	font-size: 18px;
	font-weight: 500;
}

.faqSection .boxColumn .acc-list .acc-box .content {
	padding: 0 30px 30px 30px;
	display: none;
}

.faqSection .boxColumn .acc-list .acc-box .content .divider {
	display: block;
	height: 1px;
	background-color: #dad7e1;
}

.faqSection .boxColumn .acc-list .acc-box .content p + p {
	margin-top: 10px;
}

.faqSection .boxColumn .acc-list .acc-box .content .resume i {
	color: #7c3eed;
	font-size: 30px;
	margin-right: 15px;
}

.faqSection .boxColumn .acc-list .acc-box .content .resume p {
	font-weight: 500;
}

.faqSection .boxColumn .acc-list .acc-box .content .resume a {
	color: #7c3eed;
}

.faqSection .boxColumn .acc-list .acc-box .content .resume a:hover {
	text-decoration: underline;
}
/*----- END FAQ / CAREER PAGE -----*/

/*----- START CONTACT PAGE -----*/
.page.contact .headPanel {
	height: auto;
	padding: 140px 0 70px 0;
}

.contactSection div i {
	margin-right: 30px;
    width: 12px;
    text-align: center;
    color: #7c3eed;
    font-family: 'FontAwesome';
    font-weight: 300;
    position: relative;
    top: 5px;
    font-size: 20px;
}

.contactSection div i.fa-map-marker {left: 2px;}
.contactSection div i.fa-envelope {top: 3px;}

.contactSection div a {color: #7c3eed;}
.contactSection div a:hover {text-decoration: underline;}

.contactSection div.address {
	color: #454545;
	line-height: normal;
}

.contactMap iframe {
	border: 1px solid #e2e2e2;
	border-radius: 5px;
	height: 550px;
	box-shadow: 0px 3px 50px -25px #000;
}

@media screen and (max-width: 450px) {
	.contactMap iframe {
		height: 400px;
	}
}

.contactMsg {
	padding-right: 20px;
}

@media screen and (max-width: 450px) {
	.contactMsg {
		padding-right: 0px;
	}
}

.contactMsg form .form-row + .form-row {
	margin-top: 20px;
}

.contactMsg form .form-row input,
.contactMsg form .form-row textarea {
	padding: 15px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    height: auto;
}

.contactMsg form .button-left {
	text-align: left;
}

.contactMsg form .button-left button,
.contactMsg form .button-left button:focus,
.contactMsg form .button-left button:active {
	background: #7c3eed !important;
    border: 1px solid #7c3eed !important;
	margin-left: 5px;
}

.contactMsg form .button-left button:hover {
	color: #fff !important;
    background: #6e2fe1 !important;
    border: 1px solid #6e2fe1 !important;
}

@media screen and (max-width: 767px) {
	.contactMap {
		margin-top: 40px;
	}
}
/*----- END CONTACT PAGE -----*/

/*START PAGE CONTENT*/
.basicPanel {
	height: 90px;
	width: 100%;
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(247,245,253,1) 100%);
}

.pageContent h2 {
    display: block;
    margin-bottom: 60px;
	text-align: left;
	font-weight: 700;
}

.pageContent p {
	text-align: left;
    line-height: 22px;
    font-size: 16px;
    margin-bottom: 20px;
}

.pageContent p.bold {
	font-weight: 700;
}

.pageContent p a {
	color: #6a31d9;
}

.pageContent p a:hover {
	text-decoration: underline;
}

.pageContent ol {
	list-style-type: decimal;
	padding-left: 35px;
	padding-top: 10px;
	padding-bottom: 20px;
}

.pageContent ul {
	padding-left: 35px;
	padding-top: 10px;
	padding-bottom: 20px;
}

.pageContent ol ol {
	padding-left: 20px;
}

.pageContent ul ul {
	padding-left: 20px;
}

.pageContent ul li p,
.pageContent ol li p {
	margin-bottom: 15px;
}

.pageContent ol.init {
	list-style-type:initial;
}

@media screen and (max-width: 650px) {
	.pageContent .tbl-wrap {
		overflow-x: auto;
		width: 100%;
		margin-bottom: 25px;
	}
}

.pageContent table {
	border-collapse: collapse;
	margin-bottom: 25px;
}

@media screen and (max-width: 650px) {
	.pageContent table {
		width: 590px;
	}
}

.pageContent table tr th,
.pageContent table tr td {
	border: 1px solid #e2e2e2;
	padding: 10px;
}

.pageContent table tr th + th {
	text-align: center;
}

.pageContent table tr th,
.pageContent table tr td:first-child {
	background: #6a31d9;
	color: #fff;
	font-weight: 500;
}

.pageContent small {
	display: block;
	font-size: 14px;
	margin-bottom: 20px;
}

/**/

.mainFaq {
	margin-bottom: 60px;
}

.mainFaq .title {
	display: block;
	font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    font-size: 24px;
    text-transform: uppercase;
    color: #768392;
}

@media screen and (max-width: 991px) {
	.mainFaq .title {
		margin-top: 30px;
	}
	
	.mainFaq .title.first {
		margin-top: 0px;
	}
}

.mainFaq .faqBox + .faqBox {
	margin-top: 20px;
}

.mainFaq .faqBox .question {
	display: inline-block;
	width: 100%;
	padding: 15px 20px 15px 50px;
	background: rgb(14, 132, 232);
	border-radius: 5px;
	cursor: pointer;
	color: #f2f2f2;
	font-size: 16px;
	font-weight: 700;
	position: relative;
	line-height: normal;
	text-shadow: 0px 1px 1px #1a7ec3;
}

.mainFaq .faqBox .question.color1 {
	background: rgb(73,172,244);
	background: linear-gradient(280deg, rgba(73,172,244,1) 1%, rgba(35,161,237,1) 100%);
}

.mainFaq .faqBox .question.color2 {
	background: rgb(103,171,244);
	background: linear-gradient(280deg, rgba(103,171,244,1) 1%, rgba(73,172,244,1) 100%);
}

.mainFaq .faqBox .question.color3 {
	background: rgb(139,151,237);
	background: linear-gradient(280deg, rgb(117, 129, 214) 1%, rgba(103,171,244,1) 100%);
}

.mainFaq .faqBox .question i {
	position: absolute;
	top: 21px;
    left: 20px;
	display: inline-block;
}

.mainFaq .faqBox .question i.fa-plus {
	opacity: 1;
	visibility: visible;
	transform: rotate(0deg);
	transition: 300ms;
}

.mainFaq .faqBox .question i.fa-minus {
	opacity: 0;
	visibility: hidden;
	transform: rotate(180deg);
	transition: 300ms;
}

.mainFaq .faqBox.open .question i.fa-plus {
	opacity: 0;
	visibility: hidden;
	transform: rotate(180deg);
	transition: 300ms;
}

.mainFaq .faqBox.open .question i.fa-minus {
	opacity: 1;
	visibility: visible;
	transform: rotate(0deg);
	transition: 300ms;
}

.mainFaq .faqBox .answer {
	font-size: 16px;
	font-weight: 300;
	color: #454545;
	line-height: normal;
	padding: 20px 20px 0 20px;
}

/*END PAGE CONTENT*/

/*----- START 404 PAGE -----*/
.errorPanel {
	height: 100vh;
	background: #f7f5fd;
}

.errorPanel > div {
	height: 100%;
}

.errorPanel h1 {color: #6e2fe1;}
.errorPanel h5 {font-weight: 500;}

@media screen and (max-width: 767px) {
	.errorPanel h1,
	.errorPanel h5 {text-align: center;}
}

.errorPanel .errorLinks {
	margin: 5px 0;
}

.errorPanel .errorLinks a {
	font-size: 18px;
	font-weight: 500;
	color: #6e2fe1;
	text-decoration: underline;
}

.errorPanel .errorLinks a:hover {
	text-decoration: none;
}

.errorPanel .errorLinks a + a {
	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px solid #d2d2d2;
}

@media screen and (max-width: 767px) {
	.errorPanel .errorLinks a + a {
		margin-left: 0;
		padding-left: 0;
		border-left: none;
		margin-top: 5px;
	}
}
/*----- END 404 PAGE -----*/

/*----- START BOOK A DEMO -----*/

.bookDemo > div > div {
	position: relative;
	z-index: 1;
}

.bookForm {
	border-radius: 6px;
    box-shadow: 0 10px 40px rgba(129,128,144,.15);
	background-color: #fff;
    background-color: rgb(255 255 255 / 70%);
    backdrop-filter: blur(10px);
}

.bookForm .form-row>[class*=col-] {
	padding-right: 10px;
    padding-left: 10px;
}

.bookForm .form-row input,
.bookForm .form-row select {
	padding: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    height: auto;
}

.bookForm label {
	width: 100%;
	text-align: left;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 5px;
}

.bookForm label a {
	color: #6a31d9;
}

.bookForm label a:hover {
	text-decoration: underline;
}

.bookForm input[type='checkbox'] + label {
	line-height: normal;
	margin: 0;
}

.bookForm .agreement {
	position: relative;
}

.bookForm .agreement input {
	position: absolute;
	top: 11px;
    left: 25px;
}

.bookForm .agreement input[type='checkbox']:hover:not(:checked):not(:disabled) {
	border-color: #7c3eed;
}

.bookForm .agreement input[type='checkbox'].switch:checked {
	background-color: #7c3eed;
}

.bookForm .agreement label {
	padding-left: 50px;
	text-align: center;
}

.bookDemo ul li span {
	background: #EEE7FB;
    padding: 7px 5px 5px 6px;
    margin: 7px;
    border-radius: 5px;
    width: 35px;
	height: 35px;
    display: inline-block;
    text-align: center;
	margin-right: 20px;
}

.bookDemo ul li span i {
	color: #4f1daf;
	font-size: 20px;
}

.bookDemo ul li strong {
	display: block;
	margin-bottom: 7px;
}

.bookDemo ul li + li {
	margin-top: 30px;
}

/*Animated dotted circle*/
.animated-circle img {
	position: absolute;
    top: 40px;
    width: 76%;
    left: -50%;
    max-height: unset;
    -webkit-animation: rotate-center 100s linear infinite both;
    animation: rotate-center 100s linear infinite both;
}

.rotate-center {
  -webkit-animation: rotate-center 100s linear infinite both;
  animation: rotate-center 100s linear infinite both;
}

/*Animated circle bubbles*/

.animated-circle-bubbles img {
	position: absolute;
    right: 0;
    top: 20%;
    width: 40%;
    max-width: unset;
    max-height: unset;
    -webkit-animation: rotate-center 100s linear infinite both;
    animation: rotate-center 100s linear infinite both;
}

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*----- END BOOK A DEMO -----*/

/*----- START GDPR -----*/
.gdpr-box {
	position: fixed;
	bottom: 30px;
	left: 30px;
	right: 30px;
	padding: 30px;
	z-index: 10;
	display: inline-block;
	padding: 20px;
	border-radius: 5px;
	border: 1px solid #e2e2e2;
	background: #fff;
	background: rgb(255 255 255 / 92%);
	font-size: 14px;
	box-shadow: 0px 3px 9px -9px #000;
	transition: 300ms;
}

@media screen and (max-width: 550px) {
	.gdpr-box {
		bottom: 15px;
		left: 15px;
		right: 15px;
		transition: 300ms;
	}
}

.gdpr-box.hide {
	display: none;
}

.gdpr-box .wrap {
	padding-right: 200px;
}

@media screen and (max-width: 780px) {
	.gdpr-box .wrap {
		padding-right: 0px;
	}
}

.gdpr-box .title {
	font-weight: 700;
	margin-bottom: 10px;
	color: #454545;
}

@media screen and (max-width: 550px) {
	.gdpr-box .title {
		text-align: center;
	}
}

.gdpr-box p {
	font-size: 14px;
	color: #768392;
}

.gdpr-box a {
	color: #007bff;
}

.gdpr-box a:hover {
	text-decoration: underline;
}

.gdpr-box .buttons {
	position: absolute;
	top: 27%;
	right: 20px;
}

@media screen and (max-width: 780px) {
	.gdpr-box .buttons {
		position: relative;
		top: auto;
		right: auto;
		display: inline-block;
		width: 100%;
		margin-top: 10px;
	}
}

@media screen and (max-width: 550px) {
	.gdpr-box .buttons {
		text-align: center;
	}
}

.gdpr-box .buttons button + button {
	margin-left: 10px;
}

.gdpr-box .buttons button.decline {
	color: #a2a2a2;
    background-color: #fff;
    border-color: #a2a2a2;
}

.gdpr-box .buttons button.decline:hover {
	color: #fff;
    background: #a2a2a2;
}
/*----- END GDPR -----*/

/*----- START OTHER -----*/
@media screen and (max-width: 991px) {
	.pie-card + .pie-card {
		margin-top: 30px;
	}
}

.contact-msg-success {
	color: green;
	font-size: 16px;
}

.miniContainer {
	width: 100%;
	max-width: 600px;
	margin: auto;
}

span.req {
	display: inline-block;
	margin-left: 3px;
	color: red;
}

/*Christmas THEME - add .chr to body class*/
/*START SNOW*/

.snowflake {display: none;}

.chr .snowflake {
  display: inline;
  color: #fff;
  font-size: 1em;
  font-family: Arial;
  text-shadow: 0 0 1px #000;
}

@-webkit-keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@-webkit-keyframes snowflakes-shake{0%{-webkit-transform:translateX(0px);transform:translateX(0px)}50%{-webkit-transform:translateX(80px);transform:translateX(80px)}100%{-webkit-transform:translateX(0px);transform:translateX(0px)}}@keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@keyframes snowflakes-shake{0%{transform:translateX(0px)}50%{transform:translateX(80px)}100%{transform:translateX(0px)}}.chr .snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;-webkit-animation-name:snowflakes-fall,snowflakes-shake;-webkit-animation-duration:10s,3s;-webkit-animation-timing-function:linear,ease-in-out;-webkit-animation-iteration-count:infinite,infinite;-webkit-animation-play-state:running,running;animation-name:snowflakes-fall,snowflakes-shake;animation-duration:10s,3s;animation-timing-function:linear,ease-in-out;animation-iteration-count:infinite,infinite;animation-play-state:running,running}.chr .snowflake:nth-of-type(0){left:1%;-webkit-animation-delay:0s,0s;animation-delay:0s,0s}.chr .snowflake:nth-of-type(1){left:10%;-webkit-animation-delay:1s,1s;animation-delay:1s,1s}.chr .snowflake:nth-of-type(2){left:20%;-webkit-animation-delay:6s,.5s;animation-delay:6s,.5s}.chr .snowflake:nth-of-type(3){left:30%;-webkit-animation-delay:4s,2s;animation-delay:4s,2s}.chr .snowflake:nth-of-type(4){left:40%;-webkit-animation-delay:2s,2s;animation-delay:2s,2s}.chr .snowflake:nth-of-type(5){left:50%;-webkit-animation-delay:8s,3s;animation-delay:8s,3s}.chr .snowflake:nth-of-type(6){left:60%;-webkit-animation-delay:6s,2s;animation-delay:6s,2s}.chr .snowflake:nth-of-type(7){left:70%;-webkit-animation-delay:2.5s,1s;animation-delay:2.5s,1s}.chr .snowflake:nth-of-type(8){left:80%;-webkit-animation-delay:1s,0s;animation-delay:1s,0s}.chr .snowflake:nth-of-type(9){left:90%;-webkit-animation-delay:3s,1.5s;animation-delay:3s,1.5s}

/*CANDY CANE SCROLL*/
/* width 
::-webkit-scrollbar {
	width: 15px;
}*/

/* Track 
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px #d2d2d2; 
}*/
 
/* Handle 
::-webkit-scrollbar-thumb {
	background-image: url(../../img/logo/cane-texture.jpg);
	background-position: top right;
    -webkit-animation: slide 150s linear infinite; 
	border-radius: 10px;
	box-shadow: 0px 3px 7px -3px #000;
}

@-webkit-keyframes slide {
    from{
        background-position:0px;
    }
    to{
        background-position:2880px;
    }
}*/

/*SPLASH ANIMATIONS*/
@keyframes moveLeftToRight {
	0%, 100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(20px);
	}
}

@keyframes slowrotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes slowrotatealt {
	0%, 100% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(-360deg) scale(1.2);
	}
}

@keyframes rail {
	0%, 100% {
		left: 0;
		transform: scale(1);
	}
	50% {
		left: 50%;
		transform: scale(1.2);
	}
}

@keyframes zoom {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
}

/* ----- START SPLASH ----- */
body {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

/* START TOP NAVIGATION */
.topBar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 40px 0px;
	transition: 250ms;
}

.topBar:before {
	content: "";
	background: #fff;
	background: rgb(237 234 241 / 30%);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	transition: 250ms;
}

@media screen and (max-width: 700px) {
	.topBar:before {
		opacity: 1;
		visibility: visible;
	}
}

.topBar .mainLogo {
	position: relative;
	font-size: 14px;
	color: #fff;
}

.topBar .mainLogo img {
	width: 100%;
    width: auto;
	height: 40px;
	filter: invert(100%);
	transition: 250ms;
}

@media screen and (max-width: 600px) {
	.topBar .mainLogo img {
		height: 65px;
	}
}

@media screen and (max-width: 450px) {
	.topBar .mainLogo img {
		height: 50px;
	}
}

.topBar .mainMenu {
	display: block;
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 700px) {
	.topBar .mainMenu {
		display: none;
	}
}

.topBar .mainMenu a {
	color: #454545;
	position: relative;
	margin-left: 50px;
	font-size: 20px;
	font-weight: 600;
	padding: 3px 5px;
	transition: 250ms;
}

@media screen and (max-width: 600px) {
	.topBar .mainMenu a {
		margin-left: 20px;
	}
}

.topBar .mainMenu a:hover {
	color: #000000;
}

.topBar .mainMenu a:before {
	content: "";
	background-color: #8328ED;
	height: 2px;
	border-radius: 2px;
	position: absolute;
	top: 100%;
	left: -10px;
	right: 100%;
	transition: 250ms;
}

.topBar .mainMenu a:hover:before {
	background-color: #A20889;
	right: -10px;
}

.topBar.fixed {
	background-color: rgb(0 0 0 / 30%);
	padding: 20px 0px;
	backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
	transition: 300ms;
}
/* END TOP NAVIGATION */

/* START SPLASH */
.topSection.splash {
    position: relative;
    padding-top: 90px;
}

@media screen and (max-width: 991px) {
	.topSection.splash {
		padding-top: 120px !important;
	}
}

.topSection.splash > .container1600,
.topSection.splash > .container1600 > .row {
	height: 100%;
}

.second-menu {
	position: sticky;
	top: 0px;
	z-index: 1;
	padding: 50px;
	background-color: rgb(195 214 227 / 0%);
	background: #F0F9FF;
	background: linear-gradient(180deg,rgba(240, 249, 255, 1) 60%, rgba(240, 249, 255, 0.7) 80%, rgba(255, 255, 255, 0) 100%);
	transition: 250ms;
}

@media screen and (max-width: 991px) {
	.second-menu {
		display: none !important;
	}
}

.second-menu.fixed {
	padding: 25px 50px 55px;
}

.second-menu a {
	color: #000;
	font-size: 21px;
	font-weight: 500;
}

@media screen and (max-width: 1200px) {
	.second-menu a {
		font-size: 18px;
	}
}

.second-menu a.loginButton {
	cursor: pointer;
}

.second-menu a:hover {
	text-decoration: underline;
}

.top-text {
	padding: 30px 0px;
}

.top-text .pink {
	color: #F836C3;
}

.top-text .orange {
	color: #F05A24;
}

.top-text p {
	color: #000;
	font-size: 28px;
	font-weight: 800;
	line-height: normal;
	letter-spacing: -0.5px;
	transition: 200ms;
}

@media screen and (max-width: 1200px) {
	.top-text p {
		font-size: 25px;
	}
}

@media screen and (max-width: 480px) {
	.top-text p {
		font-size: 20px;
	}
}

.top-text p + p {
	margin-top: 200px;
}

.top-text p.top-title {
	font-size: 80px;
	line-height: 70px;
	transition: 200ms;
}

@media screen and (max-width: 1200px) {
	.top-text p.top-title {
		font-size: 60px;
		line-height: 50px;
	}
}

@media screen and (max-width: 480px) {
	.top-text p.top-title {
		font-size: 48px;
		line-height: 45px;
	}
}

.top-text p.medium {
	font-size: 45px;
	transition: 200ms;
}

@media screen and (max-width: 1200px) {
	.top-text p.medium {
		font-size: 35px;
	}
}

@media screen and (max-width: 480px) {
	.top-text p.medium {
		font-size: 30px;
	}
}

.top-text p span.italic {
	font-style: italic;
	font-weight: 500;
	margin-right: 1px;
}

.top-text p a {
	color: #000;
	text-decoration: underline;
}

.top-text p a:hover {
	text-decoration: none;
}

.top-text .content-footer {
	position: relative;
	text-align: center;
}

.top-text .content-footer p {
	font-size: 30px;
	font-weight: 500;
	color: #899caf;
	position: absolute;
	top: calc(50% - 28px);
	left: 0;
	right: 0;
	text-align: center;
	transition: 200ms;
}

@media screen and (max-width: 991px) {
	.top-text .content-footer p {
		color: #5b7085;
	}
}

@media screen and (max-width: 480px) {
	.top-text .content-footer p {
		font-size: 24px;
	}
}

.top-text .content-footer img {
	filter: brightness(0) saturate(100%) invert(100%) sepia(66%) saturate(1350%) hue-rotate(173deg) brightness(90%) contrast(92%);
}

@media screen and (max-width: 991px) {
	.top-text .content-footer img {
		filter: brightness(0) saturate(100%) invert(48%) sepia(25%) saturate(361%) hue-rotate(170deg) brightness(96%) contrast(89%);
	}
}

.content-text {
	padding: 30px 0px;
}

.content-text p {
	color: #000;
	font-size: 20px;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.5px;
}

.content-text p + p {
	margin-top: 30px;
}

.haiku {
	min-height: 300px;
	position: relative;
	text-align: right;
	font-size: 60px;
	transition: 250ms;
}

@media screen and (max-width: 1200px) {
	.haiku {
		min-height: 200px;
		font-size: 40px;
	}
}

@media screen and (max-width: 980px) {
	.haiku {
		min-height: 150px;
		font-size: 30px;
	}
}

@media screen and (max-width: 767px) {
	.haiku {
		min-height: 200px;
		font-size: 40px;
		color: #fff;
	}
}

@media screen and (max-width: 600px) {
	.haiku {
		min-height: 150px;
		font-size: 30px;
	}
}

.haiku .hk {
	position: absolute;
	top: -50px;
	left: 0px;
	width: 100%;
	line-height: normal;
	font-weight: 800;
	transition: 350ms;
	opacity: 0;
	visibility: hidden;
}

.haiku .hk.active {
	top: 0px;
	transition: 400ms;
	opacity: 1;
	visibility: visible;
}

.haiku .hk p {
	display: block;
}

.grey-band {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100px;
	background-color: rgb(249 251 253 / 80%);
    backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}
/*END SPLASH*/

/*START BRAND CAROUSEL*/
.section.customers {
	padding: 90px 0px;
	border-bottom: 1px solid #f2f2f2;
	transition: 250ms;
}

@media screen and (max-width: 800px) {
	.section.customers {
		padding: 35px 0px;
	}
}

.leading-brands .slick-slide img {
	display: inline-block;
	filter: brightness(0) saturate(100%) invert(15%) sepia(8%) saturate(229%) hue-rotate(156deg) brightness(98%) contrast(96%);
}
/*END BRAND CAROUSEL*/

/*START BACK TO HOME BTN*/
a.home-btn {
	display: inline-block;
	background: #3662F8;
	padding: 11px 15px;
	width: 40px;
	border-radius: 50%;
	position: relative;
	transition: 250ms;
}

a.home-btn i {
	color: #fff;
}

a.home-btn span {
	color: #fff;
	position: absolute;
	left: 33px;
	font-weight: 500;
	visibility: hidden;
	opacity: 0;
	transition: 250ms;
}

a.home-btn:hover {
	width: 140px;
	border-radius: 10px;
}

a.home-btn:hover span {
	visibility: visible;
	opacity: 1;
}
/*END BACK TO HOME BTN*/

.mobile-head {
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(180deg,rgba(240, 249, 255, 1) 30%, rgba(240, 249, 255, 0.79) 65%, rgba(255, 255, 255, 0) 100%);
	display: none;
}

.mobile-head img {
	margin-top: 25px;
	margin-left: 25px;
	max-width: 200px;
}

@media screen and (max-width: 991px) {
	.mobile-head {
		display: inline;
	}
}