* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  background: #f1f1f1;
}

/* Header */
.header {
  padding: 20px;
  text-align: center;
  background: #ffffff;
}

.header h1 {
  font-family: Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 80px;
  color: white;
  margin: 20px 0 20px 0;
}

.header p {
  color: #414141;
}

/* Top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav .right {
  float: right;
  color: #888;
}

/* Topnav link style */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change colour on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

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

.leftcolumn h4 {
  margin: 0px 20px 0px 0px;
}

.leftcolumn h3 {
  margin: 0px 20px 0px 0px;
}

.leftcolumn h2 {
  margin: 0px 20px 0px 0px;
}

.leftcolumn p {
  margin: 0px 20px 0px 0px;
}

.img-container {
  float: left;
}

img.middle {
  vertical-align: text-bottom;
}

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

.container {
  display: flex;
}
.fixed {
  width: 200px;
  margin: 0px 20px 0px 0px;
  padding: 5px;
}
.fixed2 {
  width: 50px;
  margin: 7px 0px 0px 0px;
}
.fixed3 {
  width: 500px;
  margin: 7px 0px 0px 15px;
}
.fixed4 {
  width: 600px;
  margin: 7px 0px 0px 15px;
}
.flex-item {
  flex-grow: 1;
}

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

.rightcolumn h3 {
  margin: 0px 20px 20px 0px;
}

.rightcolumn p {
  margin: 20px 0px 20px 0px;
}

/* Image */
img {
  max-width: 100%;
  max-height: 100%;
  padding: 0px;
}

.drop-shadow {
}

.drop-shadow img {
  filter: drop-shadow(2px 2px 2px #666666);
  -webkit-filter: drop-shadow(2px 2px 2px #666666);
}

/* Card sections */
.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
}

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

.column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

@media screen and (max-width: 800px) {
  .column {
    width: 100%;
  }
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background-color: #333;
  margin-top: 20px;
}

.footer h5 {
  color: white;
  text-align: center;
}

.footer h4 {
  color: white;
  text-align: left;
}

.footer p {
  color: white;
  text-align: left;
}

.footer a {
  color: #f2f2f2;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1200px;
  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: 0.4;
  }
  to {
    opacity: 1;
  }
}