@charset "UTF-8";
/* CSS Document */
:root {
	--primary-color: #4a90e2;
	--test-color: #ff0000;
  	--bg-color: #f5f5f5;
	--text-color: #506074;
	--text-light-color: #738aa6;
	--text-color-lime: #d7df23;
	--text-color-dark-lime: #bbc218;
	--text-color-footer: #b4c2d3;
	--max-width: 1000px;
	--cube-width: 300px;
	--translate-z: 150px;
	--circle-size-large: 400px;
	--circle-size-medium: 280px;
	--circle-size-small: 120px;
	--blending: multiply;
	--color1: 182, 193, 222,;
}

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

@keyframes moveInCircle {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes moveVertical{
	0% {
		transform: translateY(-50%);
	}
	50% {
		transform: translateY(50%);
	}
	100% {
		transform: translateY(-50%);
	}
}

@keyframes moveHorizontal{
	0% {
		transform: translateX(-50%) translateY(-10%);
	}
	50% {
		transform: translateX(50%) translateY(10%);
	}
	100% {
		transform: translateX(-50%) translateY(-10%);
	}
}

body {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 14px;
	background: #ebeff6;
	color: var(--text-color);
	line-height: 1.6;
}

header {
	color: #fff;
	padding: 20px;
	text-align: center;
	display: block;
	height: 80px;
	align-items: center;
	position: relative;
}

nav {
  	float: right;
	display: none;
}

nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
}

nav ul li {
  	padding: 5px 10px;
}

nav ul li a {
	color: white;
	text-decoration: none;
	font-weight: bold;
}

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 20px;
}

.grid {
	display: flex;
	gap: 20px;
	text-align: center;
}

.grid > div {
	flex: 1;
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0px 2px 5px rgba(144,156,180,.3);
}

footer {
	padding: 20px;
	margin-top: 40px;
	font-size: 11px;
	background: var(--text-color);
	color: var(--text-color-footer);
}
footer .grid > div { 
	background: none;
	box-shadow: none;
	text-align: left;
}
footer .logo {
	width: 80px;
	height: auto;
	margin: 0;
	mix-blend-mode: screen;
}

