* {
}

:root {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.5;
  font-weight: 400;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2a2625;
}

/* Global styles */

.top-nav {
  display: none;
}

nav {
  text-align: left;
  align-items: left;
  align-content: left;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 3%;
  margin-right: 0%;
  width: 30%;
}

.nav-bar {
  clear: both;
  width: 100%;
}

.nav-items {
  margin-right: 10%;
  float: left;
  font-size: 20px;
  font-weight: bold;
}

.nav-items:hover {
  cursor: pointer;
  border-bottom: 2px solid #1e5bb7;
}

.contact-button {
  background-color: #993809;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  padding: 10px 15px 10px 15px;
  border: 2px solid #082c60;
}

.contact-button:hover {
  background-color: #082c60;
  border: 2px solid #993809; /* add color in later */
  color: #ffffff;
}

section {
  width: 100%;
  overflow-x: hidden;
}

section#about {
  overflow-x: hidden;
  margin-top: 5%;
  margin-bottom: 5%;
}

.about-content {
  float: left;
  width: 50%;
  margin-left: 3%;
}

.about-img {
  width: 35%;
  margin-left: 5%;
  margin-top: 5%;
  border-radius: 5px;
}

a {
  font-weight: 500;
  color: #2a2625;
  text-decoration: inherit;
}

a:hover {
  color: #2a2625; /* add color in later */
} 

body {
  font-size: 22px;
}

h1 {
  font-size: 36px;
  color: #993809;
}

h3 {
  font-size: 24px;
  color: #082c60;
}

/* Slideshow styles */

  /* Slideshow container */
  .slideshow-container {
    max-width: 75%;
    position: relative;
    margin: auto;
    justify-content: center;
    align-content: center;
  }

  /* Hide the images by default */
  .mySlides {
    display: none;
  }

  .slide-one {
    display: block;
  }

  .mySlides img {
    align-content: center;
    display: flex;
    margin: auto;
  }

  .mySlides .caption {
    margin: auto;
    text-align: center;
  }

  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #993809;
    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: #2a2625;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    align-content: center;
  }

  /* Number text (1/3 etc) */
  .number-text {
    color: #082c60;
    font-size: 16px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    font-weight: bold;
  }

  /* 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: 0.4}
    to {opacity: 1}
  }


/* Footer styles */

hr {
  border-top: 2px solid lightgray;
  border-radius: 5px;
  width: 95%;
  opacity: 0.75;
}

footer {
  position: absolute;
  width: 100%;
  overflow-x: hidden;
}

footer h3 {
  margin-left: 3%;
}

.footer-left-content {
  width: 50%;
  float: left;
  display: flex;
  align-items: baseline;
}

.footer-right-content {
  width: 45%;
  text-align: right;
  display: flex;
  right: 0;
  float: left;
  align-items: end;
  justify-content: flex-end;
  margin-right: 5%;
}

a.footer-col-titles {
  right: 0;
  margin-top: 2%;
}

footer:after {
  content: "";
  display: table;
}

footer a {
  float: left;
  margin-right: 5%;
  right: 0;
  border-bottom: 2px solid #ffffff;
}

footer a:hover {
  cursor: pointer;
  border-bottom: 2px solid #1e5bb7;
}

.fa {
  text-align: center;
  width: 2vw;
  height: 2vw;
  display: flex;
  border-radius: 50%;
  margin-left: 2%;
  margin-top: 1%;
}

.fa-facebook {
  background-color: #000000;
  color: #ffffff;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  align-content: space-around;
}

.fa-facebook:hover {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #000000;
}

.fa-envelope {
  background-color: #000000;
  color: #ffffff;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  align-content: space-around;
  margin-left: 0%;
  border: 2px solid #000000;
}

.fa-envelope:hover {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #000000;
}

