/* Table of Content
==================================================
	#Font-Face
	#Site Styles
	#Media Queries */

/* #Font-Face
================================================== */


/* #Site Styles
================================================== */

/* ### general ### */
:root {
	--color-primary: #7064e9;
	--color-primary-dark: #42358c;
	--color-secondary: #ff980e;
	--color-info: #85a8d4;
	--color-error: #d9534f;
	--color-success: #05b46f;
	--color-warning: #ce0000;
	--color-light: #f5f9fc;
	--color-dark: #58585a;
	--color-dark-alt: #070710;
	--color-dark-blue: #0f1021;
	--color-border: #eee;
	--color-black: #000;
	--color-white: #fff;
	--color-sky: #eff6fb;
	--color-sky-alt: #f3d1ff;
	--color-light-blue: #c4e0f2;
	--color-blue-alt: #ccceef;

	/* Link Style */
	--link-color-base: var(--color-primary);
	--link-decoration-base: underline;
	--link-hover-color-base: var(--color-secondary);
	--link-hover-decoration-base: none;

	/* Transitions */
	--speed-fast: 0.125s;
	--speed-default: 0.25s;
	--speed-slow: 0.5s;
	--speed-sluggish: 1s;
	--speed-snail: 2s;
	--cubic-bezier: cubic-bezier(0.05, 0.69, 0.14, 1);
	--cubic-bezier-2: cubic-bezier(0.215, 0.61, 0.355, 1);

	/* Body Style */
	--body-bg: var(--color-dark-alt);
	--font-family-base: 'Armin Grotesk', sans-serif;
	--font-family-icon: 'Font Awesome 6 Pro', sans-serif;
	--text-color-base: var(--color-white);

	/* Headings Style */
	--heading-margin: 0 0 20px;
	--heading-font-weight: 400;
	--heading-color: inherit;

	/* Font sizes */
	--font-size-base: 12px;
	--font-size-h1: 22px;
	--font-size-h2: 22px;
	--font-size-h3: 24px;
	--font-size-h4: 24px;
	--font-size-h5: 12px;
	--font-size-h6: 10px;
	--font-size-btn: 14px;
	--font-size-input: 14px;

	/* Line heights */
	--line-height-base: 1.4;
	--heading-line-height: 1.2;

	/* Paddings */
	--px-btn: 20px;
	--py-section: 65px;
	--py-section-small: 25px;
	--py-section-medium: 50px;
	--py-section-large: 65px;
	--px-form-control: 15px;
	--py-form-control: 10px;
	--py-gutter-base: 20px;

	/* Heights */
	--height-btn: 32px;
	--height-form-control: 40px;

	/* Widths */
	--width-base: 1190px;
	--width-base-lg: 1320px;

	/* Sizes */
	--size-radius-btn: 40px;
	--size-radius-form: 10px;
	--size-form-check-indicator: 16px;
	--size-accordion-indicator: 10px;
}

@media screen and (min-width: 1024px) {
	:root {
		/* Font sizes */
		--font-size-base: 15px;
		--font-size-h1: 55px;
		--font-size-h2: 38px;
		--font-size-h3: 30px;
		--font-size-h4: 22px;
		--font-size-h5: 20px;
		--font-size-h6: 15px;
		--font-size-input: 20px;

		/* Paddings */
		--px-btn: 25px;
		--py-section: 100px;
		--py-section-small: 50px;
		--py-section-medium: 80px;
		--py-section-large: 130px;
		--px-form-control: 25px;
		--py-form-control: 15px;

		/* Widths */

		/* Heights */
		--line-height-base: 1.6;
		--height-btn: 40px;
		--height-form-control: 60px;

		/* Sizes */
		--font-size-btn: 15px;
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	font-family: var(--font-family-base);
	font-size: var(--font-size-base);
	color: var(--text-color-base);
}

body {
	margin: 0;
	font-family: var(--font-family-base);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	color: var(--text-color-base);
	background: var(--body-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin: var(--heading-margin);
	font-weight: var(--heading-font-weight);
	line-height: var(--heading-line-height);
	color: var(--color-blue-alt);
}

h1,
.h1 {
	font-size: var(--font-size-h1);
}

h1 strong {
	font-weight: 600;
}

h2,
.h2 {
	font-size: var(--font-size-h2);
	font-weight: 200;
}

h3,
.h3 {
	font-size: var(--font-size-h3);
}

h4,
.h4 {
	font-size: var(--font-size-h4);
}

h5,
.h5 {
	font-size: var(--font-size-h5);
}

h6,
.h6 {
	font-size: var(--font-size-h6);
}

p {
	margin: 0 0 16px;
}

ul {
	padding: 0;
	list-style: none;
}


/* CORE > Form */
label {
	margin-bottom: 10px;
	display: block;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.1;
	color: var(--text-color-base);
}

input,
select,
textarea {
	padding: var(--py-form-control) var(--px-form-control);
	display: block;
	width: 100%;
	height: var(--height-form-control);
	font-family: var(--font-family-base);
	font-size: var(--font-size-input);
	font-style: italic;
	color: var(--color-sky-alt);
	border: 1px solid var(--color-sky-alt);
	border-radius: var(--size-radius-form);
	background: transparent;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
	color: inherit;
}

input:focus:not(:read-only):not([type='submit']):not([type='reset']):not([type='button']),
select:focus:not(:read-only):not([type='submit']):not([type='reset']):not([type='button']),
textarea:focus:not(:read-only):not([type='submit']):not([type='reset']):not([type='button']) {
	border-color: var(--color-border);
}

input.is-error,
select.is-error,
textarea.is-error {
	border-color: var(--color-error);
}

input:disabled,
select:disabled,
textarea:disabled {
	opacity: 0.8;
	color: var(--color-border);
	background-color: var(--color-white);
}

input[type='radio'],
input[type='checkbox'] {
	margin-right: 10px;
	padding: 0;
	display: inline-block;
	height: auto;
}

input[type='radio'],
input[type='checkbox'],
input[type='submit'],
input[type='reset'],
input[type='button'] {
	display: inline-block;
	width: auto;
}

input[type='radio']:checked + label:before {
	transform: scale(1);
}

input[type='radio'] + label:before {
	position: absolute;
	top: 4px;
	left: 4px;
	z-index: 1;
	width: 11px;
	height: 11px;
	border-radius: 40px;
	background: var(--color-primary);
	transform: scale(0);
	transition: all 0.3s;
	content: '';
}

input[type='radio'] + label:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 19px;
	height: 19px;
	border: 1px solid var(--color-dark);
	border-radius: 40px;
	background: var(--color-sky);
	content: '';
}

input[type='radio'] + label {
	margin-bottom: -7px;
	padding-left: 30px;
	cursor: pointer;
}

.radio input[type='radio'] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.radio {
	position: relative;
}

select {
	background-image: url('data:image/png;base64,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');
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: auto 5px;
	appearance: none;
}

textarea {
	width: 100%;
	height: 130px;
}

/* CORE > Links and Buttons */
a {
	text-decoration: underline;
}

a:hover,
a:focus {
	text-decoration: none;
}

a,
button,
.button {
	transition: color 0.3s, opacity 0.3s;
}

.button:after {
	margin-top: -8px;
	position: absolute;
	top: 50%;
	right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	font-family: 'icomoon', sans-serif;
	font-size: 16px;
	line-height: 1;
	transition: all 0.3s;
	content: '\e901';
	@media screen and (min-width: 1024px) {
		font-size: 20px;
	}
}

.button:before {
	margin-top: -8px;
	position: absolute;
	top: 50%;
	right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	width: 16px;
	height: 16px;
	font-family: 'icomoon', sans-serif;
	font-size: 16px;
	line-height: 1;
	transform: translateX(-20px);
	transition: transform 0.4s, opacity 0.4s;
	content: '\e901';
	@media screen and (min-width: 1024px) {
		font-size: 20px;
	}
}

.button.button--black:not(:hover) {
	color: var(--color-white);
	background: var(--color-black);
}

.button {
	padding-top: 2px;
	padding-right: 44px;
	padding-left: var(--px-btn);
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: var(--height-btn);
	font-family: var(--font-family-base);
	font-size: var(--font-size-btn);
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
	color: var(--color-primary-dark);
	border: 0;
	border-radius: 25px;
	background: var(--color-white);
	touch-action: manipulation;
	cursor: pointer;
}

.button:hover {
	color: var(--color-white);
	background: linear-gradient(to right, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
}

.button:hover:after {
	opacity: 0;
	transform: translateX(20px);
}

.button:hover:before {
	opacity: 1;
	transform: none;
}

.button.button-outline:hover span:after {
	opacity: 0;
}

.button.button-outline span:after {
	position: absolute;
	top: 1px;
	left: 1px;
	z-index: -1;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	border-radius: 25px;
	background-color: var(--color-black);
	transition: all 0.3s;
	content: '';
}

.button.button-outline {
	color: var(--color-white);
	background-image: linear-gradient(to right, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
}

:focus {
	outline: none;
}

/* ### global classes ### */
.clear {
	visibility: hidden;
	clear: both;
	height: 0;
	line-height: 0;
}


.hidden {
	display: none;
}


/* ### wrapper ### */
.wrapper {
	position: relative;
	display: block;
	width: 100%;
	min-height: 100%;
	overflow: hidden;
}

/* ### header ### */
#get-header-section{
	position: sticky;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	background: var(--color-sky-alt);
	transition: all 400ms;
}

.header-inner {
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1360px;
	height: 70px;
	transition: all 400ms;
}

.header .header-logo {
	margin: 2px 0 -4px;
	position: relative;
	z-index: 9;
	display: block;
	width: 140px;
	line-height: 1.2;
}

.header .header-logo img {
	width: 100%;
	transition: all 400ms;
}

.header .header-phone-btn {
	position: relative;
	z-index: 9;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 20px;
	text-decoration: none;
	color: var(--color-dark-alt);
}

.header .button {
	display: none;
}

.header .menu-toggle {
	margin-right: 20px;
	position: relative;
	z-index: 15;
	display: block;
	width: 20px;
	height: 20px;
	transition: 0.2s;
	cursor: pointer;
	overflow: hidden;
}

.header .menu-toggle span {
	position: absolute;
	top: 50%;
	left: 1px;
	display: block;
	width: 18px;
	height: 2px;
	text-indent: -9999px;
	border-radius: 5px;
	background: var(--color-dark-alt);
	transition: 0.2s;
}

.header .menu-toggle span:before,
.header .menu-toggle span:after {
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 5px;
	background-color: var(--color-dark-alt);
	transition-duration: 0.2s, 0.2s;
	content: '';
}

.header .menu-toggle span:before {
	top: -5px;
}

.header .menu-toggle span:after {
	bottom: -5px;
}

.header .menu-toggle.active span {
	background: none;
}

.header .menu-toggle.active span:before,
.header .menu-toggle.active span:after {
	transition-delay: 0s, 0.2s;
}

.header .menu-toggle.active span:before {
	top: 0;
	transform: rotate(45deg);
}

.header .menu-toggle.active span:after {
	bottom: 0;
	transform: rotate(-45deg);
}

.sticky-header .header-inner {
	height: 70px;
}

.sticky-header .header-logo img {
	width: 80%;
}

@media screen and (max-width:480px){
	.sticky-header .header-logo img {
		width: 100%;
	}
}

@media screen and (min-width: 1024px) {
	.header .button {
		display: inline-flex;
	}

	.header .menu-toggle,
	.header .header-phone-btn {
		display: none;
	}

	.header-inner {
		height: 90px;
	}

	.header .header-logo {
		margin: 0;
		width: 168px;
	}
}

/* ### header-menu ### */
.header-menu ul li a {
	position: relative;
	display: inline-block;
	font-size: 22px;
	text-decoration: none;
	color: var(--color-dark-alt);
}

.header-menu ul li a:after {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 0;
	height: 1px;
	background: var(--color-dark-alt);
	content: '';
}

.header-menu ul li a:hover:after,
.header-menu ul li.is-active a:after {
	width: 100%;
}

@media screen and (min-width: 1024px) {
	.header-menu {
		display: block;
	}

	.header-menu ul li {
		padding: 0 10px;
	}

	.header-menu ul li a {
		font-size: 16px;
	}

	.header-menu ul {
		display: inline-flex;
		justify-content: center;
	}

	.header-menu ul li a:after {
		transition: 0.2s;
	}
}

@media screen and (min-width: 1200px) {
	.header-menu ul li {
		padding: 0 20px;
	}
}

@media screen and (max-width: 1023px) {
	.header-menu {
		position: fixed;
		top: 0;
		left: 0;
		opacity: 0;
		visibility: hidden;
		width: 100%;
		height: 100vh;
		background: var(--color-sky-alt);
		transition: all 0.3s;
	}

	.header-menu.open {
		opacity: 1;
		visibility: visible;
	}

	.header-menu ul {
		padding: 140px 20px 20px;
		text-align: center;
	}

	.header-menu ul li {
		margin-bottom: 10px;
	}
}

/* ### copy section ### */
.banner {
	padding-top: 40px;
	position: relative;
	z-index: 1;
	width: 100%;
	background-image: url('../images/wave.png');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
}

.banner-slider {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.banner-name {
	font-size: 10px;
}

.banner-name strong {
	font-weight: 600;
}

.banner .slick-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
}

.banner-image {
	margin-right: auto;
	margin-left: auto;
	width: 100%;
	max-width: 300px;
	margin-top: auto;
}

.banner-slider .slick-track {
	display: flex;
}

.banner-slider .slick-track:after,
.banner-slider .slick-track:before {
	display: none;
}

.banner-slide.slick-slide {
	display: flex;
	height: auto;
	flex-direction: column;
}

@media screen and (min-width: 768px) {
	.banner-slide.slick-slide {
		flex-direction: row-reverse;
		justify-content: space-between;
	}

	.banner-image,
	.banner-block {
		align-self: center;
		width: 50%;
		max-width: unset;
	}

	.banner {
		/*margin-top: 90px;*/
		padding-top: 0;
		padding-bottom: 110px;
	}

	.banner-name {
		font-size: 16px;
	}

	.banner .slick-dots {
		bottom: 50px;
	}
}

@media screen and (min-width: 1024px) {
	.banner {
		/*margin-top: 90px;*/
	}
}

@media screen and (min-width: 1200px) {
	.banner-image,
	.banner-block {
		width: 45%;
	}
}

@media screen and (min-width: 1400px) {
	.banner-image,
	.banner-block {
		width: 43.5%;
	}
}

/* ### video section ### */
.video-block {
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
	width: 100%;
}

.video-block-inner {
	/*padding-bottom: 45%;*/
	position: relative;
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
	-webkit-mask-image: -webkit-radial-gradient(white, black);
}

.video-block-inner button {
	position: absolute;
	right: 15px;
	bottom: 15px;
	z-index: 1;
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	border: 0;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.5);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 70% auto;
	cursor: pointer;
}

.video-block-inner button.is-muted {
	background-image: url('../images/unmute_icon.svg');
}

.video-block-inner button.is-unmuted {
	background-image: url('../images/mute_icon.svg');
}

.video-block-holder {
	padding: 1px;
	position: relative;
	display: block;
	width: 100%;
	color: var(--color-white);
	border-radius: 20px;
	background-image: linear-gradient(to right, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
}

.video-block-holder span {
	position: absolute;
	top: 50%;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	font-size: 33px;
	line-height: 1.4;
	text-align: center;
	color: var(--color-sky-alt);
	transform: translateY(-50%);
}

.video-block-holder span i {
	width: 100%;
	font-size: 60px;
	color: var(--color-white);
}

.video-block-holder img,
.video-block-holder video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.5s;
}

#reel-video{
	display: block;
	max-height: 570px;
}

