@charset "UTF-8";
/* CSS Document */
* {
	box-sizing: border-box;
	margin: 0;
}
/* Set a background color */
body {
	background-color: rgba(203,202,202,1.00);
	font-family: ibm-plex-mono, "monospace";
	font-weight: 500;
	font-style: normal;

}
h2{
	font-weight:700;
}
p{
  font-weight: 500;
	font-size:14px;
}

/* The actual timeline (the vertical ruler) */
.timeline {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	overflow: auto;
}
/* The actual timeline (the vertical ruler) */
.timeline::after {
	content: '';
	position: absolute;
	width: 6px;
	background-color: white;
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -3px;
}
/* Container around content */
.container {
	padding: 10px 40px;
	position: relative;
	background-color: inherit;
	width: 50%;
	z-index: 1;
}
/* The circles on the timeline */
.container::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	right: -10px;
	background-color: white;
	top: 0;
	border-radius: 50%;
	z-index: 1;
}
/* Place the container to the left */
.left {
	float: left;
	margin-bottom: 30px;
}
/* Place the container to the right */
.right {
	float: right;
	margin-bottom: 30px;
}
.first {
	margin-top: 200px;
}
.one {
	margin-top: 30px;
}
/* Add arrows to the left container (pointing right) */
.left::before {
	content: " ";
	height: 0px;
	position: absolute;
	top: 10px;
	width: 0px;
	z-index: 1;
	right: 15px;
	border: medium solid rgba(61,61,61,1.00);
	border-width: 0px 0 25px 25px;
	border-color: transparent transparent transparent rgba(61,61,61,1.00);
}
/* Add arrows to the right container (pointing left) */
.right::before {
	content: " ";
	height: 0px;
	position: absolute;
	top: 10px;
	width: 5px;
	z-index: 1;
	left: 10px;
	border: medium solid rgba(61,61,61,1.00);
	border-width: 0px 25px 25px 0;
	border-color: transparent rgba(61,61,61,1.00) transparent transparent;
}
/* Fix the circle for containers on the right side */
.right::after {
	left: -10px;
}
/* The actual content */
.content {
	padding: 20px 30px;
	background-color: white;
	position: relative;
	border-radius: 0;
	border: 1px solid rgba(61,61,61,1.00);
}
/*SLIDESHOW*/
* {
	box-sizing: border-box
}
.mySlides1, .mySlides2, .mySlides3, .mySlides4, .mySlides5, .mySlides6, .mySlides7, .mySlides8, .mySlides9, .mySlides10 {
	display: none;
}
img {
	vertical-align: middle
}
/* Slideshow container */
.slideshow-container {
	max-width: 1000px;
	position: relative;
	padding: auto;
}
/* Next & previous buttons */
.arrows {
	cursor: pointer;
	position: inherit;
	width: auto;
	color: black;
	font-size: 28px;
	user-select: none;
}
/* Position the "next button" to the right */
a.next {
	position: absolute;
	right: 0px;
	border-radius: 3px 0 0 3px;
}
/* On hover, add a grey background color */
.prev:hover, .next:hover {
	color: #626262;
}
/* Number text (1/3 etc) */
div.numbertext {
	color: #000000;
	right: 45%;
	font-size: 15px;
	font-weight: 700;
	padding: 8px 12px;
	position: absolute;
	bottom: 0;
}
.info {
	font-family:ibm-plex-mono, "monospace";
	position:absolute;
	font-weight: 800;
	font-size: 17px;
	font-style: italic;
	text-align: center;
	right: 30;
	top: 23;
	border-radius: 25px;
	border: none;
	height: 25;
	width: 25;
	background-color: black;
	color: white;
	cursor: pointer;
	text-decoration: none;
	user-select: none;
}
.info:hover {
	background-color: rgba(81,79,79,1.00);
}

.info {
	visibility: visible;
	-webkit-animation: fadeIn 1s;
	animation: fadeIn 1s;
}
.modal {
	display: none;
}

.modalDialog {
	position: fixed;
	font-family: ibm-plex-mono, "monospace";
	font-weight: 500;
	width: 500px;
	background: white;
	opacity: 0;
	top:30%;
	z-index: 99999;
	pointer-events: none;
	border: solid;
	border-width: thin;
	padding: 30px;
}
.modalDialog:target{
	opacity: 1;
	pointer-events: auto;
}
.close {
	background: #606061;;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: -1;
	top: -1;
	border: solid black;
	border-width:thin;
	text-align: center;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
}
.close:hover {
	background: url("ocean-918999_1280.jpg");
	color:black;
}

@media (max-width: 751px) {
/* Place the timelime to the left */
.timeline::after {
	left: 31px;
}
/* Full-width containers */
.container {
	width: 100%;
	padding-left: 70px;
	padding-right: 25px;
}
/* Make sure that all arrows are pointing leftwards */
.container::before {
	left: 60px;
	border: medium solid white;
	border-width: 10px 10px 10px 0;
	border-color: transparent white transparent transparent;
}
/* Make sure all circles are at the same spot */
.left::after, .right::after {
	left: 15px;
}
/* Make all right containers behave like the left ones */
.right {
	left: 0%;
}
}
