:root {
	--background-color: #211F1F;
}

* {
	box-sizing: border-box;
}

h1, h2, h3 {
	font-family: 'Yeseva One', serif;
	margin: 0;
}

p, a, span {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	color: #211F1F;
	line-height: 150%;
}

a {
	text-decoration: none;
}

a:hover {
	color: var(--accent-color1);
	text-decoration: underline;
}

@keyframes fadein-onload {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes wave {
	0% {
		background-position-x: 1px;
	}

	100% {
		background-position-x: 1500px;
	}
}

@keyframes wave2 {
	0% {
		background-position-x: 0px;
	}

	100% {
		background-position-x: -1500px;
	}
}

@keyframes iconScroll {
	0% {
		background-position-x: 0px;
	}

	100% {
		background-position-x: -1500px;
	}
}

@keyframes iconScrollReverse {
	0% {
		background-position-x: 0px;
	}

	100% {
		background-position-x: 1500px;
	}
}

.hidden1 {
	opacity: 0;
	filter: blur(2px);
	transform: translateX(-20px);
	transition: all 2s;
		-webkit-transition: all 2s;
	transition-delay: 100ms;
}

.hidden4 {
	opacity: 0;
	filter: blur(2px);
	transform: translateX(0);
	transition: all 5s;
	-webkit-transition: all 5s;
	transition-delay: 100ms;
}

.fade-in {
	opacity: 1;
	filter: blur(0);
	transform: translateX(0);
	transition-delay: 300ms;
}

.section1 {
	display: flex;
	flex-direction: column;
	flex-basis: 1;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 100vh;
	margin-bottom: 8em;
	background-image: radial-gradient(circle 1224px at 10.6% 8.8%, rgba(255, 255, 255, 1) 0%, rgba(153, 202, 251, 1) 100.2%);
	animation: fadein-onload 3s;
}

.section1 .swoosh {
	position: absolute;
	bottom: 0;
	left: -1;
	width: 100%;
	height: 200px;
	background: url(../img/webdesign/swoosh.png);
	background-size: 1500px 200px;
}

.section1 .swoosh.swoosh1 {
	animation: wave 15s linear infinite;
	z-index: 1000;
	opacity: .3;
	animation-delay: 0s;
	bottom: 0;
}

.section1 .swoosh.swoosh2 {
	animation: wave2 20s linear infinite;
	z-index: 999;
	opacity: 0.8;
	animation-delay: -2s;
	bottom: 10px;
}

.section1 .swoosh.swoosh3 {
	animation: wave 25s linear infinite;
	z-index: 998;
	opacity: 0.6;
	animation-delay: -4s;
	bottom: 15px;
}

.section1 .swoosh.swoosh4 {
	animation: wave2 30s linear infinite;
	z-index: 997;
	opacity: 1;
	animation-delay: -4s;
	bottom: 0px;
}

.intro {
	background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(0, 221, 214, 1) 0%, rgba(51, 102, 255, 1) 90%);
	background-clip: text;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	position: relative;
	z-index: 1;
	animation: fadein-onload 3s;
}

.intro > h1 {
	font-size: 4.5em;
	/* letter-spacing: 5px; */
	font-weight: 700;
	/* animation: fadein-onload 3s; */
	/* z-index: 1; */
}

.intro > p {
	animation: fadein-onload 3s;
	text-align: center;
}

.section2 {
	width: 100%;
	/* height: 100vh; */
	padding: 8em 0;
	display: flex;
	flex-direction: row;
	justify-content:center;
	align-items: center;
}

.screen-recordings img {
	display: flex;
	width: 100%;
	max-width: 800px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
	border-radius: 5px;
	border: 1px solid #ddd;
	padding: 0;
	margin: 0 auto;
}

.section3 {
	width: 100%;
	/* height: 100vh; */
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding: 8em 0em;
	gap: 3em;
	background-color: #00244b;
}

.section3 div {
	height: 580px;
	width: 350px;
	background-position: top;
	background-size: cover;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
	border-radius: 5px;
	/* border: 1px solid #ddd; */
}

.section3 > div:first-child {
	background-image: url(../img/webdesign/mn-life-financialFuture-mobile1.png);
	/* animation-delay: 0s; */
}
.section3 > div:nth-child(2) {
	background-image: url(../img/webdesign/mn-life-financialFuture-mobile2.png);
	transition-delay: 1.3s;
}
.section3 > div:last-child {
	background-image: url(../img/webdesign/mn-life-financialFuture-mobile3.png);
	transition-delay: 2.2s;
}