.video-block-inner iframe{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 126%;
	overflow: hidden;
	border-radius: 20px;
	transform: translate(-50%, -50%);
}

.video-block-holder:hover img {
	transform: scale(1.1);
}

@media screen and (min-width: 768px) {
	.video-block-inner,
	.video-block-holder img,
	.video-block-holder video {
		border-radius: 50px;
	}

	.video-block-holder {
		border-radius: 50px;
	}

	.video-block {
		margin-top: -110px;
		margin-bottom: 55px;
	}

	.video-block-holder span {
		font-size: 55px;
	}

	.video-block-holder span i {
		font-size: 90px;
	}

	.video-block-inner button {
		right: 30px;
		bottom: 30px;
	}
}

/* ### media section ### */
.media-block {
	margin-bottom: var(--py-section);
	position: relative;
	z-index: 2;
	width: 100%;
}

.media-block-inner {
	padding: 1px;
	position: relative;
	width: 100%;
	border-radius: 20px;
	background-image: linear-gradient(to left, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
}

.media-block-holder {
	padding: 22px 22px 30px;
	position: relative;
	display: block;
	width: 100%;
	border-radius: 20px;
	background-color: var(--color-dark-alt);
/*	background-image: url('../images/media-img-small.png');*/
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
	overflow: hidden;
}

@media screen and (min-width: 768px) {
	.media-block-col {
		max-width: 55%;
	}

	.media-block-inner {
		border-radius: 50px;
	}

	.media-block-holder {
		padding: 30px 50px;
		border-radius: 50px;
/*		background-image: url('../images/media-img.png');*/
		background-size: 100% auto;
	}
}

@media screen and (min-width: 1200px) {
	.media-block-col {
		max-width: 50%;
	}
}

/* ### text section ### */
.text-block {
	margin-bottom: var(--py-section);
	position: relative;
	z-index: 2;
	width: 100%;
}

.text-block-holder {
	position: relative;
	display: block;
	width: 100%;
	border-radius: 20px;
}

.text-block-title h2 {
	display: none;
	font-size: var(--font-size-h2);
}

.text-block-title h2.is-active {
	display: inherit;
}

.text-block-image {
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 220px;
}

.text-block-image img {
	display: block;
	width: 100%;
}

.text-block-video {
	position: absolute;
	top: 11px;
	left: 11px;
	width: calc(100% - 25px);
	height: calc(100% - 20px);
	overflow: hidden;
	border-radius: 15px;
}

.text-block-video link {
	display: none;
}

.text-block video {
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.text-block-holder ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.text-block-holder ul li {
	margin: 0 10px 10px 0;
}

.text-block-holder ul li a:after {
	position: absolute;
	top: 1px;
	right: 1px;
	bottom: 1px;
	left: 1px;
	z-index: -1;
	display: block;
	border-radius: 50px;
	background-color: var(--color-dark-blue);
	transition: all 0.3s;
	content: '';
}

.text-block-holder ul li a {
	padding: 0 20px;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	height: 46px;
	font-size: 16px;
	text-decoration: none;
	color: var(--color-blue-alt);
	border-radius: 50px;
	background: linear-gradient(to right, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
}

.text-block-holder ul li a:hover:after {
	opacity: 0;
}

.text-block-holder ul li.is-active a:after {
	opacity: 0;
}

@media screen and (min-width: 768px) {
	.text-block-holder {
		display: flex;
		flex-direction: row-reverse;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		width: 100%;
	}

	.text-block-col {
		max-width: calc(100% - 290px);
	}

	.text-block-holder ul li {
		margin-right: 15px;
		margin-bottom: 15px;
	}

	.text-block-holder ul li a {
		padding-right: 45px;
		padding-left: 45px;
		height: 56px;
	}
}

@media screen and (min-width: 1024px) {
	.text-block-holder {
		border-radius: 50px;
	}

	.text-block-image {
		margin-top: 0;
	}

	.text-block-title h2 {
		font-size: 50px;
	}
}

@media screen and (min-width: 1200px) {
	.text-block-col {
		max-width: calc(100% - 600px);
	}

	.text-block-image {
		max-width: 298px;
	}
}


/* ### testimonial section ### */
.testimonial {
	margin-bottom: var(--py-section);
	position: relative;
	z-index: 2;
	width: 100%;
}

.testimonial-holder {
	padding: 25px;
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	color: var(--color-white);
	border: 1px solid var(--color-white);
	border-radius: 20px;
	overflow: hidden;
}

.testimonial-holder h2:after {
	margin: 20px auto;
	display: block;
	width: 80px;
	height: 3px;
	background: var(--color-white);
	content: '';
}

.testimonial-logo {
	margin: 0 auto;
	display: block;
	width: 58px;
}

@media screen and (min-width: 1024px) {
	.testimonial-holder {
		padding: 50px;
		border-radius: 40px;
	}

	.testimonial-holder h2:after {
		margin: 20px auto 30px;
		width: 90px;
		height: 6px;
	}

	.testimonial-logo {
		width: 140px;
	}
}

@media screen and (min-width: 1200px) {
	.testimonial-holder {
		margin: auto;
		padding: 60px 150px;
		max-width: 970px;
	}

	.testimonial-holder h2 {
		line-height: 50px;
	}
}

/* ### testimonial-slider section ### */
.testimonial-slider {
	margin-bottom: var(--py-section);
	position: relative;
	z-index: 2;
	width: 100%;
}

.testimonial-slider-slide {
	padding: 1px;
	width: 100%;
	height: auto;
	border-radius: 20px;
	background-image: linear-gradient(to right, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
}

.testimonial-slider-inner {
	padding: 25px;
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	border-radius: 20px;
	overflow: hidden;
	background: var(--color-dark-blue);
}

.testimonial-slider h2 {
	font-weight: 400;
}

.testimonial-slider p strong {
	font-size: 20px;
	font-weight: 600;
}

.testimonial-slider p {
	margin-bottom: 0;
	font-size: 16px;
}

.testimonial-slider h2:after {
	margin: 20px auto;
	display: block;
	width: 80px;
	height: 3px;
	background: var(--color-blue-alt);
	content: '';
}

.testimonial-slider .slick-track {
	display: flex;
}

.testimonial-slider .slick-track .slick-slide {
	display: flex;
}

.testimonial-slider .slick-track:after,
.testimonial-slider .slick-track:before {
	display: none;
}

@media screen and (min-width: 1024px) {
	.testimonial-slider-slide {
		border-radius: 40px;
	}

	.testimonial-slider-inner {
		padding: 50px;
		border-radius: 40px;
	}

	.testimonial-slider p strong {
		font-size: 24px;
	}

	.testimonial-slider p {
		font-size: 18px;
	}

	.testimonial-slider h2 {
		font-size: 32px;
	}
}

@media screen and (min-width: 1200px) {
	.testimonial-slider-holder {
		margin: auto;
		max-width: 970px;
	}

	.testimonial-slider-inner {
		padding: 60px 100px 40px;
	}
}

/* ### features section ### */
.features {
	margin-bottom: var(--py-section);
	position: relative;
	z-index: 2;
	width: 100%;
}

.features h2 {
	margin-bottom: 30px;
	text-align: center;
}

.features-list {
	margin: 0 -10px;
	width: calc(100% + 20px);
}

.features-item {
	margin: 5px 0;
	padding: 10px;
	width: 33.333%;
}

.features-link {
	display: block;
	font-size: 14px;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	color: var(--color-white);
	transition: all 0.3s;
}

.features-link:hover .features-icon {
	border-color: rgba(255, 255, 255, 0.2);
}

.features-icon {
	margin: 0 auto 20px;
	padding: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border: 1px solid transparent;
	border-radius: 50%;
	background: var(--color-dark-blue);
	transition: all 0.3s;
}

@media screen and (min-width: 768px) {
	.features-list {
		margin: 0 -10px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width: calc(100% + 20px);
	}

	.features-item {
		width: 130px;
	}

	.features-link {
		font-size: 16px;
	}
}

/* ### brands section ### */
.brands {
	margin-bottom: var(--py-section);
	position: relative;
	z-index: 2;
	width: 100%;
}

.brands h2 {
	margin-bottom: 30px;
	text-align: center;
}

.brands ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}

.brands ul li {
	margin: 5px 0;
	padding: 10px 5px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	width: 25%;
	height: 40px;
}

.brands ul li img {
	max-height: 100%;
	object-fit: contain;
}

@media screen and (min-width: 1024px) {
	.brands ul li {
		margin: 10px 0;
		padding: 20px;
		height: 80px;
	}
}

@media screen and (min-width: 1200px) {
	.brands ul {
		padding-top: 30px;
	}

	.brands ul li {
		width: 20%;
	}
}

/* ### action section ### */
.action {
	margin-bottom: var(--py-section-large);
	position: relative;
	z-index: 2;
	width: 100%;
}

.action-holder .button span:after {
	background: var(--color-dark-blue);
}

.action-holder {
	padding: 30px;
	width: 100%;
	border-radius: 25px;
	background: var(--color-dark-blue);
}

@media screen and (min-width: 1024px) {
	.action-holder {
		padding: 60px 70px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.action-left {
		width: 60%;
	}

	.action-right {
		margin-left: auto;
		display: block;
		width: 32%;
		text-align: center;
	}
}

/* ### heading section ### */
.heading {
	padding-top: 90px;
	position: relative;
	z-index: 2;
	width: 100%;
	text-align: center;
}

.heading p {
	font-size: 20px;
}

@media screen and (min-width: 1024px) {
	.heading {
		/*padding-top: 165px;*/
	}

	.heading-inner {
		margin: 0 auto;
		padding: 0 200px 25px;
	}

	.heading p {
		font-size: 23px;
	}
}

/* ### about-intro section ### */
.about-intro {
	margin-bottom: var(--py-section);
	padding-top: 60px;
	position: relative;
	z-index: 2;
	width: 100%;
}

.about-intro p {
	font-size: 14px;
	line-height: 1.6;
}

.about-intro-title {
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	width: 100%;
}

.about-intro-title span:after {
	position: absolute;
	top: 1px;
	left: 1px;
	z-index: -1;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	border-radius: 50px;
	background-color: var(--color-dark-alt);
	transition: all 0.3s;
	content: '';
}

.about-intro-title span {
	padding: 0 50px;
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 70px;
	font-size: 19px;
	border-radius: 50px;
	background-image: linear-gradient(to right, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
}

@media screen and (min-width: 1024px) {
	.about-intro-inner {
		padding: 0 90px;
	}

	.about-intro p {
		font-size: 16px;
		line-height: 28px;
	}
}

/* ### about brand section ### */
.about-brand {
	padding-top: 40px;
	padding-bottom: 40px;
	position: relative;
	z-index: 2;
	width: 100%;
	text-align: center;
	font-size: 14px;
	line-height: 1.6;
	background-color: var(--color-dark-blue);
}

.about-brand-title {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	width: 100%;
}

.about-brand-inner {
	color: inherit;
	text-decoration: none;
}

@media screen and (min-width: 1024px) {
	.about-brand {
		font-size: 16px;
		padding-top: 80px;
		padding-bottom: 80px;
	}
}

/* ### tab section ### */
.tab-section {
	margin-bottom: var(--py-section-small);
	padding-top: 120px;
	position: relative;
	z-index: 2;
	width: 100%;
	text-align: center;
}

.tab-section p {
	margin-bottom: 8px;
	display: flex;
	justify-content: flex-end;
}

.tab-section p a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--color-white);
}

.tab-section p a:hover {
	opacity: 0.8;
}

.tab-section p img {
	margin-right: 5px;
	width: 28px;
	height: auto;
}

.tab-section ul {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--color-primary);
	border-radius: 14px;
}

.tab-section ul li {
	width: 100%;
	border-bottom: 1px solid var(--color-primary);
}

.tab-section ul li:last-child {
	border: 0;
}

.tab-section ul li a {
	padding: 10px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	font-size: 20px;
	text-decoration: none;
	color: var(--color-primary);
}

.tab-section ul li:first-child a {
	border-radius: 10px 10px 0 0;
}

.tab-section ul li:last-child a {
	border-radius: 0 0 14px 14px;
}

.tab-section ul li.is-active a,
.tab-section ul li a:hover {
	color: var(--color-white);
	background: var(--color-primary);
}

.tab-section ul li.is-active a:after,
.tab-section ul li a:hover:after {
	opacity: 1;
}

@media screen and (min-width: 768px) {
	.tab-section ul li:first-child a {
		border-radius: 14px 0 0 14px;
	}

	.tab-section ul li:last-child a {
		border-radius: 0 14px 14px 0;
	}

	.tab-section ul li {
		width: 33.333%;
		border-right: 1px solid var(--color-primary);
		border-bottom: 0;
	}

	.tab-section ul li a {
		font-size: 22px;
	}
}

@media screen and (min-width: 1024px) {
	.tab-section {
		/*padding-top: 165px;*/
	}

	.tab-section ul li a {
		height: 70px;
		font-size: 28px;
	}
}

@media screen and (min-width: 1200px) {
	.tab-section ul li a {
		height: 86px;
		font-size: 34px;
	}
}

/* ### popup form ### */
.popup-form {
	padding: 1px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	border-radius: 20px;
	max-width: var(--width-base);
	background-image: linear-gradient(to right, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
}

.popup-form .mfp-close {
	opacity: 1;
	font-size: 24px;
	font-weight: 300;
	font-family: var(--font-family-base);
	color: transparent;
	background-image: url('../images/close.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 15px auto;
}

.popup-form-inner {
	padding: 30px;
	position: relative;
	display: block;
	width: 100%;
	border-radius: 20px;
	background: var(--color-dark-blue);
}

.popup-form-inner h2 {
	text-align: center;
}

.popup-form-holder {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.popup-form-field {
	width: 100%;
	margin-bottom: 15px;
	padding-left: 15px;
	padding-right: 15px;
}

.popup-form-button {
	text-align: center;
}

.popup-form-button .button.button-outline span:after {
	background: var(--color-dark-blue);
}

@media screen and (min-width: 768px) {
	.popup-form-inner {
		padding: 60px;
	}

	.popup-form-field {
		width: 50%;
		margin-bottom: 30px;
	}

	.popup-form .mfp-close {
		right: 30px;
		top: 30px;
		background-size: 15px auto;
	}

	.popup-form .mfp-close:before {
		content: 'Close';
		display: block;
		right: 100%;
		top: 50%;
		font-size: 18px;
		transform: translateY(-50%);
		position: absolute;
		color: var(--color-sky-alt);
	}
}

@media screen and (min-width: 1024px) {
	.popup-form-inner {
		padding: 100px;
	}

	.popup-form-field {
		margin-bottom: 40px;
	}
}

/* ### gallery-tab section ### */
.gallery-tab {
	margin-bottom: var(--py-section-medium);
	position: relative;
	z-index: 2;
	width: 100%;
}

.gallery-tab ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.gallery-tab ul li {
	padding: 0 5px 10px;
}

.gallery-tab ul li a {
	padding: 0 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	text-decoration: none;
	color: var(--color-primary);
	border-radius: 40px;
	background: var(--color-dark-blue);
	transition: all 0.3s;
}

.gallery-tab ul li a:hover,
.gallery-tab ul li.is-active a {
	color: var(--color-white);
	background: var(--color-primary);
}

.gallery-loading {
	display: flex;
	justify-content: center;
}

@media screen and (min-width: 1024px) {
	.gallery-tab ul li a {

	}
}

/* ### news-section ### */
.news-section {
	margin-bottom: var(--py-section);
	position: relative;
	z-index: 2;
	width: 100%;
}

.news-section-top {
	margin-bottom: 20px;
}

.news-section-bottom {
	display: flex;
	flex-wrap: wrap;
}

.news-section-left {
	width: 100%;
}

.news-section-right {
	width: 100%;
}

.news-section-col {
	margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
	.news-section-top {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}

	.news-section-top h2 {
		margin-bottom: 0;
	}

	.news-section-left {
		margin: 0 -15px 30px;
		display: flex;
		flex-wrap: wrap;
		width: calc(100% + 30px);
	}

	.news-section-col {
		margin-bottom: 0;
		padding: 0 15px;
		width: 50%;
	}

	.news-section-right {
		width: 100%;
	}
}

@media screen and (min-width: 1024px) {
	.news-section-left {
		margin-bottom: 0;
		width: 68%;
	}

	.news-section-right {
		padding-left: 30px;
		width: 34%;
	}

	.news-section-top {
		margin-bottom: 40px;
	}
}

.button-alt {
	padding: 10px 30px;
	display: inline-flex;
	align-items: center;
	height: 58px;
	font-size: 12px;
	text-decoration: none;
	color: var(--color-white);
	border-radius: 8px;
	background: var(--color-primary);
}

.button-alt:hover {
	color: var(--color-primary);
	background: var(--color-white);
}

/* ### card-news ### */
.card-news {
	margin-bottom: 25px;
	padding-bottom: 25px;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	text-decoration: none;
	color: var(--color-blue-alt);
	border-bottom: 2px solid var(--color-blue-alt);
}

.card-news-img {
	display: flex;
	align-items: flex-start;
	width: 104px;
}

.card-news-img img {
	width: 100%;
}

.card-news-text {
	padding-left: 15px;
	width: calc(100% - 104px);
}

.card-news-text p {
	margin-bottom: 0;
}

.card-news-date {
	padding-bottom: 5px;
	color: #64607d;
}

.card-news-date span {
	margin: 0 20px 10px 0;
}

.card-news.is-large {
	margin-bottom: 0;
	padding-bottom: 0;
	display: block;
	border-bottom: 0;
}

.card-news.is-large .card-news-img {
	margin-bottom: 15px;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
}

.card-news.is-large .card-news-text {
	padding: 0;
}

/* ### process section ### */
.process {
	margin-bottom: var(--py-section-large);
	position: relative;
	z-index: 2;
	width: 100%;
}

.process h2 {
	margin-bottom: 30px;
	text-align: center;
}

.process-list {
	margin: 0 auto;
	max-width: 980px;
}

.process-item {
	margin-bottom: 15px;
	padding: 1px;
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	border-radius: 32px;
	background-image: linear-gradient(to right, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
	transition: background-color 0.3s, border-color 0.3s !important;
}

.process-list-holder:nth-child(even) .process-item {
	background-image: linear-gradient(to left, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
}

.process-item:before {
	position: absolute;
	top: 1px;
	left: 1px;
	z-index: -1;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	border-radius: 32px;
	background-color: var(--color-dark-blue);
	transition: all 0.3s;
	content: '';
}

.process-item h2:after {
	position: absolute;
	top: 30px;
	right: 20px;
	display: block;
	width: 22px;
	height: 22px;
	background: url('../images/plus.svg') center center no-repeat;
	transform: translateY(-50%);
	content: '';
}

.process-item.is-active {
	border-color: var(--color-secondary);
	background-color: var(--color-secondary);
}

.process-item.is-active:before {
	opacity: 0;
}

.process-item.is-active h2:after {
	height: 1px;
}

.process-item h2 {
	margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	text-align: left;
	color: var(--color-white);
}

.process-item h2 a {
	display: inline-block;
}

.process-item h2 img {
	margin: -2px 5px 0 0;
	width: 150px;
	height: auto;
	display: block;
}

.process-item p {
	margin-bottom: 0;
}

.process-left {
	padding: 15px 20px;
	width: 100%;
}

.process-right {
	padding: 0 20px 20px;
	display: none;
}

.process-list-plus {
	margin-bottom: 15px;
	font-size: 50px;
	font-weight: 300;
	line-height: 1;
	text-align: center;
}

.process-list-plus img {
	margin-right: auto;
	margin-left: auto;
	display: block;
	width: 21px;
}

.process-link {
	left: 0;
	top: 0;
	text-indent: -9999px;
	width: 100%;
	height: 100%;
	display: none;
	position: absolute;
}

@media screen and (min-width: 1024px) {
	.process-item h2:after {
		display: none;
	}

	.process-item:before {
		border-radius: 305px;
	}

	.process-item {
		margin-bottom: 30px;
		padding: 60px 100px;
		border-radius: 305px;
	}

	.process-left {
		padding: 0;
		width: 48%;
	}

	.process-item.is-active {
		border-color: var(--color-white);
		background-color: transparent;
	}

	.process-item:not(.no-hover):hover:before {
		opacity: 0;
	}

	.process-right {
		margin: 0 !important;
		padding: 0;
		display: block !important;
		width: 52%;
		height: auto !important;
	}

	.process-item h2 img {
		margin: 0;
		width: 340px;
	}

	.process-item h2 {
		display: block;
		font-size: 55px;
		line-height: 70px;
	}

	.process-list-plus {
		margin-bottom: 30px;
		font-size: 100px;
	}

	.process-list-plus img {
		width: 30px;
	}

	.process-link {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	.process-list {
		padding-top: 6px;
	}
}

/* ### awards section ### */
.awards {
	margin-bottom: var(--py-section);
	position: relative;
	z-index: 2;
	width: 100%;
}

.awards h2 {
	margin-bottom: 30px;
	text-align: center;
}

.awards-slide {
	padding-right: 15px;
	position: relative;
/*	width: 248px;*/
	height: auto;
}

.awards-slide .cursor-arrow {
	margin: -50px 0 0 -50px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 4;
	display: none;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	background: url('../images/arrow.svg') center center no-repeat;
	background-size: cover;
	pointer-events: none;
}

.awards-slide:hover .cursor-arrow {
	display: block;
}

.awards .slick-list {
	overflow: visible;
}

.awards-slider .slick-track {
	display: flex;
}

.awards-slider .slick-track:after,
.awards-slider .slick-track:before {
	display: none;
}

.awards-slider .slick-track .awards-slide {
	display: flex;
}

@media screen and (min-width: 1024px) {
	.awards-slide:hover .cursor-arrow {
		display: block;
	}

	.awards {
		margin-bottom: 140px;
	}

	.awards h2 {
		padding-bottom: 15px;
	}

	.awards-slide {
		padding-right: 25px;
/*		width: 370px;*/	
		cursor: none;
	}
}

@media screen and (min-width: 1200px) {
	.awards {
		margin-bottom: 180px;
	}
}

/* ### gallery section ### */
.gallery {
	margin-bottom: var(--py-section);
	position: relative;
	z-index: 2;
	width: 100%;
}

.gallery-list {
	margin: 0 -17px;
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 34px);
}

.gallery-item {
	padding: 0 17px 34px;
	width: 100%;
}

@media screen and (min-width: 768px) {
	.gallery-item {
		width: 50%;
	}
}

@media screen and (min-width: 1024px) {
	.gallery-item {
		width: 33.333%;
	}
}

/* ### member section ### */
.member {
	margin-bottom: var(--py-section-small);
	position: relative;
	z-index: 2;
	width: 100%;
}

.member h2 {
	padding-bottom: 20px;
	text-align: center;
}

.member-list {
	margin: 0 -17px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: calc(100% + 34px);
}

.member-item {
	padding: 0 17px 40px;
	width: 100%;
}

@media screen and (min-width: 768px) {
	.member-item {
		width: 50%;
	}
}

@media screen and (min-width: 1024px) {
	.member-item {
		padding-bottom: 80px;
		width: 33.333%;
	}
}

/* ### founders section ### */
.founders {
	margin-bottom: var(--py-section-large);
	position: relative;
	z-index: 2;
	width: 100%;
}

.founders h2 {
	padding-bottom: 20px;
	text-align: center;
}

.founders-block {
	position: relative;
	margin: auto;
	width: 65%;
	height: 400px;
	border-radius: 20px;
    overflow: hidden;
}

.founders-block:hover img{
	transform: scale(1.1);
}

.founders-block img {
	width: 100%;
	height: 100%;
	filter: grayscale(100);
	border-radius: 20px;
	object-fit: cover;
	transition: all 700ms;
}

.founders-block strong {
	display: block;
	font-weight: 600;
}

.founders-block-left,
.founders-block-right {
	padding: 20px;
	position: absolute;
	bottom: 0;
	font-size: 14px;
}

.founders-block-left {
	left: 0;
}

.founders-block-right {
	right: 0;
	text-align: right;
}

@media screen and (min-width: 768px) {
	.founders-block {
		height: auto;
	}

	.founders-block-right {
		font-size: 18px;
	}
}

@media screen and (min-width: 1024px) {
	.founders-block-left,
	.founders-block-right {
		padding: 55px;
		font-size: 24px;
	}
}

/* ### card-member ### */
.card-member {
	padding: 1px;
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: var(--color-blue-alt);
	border-radius: 20px;
	background-image: linear-gradient(to right, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
	overflow: hidden;
}

.member-item:nth-child(even) .card-member {
	background-image: linear-gradient(to left, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
}

.card-member:after {
	position: absolute;
	top: 1px;
	left: 1px;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	border-radius: 20px;
	background: var(--color-dark-alt);
	content: '';
}

.card-member-img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}

.card-member-img img {
	display: block;
	width: 100%;
	filter: grayscale(100%);
	border-radius: 20px 20px 0 0;
	transition: all 0.5s;
}

.card-member-text {
	padding: 30px;
	position: relative;
	z-index: 1;
	width: 100%;
}

.card-member-text h3 {
	margin-bottom: 10px;
	font-size: 30px;
	line-height: 1;
}

.card-member-text span {
	display: block;
	font-size: 18px;
}

.card-member:hover img {
	transform: scale(1.1);
}

@media screen and (min-width: 1024px) {
	.card-member-text {
		padding: 30px 55px 50px;
	}

	.card-member-text h3 {
		font-size: 45px;
	}

	.card-member-text span {
		display: block;
		font-size: 20px;
	}
}

/* ### card-gallery ### */
.card-gallery {
	position: relative;
	display: block;
	width: 100%;
	color: var(--color-white);
	border-radius: 20px;
	overflow: hidden;
}

.card-gallery img {
	display: block;
	width: 100%;
	border-radius: 20px;
	transition: all 0.5s;
}

.card-gallery:before {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.65) 100%);
	content: '';
}

.card-gallery:after {
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 2;
	font-family: 'icomoon', sans-serif;
	font-size: 40px;
	line-height: 1;
	content: '\e900';
}

.card-gallery:hover img {
	transform: scale(1.1);
}

@media screen and (min-width: 1024px) {
	.card-gallery:after {
		font-size: 50px;
	}
}

/* ### work section ### */
.work {
	margin-bottom: var(--py-section);
	position: relative;
	z-index: 2;
	width: 100%;
}

.work .slick-list {
	overflow: visible;
}

.work-title {
	padding-bottom: 10px;
	position: relative;
	width: 100%;
	text-align: center;
}

.work-inner {
	position: relative;
	width: 100%;
}

.work-for .slick-list .slick-track {
	display: flex;
}

.work-for.slick-initialized .slick-slide {
	display: flex;
}

.work-for .slick-list .slick-track:after,
.work-for .slick-list .slick-track:before {
	display: none;
}

.work-for-slide {
	margin-right: 15px;
	padding: 20px 20px 0;
	position: relative;
	flex-direction: column;
	justify-content: flex-start;
	width: 270px;
	height: auto;
	border-radius: 15px;
	background: var(--color-dark-blue);
	overflow: hidden;
}

.work-for-slide:after {
	position: absolute;
	right: 15px;
	bottom: 15px;
	font-family: 'icomoon', sans-serif;
	font-size: 40px;
	line-height: 1;
	content: '\e900';
}

.work-nav {
	display: none;
}

.work-for-image {
	margin-top: auto;
	padding-bottom: 150%;
	position: relative;
	left: -20px;
	display: block;
	justify-self: flex-end;
	width: calc(100% + 40px);
}

.work-for-image:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.31);
	content: '';
}

.work-for-image img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	object-position: center center;
}

.work .slick-dots {
	padding: 0;
	position: absolute;
	top: 0;
	right: 30px;
	z-index: 9;
	align-content: center;
	width: 30px;
	height: 100%;
}

.work .slick-dots li {
	margin: 5px 0;
	width: 30px;
	height: 30px;
}

.work .slick-dots li button {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.45;
	width: 30px;
	height: 30px;
	color: var(--color-white);
	text-indent: inherit;
	border: 1px solid var(--color-white);
}

.work .slick-dots li.slick-active button {
	opacity: 1;
}

.work .slick-dots li button:after {
	display: none;
}

.work-for-logo {
	display: none;
}

.work-for-logo-white {
	margin-bottom: 15px;
	display: block;
	width: 73px;
}

.work-for-logo-white img {
	width: auto;
	max-width: unset;
	height: 30px;
}

.work-for-slide ul {
	display: none;
}

.work-for-slide ul li {
	margin: 0 10px 10px 0;
}

.work-for-slide ul li span {
	padding: 0 20px;
	display: flex;
	align-items: center;
	height: 40px;
	font-size: 12px;
	text-decoration: none;
	color: var(--color-blue-alt);
	border-radius: 50px;
	background: #574fb7;
}

@media screen and (min-width: 768px) {
	.work-for-slide {
		width: 270px;
	}
}

@media screen and (min-width: 1024px) {
	.work-for {
		padding: 60px;
		position: relative;
		z-index: 9;
		max-width: 510px;
		border-radius: 40px;
		background: var(--color-dark-blue);
		overflow: hidden;
	}

	.work-for-slide:after {
		display: none;
	}

	.work-for-logo {
		margin-bottom: 20px;
		display: block;
		width: 154px;
	}

	.work-for-logo-white {
		display: none;
	}

	.work-title {
		text-align: right;
	}

	.work-image {
		display: none;
	}

	.work-nav {
		position: absolute;
		top: 0;
		left: 170px;
		display: block;
		width: calc(100% - 170px);
		height: 100%;
		border-radius: 40px;
		overflow: hidden;
	}

	.work-nav * {
		height: 100%;
	}

	.work-nav img {
		width: 100%;
		height: 100%;
		border-radius: 40px;
		transition: all 0.5s;
		object-fit: cover;
	}

	.work-nav:hover img {
		transform: scale(1.1);
	}

	.work-nav-slide {
		position: relative;
		display: block;
		width: 100%;
	}

	.work-for-slide {
		margin-right: 0;
		padding: 0 20px 0 0;
	}

	.work-for-slide ul {
		display: flex;
		flex-wrap: wrap;
	}

	.work-nav-slide:after {
		margin-left: 180px;
		position: absolute;
		top: 50%;
		left: 50%;
		font-family: 'icomoon', sans-serif;
		font-size: 90px;
		color: var(--color-white);
		transform: translate(-50%, -50%);
		content: '\e906';
	}

	.work-for-image {
		display: none;
	}

	.work-inner {
		padding-top: 70px;
		padding-bottom: 70px;
	}
}

/* ### card-awards ### */
.card-awards {
	padding: 1px;
	display: flex;
	width: 100%;
	border-radius: 15px;
	background: linear-gradient(to right, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
	pointer-events: none;
	cursor: none;
}

.awards-slide:nth-child(even) .card-awards {
	background: linear-gradient(to left, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
}

.card-awards-inner {
	padding: 30px;
	display: flex;
	flex-direction: column;
	width: 100%;
	border-radius: 15px;
	background: var(--color-dark-blue);
	transition: all 0.3s;
	pointer-events: auto;
}

.card-awards-inner:hover {
	background: transparent;
}

.card-awards h3 {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	font-size: 28px;
	line-height: 33px;
	pointer-events: none;
}

.card-awards h3 img {
	margin-right: 10px;
	width: 38px;
	height: auto;
}

.card-awards h3 span {
	display: block;
	font-size: 80%;
	line-height: 1.4;
}

.card-awards-date {
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-size: 15px;
	pointer-events: none;
}

.card-awards-date img {
	width: auto;
	height: 30px;
}

.card-awards-bottom {
	margin-top: auto;
	width: 100%;
	font-size: 15px;
	pointer-events: none;
}

.card-awards-bottom cite {
	display: block;
	font-style: normal;
	text-align: center;
}

.card-awards-bottom small {
	display: block;
	opacity: 0.5;
	width: 100%;
	font-size: 9px;
	line-height: 12px;
}

.card-awards-bottom span {
	display: block;
	width: 100%;
	font-size: 15px;
	line-height: 20px;
}

@media screen and (min-width: 1024px) {
	.card-awards {
		border-radius: 30px;
	}

	.card-awards-inner {
		padding: 40px;
		border-radius: 30px;
	}

	.card-awards h3 {
		margin-bottom: 30px;
		font-size: 40px;
		line-height: 50px;
	}

	.card-awards h3 img {
		width: 62px;
	}

	.card-awards-date {
		margin-bottom: 30px;
		font-size: 22px;
	}

	.card-awards-bottom small {
		font-size: 13px;
	}

	.card-awards-bottom span {
		font-size: 22px;
		line-height: 30px;
	}
}

.slick-dots {
	padding-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}

.slick-dots li {
	margin: 0 2px;
}

.slick-dots li button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 9px;
	height: 9px;
	text-indent: -9999px;
	border: 1px solid var(--color-white);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.slick-dots li button:after {
	position: relative;
	opacity: 0;
	width: 2px;
	height: 2px;
	border-radius: 50%;
	background: var(--color-white);
	transition: all 0.3s;
	content: '';
}

.slick-dots li.slick-active button:after {
	opacity: 1;
}

@media screen and (min-width: 1024px) {
	.slick-dots li {
		margin: 0 2px;
	}

	.slick-dots li button {
		width: 18px;
		height: 18px;
	}

	.slick-dots li button:after {
		width: 5px;
		height: 5px;
	}
}

/* ### footer container ### */
.footer {
	padding-top: 75px;
	padding-bottom: 15px;
	width: 100%;
	background: var(--color-sky-alt);
	overflow: hidden;
}

.footer-top {
	padding-bottom: 65px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	width: 100%;
}

.footer-title {
	width: 100%;
	font-size: 50px;
	line-height: 50px;
	color: var(--color-black);
}

.footer-right {
	width: 100%;
}

.footer-right h2 {
	padding-top: 10px;
	font-size: 22px;
	font-weight: 300;
	line-height: 30px;
	color: var(--color-black);
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.footer-bottom p {
	margin-bottom: 0;
	color: var(--color-black);
}

.footer-bottom ul {
	display: flex;
	flex-wrap: wrap;
}

.footer-bottom ul li {
	width: 40px;
	height: 40px;
	list-style: none;
	margin-right: 6px;
	border-radius: 50%;
	border: 1px solid #000;
	transition: all 700ms;
}

.footer-bottom ul li svg{
	width: 100%;
	height: 20px;
}

.footer-bottom ul li a {
	display: flex;
    font-size: 22px;
    line-height: 1.2;
    text-decoration: none;
    color: #000;
    transition: all 0.3s;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer-bottom ul li a i {
	display: block;
}

.footer-bottom ul li:hover svg{
	fill: rgba(221, 0, 171, 1);
}

.footer-bottom ul li:hover{
	border: 1px solid rgba(221, 0, 171, 1);
}

.footer .button {
	color: var(--color-white);
	background: var(--color-black);
}

.footer-bottom-logo {
	display: flex;
	text-decoration: none;
	align-items: center;
	color: var(--color-black);
}

.footer-bottom-logo img {
	height: 6px;
	width: auto;
	margin: 0 2px;
}

.footer-bottom-logo{
	filter: grayscale(1);
}

.footer-bottom-logo:hover {
	/*opacity: .8;*/
	filter: grayscale(0);
}



/* #Media Queries
================================================== */
@media only screen and (min-width: 1024px) {
	.footer {
		padding-top: 140px;
		padding-bottom: 40px;
	}

	.footer-top {
		padding-bottom: 90px;
	}

	.footer-title {
/*		width: 40%;*/
		font-size: 90px;
		line-height: 100px;
	}

	.footer-right {
		padding-bottom: 20px;
/*		width: 60%;*/
	}

	.footer-right h2 {
		padding-bottom: 10px;
		font-size: 35px;
		font-weight: 400;
		line-height: 45px;
	}

	.footer-bottom ul li {
		margin-right: 15px;
	}

	.footer-bottom ul li a {
		font-size: 38px;
	}

	.footer-bottom-logo img {
		height: 10px;
		margin: 0 5px;
	}
}

.lds-dual-ring {
	display: inline-block;
	width: 80px;
	height: 80px;
}

.lds-dual-ring:after {
	margin: 8px;
	display: block;
	width: 50px;
	height: 50px;
	border: 6px solid #fff;
	border-color: #fff transparent;
	border-radius: 50%;
	animation: lds-dual-ring 1.2s linear infinite;
	content: ' ';
}

@keyframes lds-dual-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


.cookie-container{
	margin: 50px 0 60px 0;
}

.cookie-link{
	text-decoration: none;
	color: #fff;
	transition: all 500ms;
}

.cookie-list{
	list-style: disc;
    padding: 0 0 0 15px;
    margin-bottom: 20px;
}

/*cookies block start*/
#get-cookie-section{
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 9990;
}

.cookie-block{
	display: none;
	margin-top: 1px;
	padding: 35px 0;
	background: var(--color-dark-blue);
	transition: all 300ms;
}

#get-cookie-section::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background-image: linear-gradient(to right, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
}

.cookie-box{
	display: flex;
}

.cookie-para-block{
	width: 80%;
	padding-right: 50px;
}

.cookie-button-block{
	text-align: center;
	width: 20%;
}

.cookie-para{
	margin: 0;
}

@media screen and (max-width:768px){
	.cookie-box{
		display: block;
	}

	.cookie-para-block{
		width: 100%;
		padding-right: 10px;
	}

	.cookie-button-block{
		text-align: left;
		width: 100%;
		margin-top: 20px;
	}
}
/*cookies block end*/

/*blog page start*/
.blog-pg-title{
	margin: 55px 0 0 0;
}
.blog-section{
	margin: 70px 0;
}

.blog-data-container{
	display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.blog-box{
	text-decoration: none;
	/*position: relative;*/
	padding: 0 10px;
	width: 33.33%;
}


.blog-title-box{
	position: relative;
	padding: 20px 20px;
}

.blog-title-box h3{
	margin: 0;
	font-size: 25px;
	line-height: 33px;
}

.blog-img-box{
	position: relative;
	width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 1px;
    left: 1px;
}

.blog-bg{
	border-radius: 20px;
	overflow: hidden;
}

.blog-container-box{
	border-radius: 20px;
    background-image: linear-gradient(to right, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
    position: relative;
    z-index: 1;
}

.blog-container-box:after{
	position: absolute;
    top: 1px;
    left: 1px;
    z-index: -1;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 20px;
    background-color: var(--color-dark-alt);
    transition: all 0.3s;
    content: '';
}


@media screen and (max-width:480px){
	.blog-data-container{
		width: 100%;
		display: block;
	}
}


@media screen and (max-width:768px){
	.blog-data-container{
		width: 100%;
	}

	.blog-box{
		margin-bottom: 20px;
		width: 50%;
	}
}

@media screen and (max-width:1024px){
	.blog-data-container{
		width: 100%;
	}

	.blog-box{
		margin-bottom: 20px;
		width: 50%;
	}
}
/*blog page end*/

/*more vserv start*/
.more-vserv h2{
	margin-top: 70px;
	margin-bottom: 20px;
}

.more-vserv ul{
	display: flex;
	justify-content: center;
}

.more-vserv ul li{
	padding: 15px 15px;
	width: 30%;
}

.product-box{
	background: var(--color-sky-alt);
    padding: 40px 20px;
    border-radius: 20px;
}

.product-box img {
    filter: grayscale(1);
    transition: all .38s;
}

.product-box:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

@media screen and (max-width:768px){
	.more-vserv ul{
		display: block;
		margin: auto;
	}

	.more-vserv h2 {
	    margin-bottom: 20px;
	}

	.more-vserv ul li{
		width: 100%;
	}
}
/*more vserv end*/

/*  riya css for branding page */
/*  riya css for branding page */
main{
	width: 100%;

}

.about-intro-title span{
	padding: 0px 48px;
}
.about-intro-branding{
	padding-top: 140px;
	margin-bottom: 20px;
}
.all-section-adlab-brand{
	width: 100%;
	padding: 0px 90px;
}
.about-intro-title span{
	font-size: 22px;
}
.logo-head{
	font-size: 29px;
	text-align: left;
	font-weight: bold;
}

.first-head-branding p{
	width: 100%;
	font-size:15px;
}
.logo-section{
	padding-bottom: 60px;
}
.dos-section{
	position: relative;
	z-index: 0;
	width: 100%;
	padding: 0;
	margin: 0px 0px 60px 0px;
	
}
.adlab-brand-card-container{
	display: flex;
	justify-content: start;
    flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}
.adlab-card{
	width: 25%;
    padding: 10px 10px 0px 0px;
    /*margin-right: 10px;*/
    margin-top: 10px;  	
}
.image-bg{
	display: inline-block;
	width: 100%;
	background-color: white;
	border: 2px solid #f3d1ff;
}

.adlab-card img{
	
	background: white;
	padding: 30px;
}
.dos-desc{
	
	width:100%;
    display: inline-block;
    font-size: 15px;
    text-align: left;
    padding: 15px 7px 0px 7px;
}
.dos-head{
	font-size: 32px;
	text-align: left;
	font-weight: bold;
}
.download-section{
	width: 100%;
	
	margin: 0px 0px 60px 0px;
}
.download-cards-container{
   width: 100%;
   padding: 0;
   display: flex;
   justify-content: start;
   flex-direction: row;
   flex-wrap: wrap;
}
.download-card {
    border: 1px solid #f3d1ff;
    padding: 20px 5px 0px 10px;
    width: 23.4%;
    border-radius: 10px;
    cursor: pointer;
    margin-right: 15px;
}
.img-container{
	display: inline-block;
	width: 25px;
	height: 25px;
	background: url('../images/brand-download-icon.png');
	background-size: 100% 100%;
	transition: all 500ms;
}
.download-card-text {
    display: inline-block;
    font-size: 16px;
    width: 80%;
    padding-left: 9px;
    padding-right: 10px;
}

.branding-download-img{
	margin-right: 19px;
    margin-top: 10px;
}


.dont-card-container{
   justify-content: start;
}

.note-dont-section{
	width: 100%;
}
.note-text{
	width: 100%;
	font-size: 20px;
    text-align: left;
}
.primary-color-section{
	width: 100%;
	padding-top:30px;
    padding-bottom: 60px;
}
.note-dont-section{
	width: 100%;
}
.color-cards-container{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: start;
	padding-bottom: 30px;
}
.note-text-color{
	font-size: 32px;
	font-weight: bold;
}
.note-text-primary{
	font-size: 24px;
	font-weight: 200;
}
.color-name, .color-code{
	font-size: 25px;
	font-weight: 400;
	color: #fff;
    text-align: left;
    margin-bottom: 5px;
}
.color-name{
	padding-top: 0;
}
.color-code{
	padding-top: 0;
}
.color-card{
	width: 32%;
    padding: 35px 40px;
    margin-right: 15px;
    margin-top: 10px;  
	text-align: center;	
	
}

.blue-card{
	background-color: #0014d2;
	border: 1px solid #0014d2;
}
.violet-card{
	background-color: #c300ec;
	border: 1px solid #c300ec;
}
.red-card{
	background-color: #ff0000;
	border: 1px solid #ff0000;
}
.green-card{
	background-color: #82be42;
	border: 1px solid #82be42;
}
.grey-card{
	background-color: #3e3934;
	border: 1px solid #3e3934;
}
.typography-section{
	width: 100%;
	padding-bottom: 60px;
}
.typo-head{
	width: 100%;
	text-align: left;
	font-size: 32px;
	font-weight: bold;
}
.typo-desc{
	width: 100%;
	text-align: left;
	font-size: 15px;
	color: white;
	font-weight: 400;
}
.type-char-nums{
	width: 100%;
	text-align: left;
	font-size: 28px;
	font-weight: 200;
	padding:20px 0px 20px 0px;
}
.typo-cards-container{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.typo-card {
	width: 24%;
	/* padding:10px 20px; */
	/*margin-right: 28px;
	margin-bottom: 30px;*/
	text-align: center;
	border:1px solid #f3d1ff;
	margin: auto;
}
.char, .char-desc{
	display: inline-block;
}
.char-desc{
	font-size: 1.5rem;
}
.char{
	font-size: 60px;
	margin-top: 34px;
    text-align: center;
}
.f-thin {
    font-weight: 200;
	
}
.f-ultralight {
	
    font-weight: 300;
}

.f-smbold {
    font-weight: 600;
}

.f-bold{
	font-weight: 700;
}

.f-regular {
    font-weight: 400;
}
.heading-font-size{
	font-size: 40px;
}
.margin-right-zero{
	margin-right: 0;
}

.r-founder-section{
	width: 100%;
	padding-bottom: 60px;
	margin-top:60px;
	p{
		width: 100%;
		text-align: left;
		font-size: 15px;
		color: white;
		font-weight: 400;
	}
}
.sectionheading-brand{
	font-size: var(--font-size-h2);
    font-weight: 200;
	margin: var(--heading-margin);	
    line-height: var(--heading-line-height);
    color: var(--color-blue-alt);
	text-align: left;
}
.r-founder-head{

	padding-bottom: 50px;
}
.r-founder{
   width: 100%;
   display: flex;
   flex-direction: row;

}
.r-founder-2{
	flex-direction: row-reverse;
	margin-top: 60px;
}

.r-founder-image{
	width: 40%;

}
.founder-image-r{
	height: 500px;
	margin: 0 auto;
}
.r-founder-description{
	width: 83%;
	padding-top: 10px;
}
.r-founder-name{
	color:#f3d1ff;
	margin-bottom: 10px;
}
.r-founder-designation{
	/* color:var(--color-blue-alt); */
	color:#f3d1ff;
}
.r-founder-para{
	margin-bottom: 20px;
}
.photo-download{
	width: 260px;
	border:1px solid #f3d1ff;
	display: flex;
	flex-direction: row;
	padding: 10px 20px;
	border-radius: 30px;
	cursor: pointer;
	transition: all 500ms;
}
.p-down-text{
    font-size: 18px;
    font-weight: bolder;
    padding: 0px 10px;
    margin-left: 20px;
	color:#f3d1ff;
}
.p-down-img{
	width: 22px;
    height: 22px;
    background: url(../images/brand-download-icon.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-top: 2px;
}
.photo-download:hover{
      background-color: #f3d1ff;
	  div{
		color:black;
	  }
	  .p-down-img{
		background: url(../images/black-branding-download.png);
		background-size: 100% 100%;
    	background-repeat: no-repeat;
	  }
}
.r-f-d-2{
	width: 100%;
	padding-right: 40px;
}

.f-image-tage-2{
	height: 520px;
	width: auto;
}
/* .r-founder-section{
	margin-bottom: 30px;
}	 */
.p-space{
	margin-bottom: 0px;
}
.r-m-h{
	margin: 0;
}
.r-p-b{
	padding-bottom: 0px;
}
/* @media screen and (max-width:744px) {
	
	.adlab-card{
		width: 80%;
	}
	.adlab-card img{
		width: 80%;
		background: white;
		padding: 20px;
	}
	.dos-desc{
		width: 80%;
	}
	
} */

@media screen and (max-width:762px) {
	
	.all-section-adlab-brand{
		width: 100%;
		padding: 0px 40px;
	}
	.heading-font-size {
		font-size: 32px;
	}
	.logos-desc{
		width: 100%;
	}
	.first-head-branding p {
		width: 88%;
		
	}
	.adlab-card{
		width: 100%;
		margin: 0 auto;
		margin-bottom: 20px;
	}
	.adlab-card img{
		width: 100%;
		background: white;
		padding: 20px;
	}
	.dos-desc{
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.download-card {
		width: 100%;
		margin: 10px 10px 20px 10px;
		
	}
	.color-card{
		width: 100%;
	}
	.about-intro-branding {
		margin-bottom: var(--py-section);
		padding-top: 120px;
		position: relative;
		z-index: 2;
		width: 81%;
		text-align: center;
		margin: 0 auto;
		padding-bottom: 40px;
	}
    .color-card{
		margin-bottom: 30px;
		margin: 0 auto;
		margin-bottom: 20px;
	}
	.about-intro-branding{
		padding-top: 70px;
	}
	.typo-card {
		width: 100%;
		margin: 0 auto;
		margin-bottom: 20px;
	}
	.typo-cards-container{
		margin: 0 auto;
	}
	.typo-card{
       margin: 0 auto;
	   margin-bottom: 20px;
	}
	.r-founder-head {
		padding-top: 0;
		padding-bottom: 30px;
	}
	.r-founder{
		display: block;
	}
	.r-founder-image, .r-founder-description{
		width: 100%;
	} 
    .r-founder-image{
		margin-bottom: 10px;
		
	}
	.founder-image-r, .f-image-tage-2{
         width: 100%;
		 height: auto;
	}
	.m-p-bottom{
		margin-bottom: 2px;
	}
	.r-f-d-2 {
		padding-right: 0;
	}
}
.download-card:hover{
	background-color:#f3d1ff ;
	h1{
		color:black;
	}
	.img-container{
		background: url('../images/black-branding-download.png');
		background-size: 100% 100%;
	}

}
.bg-black{
	background-color: black;
	
}
.bg-black img{
	background: black;
}
.padding-top-zero{
        padding-top:0;
}





/*  css code privacy policy page by riya */
.heading-space{
	width: 100%;
	padding-top: 90px;
	margin-bottom: 5px;
}
.policy-section-padding{
	padding-bottom: 0;
}

.policy-list{
	list-style-type: decimal;
	margin-left: 18px;
	font-size: 18px;
	color:#ffff;
}
.policy-link{
	text-decoration: none;
	color:#ffff;
	width: 100%;
	margin-left: 10px;
	transition: all 500ms;
}
.policy-link:hover{
	color:#ccceef;
}
.policy-items{
	padding-bottom: 10px;
}
.space-1{
	width: 100%;
	padding-bottom: 30px;
}
.policy-para{
	font-size: 19px;
	color:#fff;
	margin-bottom: 20px;
}

.overview-section{
	width: 100%;
}
.overview-list{
	list-style-type: disc;
	padding-left: 50px;
	p{
		color:#fff;
		margin-bottom: 10px;
	}
}
.overview-item{
	color:#ccceef;
}
.overview-head{
	font-weight: bolder;
	color:#ccceef;
}
.scope-list{
	margin-bottom: 20px;
}
.scope-item{
	font-size: 18px;

}
.scope-link{
	text-decoration: none;
	color: #ccceef;
}
.scope-link:hover{
	color:#fff;
}
.info-item{
	font-size: 12px;
	padding-bottom: 10px;
	list-style-type: '\2714\0020';
	padding-left: 15px;

}
.info-list{
	padding-left: 20px;
}
.personal-data-list{
	list-style-type: disc;
	padding-left: 20px;
	a{
		display: inline;
		text-decoration: none;
		font-weight: bolder;
		color:#ccceef;
		font-size: 20px;
	}
}
.p-data-item{
	font-size: 12px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.security-list{
	list-style-type: disc;
	padding-left: 20px;
	margin-bottom: 20px;
}
.s-list-item{
	font-size: 18px;
	padding-left: 15px;
}
.mail-link{
	display: inline;
	text-decoration: none;
	font-weight: bolder;
	color:#ccceef;
	font-size: 20px;
}
.h5-p-bottom{
	padding-bottom: 10px;
}
.info-content, .p-data-content,.s-list-item{
	font-size: 14px;
	a{
		font-size: 14px;
	}
}
.policy-container-rdfad{
	.scope-link{
		font-size: 14px;
	}
}
.f12px{
   font-size: 14px;
}
.urllink{
	font-size: 14px;
	
}
.policy-container-rdfad{
	p{
		font-size: 14px;
	}
}
.photo-download{
	text-decoration: none;
}
@media screen and (max-width:480px) {
	.heading-space{
		width: 100%;
		padding-top: 50px;
	}
	
	.policy-items{
        padding-bottom: 15px;
	}
	.policy-link{
		margin-left: 3px;
	}
	.overview-list{
		padding-left: 20px;
	}
	.overview-item{
		padding-bottom: 10px;
	}
	.s-list-item{
		padding-top: 10px;
	}
	.sectionheading-brand{
		font-size: 34px;
	}
}


/* blog section */
.blog-bg{
	border-top-left-radius:20px;
}
.read-btn{
   margin-top:5px;
   transition: all 500ms;
}
.blog-image-section{
	width: 690px;
	img{
		border-radius: 20px;
	}
	
}
.blog-title-r{
	width: 690px;

	padding-top: 20px;
	
}
.blog-margin-center{
	margin: 0 auto;
}
.blog-title-box h3{
	font-size: 22px;
	
}

.blog-content{
	width: 690px; 	
	p{
		font-size: 20px;
		text-align: left;
		
	}
}
.blog-sub-heading{
	padding-top: 20px;
}
.b-t-1{
	list-style-type: '-';
	padding-left: 10px;
	li{
		padding-left: 20px;
		p{
			margin-bottom: 15px;
		}
	}
	li::marker{
		font-size: 20px;
		font-weight: bolder;
	}
}
.b-o-l-1{
	color:#ccceef;
	padding-left: 40px;
	li::marker{
		font-size: 20px;
		font-weight: bolder;
	}
	li{
		p{
			margin-bottom: 15px;
		}
	}
}
.b-o-head{
	color:white;
	li{
		p{
			margin-bottom: 15px;
		}
	}
}
.p-top{
	padding-top: 10px;
}
.txt-color{
	color:#ccceef;
}

.p-top-30{
	padding-top: 30px;
}

.b-2-ol{
	padding-left: 30px;
	li::marker{
		font-size: 23px;
		color:#ccceef;
	}
	li{
		p{
			margin-bottom: 15px;
		}
	}
}
.p-b-2-top{
	padding-top: 10px;
}
.m-b-blog{
	margin-bottom: 50px;
}
.blog-title-box h3{
	height: 102px;
 }
 .blog-box{
	 margin-bottom: 30px;
 }
.fa{
	padding: 0px 5px;	
	color: var(--color-black);
	text-decoration: underline;
    text-underline-offset: 3px; 
}
.fa:hover{
	text-decoration: underline;
    text-underline-offset: 3px; 
}


/*tnc page start*/

.tnc-list {
  counter-reset: section;
  list-style: none;
  padding-left: 0;
}

.tnc-list h3{
	font-size: 25px;
	line-height: 25px;
}

.tnc-list > li {
  counter-increment: section;
  position: relative;
  padding-left: 30px;
}

.tnc-list > li::before {
  	content: counter(section)".";
	position: absolute;
	left: 0;
	font-size: 25px;
	font-weight: var(--heading-font-weight);
	line-height: 1;
	color: var(--color-blue-alt);
}

.tnc-list .decimal-list {
  counter-reset: subsection;
  list-style: none;
  padding-left: 5px;
}

.tnc-list .decimal-list > li {
  counter-increment: subsection;
  position: relative;
  padding-left: 25px;
}

.tnc-list .decimal-list > li::before {
  content: counter(section) "." counter(subsection);
  position: absolute;
  left: 0;
}

.tnc-list .tnc-roman-list {
  list-style-type: lower-roman !important;
  padding-left: 20px;
}

.tnc-list .tnc-roman-list li{
  padding-left: 10px;
}



/*tnc page end*/


@media screen and (max-width:480px){
	.blog-image-section,.blog-title-r,.blog-content{
		width: 100%;
	}
	
	.b-o-head{
		display: inline-block;
	}
	.b-t-1{
		padding-left: 20px;
		li{
			padding-left: 0px;
		}
		
	}
	.b-5-ol{
		padding-left:20px;
	}
	.blog-1 h3{
		height: 132px;
	}

	.tnc-list h3{
		font-size: 17px;
    	line-height: 25px;
	}

	.tnc-list > li::before{
		font-size: 18px;
		line-height: 27px;
	}

}

.bold-text{
	font-weight: 500;
	color: #ccceef;
}

/*team block start*/
.member-container{
	height: 100vh;
	position: relative;
}

.team-circle-sm{
	transform: scale(0.9); 
}

.team-inner-block .swiper{
	pointer-events: none;
}

.our-team-circle{
	margin-top: 30px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	height: 300px;
	width: 300px;
	background: #F15A29;
	border-radius: 50%;
	padding: 50px 30px 50px 50px;
	background: linear-gradient(to right, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
}

.team-title{
	color: #FFF;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px; 
/*	text-transform: uppercase;*/
	margin-bottom: 0;
}

.team-para{
	color: #FFF;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
}

.team-arrow{
	margin-left: -18px;
}

.team-block {
	margin-top: 30px;
    position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0.9);
    width: 650px;
    height: 650px;
    border-radius: 50%;
    overflow: hidden;
}

.team-inner-block {
	cursor: pointer;
	overflow: hidden;
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: url(../images/team/team-bg.png);
    background-position: center center;
    border-radius: 50%;
    top: 40.9%;
    left: 40.9%;
    transform: translate(-50%, -50%);
    transition: all 500ms;
}

.team-inner-block:nth-child(1)  { transform: rotate(36deg)  translate(250px) rotate(-36deg); }
.team-inner-block:nth-child(2)  { transform: rotate(72deg)  translate(250px) rotate(-72deg); }
.team-inner-block:nth-child(3)  { transform: rotate(108deg) translate(250px) rotate(-108deg); }
.team-inner-block:nth-child(4)  { transform: rotate(144deg) translate(250px) rotate(-144deg); }
.team-inner-block:nth-child(5)  { transform: rotate(180deg) translate(250px) rotate(-180deg); }
.team-inner-block:nth-child(6)  { transform: rotate(216deg) translate(250px) rotate(-216deg); }
.team-inner-block:nth-child(7)  { transform: rotate(252deg) translate(250px) rotate(-252deg); }
.team-inner-block:nth-child(8)  { transform: rotate(288deg) translate(250px) rotate(-288deg); }
.team-inner-block:nth-child(9)  { transform: rotate(324deg) translate(250px) rotate(-324deg); }
.team-inner-block:nth-child(10) { transform: rotate(360deg) translate(250px) rotate(-360deg); }

.team-circle{
	pointer-events: none;
	filter: grayscale(1);
	transition: all 500ms;
}

.team-inner-block:hover .team-circle{
	filter: grayscale(0);
}

/*team block end*/

.homepage-banner-section{
	margin-top: 30px;
}

.homepage-banner-wrapper {
	padding: 2px;  /* Thickness of the border */
	border-radius: 30px;
	background: linear-gradient(to right, rgb(221, 0, 171) 0%, rgb(125, 43, 193) 50%, rgb(65, 0, 146) 100%);
}

.homepage-banner {
	background: #070710;
	border-radius: 30px;
	padding-left: 50px;
	position: relative;
	overflow: hidden;
}


.banner-sm-txt {
    display: block;
    font-weight: 300;
    font-size: 35px;
}

.banner-head{
	font-size: 62px;
	line-height: 64px;
}

.inner-banner-head{
	font-size: 32px;
	line-height: 38px;
}

.banner-para{
	font-size: 16px;
}

.homepage-banner-img{
	height: 100%;
/*	position: absolute;*/
	right: 0;
	top: 0;
}

.adlabs-cm-btn{
	color: var(--color-white);
    background: linear-gradient(to right, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
}

.adlabs-pink-btn{
	color: #000;
    background: var(--color-sky-alt);
}

.adlabs-product .adlabs-box{
	position: relative;
}

.adlabs-box p{
	font-size: 14px;
}

.page-section{
	padding: 70px 0;
}

.section-title {
    color: var(--color-blue-alt);
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 41px;
    margin-bottom: 5px;
}

.section-sub-title{
	color: var(--color-blue-alt);
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 31px;
}

.ad-comparision-sec video{
	width: 100%;
}

.adlabs-box{
	padding: 40px 25px;
	border-radius: 25px;
}

.adlabs-box h3{
	color: #FFFFFF;
}

.adlabs-box p{
	min-height: 67px;
}

.gredient-1{
	background: linear-gradient(to right, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
}

.gredient-2{
	background: var(--color-sky-alt);
}

.black-text{
	color: #000 !important;
}

.white-text{
	color: #FFF !important;
}

.features-div{
	background: var(--color-sky-alt);
	padding: 30px 18px;
	border-radius: 20px;
}

.features-div p{
	color: #000000;
}

.gradient-text {
  background-image: linear-gradient(to right, rgb(221, 0, 171) 0%, rgb(125, 43, 193) 50%, rgb(65, 0, 146) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.gradient-line{
	height: 5px;
	background-image: linear-gradient(to right, rgb(221, 0, 171) 0%, rgb(125, 43, 193) 50%, rgb(65, 0, 146) 100%); 
}

/*gradient card start*/
.card-gradient {
	padding: 1px;
	display: flex;
	width: 100%;
	border-radius: 15px;
	background: linear-gradient(to right, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
	pointer-events: none;
	cursor: none;
}

.gradient-slide:nth-child(even) .card-gradient {
	background: linear-gradient(to left, rgba(221, 0, 171, 1) 0%, rgba(125, 43, 193, 1) 50%, rgba(65, 0, 146, 1) 100%);
}

.card-gradient-inner {
	padding: 40px 30px 50px 30px;
	display: flex;
	flex-direction: column;
	width: 100%;
	border-radius: 15px;
	background: var(--color-dark-blue);
	transition: all 0.3s;
	pointer-events: auto;
}

.card-gradient-inner:hover {
	background: transparent;
}

.use-case-title {
	margin-bottom: 24px;
	font-size: 30px;
	line-height: 33px;
	pointer-events: none;
}

.use-case-sub-title {
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 25px;
	pointer-events: none;
}

.use-case-sub-para {
	margin-bottom: 20px;
	font-size: 15px;
	line-height: 20px;
	pointer-events: none;
}

.use-case-sub-value {
	color: #ccceef;
	font-size: 20px;
	line-height: 25px;
	pointer-events: none;
}

.card-gradient-inner{
	position: relative;
}

.use-case-img{
	position: absolute;
	right: 15px;
	bottom: 20px;
}
/*gradient card end*/

.brain-sec{
	margin-top: -10px;
}

.merged-sec{
	margin-top: -60px;
}

.brain-up{
	margin-top: -40px;
}

.brain-sec{
	position: relative;
	z-index: -3;
}

.back-layer{
	z-index: -1;
}

.campaign-exe-section .section-title{
	font-size: 24px;
	line-height: 29px;
}

.campaign-exe-section h5{
	font-weight: 300;
	font-size: 18px;
	line-height: 25px;
}

.awd-name{
	display: flex;
	justify-content: space-between;
}

.awd-box{
	position: absolute;
	color: var(--color-dark-blue);
	padding: 20px;
	background: var(--color-sky-alt);
	width: 200px;
	height: 200px;
	border-radius: 20px;
	bottom: -10%;
	right: -10%;
	z-index: 999;
}

.awd{
	color: var(--color-dark-blue);
}

.awd-img{
	position: absolute;
	bottom: 5px;
	right: 10px;
}

.studio-steps{
	font-size: 25px;
	line-height: 33px;
	font-weight: 300;
}

.trophy-img{
	position: absolute;
	right: 5%;
	top: 0%;
}

.right-brain-sec h3{
	font-size: 22px;
}

.right-brain-sec h5, .left-brain-sec h5{
	font-size: 18px;
}

/*form css start*/
.rq-mark{
	font-size: 23px;
	color: #FF0000;
}

.col-form-label{
	font-weight: 500;
	font-size: 15px;
	line-height: 25px;
	color: #ccceef;
}

.form-row{
	margin-bottom: 36px;
}

.form-control, .form-select{
	height: 40px;
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
	color: #ccceef;
	background: transparent;
	border-radius: 7px;
	padding: 0 12px;
	border: 1px solid #f3d1ff;
}

.form-select option{
	background-color: #070710;
}

.form-check-input{
	border: 2px solid #f3d1ff;
}

.form-select:focus, .form-control:focus, .form-check-input:focus{
	color: #ccceef;
	background: transparent;
	border: 1px solid #f3d1ff;
	box-shadow:none;
}

.error-input{
	border: 1px solid #dc3545;
}
/*form css end*/



/*For Mobile */
@media screen and (max-width:480px){
	.container{
		width: 90%;
	}

	.founders-block {
	    width: 100%; 
	    height: 220px;
	}

	.homepage-banner{
		padding: 0 0 40px;
	}

	.banner-head {
	    font-size: 34px;
	    line-height: 38px;
	    margin: 35px 0 15px 0;
	}

	.banner-para {
	    font-size: 15px;
	    margin-bottom: 15px !important;
	}

	.banner-sm-txt {
	    display: block;
	    font-weight: 300;
	    font-size: 22px;
	}

	.features-text{
		font-size: 20px;
		margin-bottom: 10px;
		margin-top: 30px;
	}

	.ad-comparision-sec .gradient-line{
		margin: auto;
	}

	.mb-sm-heading{
		font-size: 20px;
	}

	.work-for-logo-white img.trophy-img{
		height: 100px !important;
		right: 8%;
		top: 3%;
	}

	.member-container{
		height: 70vh;
	}

	.adlabs-team{
		transform: scale(0.6);
		margin-top: 160px;
	}

	.right-brain-sec h3{
		font-size: 17px;
		margin-bottom: 0;
	}

	.right-brain-sec h5, .left-brain-sec h5{
		font-size: 15px;
		margin: 7px 0;
	}

	.brain-sec ul li{
		height: 110px;
	}

	.adlabs-studio-section h5{
		font-size: 15px;
	}

	.section-sub-title{
		font-size: 18px;
	}
}

/*****Mobile Horizontal view******/
@media screen and (min-width:490px) and (max-width:767px){
	.container{
		width: 90%;
	}

	.homepage-banner{
		padding-left: 20px;
	}
}

/*********Ipad*************/
@media screen and (min-width:768px) and (max-width:991px){
	.container{
		width: 90%;
	}
}

/*********Ipad Pro*************/
@media screen and (min-width:991px) and (max-width:1024px){
	.container{
		width: 90%;
	}
}


@media screen and (min-width:1025px) and (max-width:1250px){
}

