* {
    box-sizing: border-box;
}

body {
    background-color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 1.0em;
    margin:0;padding:0;border:0;
}

header,footer {
    color:white; background-color:#888; font-size: 0.8em; padding: 8px;
}
footer {
    text-align: center
}

.topcontainer{
    height: 45px;
}

header {position: fixed; width: 100%; height: 45px; padding: 12px 45px 4px 45px; background-color: #008296; font-size: 1.0em; z-index: 1;}
header p {display: inline; color: white; position: relative; top: -5px;}
header svg {position: fixed; top: 0px; right: 0px;}
#logo {position: absolute; top: -50px; left: 3px;}

nav {position: fixed; top: 45px; background-color: #F0F0F0; width: 100%; margin: 0; font-size: 0.8em; z-index: 1;}
nav ul {list-style-type: none; margin: auto; padding: 0; max-width: 1400px;}
nav li a {display: block; color: #000; text-decoration: none; height: 45px; padding: 14px 8px 0 16px; cursor: pointer;}
nav li a:hover {background-color: #008296; color: white;}
.c5 {width: 100%;}
.c6 {width: 100%;}

.topcover {
    height: 515px; max-width: 1400px;
    margin: auto; position: relative;
    background-position: center; background-repeat: no-repeat; background-size: cover;
    }
.topcover img {height: 120px;}
.topcover h1 {font-size: 40px; font-weight: 400; color: white; text-shadow: 3px 3px 18px #000000; word-break: keep-all;}
.topcover p {font-size: 12px; font-weight: 400; color: white; text-shadow: 3px 3px 18px #000000;}
.topcover .covertext {position: absolute; bottom: 0; background: rgba(0,0,0,0.5); color: #888; width: 100%; padding: 10px;}
.mobile {display: inherit}

@media only screen and (min-width: 780px) {
    /* For desktop: */
    header {position: fixed; width: 100%;}
    nav {position: fixed; top: 45px;}
    nav li{float: left;}
    nav li a {text-align: center; padding: 14px 0 0 0;}
    .topcontainer {height: 90px;}
    .c5 {width: 20%;}
    .c6 {width: 16.66%;}
    .topcover {height: 650px;}
    .topcover img {height: 180px;}
    .topcover h1 {font-size: 60px;}
    .topcover p {font-size: 18px;}
    .topcover .covertext {padding: 15px;}
    .mobile {display: none}
}

footer {padding: 8px 8px 600px 8px;}
footer a {display: inline-block; color: white; text-decoration: none; height: 45px; padding: 14px 8px 0 16px; cursor: pointer;}


/* Slideshow container */
.slideshow-container {
  max-width: 1400px;
  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;
}

/* 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 {
  -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}
}


/* Center website */
.main {
    max-width: 1400px;
    padding: 20px;
    margin: auto;
}

h1 {font-weight: 400; font-size: 1.5em; word-break: break-all;}
h2 {text-align: center; font-weight: 600; font-size: 1.0em;}
h3 {font-weight: 400; font-size: 1.0em;}
p {text-align:justify;}

.row {
    margin: 8px -16px;
}

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
    padding: 8px;
}
.row > .column2 {
    padding: 8px;
}

/* Create four equal columns that floats next to each other */
.column {
    float: left;
    width: 25%;
}
.column2 {
    float: left;
    width: 50%;
}

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

/* Content */
.content {
    background-color: white;
    padding: 10px;
}
.contentp {
    background-color: #F0F0F0;
    color: black;
    padding: 10px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 1000px) {
    .column {
        width: 50%;
    }
    .column2 {
        width: 100%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 780px) {
    .column {
        width: 100%;
    }
    .column2 {
        width: 100%;
    }
}