/* FONTS */
@font-face {
    font-family: 'Dax';
    src: url('../fonts/DaxMedium.woff2') format('woff2'),
        url('../fonts/DaxMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Dax';
    src: url('../fonts/Dax.woff2') format('woff2'),
        url('../fonts/Dax.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* GENERAL */
* {
	box-sizing:border-box;
	margin:0;
	padding:0;
}
html,body {
	font-family: 'Dax', sans-serif;
	font-size: 16px;
	overflow-x: hidden;
}
img {
	width: 100%;
	height: auto;
}
a:not(.button) {
	color: #08085E;
	opacity: 0.64;
	text-decoration: none;
}
a:not(.button):hover {
	opacity: 1;
	text-decoration: underline;
}
a.button {
	display: flex;
	align-items: center;
	width: 100%;
	background: #08085E;
	border: none;
	padding: 8px;
	color: #fff;
	gap: 8px;
	font-family: 'Dax', sans-serif;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-decoration: none;
	margin-bottom: 4px;
	max-width: 200px;
}
a.button img {
	width: 24px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
	color: #08085E;
}
h1 {
	font-size: 24px;
	margin-bottom: 24px;
}
h2 {
	font-size: 20px;
	margin-bottom: 12px;
}
h3 {
	font-size: 18px;
	margin-bottom: 8px;
}
h4 {
	font-size: 16px;
	margin-bottom: 4px;
}
p, ul, li {
	line-height: 1.75;
	color: #08085E;
}
ul {
	margin-bottom: 16px;
}
/* LAYOUT */
.container {
	height: 100vH;
	width: 100vW;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}
.row {
	width: 100%;
	max-width: 1080px;
}
.row:first-child {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: center;
	margin: auto 0;
}
.row:last-child {
	padding-bottom: 48px;
	padding-top: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
}
.col:first-child {
	padding: 48px 48px 48px 0;
	border-right: 8px solid #08085E;
	order: 1;
}
.col:last-child {
	grid-column: span 3;
	padding: 0 48px 48px 48px;
	height: 100%;
	display: flex;
	align-items: flex-end;
	border-bottom: 8px solid #08085E;
	order: 2;
}

/* CONTACT */
.contact {
	margin-top: 24px;
}
.or {
	margin-bottom: 24px;
	margin-top: 24px;
}
.or p {
	font-weight: 500;
}

/* RESPONSIVE */
@media screen and (max-width: 1240px) {
	img {
		max-height: 64px;
		width: auto;
	}
	h1 {
		margin-bottom: 16px;
	}
	.row {
		max-width: 768px;
	}
	.row:first-child {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		padding: 24px 24px 24px 0;
	}
	.row:last-child {
		padding-bottom: 24px;
		padding-top: 24px;
		justify-content: flex-start;
	}
	.col:first-child {
		order: 2;
		border-right: none;
		padding-right: 0;
	}
	.col:last-child {
		grid-column: span 3;
		order: 1;
		padding: 24px;
		text-align: start;
		border-left: 8px solid #08085E;
	}
	.contact {
		margin-top: 16px;
	}
	.or {
		margin-bottom: 16px;
		margin-top: 16px;
	}
}

@media screen and (max-width: 960px) {
	.container {
		margin: 0 16px;
	}
	img {
		max-height: 40px;
		width: auto;
	}
	.col:first-child {
		grid-column: span 3;
	}
}