@media (min-width: 350px) and (orientation: portrait) {

  nav.menu {
    display: none;
  }

  .top-nav .t-logo {
    color: #2A2625;
    z-index: 9999;
    display: flex;
  }

  .top-nav #my-links a {
    text-decoration: none!important;
  }

  .top-nav {
    display: block;
    overflow: hidden;
    background-color: #993809;
    position: relative;
  }
  
  /* Hide the links inside the navigation menu (except for logo/home) */
  .top-nav #my-links {
    display: none;
    background-color: #2a2625;
  }
  
  /* Style navigation menu links */
  .top-nav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 22px;
    display: block;
  }
  
  /* Style the hamburger menu */
  .top-nav a.icon {
    background: #2a2625;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 50px!important;    
  }

  .top-nav .fa {
    width: 8vw;
    height: 4vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fa-bars {
    align-content: center;
    margin-top: 10px;
  }
  
  .top-nav {
    border: none;
  }

  .top-nav a {
    background-color: #2a2625;
  }

  /* Add a grey background color on mouse-over */
  .top-nav a:hover {
    background-color: #082c60;
    color: white;
    border: none;
  }
  
  /* Style the active link (or home/logo) */
  .active {
    background-color: #993809!important;
    color: white;
    height: 50px!important;
    font-size: 22px;
  }

  section {
    width: 100%;
    height: 100vh;
  }

  section.main {
    height: 50vh;
  }

  .about-content {
    width: 95%;
    margin-left: 3%;
  }

  a.cta {
    float: left;
    margin-bottom: 2%;
  }
  
  .about-img {
    float: left;
    width: 95%;
    margin-left: 5%;
    margin-top: 5%;
    border-radius: 5px;
    padding-bottom: 2%;
  }

  section.slideshow-imgs {
    height: auto;
  }

  /* Slideshow styles */

    /* Slideshow container */
    .slideshow-container {
      max-width: 75%;
      position: relative;
      margin: auto;
      justify-content: center;
      align-content: center;
    }

    /* Hide the images by default */
    .mySlides {
      display: none;
    }

    .slide-one {
      display: block;
    }

    .mySlides img {
      align-content: center;
      display: flex;
      margin: auto;
    }

    .mySlides .caption {
      margin: auto;
      text-align: center;
    }

    /* Next & previous buttons */
    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      margin-top: -22px;
      padding: 16px;
      color: #993809;
      font-weight: bold;
      font-size: 36px;
      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: #2a2625;
      font-size: 20px;
      padding: 8px 12px;
      position: absolute;
      bottom: 8px;
      width: 100%;
      text-align: center;
      align-content: center;
    }

    /* Number text (1/3 etc) */
    .number-text {
      color: #082c60;
      font-size: 18px;
      padding: 8px 12px;
      position: absolute;
      top: 0;
      font-weight: bold;
    }

    .slide-circles {
      width: 100%;
    }

    /* The dots/bullets/indicators */
    .dot {
      cursor: pointer;
      height: 30px;
      width: 30px;
      margin: 0 2px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.6s ease;
    }

    .current, .dot:hover {
      background-color: #717171!important;
      height: 30px!important;
    }

    /* Fading animation */
    .fade {
      animation-name: fade;
      animation-duration: 1.5s;
    }

    @keyframes fade {
      from {opacity: 0.4}
      to {opacity: 1}
    }

  /* Footer styles */

  hr {
    display: none!important;
  }

  footer {
    margin-top: 20%;
    position: relative;
    width: 100%;
    bottom: 0;
    display: block;
  }

  .footer-left-content {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-evenly;
    /* margin-top: 20%; */
  }

  .footer-right-content {
    width: 100%;
    float: left;
    text-align: center;
    display: flex;
    right: 0;
    align-items: center;
    justify-content: center;
    margin-right: 5%;
    margin-bottom: 5%;
  }

  a.footer-col-titles {
    right: 0;
    margin-top: 2%;
  }

  footer:after {
    content: "";
    display: table;
  }

  footer a {
    float: left;
    margin-right: 5%;
    right: 0;
    border-bottom: 2px solid #ffffff;
  }

  footer a:hover {
    cursor: pointer;
    border-bottom: 2px solid #1e5bb7;
  }

  footer .footer-left-content .fa {
    text-align: center;
    width: 8vw;
    height: 8vw;
    display: flex;
    border-radius: 50%;
    margin-left: 2%;
    margin-top: 1%;
    align-items: center;
  }

  .fa-facebook {
    background-color: #993809;
    color: #ffffff;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    align-content: space-around;
    border: 2px solid #082c60;
  }

  .fa-facebook:hover {
    background-color: #ffffff;
    color: #082c60;
    border: 2px solid #993809;
  }

  .fa-envelope {
    background-color: #993809;
    color: #ffffff;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    align-content: space-around;
    margin-left: 0%;
    border: 2px solid #082c60;
  }

  .fa-envelope:hover {
    background-color: #ffffff;
    color: #082c60;
    border: 2px solid #993809;
  }

}

/* Tablet to In-Between Desktop Size ?
@media (min-width: 767px) and (orientation: portrait) {

} */