.main-wrapper {
	align-items: center;
	display: flex;
	height: 600px;
	justify-content: space-between;
	width: 1000px;
	margin: 0px auto;
	
} 
.main-wrapper .left {
	z-index: 1000;
}
.main-wrapper h3 {
	font-size: 70px;
	line-height: 68px;
	mix-blend-mode: overlay;
	color: rgba(66,101,122,1);
}
svg {
	position: fixed;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
}
.gradients-container {
	filter: url(#goo) blur(10px);
	filter: blur(10px);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	opacity: 0.5;
}
.g1 {
	position: absolute;
	background: rgba(182, 193, 222, .2);
	background: radial-gradient(circle, rgba(182, 193, 222, 1) 0%, rgba(215, 222, 236, 0) 70%);
	mix-blend-mode: var(--blending);
	width: var(--circle-size-large);
	height: var(--circle-size-large);
	top: calc(50% - var(--circle-size-large)/2);
	left: calc(50% - var(--circle-size-large)/2);
	opacity: 1;
	z-index: 1;
	transform-origin: center center;
	animation: moveVertical 24s ease infinite;
}
.g2 {
	position: absolute;
	background: rgba(63, 76, 95, .1);
	background: radial-gradient(circle, rgba(227, 172, 203, .1) 0%, rgba(227, 172, 203, 0) 70%);
	mix-blend-mode: var(--blending);
	width: var(--circle-size-medium);
	height: var(--circle-size-medium);
	top: calc(50% - var(--circle-size-medium)/2);
	left: calc(50% - var(--circle-size-medium)/2);
	opacity: 1;
	z-index: 2;
	transform-origin: calc(50% - 20px);
	animation: moveInCircle 20s reverse infinite;
}
.g3 {
	position: absolute;
	background: rgba(232, 225, 225, .3);
	background: radial-gradient(circle, rgba(235, 233, 176, 1) 0%, rgba(235, 233, 176, 0) 70%);
	mix-blend-mode: var(--blending);
	width: var(--circle-size-medium);
	height: var(--circle-size-medium);
	top: calc(50% - var(--circle-size-medium)/2 - 100px);
	left: calc(50% - var(--circle-size-medium)/2 - 200px);
	opacity: 1;
	z-index: 3;
	transform-origin: calc(50% + 280px);
	animation: moveInCircle 33s linear infinite;
}
.g4 {
	position: absolute;
	background: rgba(200, 200, 200, .2);
	background: radial-gradient(circle, rgba(177, 240, 229, 1) 0%, rgba(177, 240, 229, 0) 70%);	
	mix-blend-mode: var(--blending);
	width: var(--circle-size-large);
	height: var(--circle-size-large);
	top: calc(50% - var(--circle-size-large)/2 + 50px);
	left: calc(50% - var(--circle-size-large)/2 + 150px);
	opacity: 1;
	z-index: 4;
	transform-origin: calc(50% - 120px);
	animation: moveHorizontal 22s ease infinite;
}
.g5 {
	position: absolute;
	background: rgba(256, 256, 256, .2);
	background: radial-gradient(circle, rgba(147, 237, 153, 1) 0%, rgba(64, 143, 67, 0) 70%);		
	mix-blend-mode: var(--blending);
	width: var(--circle-size-large);
	height: var(--circle-size-large);
	top: calc(50% - var(--circle-size-large)/2 - 50px);
	left: calc(50% - var(--circle-size-large)/2 + 80px);
	opacity: 1;
	z-index: 5;
	transform-origin: calc(50% - 100px) calc(50% + 100px);
	animation: moveInCircle 16s ease infinite;
}

.logo {
	width: 90px;
	height: auto;
	margin: 0;
	float: left;
	margin-left: 20px;
	cursor: pointer;
}
.left {
	width: 50%;
}
.cube-container {
	perspective: 1000px;
	z-index: 100;
	mix-blend-mode: multiply;
}
.cube-container .cube {
	width: var(--cube-width);
	height: var(--cube-width);
	transform-style: preserve-3d;
}
.cube-container .cube-face {
	width: var(--cube-width);
	height: var(--cube-width);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	background: #D7DEEC;
	background: -webkit-linear-gradient(285deg, rgba(215, 222, 236, .7) 0%, rgba(255, 255, 255, .7) 64%, rgba(245, 247, 252, .7) 100%);
	background: -o-linear-gradient(285deg, rgba(215, 222, 236, .7) 0%, rgba(255, 255, 255, .7) 64%, rgba(245, 247, 252, .7) 100%);
	background: linear-gradient(15deg, rgba(215, 222, 236, .7) 0%, rgba(255, 255, 255, .7) 64%, rgba(245, 247, 252, .7) 100%);
}

.cube-container .front {
	transform: translateZ(var(--translate-z));
}
.cube-container .back {
	transform: rotateY(180deg) translateZ(var(--translate-z));
}
.cube-container .left {
	transform: rotateY(-90deg) translateZ(var(--translate-z));
	background: #f5f6fa;
	background: -webkit-linear-gradient(bottom, rgba(245, 246, 250, .7) 0%, rgba(251, 252, 254, .7) 20%, rgba(255, 255, 255, .7) 75%, rgba(245, 247, 252, .7) 100%);
	background: -o-linear-gradient(bottom, rgba(245, 246, 250, .7) 0%, rgba(251, 252, 254, .7) 20%, rgba(255, 255, 255, .7) 75%, rgba(245, 247, 252, .7) 100%);
	background: linear-gradient(to top, rgba(245, 246, 250, .7) 0%, rgba(251, 252, 254, .7) 20%, rgba(255, 255, 255, .7) 75%, rgba(245, 247, 252, .7) 100%);
}
.cube-container .right {
	transform: rotateY(90deg) translateZ(var(--translate-z));
	background: #f5f6fa;
	background: -webkit-linear-gradient(bottom, rgba(245, 246, 250, .7) 0%, rgba(251, 252, 254, .7) 20%, rgba(255, 255, 255, .7) 75%, rgba(245, 247, 252, .7) 100%);
	background: -o-linear-gradient(bottom, rgba(245, 246, 250, .7) 0%, rgba(251, 252, 254, .7) 20%, rgba(255, 255, 255, .7) 75%, rgba(245, 247, 252, .7) 100%);
	background: linear-gradient(to top, rgba(245, 246, 250, .7) 0%, rgba(251, 252, 254, .7) 20%, rgba(255, 255, 255, .7) 75%, rgba(245, 247, 252, .7) 100%);
}
.cube-container .top {
	transform: rotateX(90deg) translateZ(var(--translate-z));
	background: #f2f4fa;
	background: -webkit-linear-gradient(300deg, rgba(242, 244, 250, .7) 0%, rgba(255, 255, 255, .7) 50%, rgba(245, 247, 252, .7) 100%);
	background: -o-linear-gradient(300deg, rgba(242, 244, 250, .7) 0%, rgba(255, 255, 255, .7) 50%, rgba(245, 247, 252, .7) 100%);
	background: linear-gradient(30deg, rgba(242, 244, 250, .7) 0%, rgba(255, 255, 255, .7) 50%, rgba(245, 247, 252, .7) 100%);
}
.cube-container .bottom {
	transform: rotateX(-90deg) translateZ(var(--translate-z));
	background: #D7DEEC;
	background: -webkit-linear-gradient(285deg, rgba(215, 222, 236, .7) 0%, rgba(237, 239, 247, .7) 65%, rgba(215, 222, 236, .7) 100%);
	background: -o-linear-gradient(285deg, rgba(215, 222, 236, .7) 0%, rgba(237, 239, 247, .7) 65%, rgba(215, 222, 236, .7) 100%);
	background: linear-gradient(15deg, rgba(215, 222, 236, .7) 0%, rgba(237, 239, 247, .7) 65%, rgba(215, 222, 236, .7) 100%);
}

.hero {
	background: #FFFFFF;
	background: -webkit-linear-gradient(273deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 15%, rgba(233, 237, 245, 1) 42%, rgba(240, 246, 250, 1) 73%, rgba(233, 237, 245, 1) 100%);
	background: -o-linear-gradient(273deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 15%, rgba(233, 237, 245, 1) 42%, rgba(240, 246, 250, 1) 73%, rgba(233, 237, 245, 1) 100%);
	background: linear-gradient(3deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 15%, rgba(233, 237, 245, 1) 42%, rgba(240, 246, 250, 1) 73%, rgba(233, 237, 245, 1) 100%);
	display: block;
	height: 800px;
	clear: both;
	overflow: hidden;
}
.hero:after {
	content: "";
	background: #fff;
	height: 160px;
	transform: skewY(3deg);
	position: absolute;
	left: 0;
	right: 0;
	z-index: -1;
}

.placeholder { 
	text-align: center;
	margin: 40px auto;
	font-weight: 500;
}

h2 {
	font-weight: 500;
	font-size: 16px;
	color: var(--text-light-color);
}
h3 {
	font-weight: 600;
	font-size: 36px;
	line-height: 38px;
}
h4 {
	font-weight: 600;
	font-size: 34px;
	color: var(--text-light-color);
	display: block;
	margin: 0px;
	text-align: left;
}
h5 {
	font-size: 16px;
	margin-bottom: 0px;
}
ul {
	margin-left: 30px;
}
p {
	margin-bottom: 20px;
}
p.callout {
	color: #42657a;
	margin: 20px 0px;
}
.privacy p {
	margin-bottom: 40px;
}
.headlines {
	display: block;
	width: 100%;
}
.sub-heading {
	font-size: 22px;
	font-weight: 500;
	color: var(--text-light-color);
}
.quote {
	font-weight: 500;
	font-size: 28px;
	line-height: 32px;
	color: var(--text-color-dark-lime);
}
.strategic {
	background-color: #ffffff;
	display: block;
	padding: 40px 80px;
	z-index: 6;
	position: relative;
}
.strategic:before {
	content: "";
	background: #fff;
	height: 160px;
	transform: skewY(5deg);
	position: absolute;
	left: 0;
	right: 0;
	z-index: -3;
	margin-top:-110px
}
.strategic:after {
	content: "";
	background: #fff;
	height: 160px;
	transform: skewY(3deg);
	position: absolute;
	left: 0;
	right: 0;
	z-index: -1;
}
.strategic .section-main h2:before {
	content: "";
	background: url("../i/lp_icon_strategic.png") no-repeat center center;
	background-size: contain;
	height: 40px;
	width: 40px;
	display: block;
}
.monetize {
	display: block;
	padding: 40px 80px;
	z-index: 7;
	position: relative;
}
.monetize .section-main h2:before {
	content: "";
	background: url("../i/lp_icon_monetize.png") no-repeat center center;
	background-size: contain;
	height: 40px;
	width: 40px;
	display: block;
}
.monetize .grid:not(:first-child) h2 {
	margin-bottom: 30px;
}
.clients {
	background-color: #ffffff;
	display: block;
	padding: 40px 80px;
	z-index: 6;
	position: relative;
}
.clients:before {
	content: "";
	background: #fff;
	height: 100px;
	transform: skewY(2deg);
	position: absolute;
	left: 0;
	right: 0;
	z-index: -3;
	margin-top:-80px
}
.clients .grid > div {
	box-shadow: none;
}
.divider-blue {
	height: 200px;
	background: #07B1E5;
	background: -webkit-linear-gradient(275deg, rgba(7, 177, 229, 1) 0%, rgba(7, 140, 229, 1) 30%, rgba(7, 181, 229, 1) 37%, rgba(245, 237, 10, 1) 100%);
	background: -o-linear-gradient(275deg, rgba(7, 177, 229, 1) 0%, rgba(7, 140, 229, 1) 30%, rgba(7, 181, 229, 1) 37%, rgba(245, 237, 10, 1) 100%);
	background: linear-gradient(5deg, rgba(7, 177, 229, 1) 0%, rgba(7, 140, 229, 1) 30%, rgba(7, 181, 229, 1) 37%, rgba(245, 237, 10, 1) 100%);
	display: block;
	z-index: 10;
	margin-top: 45px;
	transform: skewY(-3deg);
}
.privacy .divider-blue {
	height: 200px;
	background: #07B1E5;
	background: -webkit-linear-gradient(275deg, rgba(7, 177, 229, 1) 0%, rgba(7, 140, 229, 1) 30%, rgba(7, 181, 229, 1) 37%, rgba(245, 237, 10, 1) 100%);
	background: -o-linear-gradient(275deg, rgba(7, 177, 229, 1) 0%, rgba(7, 140, 229, 1) 30%, rgba(7, 181, 229, 1) 37%, rgba(245, 237, 10, 1) 100%);
	background: linear-gradient(5deg, rgba(7, 177, 229, 1) 0%, rgba(7, 140, 229, 1) 30%, rgba(7, 181, 229, 1) 37%, rgba(245, 237, 10, 1) 100%);
	z-index: -1;
	margin-top: -10px;
	transform: skewY(-3deg);
}
.grid .section-main {
	flex: 1.5;
	box-shadow: none;
	background: none;
	text-align: left;
}
.strategic .grid:first-child div:last-child, .monetize .grid:first-child div:last-child {
	background: none;
	box-shadow: none;
}
.strategic .grid:nth-child(3) {
	margin-top: 30px;
	flex: 2;
}
.strategic .grid:nth-child(3) div:nth-child(1) {
	/*background: url("../i/colossus_bg.png") right center no-repeat transparent;*/
}
.strategic .grid:last-child .grid div {
	box-shadow: none;
	padding: 0px;
	background: none;
}
.strategic .grid:last-child .grid div:last-child {
	flex: 2;
	background: transparent;
}
.partner-divider {
	display: block;
	padding: 220px 240px;
	text-align: center;
}
.partner-wrapper{
	background: #fff;
	padding: 100px 60px;
	box-shadow: 0px 5px 10px rgba(144,156,180,.5);
	border-radius: 8px;
	font-size: 28px;
	font-weight: 600;
	line-height: 32px;
	color: var(--text-light-color);
}
.partner-wrapper:before {
	content: "";
	background: #D7DF23;
	background: -webkit-linear-gradient(264deg, rgba(215, 223, 35, 1) 0%, rgba(237, 247, 37, 1) 46%, rgba(84, 196, 101, 1) 63%, rgba(245, 237, 10, 1) 100%);
	background: -o-linear-gradient(264deg, rgba(215, 223, 35, 1) 0%, rgba(237, 247, 37, 1) 46%, rgba(84, 196, 101, 1) 63%, rgba(245, 237, 10, 1) 100%);
	background: linear-gradient(354deg, rgba(215, 223, 35, 1) 0%, rgba(237, 247, 37, 1) 46%, rgba(84, 196, 101, 1) 63%, rgba(245, 237, 10, 1) 100%);
	height: 210px;
	transform: skewY(-4deg);
	position: absolute;
	left: 0;
	right: 0;
	z-index: -1;
	margin-top: -55px;
}
.client-divider {
	display: block;
	padding: 220px 240px 100px;
	text-align: center;
}
.client-wrapper{
	background: #fff;
	padding: 100px 60px;
	box-shadow: 0px 5px 10px rgba(144,156,180,.5);
	border-radius: 8px;
	font-size: 28px;
	font-weight: 600;
	line-height: 32px;
	color: var(--text-light-color);
	z-index: 2;
}
.client-wrapper:before {
	content: "";
	background: #D7DF23;
	background: -webkit-linear-gradient(264deg, rgba(215, 223, 35, 1) 0%, rgba(237, 247, 37, 1) 46%, rgba(84, 196, 101, 1) 63%, rgba(245, 237, 10, 1) 100%);
	background: -o-linear-gradient(264deg, rgba(215, 223, 35, 1) 0%, rgba(237, 247, 37, 1) 46%, rgba(84, 196, 101, 1) 63%, rgba(245, 237, 10, 1) 100%);
	background: linear-gradient(354deg, rgba(215, 223, 35, 1) 0%, rgba(237, 247, 37, 1) 46%, rgba(84, 196, 101, 1) 63%, rgba(245, 237, 10, 1) 100%);
	height: 300px;
	transform: skewY(-4deg);
	position: absolute;
	left: 0;
	right: 0;
	z-index: -1;
	margin-top: 80px;
}
.client-wrapper:after {
	content: "";
	height: 200px;
	background: #ffffff;
	background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 90%);
	background: -o-linear-gradient(bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 90%);
	background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 90%);
	position: absolute;
	left: 0;
	right: 0;
	z-index: -2;
	margin-top: -140px;
}
.legal-copy-wrapper {
	z-index: 1000;
	margin-top: -80px;
	text-align: left;
	padding: 0px 80px;
	display: block;
	position: relative;
}
.legal-copy-wrapper .grid > div { 
	text-align: left;
	padding: 4% 6%;
}
.legal-copy-wrapper h2 {
	font-size: 36px; 
	color: #fff;
	margin-bottom: 20px;
	mix-blend-mode:color-dodge;
}
a:visited, a:active, a:link {
	color: #0196c3;
}
a:hover {
	color: #0aaee0;
}
/* Mobile Styles */
@media (max-width: 768px) {
	nav ul {
		flex-direction: column;
		align-items: center;
	}

	.grid {
		flex-direction: column;
	}
	.clients .grid {
		flex-direction: row;
	}
	.clients .grid > div {
		padding: 0px;
	}

	.container {
		padding: 10px;
	}
	.legal-copy-wrapper {
		margin-top: -110px;
		padding: 0px 20px;
	}
	.legal-copy-wrapper .grid > div { 
		padding: 5% 8%;
	}
	.cube-container {
		display: none;
	}
	.main-wrapper {
		width: 100%;
	}
	.main-wrapper .left {
		text-align: center;
		width: 100%;
	}
	.hero {
		height:600px;
	}
	.hero:after {
		margin-top: -150px;
	}
	.partner-divider, .client-divider {
		padding: 220px 50px 160px;
	}
	.partner-wrapper, .client-wrapper {
		padding: 100px 10px;
		font-size: 22px;
		line-height: 28px;
	}
	.strategic, .monetize, .clients {
		padding: 30px 20px;
	}
}
