/**
 * Homepage specific styling goes here. Excluded on all subpages
 *
 * @format
 */

/* For most builds, this stylesheet should be wiped and started fresh */

.lazy-picture {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}

.swiper-container,
.pause-button-container {
	position: relative;
}

.pause-button-container {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	grid-gap: 10px;
	gap: 10px;
}

/* PRELOADER */
.preloader-outer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	height: 100vh;
	background-color: var(--color-white);
	transition: opacity 600ms ease-out;
}

.preloader-outer.active {
	visibility: visible !important;
}

.preloader-outer.preloader-remove {
	opacity: 0;
	pointer-events: none;
}

.preloader-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.preloader-inner p {
	margin-bottom: 15px;
}

.preloader-inner p:last-of-type {
	margin: 0;
}

.preloader-part {
	margin: 20px;
	display: none;
}

.preloader-part-left.active {
	display: block;
	-webkit-animation: fadeinright 800ms ease-out;
	animation: fadeInRight 800ms ease-out;
}

.preloader-part-right.active {
	display: block;
	-webkit-animation: fadeinleft 500ms ease-out;
	animation: fadeInLeft 500ms ease-out;
}

/* HERO */
.hero {
	position: relative;
	background-color: var(--color-near-black);
	height: 100vh;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
}

.hero:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 21.94%);
	content: '';
	pointer-events: none;
}

.hero-text {
	margin-bottom: 69px;
	position: relative;
	z-index: 2;
}

@supports (-webkit-touch-callout: none) {
	/* CSS specific to iOS devices */
	.hero-text {
		margin-bottom: 140px;
	}
}

.hero-title {
	margin-bottom: 0;
	font-size: 4.063rem;
	color: var(--color-white);
	line-height: 1;
}

.hero-title-1 {
	margin-bottom: 8px;
	display: block;
	font-size: 1.188rem;
	font-weight: 500;
	animation-delay: 1s;
}

.hero-title-2 {
	font-weight: 600;
	display: block;
	overflow: hidden;
}

.hero-title-2 > span {
	display: block;
	animation-delay: 1.5s;
	color: var(--color-white);
}

.hero-title-2 span span {
	transition: color 3s ease 3s;
}

.hero-title-2 .animated span {
	color: var(--color-alternate);
}

.hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.7;
}

.hero-image img,
.hero-image video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#pause-hero-video {
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: 2;
	color: var(--color-white);
}

#pause-hero-video:hover,
#pause-hero-video:focus {
	color: var(--color-alternate);
}

@media screen and (min-width: 768px) {
	.hero {
		align-items: center;
	}

	.hero-text {
		margin-bottom: 0;
		padding-top: 41px;
	}

	.hero-title {
		font-size: 8.75rem;
		line-height: 0.9;
	}

	.hero-title-1 {
		font-size: 2.25rem;
	}
}

@media screen and (min-width: 1025px) {
	.hero-title {
		font-size: 9.4rem;
	}

	.hero-title-1 {
		font-size: 2.813rem;
	}
}

@media screen and (min-width: 1441px) {
	.hero-text {
		padding-top: 57px;
	}

	.hero-title {
		/* font-size: 12.5rem; */
		font-size: 11rem;
		line-height: 0.8;
	}

	.hero-title-1 {
		margin-bottom: 28px;
	}
}

/* INTRO */
.intro {
	margin-bottom: 46px;
	padding-top: 30px;
	position: relative;
	z-index: 1;
	color: var(--color-black);
}

.intro-left {
	margin-bottom: 22px;
}

.intro h2 {
	margin-bottom: 48px;
	position: relative;
	font-size: 1.25rem;
	line-height: 1.3;
}

.intro h2:before {
	margin-top: 8px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 3px;
	height: 50px;
	background-color: var(--color-alternate);
	content: '';
	pointer-events: none;
}

.intro h2.animated:before {
	clip-path: inset(0 0 100% 0);
	animation: reveal-bottom 1s 1s ease-out forwards;
}

.intro-image {
	margin: 0 calc(var(--gutter-size) * -1);
	position: relative;
	z-index: 1;
}

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

.intro-right .button {
	padding: 18px 16px;
	min-width: 166px;
	justify-content: space-between;
}

