a {
  color: #000000;
}
a:hover {
  background: #263341;
  color: #ffffff;
  text-decoration: none;
}
a:active, a:focus {
  background: #263341;
  color: #ffffff;
  text-decoration: none;
}
body,
html {
  margin: 0px;
  padding: 0px;
  height: 100%;
}
body {
  background: #ffffff;
  color: #000000;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
table,
th,
td {
  border: 0px solid #000000;
  border-collapse: collapse;
}
h2 {
  font-family: Helvetica, Arial, sans-serif;
}
hr {
  border-top: 1px solid #263341;
  width: 10%;
}
.background {
  background-image: url("../back.jpg");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.space {
  margin-top: 40px;
}

/* image carousel settings */

.carousel .carousel__item,
.carousel .carousel__item--hidden {
  display: none;
}
.carousel .carousel__item img {
  width: 100;
  height: auto;
  max-width: 670px;
}
.carousel .carousel__item--visible {
  display: block;
  animation: fadeVis 0.2s;
}
/* set spacing of the buttons */
.carousel .carousel__actions {
  display: flex;
  width: 100%;
  justify-content: space-between;

  /* align to center the buttons */
  transform: translateY(-15%);
}
.carousel .carousel__actions button {
  border-radius: 0px;
  border: 0;
  font-weight: bold;
  font-size: 110%;
  cursor: pointer;
  width: 40;
  height: 40;
  margin: 0 10px;
}
@keyframes fadeVis {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: opacity linear;
  }
}

/* desktop adjustments */
@media screen and (min-width: 910px) {
  .header {
    background: #ffffff;
    /* margin: top right bottom left */
    margin: 0px 0px 0px 35px;
    position: absolute;
    top: 35px;
    z-index: 2;
  }
  .menu {
    margin: 0px;
    padding: 0px;
    position: absolute;
    top: 120px;
    left: 5px;
  }
  #nav {
    background-color: #ffffff;
  }
  ul {
    width: 100%;
    min-height: 25px;
    color: #fff;
    overflow: visible;
  }
  ul li {
    color: #000;
    height: 21px;
    padding: 2px;
    display: block;
    position: relative;
  }
  .main {
    background: #ffffff;
    max-width: 670px;
    margin: 0px;
    position: relative;
    top: 120px;
    left: 220px;
    z-index: -1;
  }
  .carousel {
    overflow: hidden;
    max-width: 670px;
    position: relative;
    top: 120px;
    left: 220px;
  }
}

/* phone and tablet adjustments */
@media (max-width: 910px) {
  .header {
    background: #ffffff;
    /* margin: top right bottom left */
    margin: 15px 15px 15px 15px;
    top: 35px;
    z-index: 2;
  }
  .menu {
    margin: 0px;
    padding: 0px;
    position: relative;
    top: 5px;
    left: 0px;
  }
  #nav {
    color: #ffffff;
  }
  ul {
    width: 100%;
    min-height: 15px;
    color: #ffffff;
  }
  ul li {
    /* border-right: 1px solid #333; */
    height: 15px;
    padding: 10px;
    display: block;
    float: left;
    position: relative;
  }
  .main {
    display: block;
    background: #ffffff;
    margin: 12px;
    position: relative;
    top: 35px;
    z-index: -1;
  }
  img {
    border: 0;
    padding: 5px;
    width: 100%;
  }
  .carousel {
    overflow: hidden;
    max-width: 100%;
    position: relative;
  }
}
