:root {
	--font-primary: aglet-mono, monospace;
	--font-secondary: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
	--color-primary: black;
	--color-secondary: #3e170f;
	--color-body: #34374c;
}

body {
	font-family: var(--font-primary);
	font-weight: 400;
	font-style: normal;
	font-size: 22px;
	color: var(--color-body);
	background-color: #fcfcfc;
	overflow-x: hidden;
}

a {
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

a:focus,
input:focus,
.button:focus {
	outline: none;
}

a:focus,
a:hover,
a.router-link-active {
	color: black;
}

a {
	text-decoration: underline;
}

a,
button {
	color: black;
	outline: medium none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-secondary);
	font-weight: normal;
	color: #333333;
	margin-top: 0px;
	font-style: normal;
	font-weight: 700;
	text-transform: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}

h2 {
	font-size: 36px;
	margin-top: 96px;
	margin-bottom: 48px;
}

h3 {
	margin-top: 48px;
	margin-bottom: 24px;
}

ul {
	margin: 0px;
	padding: 0px;
}

li {
	list-style: none
}

p {
	margin-bottom: 32px;
	line-height: 1.¨5;
}

hr {
	border-bottom: 1px solid #eceff8;
	border-top: 0 none;
	margin: 30px 0;
	padding: 0;
}

label {
	color: #7e7e7e;
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
}

*::-moz-selection {
	background: var(--color-primary);
	color: #fff;
	text-shadow: none;
}

::-moz-selection {
	background: var(--color-primary);
	color: #fff;
	text-shadow: none;
}

::selection {
	background: var(--color-primary);
	color: #fff;
	text-shadow: none;
}

*::-moz-placeholder {
	color: #555555;
	font-size: 14px;
	opacity: 1;
}

*::placeholder {
	color: #555555;
	font-size: 14px;
	opacity: 1;
}

.form-control {
	border: 2px solid black;
	border-radius: 0;
}

.form-control:focus {
	border-color: black;
	box-shadow: 0 0 0 0.2rem rgb(0 0 0 / 25%)
}

.cursor-pointer {
	cursor: pointer;
}

.btn {
	border: 2px solid black;
	border-radius: 0px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 0;
	padding: 18px 18px;
	text-align: center;
	touch-action: manipulation;
	transition: all 0.3s ease 0s;
	vertical-align: middle;
	white-space: nowrap;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
}

.text-primary {
	color: black !important;
}

.gap-3 {
	gap: 1rem !important;
}

p.lead {
	font-family: var(--font-secondary);
}

.btn-primary {
	background-color: #fff;
	color: black;
}

.btn-primary:hover {
	background-color: #ddd;
	color: black;
	border-color: black;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
	color: #fff;
	background-color: black;
	border-color: black;
}

.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
	box-shadow: none;
	background-color: #ddd;
	color: gray;
	border-color: gray;
}

.btn-primary.focus,
.btn-primary:focus {
	border-color: black;
}

.btn-primary.disabled,
.btn-primary:disabled {
	background-color: transparent;
	border-color: black;
	opacity: 1;
	color: black;
}

.alert {
	transition: all 500ms;
}

.alert.hide {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	height: 0;
	margin-bottom: 0;
	padding: 0;
	font-size: 0;
}

@media (min-width: 576px) {
	h2 {
		font-size: 48px;
	}
}
