/* Define colors */
:root{
    --darkblue: #9FBBB1;
    --lightblue: #668379;
    --lightbeige: #EED1B6;
    --beige: #f6f6f6;
}

html, body{
    height: 97.6%;
    padding: 0px;
    margin: 0px;
    background: #f6f6f6;
    font-family: 'Arial', sans-serif;
    color: black; /*#585858;*/
    margin: 0;
}

.bg-image {
  /* The image used */
  background-image: url("img/test6.png");

  /* Full height */
  height: 30%;

  /* Add the blur effect */
  filter: blur(3px);
  -webkit-filter: blur(3px);

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Position text in the middle of the page/image */
.bg-text {
  background-color: var(--darkblue); /* Fallback color */
  background-color: rgba(0,0,0, 0.4); /* rgba(159,187,177, 0.4); /* Black w/opacity/see-through */
  color: var(--lightblue);
  font-weight: bold;
  border: 3px solid #f6f6f6;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80%;
  padding: 20px;
  text-align: center;
}

h1,h2,h3,h4,h5,h6 {
    color:black;
    margin: 5px;
    font-family: 'Arial', sans-serif;
}

.bg-text h1 {
    color: #f6f6f6;
}


a {
    text-decoration: none;
    color: black;
}

hr.one {
    border: 0;
    width:12%;
    height:4px;
    color:var(--darkblue);
    background-color:var(--darkblue);
}

hr.two {
    width: 100%;
    background-color:var(--lightblue);
    border: 1px solid var(--lightblue);
    border-radius: 5px;
}

/* *{ */
/*     padding: 0px; */
/*     margin: 0px; */
/*     font-family: sans-serif; */
/* } */


/* Navigation bar */
/**/
/**/
/* Add a black background color to the top navigation */
.topnav {
    background-color: var(--beige); /*var(--darkblue); */
    overflow: hidden;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    /* display: block; */
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 23px;
    font-family: 'Arial', sans-serif;
    /* color:grey; */
    margin: 0px;
}

/* Change the color of links on hover */
.topnav a:hover {
    /* background-color: #ddd; */
    color: #717171;
}

/* Add an active class to highlight the current page */
/* .topnav a.active { */
/*     background-color: var(--lightblue); */
/*     color: var(--darkblue); */
/* } */

/* Right-aligned section inside the top navigation */
.topnav-right {
    float: right;
    margin-right: 30px;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 950px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
        float: right;
        display: block;
    }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 950px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}

.body-outer {
    min-height: 90%;
    text-align: center;
}

/* Body content */
.body-outer .body-text {
    margin-top: 100px; /* Add a top margin to avoid content overlay */
    text-align: left;
    display: inline-block;
    /* max-width: 50%; */
    max-width: 700px;
    line-height: 1.6; /* Line spacing*/
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    padding: 5px;
}

.body-outer .body-text2 {
    margin-top: 100px; /* Add a top margin to avoid content overlay */
    text-align: center;
    display: inline-block;
    /* max-width: 50%; */
    max-width: 1200px;
    line-height: 1.6; /* Line spacing*/
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}



/* course_divider { */
/*     left: 0; */
/*     padding-top: 40px; */
/*     position: absolute; */
/*     top: 27px; */
/*     width: 25px; */
/* } */

/* course_divider hr.one { */
/*     background-color: var(--darkblue); */
/*     border: 1px solid var(--darkblue); */
/*     border-radius: 7px 7px 7px 7px; */
/*     height: 2px; */
/* } */


/* FOOTER */
.footer {
    background: #E5E5E5;
    color: black;
    height: 140px;
    position: relative;
}

.footer .footer-content {
    height: 100px;
    width: 100%;
    text-align: center;
    position: absolute;
    margin-top: 20px;
}

.footer .footer-content .contact a{
    font-size: 1.6em;
    padding: 10px;
    margin-top: 10px;
}

.footer .footer-bottom {
    background: #E5E5E5;
    color: black;
    height: 40px;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 26px;
    left: 0px;
    padding-top: 20px;
    font-size: 1em;
}




/*image slideshow*/

* {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: black; /* #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;
}

.dot .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}
}




/*responsive image grid*/

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

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