:root {
	--primary-opacity: 1;
	--primary-color-values: 51, 94, 234;
	--primary-color: rgba(var(--primary-color-values), var(--primary-opacity));
	--primary-color-dark: color-mix(in srgb, var(--primary-color), black 20%);
	--primary-color-light: color-mix(in srgb, var(--primary-color), white 20%);
	--on-primary-color: #FFF;
	--border-color:#dcdcf4;
	--padd: 20px;
	--scroll: 0;
}

@font-face {
	font-family: funky;
	font-weight: 400;
	src: url(fonts/regular.woff2) format("woff2");
	font-display: swap;
}

@font-face {
	font-family: funky;
	font-weight: 600;
	src: url(fonts/medium.woff2) format("woff2");
	font-display: swap;
}

@font-face {
	font-family: funky;
	font-weight: 700;
	src: url(fonts/bold.woff2) format("woff2");
	font-display: swap;
}

* {
	box-sizing: border-box;
}

html {
	color: #222;
	line-height: 1.4;
}

body {
	margin: 0;
	font-family: funky, Arial, sans-serif;
	color: #161C2D;
	font-size: 17px;
	line-height: 1.6;
}

a {
	color: var(--primary-color);
	/*text-decoration: none;*/
	text-decoration-thickness: 1%;
	text-decoration-color: var(--primary-color-light);
}
a:hover {
	text-decoration-thickness: 10%;
}

a:not(.button) {
	transition: .4s;
	display: inline-block;
	/*&:hover {*/
	/*	transform: skew(-8deg);*/
	/*}*/
}

.container {
	margin-left: auto;
	margin-right: auto;
	padding: 0 var(--padd);
}

section {
	overflow: hidden;
	padding: calc(var(--padd) * 7) 0;
}

h1, h2 {
	margin-top: 0;
	margin-bottom: 1rem;
	font-weight: 400;
}

h1 {
	font-size: 3rem;
}

h2 {
	line-height: 1.35;
	letter-spacing: -.01em;
	font-size: 1.9375rem;
}

h3 {
	line-height: 1.4;
	letter-spacing: -.01em;
	font-size: 1.3125rem;
	font-weight: 400;
	margin-bottom: .5rem;
	margin-top: 0;
}

.text-body-secondary {
	color: rgba(111, 129, 157);
}

.button {
	border-radius: 6px;
	background-color: rgba(var(--primary-color-values), var(--primary-opacity));
	color: var(--on-primary-color);
	text-decoration: none;
	padding: 0.5625rem 1rem;
	font-size: 1.0625rem;
	font-weight: 600;
	transition: box-shadow .25s ease,
	transform .25s ease;
}
input[type=text],
input[type=email],
select,
textarea {
	height: 2.5rem;
	padding: .5rem;
	font-size: 1rem;
	border: 1px solid #cfd9e4;
	border-radius: .3rem;
}
textarea {
	height: auto;
}
input.button {
	border: none;
	cursor: pointer;
}

.button:hover {
	box-shadow: 0 1rem 2.5rem rgba(22, 28, 45, .1), 0 .5rem 1rem -.75rem rgba(22, 28, 45, .1) !important;
	transform: translate3d(0, -3px, 0);
	background-color: var(--primary-color-dark);
}

.subtle {
	--primary-opacity: .1;
	color: var(--primary-color);
}

.subtle:hover {
	--primary-opacity: .15;
	background-color: rgba(var(--primary-color-values), var(--primary-opacity));
}

.row {
	display: flex;
	align-items: center;
	gap: var(--padd);
	flex-wrap: wrap;

	> * {
		flex: 1;
	}
}

.row.gap {
	gap: calc(var(--padd) * 3);
}

ul:not(.simple) {
	list-style: none;
	padding: 0;
	margin: 0;
	
	li {
		width: 100%;
		margin-top: .5rem;
		
		&:before {
			display: inline-flex;
			justify-content: center;
			align-items: center;
			
			font-family: Arial, serif;
			content: '-';
			
			font-size: 1.2rem;
			border-radius: 50%;
			background-color: rgba(66, 186, 150, 0.1);
			color: rgb(66, 186, 150);
			aspect-ratio: 1;
			width: 2rem;
			height: 2rem;
			margin-right: 1rem;
	
			
			text-align: center;
			white-space: nowrap;
		}
	}
	
	ul {
		margin-left: 1rem;
		
		li:before {
			margin-right: .5rem;
			background-color: transparent;
			width: 1.5rem;
			height: 1.5rem;
		}
	}
}

ul.checkmarks li:before,
ul:not(.simple) li.checkmark:before {
	content: 'L';
	transform: rotate(45deg) scaleX(-1);
	font-size:.9rem;
}

ul:not(.simple) li.negative:before {
	content: '❌';
	font-size:.5rem;
	background-color: rgb(255, 232, 232);
	color: rgb(182, 79, 79);
}

mark {
	margin: 0 -0.4em;
    padding: 0.1em 0.4em;
    border-radius: 0.8em 0.3em;
    background: transparent linear-gradient(to right,
	    rgb(0 9 255 / 0%),
	    rgb(0 44 255 / 6%) 8%,
	    rgb(0 2 255 / 4%)
    );
    box-decoration-break: clone;
}