.section4 {
	width: 100%;
	display: flex;
	overflow: hidden;
	padding: 8em 0 0;
}
 
.section4 div {
	width: 100%;
	height: 100px;
	background-image: url(../img/webdesign/icon-scroll1.png);
	background-position: left center;
	background-size: 1500px auto;
	background-repeat: repeat-x;
	animation: iconScroll 80s linear infinite;
}

.section5 {
	width: 100%;
	display: flex;
	overflow: hidden;
	padding: 0 0 8em;
}

.section5 div {
	width: 100%;
	height: 100px;
	background-image: url(../img/webdesign/icon-scroll2.png);
	background-position: left center;
	background-size: 1500px auto;
	background-repeat: repeat-x;
	animation: iconScrollReverse 80s linear infinite;
}

.section6 {
	width: 100%;
	/* height: 100vh; */
	position: relative;
	padding: 8em 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* gap: 8em; */
	z-index: 0;
}

.section7 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 8em 0;
	gap: 3em;
	background-color: #003d31;
}

.section7 div {
	height: 580px;
	width: 350px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
	border-radius: 5px;
	/* border: 1px solid #ddd; */
	overflow: hidden;
}

.section7 div:last-child {
	transition-delay: 1.3s;
}

.section7 div img {
	width: 100%;
}

.section8 {
	width: 100%;
	/* height: 100vh; */
	padding: 8em 0;
	display: flex;
	flex-direction: row;
	justify-content:center;
	align-items: center;
}

.section9 {
	width: 100%;
	height: 100vh;
	position: relative;
	padding: 8em 3em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: url(../img/webdesign/iconBackground.png);
	background-attachment: fixed;
	background-size: 350px;
	background-color: #fff;
	z-index: 0;
	gap: 1.5em;
}

.section9::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .9) 25%, rgba(255, 255, 255, .9) 75%, rgba(255, 255, 255, 1) 100%);
	z-index: -1;
}

.sammons-logo {
	width: 300px;
	height: 70px;
	background-image: url(../img/webdesign/sammonsLogo.png);
	background-size: 250px;
	background-position: center bottom;
	background-repeat: no-repeat;
}

.section9 div:last-child {
	background-color: #ffffff;
	width: 580px;
	padding: 2em 3em;
	border-radius: 5px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
	transition-delay: 800ms;
}

.section10 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 3em 0 0;
}

.brands {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 3em 0;
}

/* .brands::before {
	content: '';
	position: absolute;
	top: 0em;
	width: 65%;
	height: 2px;
	background-color: #D3D3D3;
	z-index: 1;
} */

.logo {
	background-color: #ffffff;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	height: 100px;
	width: 200px;
	background-size: 150px;
}

.logo:nth-child(1) {
	background-image: url(../img/webdesign/logo-ion-rock.webp);
}

.logo:nth-child(2) {
	background-image: url(../img/webdesign/logo-liferay.png);
	transition-delay: 800ms;
}

.logo:nth-child(3) {
	background-image: url(../img/webdesign/logo-salesforce-mc.png);
	transition-delay: 1200ms;
}

.disclosures {
	padding: 5em 1em 1em;
}

.disclosures p {
	font-size: 13px;
	color: #A9A9A9;
}

/* Responsive */

@media screen and (max-width: 1200px) {

	.section3 div {
		height: 400px;
		width: 220px;
	}

	.section7 div {
		height: 400px;
		width: 220px;
	}

}

@media screen and (max-width: 800px) {

	.intro > h1 {
		font-size: 3em;
	}

	.section3 {
		flex-direction: column;
	}

	.section3 > div {
		transition-delay: 0s !important;
	}
	
	.screen-recordings img {
		width: 90%;
	}

	.section4 div {
		height: 60px;
		background-size: 1000px auto;
	}

	.section5 div {
		height: 60px;
		background-size: 1000px auto;
	}

	.section7 {
		flex-direction: column;
	}

	.section7 > div {
		transition-delay: 0s !important;
	}

}

@media screen and (max-width: 520px) {

	.intro > h1 {
		font-size: 2em;
	}
	.section9 {
		padding: 0;
	}
	.sammons-logo {
		width: 150px;
		height: 40px;
		background-size: 150px;
	}

	.section9 div:last-child {
		width: 90%;
		padding: 1em 1.5em;
	}

	.brands {
		flex-direction: column;
	}
	.logo {
		height: 70px;
		background-size: 100px;
	}
	
}