html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  color: #343434;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

img {
  width: 300px;
}

.content-wrap {
  max-width: 800px;
  width: 85%;
  margin: 0 auto;
  padding: 60px 0;
}

/* Add a white background color to the top navigation */
}
.topnav {
  background-color: #ffffff;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: right;
  display: block;
  color: #7DB680;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #6890BE;
  color: #7DB680;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #6890BE;
  color: #7DB680;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}
* {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}
}
/* Centered text */

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-style: italic;
  font-size: 25px;
}

/* three buttons */
.btn {
  border: none; /* Remove borders */
  color: white; /* Add a text color */
  padding: 15px 25px; /* Add some padding */
  cursor: pointer; /* Add a pointer cursor on mouse-over */
  margin: 30px;
  border-radius: 4px;

}

.about {background-color: #6890BE;} /* lake blue */
.about:hover {background-color: #7FB3EF;}

.menu {background-color: #6890BE;} /* lake blue */
.menu:hover {background: #7FB3EF;}

.contact {background-color: #6890BE;} /* lake blue */
.contact:hover {background: #7FB3EF;}

/* image left text right */
.core {
  background: #fffff;
}
.core a {
  color: #2F3061;
}
.core .btn {
  color: #ffffff;
  background: #6890BE;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 4px;
  display: inline-block;
}
.core .btn:hover {
  background: #7FB3EF;
}
.core-item {
  overflow: hidden;
}
.core-item img {
  float: left;
  margin-right: 20px;
}
.core-item h3 {
  margin-top: 0;
}
/* video right text left */
.projects {
  background: #fffff;
}
.projects a {
  color: #2F3061;
}
.projects .btn {
  color: #ffffff;
  background: #6890BE;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 4px;
  display: inline-block;
}
.projects .btn:hover {
  background: #7FB3EF;
}
.project-item {
  overflow: hidden;
}
.project-item img {
  float: right;
  margin-left: 20px;
}
.project-item h3 {
  margin-top: 0;
}

/* Footer */
.footer-basic {
  padding: 5px;
  background-color:#E1E1E1;
  color:#4b4c4d;
}

.footer-basic ul {
  padding:0;
  list-style:none;
  text-align:center;
  font-size:18px;
  line-height:1.6;
  margin-bottom:0;
}

.footer-basic li {
  padding:0 10px;
}

.footer-basic ul a {
  color:inherit;
  text-decoration:none;
  opacity:0.8;
}

.footer-basic ul a:hover {
  opacity:1;
}

.footer-basic .social {
  text-align:center;
  padding-bottom:10px;
}

.footer-basic .social > a {
  font-size:24px;
  width:40px;
  height:40px;
  line-height:40px;
  display:inline-block;
  text-align:center;
  border-radius:50%;
  border:1px solid #ccc;
  margin:0 8px;
  color:inherit;
  opacity:0.75;
}

.footer-basic .social > a:hover {
  opacity:0.9;
}

.footer-basic .copyright {
  margin-top:15px;
  text-align:center;
  font-size:13px;
  color:#aaa;
  margin-bottom:0;
}