@media screen and (min-width: 768px) {
	.intro {
		margin-bottom: 70px;
		padding-top: 70px;
	}

	.intro-holder {
		display: flex;
		flex-wrap: wrap;
	}

	.intro-left {
		margin-bottom: 0;
		width: 50%;
	}

	.intro-right {
		padding-left: 24px;
		width: 50%;
	}

	.intro h2 {
		margin-left: 9px;
		margin-bottom: 67px;
		padding-left: 60px;
		font-size: var(--font-size-h3);
		line-height: 1.4;
	}

	.intro h2:before {
		margin-top: 0;
		top: 6px;
		height: calc(100% + 200px);
	}

	.intro-image {
		margin-left: -90px;
		margin-right: 0;
	}

	.intro-image img {
		max-width: 100%;
		width: auto;
	}
}

@media screen and (min-width: 1025px) {
	.intro {
		margin-bottom: 0;
	}

	.intro + .secure {
		margin-top: -97px;
	}
}

/* SECURE */
.secure {
	padding-top: 35px;
	padding-bottom: 41px;
	position: relative;
	overflow: hidden;
	background-color: var(--color-gray);
}

.secure-holder {
	position: relative;
	z-index: 1;
}

.secure h2 {
	margin-bottom: 10px;
	font-size: var(--font-size-h1);
	color: var(--color-blue);
}

.secure-left p {
	margin-bottom: 15px;
}

.secure-right ul {
	margin-bottom: 0;
}

.secure-right li {
	padding: 14px 0 13px 66px;
	display: flex;
	align-items: center;
	position: relative;
	font-weight: 600;
	border-top: 1px solid rgba(202, 167, 100, 0.25);
	line-height: 1.25;
	min-height: 70px;
}

.secure-right li:last-of-type {
	border-bottom: 1px solid rgba(202, 167, 100, 0.25);
}

