:root {
	--site-light: #f8f9fa;
	--site-dark: #212529;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: Poppins, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

button,
input {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button {
	border-radius: 0;
	text-transform: none;
}

button:not(:disabled) {
	cursor: pointer;
}

a {
	color: #0d6efd;
	text-decoration: underline;
}

img,
svg {
	vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	line-height: 1.2;
}

p,
ul {
	margin-top: 0;
	margin-bottom: 1rem;
}

ul {
	padding-left: 2rem;
}

.container,
.container-fluid {
	--site-gutter-x: 1.5rem;
	width: 100%;
	padding-right: calc(var(--site-gutter-x) * 0.5);
	padding-left: calc(var(--site-gutter-x) * 0.5);
	margin-right: auto;
	margin-left: auto;
}

.row {
	--site-gutter-x: 1.5rem;
	--site-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--site-gutter-y));
	margin-right: calc(-0.5 * var(--site-gutter-x));
	margin-left: calc(-0.5 * var(--site-gutter-x));
}

.row > * {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--site-gutter-x) * 0.5);
	padding-left: calc(var(--site-gutter-x) * 0.5);
	margin-top: var(--site-gutter-y);
}

.d-flex {
	display: flex !important;
}

.justify-content-center {
	justify-content: center !important;
}

.justify-content-end {
	justify-content: flex-end !important;
}

.align-items-center {
	align-items: center !important;
}

.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.navbar {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.navbar > .container-fluid {
	display: flex;
	flex-wrap: inherit;
	align-items: center;
	justify-content: space-between;
}

.navbar-nav {
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
	list-style: none;
}

.nav-link {
	display: block;
	padding: 0.5rem 1rem;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	transition: color 0.15s ease-in-out;
}

.navbar-nav .nav-link {
	padding-right: 0;
	padding-left: 0;
}

.navbar-toggler {
	padding: 0.25rem 0.75rem;
	font-size: 1.25rem;
	line-height: 1;
	color: rgba(255, 255, 255, 0.55);
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.375rem;
	transition: box-shadow 0.15s ease-in-out;
}

.navbar-toggler:focus {
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	vertical-align: middle;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
		linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
		linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55));
	background-repeat: no-repeat;
	background-position: 0 0.38em, 0 0.75em, 0 1.12em;
	background-size: 100% 2px, 100% 2px, 100% 2px;
}

.collapse:not(.show) {
	display: none;
}

.navbar-collapse {
	flex-basis: 100%;
	flex-grow: 1;
	align-items: center;
}

.dropdown {
	position: relative;
}

.dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid;
	border-right: 0.3em solid transparent;
	border-bottom: 0;
	border-left: 0.3em solid transparent;
}

.dropdown-menu {
	position: absolute;
	z-index: 1000;
	display: none;
	top: 100%;
	left: 0;
	min-width: 10rem;
	padding: 0.5rem 0;
	margin: 0;
	list-style: none;
	text-align: left;
}

.dropdown-menu.show {
	display: block;
}

.dropdown-item {
	display: block;
	width: 100%;
	clear: both;
	text-align: inherit;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
}

.form-check-input {
	display: inline-block;
	vertical-align: top;
	appearance: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.form-check-input:checked[type="checkbox"] {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

@media (min-width: 768px) {
	.col-md-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-md-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.navbar-expand-md {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}

	.navbar-expand-md .navbar-nav {
		flex-direction: row;
	}

	.navbar-expand-md .navbar-nav .nav-link {
		padding-right: 0.5rem;
		padding-left: 0.5rem;
	}

	.navbar-expand-md .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
	}

	.navbar-expand-md .navbar-toggler {
		display: none;
	}
}

@media (min-width: 992px) {
	.col-lg-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}
}

@media (min-width: 1200px) {
	.col-xl-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-xl-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}
}
