@font-face {	font-family: 'Comic Sans MS';
				src: url('COMIC.ttf');
}

body {
	font-family: futura-pt, sans-serif;
	font-weight: 500;
	font-style: normal;
	background-color: #e9000b;
}

#wrapper {
	margin: 2% 5%;
	background-color: white;
	border-radius: 25px;
}

#content {
	padding: 25px;
}

nav {	
	background-color: #ffffff;
	margin-top: 0px;
	padding-bottom: 5px;
}
#logo {
	padding: 10px;
}

/* Dropdown Button */
.dropbtn {
  background-color: black;
  border-radius: 12px;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #e9000b;
							color: #ffffff;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #e9000b;
color: #ffffff;}
.navbutton {
  background-color: #000000;
  border-radius: 12px;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.navbutton:hover {
	background-color: #e9000b;
	color: #ffffff;
}
.navbutton a {
	text-decoration: none;
	color: white;
}
.navbutton a:hover {
	color: white;
}

.awards {
	padding-left: 30px;
}

.red {
    background-color: #e9000b;
    padding-left: 15px;
    padding-top: 5px;
    border-radius: 25px;
    margin: 2% 3%
}
.red iframe {
    display: inline;
    text-align: center;
    padding: 1em;
    margin: 1em;
}

.red a button {
    margin: 0 auto;
    padding: 1em;
}

.videobutton {
  background-color: #000000;
  border-radius: 12px;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.videobutton:hover {
	background-color: #ffffff;
	color: #000000;
}
.videobutton a {
	text-decoration: none;
	color: white;
}
.videobutton a:hover {
	color: black;
}

.topbutton {
  background-color: #000000;
  border-radius: 12px;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.topbutton:hover {
	background-color: #e9000b;
	color: #ffffff;
}
.topbutton a {
	text-decoration: none;
	color: white;
}
.topbutton a:hover {
	color: white;
}


* {box-sizing:border-box}





/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}





nav h1{
	color: white;
	float: right;
	font-size: 30px;
	padding-right: 10px;
}

.covidul {
	list-style: square;
}
nav h1 {
	color: black;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}
.viewoptions {
	font-size: 12px;
}
footer {
	font-size: 14px;
}

.docs {
	width: 600px;
	height: 500px;
}
table {
	border-collapse: collapse;
}
table, th, td {
	border: 2px solid black;
}
th, td {
	padding: 5px;
}
.social {
	width: 160px;
	height: 40px;
}
cite {
	font-size: 14px;
	font-style: italic;
}

/* contact form */
input[type=text] {
	width: 100%;
  	padding: 12px 15px;
  	margin: 8px 0;
  	box-sizing: border-box;
	border: 1px solid black;
	border-radius: 20px;
	background-color: white;
	color: black;
	font-family: futura-pt, sans-serif;
	font-weight: 500;
	font-style: normal;
}

input[type=text]:focus {
  	border: 2px solid #e9000b;
}

textarea {
	width: 100%;
  	height: 150px;
  	padding: 12px 15px;
	margin: 8px 0;
  	box-sizing: border-box;
  	border: 1px solid black;
  	border-radius: 20px;
  	background-color: white;
	color: black;
  	resize: none;
	font-family: futura-pt, sans-serif;
	font-weight: 500;
	font-style: normal;
}

textarea:focus {
	border: 2px solid #e9000b;
}