.secure-right li i {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.secure-logo-mark {
	margin-left: -500px;
	position: absolute;
	top: -26px;
	left: 50%;
	width: 725px;
	height: 870px;
	pointer-events: none;
}

.secure-logo-mark img {
	display: block;
	width: 100%;
	opacity: 0.7;
}

.secure-logo-mark.animate {
	animation-delay: 1s;
}

@media screen and (min-width: 768px) {
	.secure {
		padding-top: 85px;
		padding-bottom: 85px;
	}

	.secure-holder {
		display: flex;
		flex-wrap: wrap;
	}

	.secure-left {
		margin-top: 38px;
		margin-bottom: 0;
		width: 50%;
	}

	.secure-right {
		padding-left: 24px;
		width: 50%;
	}

	.secure h2 {
		margin-bottom: 17px;
		font-size: 2.5rem;
	}

	.secure-logo-mark {
		margin-left: -724px;
	}
}

@media screen and (min-width: 1025px) {
	.secure {
		padding-top: 143px;
	}
}

/* HELP */
.help {
	padding-top: 38px;
	padding-bottom: 108px;
	position: relative;
	text-align: center;
	background-color: var(--color-primary);
}

.help:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(248.13deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
	content: '';
}

.help h2 {
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
	font-size: var(--font-size-h1);
	color: var(--color-white);
}

.help-holder {
	position: relative;
	z-index: 1;
}

.help-column {
	margin: -0.5px;
	padding: 79px 26px 69px;
	position: relative;
	display: block;
	text-align: center;
	color: var(--color-white);
	text-decoration: none;
	border: 1px solid var(--color-light-blue);
}

.help-text {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.25;
}

.help-icon {
	margin-bottom: 23px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 79px;
	overflow: hidden;
}

.help-icon img {
	max-height: 79px;
}

.help-icon span {
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}

.help-column i {
	position: absolute;
	bottom: 22px;
	left: 50%;
	font-size: 1rem;
	color: var(--color-secondary);
	transform: translateX(-50%);
}

.help-column:hover,
.help-column:focus {
	color: var(--color-secondary);
}

/* base rule */
.help-column .help-icon span {
	animation-delay: calc(var(--i, 0) * 200ms);
}

/* set the index per column */
.help-column:nth-child(2) {
	--i: 1;
}
.help-column:nth-child(3) {
	--i: 2;
}
.help-column:nth-child(4) {
	--i: 3;
}
.help-column:nth-child(5) {
	--i: 4;
}
.help-column:nth-child(6) {
	--i: 5;
}
.help-column:nth-child(7) {
	--i: 6;
}
.help-column:nth-child(8) {
	--i: 7;
}

@media screen and (min-width: 768px) {
	.help {
		padding-top: 78px;
		padding-bottom: 125px;
		text-align: left;
	}

	.help h2 {
		margin-bottom: 41px;
		font-size: 2.5rem;
	}

	.help-holder {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}

	.help-column {
		padding-bottom: 50px;
	}
}

@media screen and (min-width: 1025px) {
	.help-holder {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}
}

/* EXPERIENCE */
.experience {
	margin-bottom: 12px;
	position: relative;
}

.experience-image {
	margin-top: -73px;
	margin-bottom: 30px;
}

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

.experience-text {
	margin-bottom: 38px;
}

.experience-text h2 {
	margin-bottom: 13px;
	font-size: var(--font-size-h1);
	color: var(--color-blue);
}

.experience p {
	font-size: 1rem;
}

.experience-item {
	margin-bottom: 30px;
	padding-left: 50px;
	position: relative;
}

.experience-item h5 {
	margin-bottom: 2px;
	font-size: 20px;
	font-weight: 700;
	color: var(--color-blue);
}

.experience-item strong {
	position: absolute;
	top: -3px;
	left: 0;
	font-size: 3.063rem;
	color: var(--color-alternate);
	line-height: 1;
	pointer-events: none;
}

@media screen and (min-width: 768px) {
	.experience {
		margin-bottom: 47px;
		padding-top: 113px;
	}

	.experience-holder {
		display: flex;
		flex-wrap: wrap;
	}

	.experience-left {
		padding-right: 16px;
		width: 50%;
	}

	.experience-right {
		padding-left: 31px;
		width: 50%;
	}

	.experience-image {
		margin-right: 3px;
		margin-top: -173px;
		margin-bottom: 44px;
	}

	.experience-image img {
		margin-left: auto;
		max-width: 100%;
		width: auto;
		min-height: 536px;
		object-fit: cover;
	}

	.experience-text {
		margin-bottom: 85px;
		padding-left: 68px;
		position: relative;
	}

	.experience-text:before {
		position: absolute;
		top: -113px;
		left: 0;
		width: 3px;
		height: calc(100% + 109px);
		background-color: var(--color-gold-100);
		content: '';
		pointer-events: none;
	}

	.experience-text.animated:before {
		clip-path: inset(0 0 100% 0);
		animation: reveal-bottom 1s 1s ease-out forwards;
	}

	.experience-text h2 {
		margin-bottom: 19px;
		font-size: 2.5rem;
	}

	.experience-item {
		margin-bottom: 40px;
		padding-left: 68px;
	}

	.experience-item strong {
		font-size: 3.625rem;
	}
}

@media screen and (min-width: 1025px) {
	.experience-text {
		margin-bottom: 104px;
	}
}

/* TESTIMONIAL */
.testimonial {
	padding-top: 40px;
	padding-bottom: 51px;
	position: relative;
	background-color: var(--color-gold-200);
}

.testimonial-holder {
	position: relative;
	z-index: 1;
}

.testimonial h2 {
	margin-bottom: 20px;
	font-size: var(--font-size-h1);
	color: var(--color-blue);
}

.testimonial-right {
	font-size: 1rem;
}

.testimonial-right h3 {
	margin-bottom: 17px;
	color: var(--color-blue);
}

.testimonial-right span {
	margin-bottom: 5px;
	display: block;
	font-size: 0.875rem;
}

.testimonial-right p:last-of-type {
	margin-bottom: 0;
}

.testimonial-arrows {
	margin-top: 16px;
	display: flex;
}

.testimonial-arrows .swiper-button-next {
	margin-left: 10px;
}

.testimonial-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.2;
	pointer-events: none;
}

.testimonial-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-right .swiper-autoplay-toggle {
	color: var(--color-blue);
	bottom: 12px;
	right: 0;
}

