@font-face {
  font-family: 'Open Sans Regular';
  src: url('../fonts/opensans_regular.ttf') format('truetype');
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans Regular', sans-serif!important;
  padding: 15px;
  background-image: url("images/background.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Header */
.header {
  border-radius: 15px 15px 0px 0px;
  padding: 10px;
  text-align: center;
  background-image: url("images/header.png");
}

.header h1 {
  font-size: 50px;
}

/* Style Navigation Bar */
.topnav {
  overflow: hidden;
  background-color: #FF0000;
}

/* Style Topnav Links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  text-shadow: 1px 1px black;
}

/* Hover Color Navigation */
.topnav a:hover {
  background-color: black;
  color: white;
}

/* Color Active Page */
.topnav a.active {
  background-color: black;
  color: white;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 75%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

.fullcolumn {   
  float: left;
  width: 100%;
}

/* Add a card effect for articles */
.card {
  background: rgba(117, 115, 115, 0.7);
  padding: 20px;
  margin-top: 20px;
  color: white;
  box-shadow: 10px 10px rgba(0, 0, 0, 0.25);
  text-shadow: 1px 1px black;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  border-radius: 0px 0px 15px 15px;
  padding: 1px;
  text-align: center;
  background: rgba(117, 115, 115, 0.7);
  margin-top: 20px;
  color: white;
  box-shadow: 10px 10px rgba(0, 0, 0, 0.25);
  text-shadow: 1px 1px black;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}

* {box-sizing: border-box}
body {font-family: Open Sans Regular, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}

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

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  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(103,102,102);
}

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

/* Number text (1/3 etc) */
.numbertext {
  color: black;
  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: #676666;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

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

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

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

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

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

.accordion {
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: black;
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: black;
  overflow: hidden;
}