@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap);

:root {
	--blue: #008cba;
	--indigo: #6610f2;
	--purple: #6f42c1;
	--pink: #e83e8c;
	--red: #f04124;
	--orange: #fd7e14;
	--yellow: #e99002;
	--green: #43ac6a;
	--teal: #20c997;
	--cyan: #5bc0de;
	--white: #fff;
	--gray: #888;
	--gray-dark: #333;
	/* --primary: rgb(89, 72, 240); */
	--primary: #008cba;
	--secondary: #eee;
	--success: #43ac6a;
	--info: #5bc0de;
	--warning: #e99002;
	--danger: #f04124;
	--light: #eee;
	--dark: #222;
	--breakpoint-xs: 0;
	--breakpoint-sm: 576px;
	--breakpoint-md: 768px;
	--breakpoint-lg: 992px;
	--breakpoint-xl: 1200px;
	--font-family-sans-serif:
		"Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
		"Segoe UI Symbol";
	--font-family-monospace:
		SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
		monospace;
	/* --keycolour: #6b5c74; */
	--keycolour: #476361;
}

.custom-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1rem;
}

h1,
h2,
h3,
h4,
h5 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-weight: 300;
	color: var(--keycolour);
}

.card h2,
.card h3,
.card h4,
.card h5,
.card h6 {
	font-weight: 100 !important;
	margin-top: 0rem;
}

a {
	/* text-decoration: none; */
	color: var(--dark);

}

a:hover {
	/* text-decoration: underline; */
	color: var(--keycolour);
}

html body {
	font-family: var(--font-family-sans-serif) !important;
	font-weight: 100 !important;
	font-size: 1.1rem;
}

.nav-item a {
	color: var(--light);
	text-decoration: none;
	margin-left: 0rem;
}

.nav-item a:hover {
	color: var(--white);
	text-decoration: underline;
}

.navbar-brand {
	color: var(--dark);
	text-decoration: none;
}

.navbar-brand:hover {
	color: var(--keycolour);
	text-decoration: none;
}

.text-justify {
	text-align: justify !important;
}

.portal {
	max-width: var(--breakpoint-xl);
	margin: auto;
}

.header {
	background: var(--keycolour);
}

/* a .card img {
	/* filter: brightness(0.5); */
	/* opacity: 0.8; */
/* } */

/* a:hover .card img { */
	/* opacity: 1; */
	/* filter: brightness(0.3); */
/* } */

/* .card {
	-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.card:hover {
	-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5) !important;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5) !important;
} */

ul {
	list-style: none;
}

li {
	padding-bottom: 0.5em;
	margin-left: 1rem;
}

ul li::before {
	color: var(--keycolour);
	/* content: "\00BB"; */
	content: "◎";
	font-weight: 400;
	margin-left: -1.7rem;
	margin-right: 1rem;
}

ol li::marker {
	color: var(--keycolour);
	font-weight: 400;
}
ol li::before {
	margin-left: -1.7rem;
	margin-right: 1rem;
}

hr {
	opacity:1;
	border: 0;
    height: 1px;
    background: var(--keycolour);
    /* background-image: linear-gradient(to right, #ccc, var(--warning), #ccc); */
}

.photo {
	-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
	opacity: 0.8;
}

.photo:hover {
	-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5) !important;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5) !important;
	opacity: 1;
}

.navbar-toggler {
	border: none;
	text-align: end;
	padding: 0;
	color: var(--light)
}

.navbar-toggler-icon {
	background-image: none!important;
}

.navbar-toggler.collapsed .navbar-toggler-icon::before {
	content: "\2630";
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
	content: "\26CC";
} 