@media screen and (min-width: 768px) {
	.testimonial {
		padding-top: 118px;
		padding-bottom: 95px;
	}

	.testimonial-holder {
		display: flex;
		flex-wrap: wrap;
	}

	.testimonial-left {
		padding-right: 20px;
		width: 50%;
	}

	.testimonial-right {
		margin-top: 6px;
		padding-left: 27px;
		width: 50%;
	}

	.testimonial h2 {
		font-size: 2.5rem;
	}

	.testimonial-arrows {
		margin-top: 33px;
	}
}

/* LINKEDIN */
.linkedin {
	padding-top: 46px;
	padding-bottom: 70px;
	position: relative;
	text-align: center;
	background-color: var(--color-primary);
}

.linkedin:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(248.13deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
	content: '';
	z-index: -1;
}

.linkedin .column {
	padding: 0;
}

@media screen and (min-width: 768px) {
	.linkedin .column {
		padding: 0 var(--gutter-size);
	}
}

/* NEWS */
.news {
	padding-top: 35px;
	padding-bottom: 44px;
	position: relative;
	overflow: hidden;
}

.news .column {
	position: relative;
	z-index: 1;
}

.news-text {
	margin-bottom: 20px;
	font-size: 1.125rem;
	color: var(--color-blue);
}

.news-text h2 {
	margin-bottom: 10px;
	font-size: var(--font-size-h1);
	color: inherit;
}

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

.news-holder {
	margin-top: 16px;
}

.news-holder .button {
	padding: 18px 16px;
	min-width: 166px;
	justify-content: space-between;
}

.news .pause-button-container {
	margin-bottom: 23px;
}

.news .pause-button-container .swiper-autoplay-toggle {
	position: relative;
	bottom: auto;
	right: auto;
}

.news-logo-mark {
	margin-left: -500px;
	position: absolute;
	top: -129px;
	left: 50%;
	width: 741px;
	height: 1023px;
	pointer-events: none;
}

.news-logo-mark img {
	display: block;
	width: 100%;
	opacity: 0.08;
}

.news-logo-mark.animate {
	animation-delay: 1s;
}

@media screen and (min-width: 768px) {
	.news {
		padding-top: 107px;
		padding-bottom: 101px;
	}

	.news-text {
		margin-bottom: 51px;
	}

	.news-text h2 {
		font-size: 2.5rem;
	}

	.news-holder {
		margin-top: 43px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}

	.news-holder .button {
		order: 1;
	}

	.news-logo-mark {
		margin-left: -760px;
	}

	.news .swiper {
		margin-right: -90px;
		width: calc(100% + 90px);
	}

	.news .pause-button-container {
		margin-bottom: 0;
		order: 2;
	}
}

@media screen and (min-width: 1025px) {
	.news-text {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
	}

	.news-text h2 {
		margin-right: 20px;
		margin-bottom: 0;
	}

	.news-logo-mark {
		margin-left: -960px;
	}
}

/* COPY */
.news-card {
	display: block;
	width: 100%;
	text-decoration: none;
	color: var(--color-black);
}

.news-card-image {
	overflow: hidden;
}

.news-card-image img {
	display: block;
	width: 100%;
	transition: transform 0.2s ease-out;
}

.news-card-text {
	padding-top: 14px;
	font-size: 1rem;
}

.news-card-date {
	margin-bottom: 8px;
	display: block;
	font-size: 0.688rem;
	color: var(--color-gray-200);
}

.news-card-text h5 {
	margin-bottom: 5px;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-blue);
}

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

.news-card-text .button.no-button {
	font-size: 1rem;
}

.news-card:focus,
.news-card:hover {
	text-decoration: none;
	color: var(--color-black);
}

.news-card:focus .news-card-image img,
.news-card:hover .news-card-image img {
	transform: scale(1.05);
}

.news-card:focus .button.no-button,
.news-card:hover .button.no-button {
	color: var(--color-secondary);
}

@media screen and (min-width: 768px) {
}

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

/* COPY */
.copy {
}

@media screen and (min-width: 768px) {
}

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

/* COPY */
.copy {
}

@media screen and (min-width: 768px) {
}

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

/* COPY */
.copy {
}

@media screen and (min-width: 768px) {
}

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