@font-face {
	font-family: 'SantanderText';
	font-style: normal;
	font-weight: 300;
	src: url(./fonts/SantanderTextW05-Regular.woff);
}

@font-face {
	font-family: 'SantanderText';
	font-style: normal;
	font-weight: 400;
	src: url(./fonts/SantanderTextW05-Regular.woff);
}

@font-face {
	font-family: 'SantanderText';
	font-weight: 700;
	src: url(./fonts/SantanderTextW05-Bold.woff);
}

@font-face {
	font-family: 'SantanderText';
	font-style: italic;
	src: url(./fonts/SantanderTextW05-Italic.woff);
}

@font-face {
	font-family: 'SantanderHeadline';
	font-style: normal;
	font-weight: 400;
	src: url(./fonts/SantanderHeadlineW05-Regular.woff);
}

@font-face {
	font-family: 'SantanderHeadline';
	font-weight: 700;
	src: url(./fonts/SantanderHeadlineW05-Bold.woff);
}

:root {
	--color-main: #ec0000;
	--color-secondary: #c00;
	--color-white: #fff;
	--color-shadow: #00000026;
	--color-light-gray: #fafafa;
	--page-width: 1170px;
	--color-gray: #5f6a72;
}

body {
	margin: 0;
	font-family: 'SantanderText', sans-serif;
	max-width: 100vw;
	overflow-x: hidden;
}

main {
	display: flex;
	flex-direction: column;
	overflow-x: clip;
}

.nav {
	margin: 15px 0;
	top: 0;
	z-index: 100;
}

.section-center {
	width: var(--page-width);
	align-self: center;
}

.section-left {
	width: calc(var(--page-width) + (100% - var(--page-width)) / 2);
	align-self: start;
}

.section-right {
	width: calc(var(--page-width) + (100% - var(--page-width)) / 2);
	align-self: end;
}

.section-full {
	width: 100%;
}

.section-center-padding {
	width: auto;
	padding: 30px calc((100% - var(--page-width)) / 2);
}

section {
	position: relative;
}
.button {
	box-shadow: 0px 2px 5px 0px #76767699;
	color: var(--color-white);
	background-color: var(--color-main);
	border-radius: 6px;
	width: fit-content;
	cursor: pointer;
	text-decoration: none;
	display: block;
}

.alternative {
	background-color: var(--color-white);
	color: var(--color-main);
}

.button.xs {
	font-size: 15px;
	height: 14px;
	line-height: 9px;
	padding: 14px 25px;
}

.button.s {
	font-size: 17px;
	height: 16px;
	line-height: 11px;
	padding: 15px 30px;
}

.button.m {
	font-size: 19px;
	height: 18px;
	line-height: 12px;
	padding: 17px 35px;
}

.button.l {
	font-size: 24px;
	height: 23px;
	line-height: 15px;
	padding: 21px 40px;
}

.btn-group {
	display: flex;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 3px 20px 0 var(--color-shadow);
	width: fit-content;
}

.btn-group > * {
	border-radius: 0 !important;
}

.image-btn {
	height: 50px;
	padding: 10px 40px;
	background-color: var(--color-white);
	border-radius: 6px;
}
.image-btn img {
	height: 50px;
}

.logo {
	height: 70px;
	background-color: var(--color-main);
	border-radius: 6px;
	padding: 0 30px;
}

.logo img {
	height: 30px;
	margin-top: 16px;
}

.row {
	display: flex;
}

section.row {
	gap: 40px;
}

section.row > div {
	padding: 25px;
	width: calc(50% - 15px);
}

section.row > img {
	width: calc(50% - 15px);
}

h1 {
	font-weight: 400;
	font-size: 46px;
	margin: 0;
}

h2 {
	font-weight: 400;
	font-size: 30px;
	margin: 0;
}

h3 {
	font-weight: 400;
	font-size: 25px;
	margin: 0;
}

h4 {
	font-weight: 400;
	font-size: 22px;
	margin: 0;
}

strong {
	font-weight: normal;
	color: var(--color-main);
}

.gray {
	background-color: var(--color-light-gray);
}

.cover {
	object-fit: cover;
}

.absolute-button {
	position: absolute;
	bottom: 0;
	right: 0;
	font-size: 20px;
	height: 75px;
	background-color: var(--color-main);
	padding: 0 100px 0 30px !important;
	display: flex;
	align-items: center;
	width: auto !important;
	color: white;
	gap: 8px;
	cursor: pointer;
}

.absolute-bar {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100% !important;
	height: 25px;
	background-color: var(--color-main);
	padding: 0 !important;
}

.right {
	margin-left: auto;
}

.left {
	margin-right: auto;
}

.link {
	color: var(--color-main);
}

.object-left {
	object-position: left;
}

.object-right {
	object-position: right;
}

.coin-header p {
	flex: 1;
}

@media screen and (min-width: 1170px) {
	.tablet-only {
		display: none;
	}

	.order-xl-1 {
		order: 1;
	}
	.order-xl-2 {
		order: 2;
	}
	.order-xl-3 {
		order: 3;
	}
}

@media screen and (max-width: 1169px) {
	.app__menu span {
		line-height: 20px;
	}
	:root {
		--page-width: 720px;
	}

	h1 {
		font-size: 30px;
	}

	h2 {
		font-size: 20px;
	}

	h3 {
		font-size: 25px;
	}

	h4 {
		font-size: 22px;
	}
	section.row {
		gap: 20px;
	}
	section.row > div {
		padding: 15px;
	}
	.desktop-only {
		display: none !important;
	}

	.desktop-row {
		flex-direction: column;
	}

	.selfie p {
		font-size: 20px;
	}

	.selfie .button {
		margin-bottom: 30px;
	}
}
@media screen and (min-width: 720px) {
	#background {
		display: none;
	}
}
@media screen and (max-width: 719px) {
	:root {
		--page-width: 340px;
	}

	.section-center,
	.section-left,
	.section-right,
	.section-full,
	.section-center-padding {
		width: auto;
		max-width: var(--page-width);
		align-self: center;
	}

	.logo {
		height: 50px;
		padding: 0px 29px;
	}

	.logo img {
		height: 20px;
		margin-top: 13px;
	}

	.image-btn {
		height: 30px;
	}

	.image-btn img {
		height: 30px;
	}

	#background {
		position: absolute;
		top: 0;
		z-index: 0;
		width: 100%;
		background-color: #dfeef3;
		height: 790px;
	}

	#background > img {
		width: 100%;
	}

	#background .absolute-button {
		padding-right: calc((100% - var(--page-width)) / 2) !important;
	}

	.logos-row {
		justify-content: center;
	}

	footer .absolute-button {
		height: 50px;
		padding-left: 20px !important;
	}

	footer .absolute-button img {
		height: 20px;
	}

	.popup .row {
		flex-direction: column;
	}
}

.reveal-box {
	position: relative;
	overflow: hidden;
}

#section-1 .card {
	z-index: 2;
}
.reveal-box__inner {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.reveal-box__inner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-main);
}

.reveal-box__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
