body, html {
	font-family: Montserrat, sans-serif;
	color: #212121;
	}

/*----------------------------------*/
/* FONTS */

h1, h2, h3, h4 {
  	color: #212121;
}

h1{
	font-size: 4em;
	line-height: 1.1em;
	font-weight: 200;
}

h2{
	font-size: 3em;
	line-height: 1.2em;
	font-weight: 500;
}

h3{
	font-size: 2em;
	line-height: 1.2em;
	font-weight: 500;
	padding-bottom: 5px;
}

h4{
	font-size: 1em;
	line-height: 1.5em;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

h5{
	font-size: .8em;
	line-height: 1.8em;
	font-weight: 400;
	letter-spacing: .5px;
}

h6{
	font-size: 1.8em;
	line-height: 1.2em;
	letter-spacing: .5px;
	margin-bottom: 10px;
}

p {
	font-size: 1em;
	line-height: 1.6em;
	font-weight: 400;
	letter-spacing: 1px;
}

ul, ol {
	padding-left: 40px;
}

ol > li {
	list-style: decimal;
}

ul > li {
	list-style: circle;
}

li {
	font-size: 1em;
	line-height: 1.6em;
	font-weight: 400;
	letter-spacing: 1px;
	padding-bottom: 10px;
}

.white-text {
	color: #eeeeee;
}

button {
	font-size: 1em;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .5px;
	border: 2px solid;
	padding: 10px 15px;
	text-decoration: none;
	margin: 3px 0px 10px 0px;
	cursor: pointer;
	color: #212121;
	background-color: rgba(255, 255, 255, 0.0);
}

button:hover {
	color: white;
	background-color: #212122;
	border-color: #212122;
}

.white-button {
	color: #eeeeee;
	border: 2px solid #eeeeee;
	background-color: rgba(255, 255, 255, 0.0);
}


.white-button:hover {
	color: #212122;
	background-color: white;
	border-color: white;
}


.grey-button {
	color: #6c6c6c;
	border: 2px solid #6c6c6c;
	background-color: rgba(255, 255, 255, 0.0);
}

a{
	color: inherit;
	text-decoration: none;
}

.in-line-link {
    border-bottom: 1px solid #212121;
}

hr {
    border: 1px solid #555555;
}

.horizontal-bar {
    width: 100%;
    border: 1px solid #dddddd;
}

.spacer-bar {
    display: block;
	width: 100%;
    height: 50px;
}

.spacer-bar-small {
    display: block;
	width: 10%;
    height: 20px;
}

.paragraph-link {
	border-bottom: #212121 1px solid;
	padding-right: 3px;
}

.paragraph-link:hover {
	font-weight: bolder;
	padding-right: 0px;
}



/*  ARROWS  */


.arrow {
	border: solid #212121;
	border-width: 0 2px 2px 0;
	padding: 3px;
}

.up {
	transform: rotate(225deg);
	-webkit-transform: rotate(225deg);
	margin-bottom: 1px;
}

.right {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	margin-bottom: 1px;
}

.small-arrow {
	color: #212121;
	transform: rotate(-45deg);
}


.footer {
    padding: 20px;
}

.footer-with-background {
    background-color: rgba(219,214,211,1);
}

.footer-with-purple-background {
    background: rgb(133,63,140);
}


/*  IN PAGE NAV  */

.top-left {
	position: fixed;
	left: 20px;
	top: 30px;
	z-index: 20;
}

.top-right {
	position: fixed;
	right: 20px;
	top: 30px;
	z-index: 20;
	display: flex;
	flex-direction: column;
	align-items: end;
}

.bottom-right {
	position: fixed;
	bottom: 20px;
	right: 3%;
	z-index: 20;
}

.top {
	width: 100%;
	gap: 2px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 15px 5px 5px 5px;
}

.top > p {
	font-weight: bolder;
}

.top:hover {
	background-color: #212121;
}

.top:hover > p {
	color: white;
}

.top:hover > p.arrow {
	border: solid white;
	border-width: 0 2px 2px 0;
}

.in-page-nav {
	border-right: 2px solid #212121;
	padding-right: 10px;
  }

.in-page-nav > a {
	border-bottom: 0px;
}

.in-page-nav-item {
	width: 100%;
	display: flex;
	gap: 5px;
	align-items: center;
	justify-content: end;
	height: 40px;
	padding-left: 5px;
}

.in-page-nav-item:hover {
	background-color: #212121;
}  
  
.in-page-nav-item:hover > h5 {
	font-weight: bolder;
	color: white;
}

.in-page-nav-item:hover > p {
	color: white;
}


@media only screen and (max-width:900px){

	.bottom-right {
		visibility: hidden;
	}

	.top-left {
		padding: 0% 10% 10% 10%;
		position:static;
		align-self: flex-start;
	}

	.top-right {
		visibility: hidden;
	}
}