body {
  margin: auto;
  max-width: 100%;
  background: white;
}
@font-face {
  font-family: "didot";
  src: url("fonts/Didot Italic.ttf");
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.2rem 0.5rem;
}
.hamburger {
  display: none;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #101010;
}
.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-item {
  margin-left: 2rem;
  font-size: 20px;
}
.nav-link {
  font-size: 20px;
  font-weight: 400;
  color: goldenrod;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media only screen and (max-width: 959px) {
  .content {
    padding-top: 75px;
    max-width: 100%;
    margin-left: 5px;
    margin-right: 5px;
  }
  .header {
    max-width: 100%;
    margin-left: 0;
    line-height: 30px;
  }
  .footer {
    max-width: 100%;
    margin-left: 0;
    font-size: 10px;
  }
  td {
    display: block;
    width: auto;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 75px; /* How far down the top of the hamburger menu is - adjust this to get it pixel-perfect on a mobile */
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    border-radius: 0px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-item {
    margin: 1rem 0;
  }
  .hamburger {
    display: block;
    cursor: pointer;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
@media only screen and (min-width: 960px) {
  .content {
    padding-top: 81px; /* moves content down so it sits beneath the header */
    max-width: 960px;
    margin-left: calc(50vw - 480px);
  }
  .header {
    max-width: 960px;
    margin-left: calc(50vw - 480px);
  }
  .footer {
    max-width: 960px;
    margin-left: calc(50vw - 480px);
  }
  td {
    width: 50%;
  }
}
.header-container {
  width: 100%;
  background: rgb(250, 250, 250); /* Fallback */
  background: rgba(250, 250, 250, 0.9);
  /*background: white;*/
  position: fixed;
  border-bottom: 2px solid goldenrod;
  z-index: 2;
}
.header {
  padding-top: 5px;
  padding-left: 0px;
  padding-right: 0px;
}
.header li {
  list-style: none;
  line-height: 1.2rem;
}
.header-items {
  font-size: 18px;
  text-align: right;
}
.logo {
  display: block;
  width: 138px;
  height: 60px;
  background: url("../images/logo.png"), url("../images/logo-hover.png"); /* this is supposed to pre-load hover images to stop them flickering on first hover */
}
.logo:hover {
  display: block;
  width: 138px;
  height: 60px;
  background: url("../images/logo-hover.png");
}
.header a:link {
  color: #747474;
  text-decoration: none;
}
.header a:visited {
  color: #747474;
  text-decoration: none;
}
.header a:hover {
  text-decoration: none;
  color: goldenrod;
  transition: 0.5s;
}
.header a:active {
  color: goldenrod;
  text-decoration: none;
}
span {
  color: black;
  border-bottom: 1px solid goldenrod;
}
.content-container {
  background: #f9f2e4;
  margin: 0px;
  z-index: 1;
}
.content {
  background-color: #f9f2e4;
  height: 100%;
}
hr {
  border-top: 1px solid goldenrod;
  border-bottom: 1px solid white;
  margin: 0px;
}
hr.footer-hr {
  border-top: 1px solid goldenrod;
  border-bottom: 1px solid goldenrod;
  margin: 0px;
}
h1 {
  margin: 0;
  padding: 20px 0;
  color: #d1a179;
  font-family: "didot", Italic;
}
h2 {
  margin: 0;
  padding: 20px 0;
  color: #d1a179;
  font-family: "didot", Italic;
}
h3 {
  margin: 0;
  padding: 20px 0;
  color: #d1a179;
  font-family: "didot", Italic;
}
html {
  color: #69513e;
  font-size: 20px;
  font-family: "didot", Italic;
}
.content a:link {
  color: #d1a179;
  text-decoration: none;
}
.content a:visited {
  color: #d1a179;
  text-decoration: none;
}
.content a:hover {
  text-decoration: none;
  color: #69513e;
  transition: 0.5s;
}
.content a:active {
  color: #69513e;
  text-decoration: none;
}
.footer a:link {
  color: #69513e;
  text-decoration: none;
}
.footer a:visited {
  color: #69513e;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: none;
  color: #d1a179;
  transition: 0.5s;
}
.footer a:active {
  color: #d1a179;
  text-decoration: none;
}
.footer-container {
  width: 100%;
  height: 100%;
  background: white;
}
.footer {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  text-align: center;
  background: white;
  color: #69513e;
  font-size: 16px;
}
.frw-logo {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../images/cat_tiny.png"), url("../images/cat_tiny-hover.png"); /* this is supposed to pre-load hover images to stop them flickering on first hover */
}
.frw-logo:hover {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../images/cat_tiny-hover.png");
}
#carousel-wrapper-top {
  /*width: 100%;*/
  max-width: 960px;
  height: auto;
  position: relative;
  text-align: center;
  left: 50%;
  top: 50%;
  margin-left: -480px;
  margin-top: 0px;
  background: url("../images/top-image.jpg");
}
#carousel-wrapper-bottom {
  /*width: 100%;*/
  max-width: 960px;
  height: 460px;
  position: relative;
  text-align: center;
  left: 50%;
  top: 50%;
  margin-left: -478px;
  margin-top: -25px;
  background: url("../images/bottom-carousel-background.png");
}
