html, body, div, ul, li, article, aside {
  font-size: 100%;
}

body {
  background-color: #393939;
  color: #fff;
  font-family: sans-serif;
  margin: 0;
}

#index-container {
  text-align: center;
  margin: 0 auto;
  font-size: 2em;
}
#index-container h1 {
  font-size: 1em;
}
#index-container img {
  height: 50vh;
}

a {
  text-decoration: none;
  color: #fff;
}

h1 {
  font-family: "Open Sans", sans-serif;
  font-size: 4em;
  font-weight: bold;
  position: relative;
}

h2 {
  font-family: "Open Sans", sans-serif;
  position: relative;
  font-size: 3em;
}

h3 {
  font-size: 2em;
  font-family: "Open Sans", sans-serif;
  position: relative;
}

h4 {
  font-size: 1em;
  font-family: "Open Sans", sans-serif;
  position: relative;
}

p {
  font-size: 1.25em;
  font-family: "Open Sans", sans-serif;
  position: relative;
}

.button {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #b77833;
  color: #fff;
  text-align: center;
  padding: 0.5em 2em;
  font-size: 1.5em;
  position: relative;
  transition: all 0.2s;
  cursor: pointer;
}

.button:hover {
  padding: 0.5em 2.25em;
  background-color: #b2681a;
}

.header, .footer {
  display: grid;
  grid-template-columns: 40% auto;
  padding: 2em;
}
.header img, .footer img {
  max-width: 18em;
  display: block;
}
.header .nav-menu, .footer .nav-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}
.header .hamburger, .footer .hamburger {
  display: none;
}

.mobile-text {
  display: none;
}

.video-header {
  position: relative;
}
.video-header video {
  max-width: 100vw;
}
.video-header video::-webkit-media-controls-mute-button {
  border-radius: 50%;
}
.video-header #audio-control {
  position: absolute;
  top: 0px;
  right: 0px;
  background: transparent;
  border: none;
  padding: 1em;
  z-index: 100;
  filter: grayscale(1);
}
.video-header #audio-control img.speaker-icon {
  width: 35px;
}
.video-header .unmuted-button {
  filter: grayscale(0) !important;
}
.video-header .video-overlay {
  position: absolute;
  text-align: center;
  height: 58%;
  width: 100%;
  bottom: 0;
}
.video-header .video-overlay h1 {
  opacity: 1;
}
.video-header .video-overlay .two-buttons {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2em;
}
.video-header .video-overlay .two-buttons .button {
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .video-header .video-overlay .two-buttons {
    grid-template-columns: 1fr;
  }
}

.full-width {
  text-align: center;
  padding: 5em;
}

.img-with-content {
  background-color: #fff;
  color: #000;
  display: grid;
  width: 100%;
  grid-gap: 1em;
}
.img-with-content img {
  width: 100%;
}
.img-with-content .home-content {
  justify-self: center;
  align-self: center;
  padding: 2em;
}
.img-with-content .home-content ul {
  list-style: none;
  padding: 0;
}
.img-with-content .home-content ul li {
  font-size: 1.25em;
  padding: 0.25em 0;
}
.img-with-content .home-content .button {
  margin-top: 2em;
}

.two-one {
  grid-template-columns: auto 40%;
}

.one-two {
  grid-template-columns: 40% auto;
}

.two-columns {
  grid-template-columns: 1fr 1fr;
  padding: 1em 0 3em 0;
}
.two-columns .home-content {
  padding-left: 5em;
}

@media screen and (max-width: 900px) {
  h2.video-subheader {
    font-size: 1.5em;
  }
  .two-columns {
    grid-template-columns: 1fr;
  }
  .two-columns .home-content {
    padding-left: 2em;
  }
}
.home-contact-section {
  background-image: url("imgs/homepage/home-contact.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 15% 5em;
  color: #393939;
  position: relative;
}
.home-contact-section .button {
  margin: 0 auto;
}
.home-contact-section h3, .home-contact-section .button {
  z-index: 2;
  position: relative;
  color: #fff;
}
.home-contact-section .section-overlay {
  width: 100%;
  height: 100%;
  background: rgba(57, 57, 57, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
}

.sub-page-header {
  background-image: url("imgs/banners/banner4.jpg");
}

.contact-page-header {
  background-image: url("imgs/banners/banner2.jpg");
}

.gallery-page-header {
  background-image: url("imgs/banners/banner1.jpg");
}

.sub-page-header, .contact-page-header, .gallery-page-header {
  max-width: 100%;
  text-align: center;
  position: relative;
  padding: 3em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.sub-page-header .section-overlay, .contact-page-header .section-overlay, .gallery-page-header .section-overlay {
  width: 100%;
  height: 100%;
  background: rgba(57, 57, 57, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
}
.sub-page-header h1, .contact-page-header h1, .gallery-page-header h1 {
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4em;
  padding: 4em 8em;
  max-width: 100vw;
  border-top: 8px solid #b77833;
}
.services-grid h2 {
  grid-column: 1/3;
  text-align: center;
}
.services-grid .grid-content {
  background-color: transparent;
  transition: all 0.3s;
}
.services-grid .grid-content img {
  width: 100%;
  filter: brightness(0.85);
  transition: all 0.4s;
}
.services-grid .grid-content h3, .services-grid .grid-content p {
  padding: 0 30px;
  color: #fff;
  transition: all 0.4s;
}
.services-grid .grid-content:hover {
  background-color: #fff;
}
.services-grid .grid-content:hover img {
  filter: brightness(1);
}
.services-grid .grid-content:hover h3, .services-grid .grid-content:hover p {
  color: #393939;
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1em;
  padding: 2em 0;
}
.page-grid h4.sub-text {
  font-size: 1.5em;
}
.page-grid .full-width-img, .page-grid .page-text {
  grid-column: 1/3;
}
.page-grid .full-width-img, .page-grid .half-width-img {
  padding: 0 2em;
}
.page-grid .page-text {
  text-align: center;
  padding: 0.5em 15%;
}
.page-grid .page-list {
  padding: 3em 5%;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 8em;
  justify-self: center;
}
.page-grid .page-list li {
  font-size: 1.25em;
  padding: 0.25em 0;
}
.page-grid .home-contact-section {
  padding: 5em;
  margin: 2em 0;
}

@media screen and (max-width: 900px) {
  .page-grid .half-width-img {
    grid-column: 1/3;
    text-align: center;
  }
  .page-grid .left-img {
    grid-row: 4/5;
  }
  .page-grid h4.sub-text {
    font-size: 1em;
  }
  .page-grid .page-list {
    grid-template-columns: 1fr;
  }
}
.gallery-grid {
  margin: 3em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 2em;
}
.gallery-grid .gallery-item {
  max-width: 100vw;
}
.gallery-grid .gallery-item img {
  max-height: 28em;
  width: 100%;
}
.gallery-grid .gallery-square {
  height: 20em;
  overflow: hidden;
}
.gallery-grid .gallery-square img {
  height: 100%;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4em;
  padding: 0;
  text-align: center;
  max-width: 95vw;
  margin: 0 auto;
}
.contact-wrapper .contact-cards {
  padding: 2em;
}
.contact-wrapper .contact-cards a {
  color: #393939;
}
.contact-wrapper .contact-cards h3 {
  background-color: #fff;
  padding: 2em;
  color: #393939;
  border-radius: 1em;
  border: 4px solid #fff;
  transform: scale(1);
  transition: all 0.5s;
}
.contact-wrapper .contact-cards h3:hover {
  border: 4px solid #b77833;
  transform: scale(1.1);
}
.contact-wrapper .contact-form {
  margin: 0 auto;
  width: 80%;
  display: grid;
  grid-auto-flow: row;
}
.contact-wrapper .contact-form label, .contact-wrapper .contact-form input, .contact-wrapper .contact-form textarea {
  max-width: 65vw;
}
.contact-wrapper .contact-form label {
  padding: 0.5em;
}
.contact-wrapper .contact-form input, .contact-wrapper .contact-form textarea {
  font-size: 1.5em;
  padding: 0.5em;
  margin-bottom: 2em;
  border-radius: 0.5em;
}
.contact-wrapper .contact-form textarea {
  height: 8em;
  font-family: sans-serif;
}
.contact-wrapper .contact-form input[type=text]:focus {
  border-color: #b77833;
}
.contact-wrapper .contact-form .button {
  justify-self: center;
}

.page-footer {
  border-top: 8px solid #b77833;
}

@media screen and (max-width: 480px) {
  .header, .footer {
    grid-template-columns: 50% auto;
    grid-gap: 3em;
  }
  .header img, .footer img {
    width: 100%;
  }
  .header .nav-menu, .footer .nav-menu {
    grid-template-columns: 1fr;
  }
  .video-header .video-overlay {
    height: 60%;
  }
  main .img-with-content .home-content {
    padding-bottom: 2em;
  }
  .services-grid {
    padding: 4em;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 900px) {
  .header .nav-menu, .footer .nav-menu {
    grid-template-columns: 1fr 1fr;
  }
  .header #myLinks, .footer #myLinks {
    display: none;
  }
  .header .hamburger, .footer .hamburger {
    display: block;
    position: absolute;
    z-index: 100;
    top: 1rem;
    color: #fff;
    right: 1rem;
    padding: 4px;
    border: none;
    background: none;
    cursor: pointer;
  }
  .header .hamburger i, .footer .hamburger i {
    font-size: 35px;
  }
  .header .hamburger .closeIcon, .footer .hamburger .closeIcon {
    display: none;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-wrapper .contact-cards {
    padding: 0;
  }
  .contact-wrapper .contact-cards h3 {
    font-size: 1.25em;
    padding: 1em;
    margin: 1em;
  }
  .contact-wrapper form.contact-form {
    width: 75%;
  }
  .video-header .video-overlay {
    height: 60%;
  }
  .video-header .video-overlay h1 {
    font-size: 3em;
  }
  .video-header .two-buttons .button {
    font-size: 1.25em;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 3em;
  }
  h2 {
    font-size: 2em;
  }
  h3 {
    font-size: 1.5em;
  }
  h4 {
    font-size: 1.25em;
  }
  .header, .footer {
    grid-template-columns: 1fr;
  }
  .header img.top-logo, .header img, .footer img.top-logo, .footer img {
    width: 100%;
  }
  .header .nav-menu, .footer .nav-menu {
    text-align: center;
    grid-template-columns: 1fr;
  }
  .mobile-text {
    display: block;
  }
  .mobile-text h1 {
    font-size: 2em;
    padding: 0 0.75em;
    margin-bottom: 0;
    text-align: center;
  }
  .mobile-text h2 {
    text-align: center;
    padding: 0 0.75em;
    margin-top: 0;
  }
  .video-header {
    overflow: hidden;
  }
  .video-header video {
    max-width: 145vw;
  }
  .video-header .video-overlay {
    height: 100%;
  }
  .video-header .video-overlay h1 {
    opacity: 0;
    font-size: 2em;
    padding: 0 0.75em;
  }
  .video-header .video-overlay h2 {
    opacity: 0;
  }
  .full-width {
    padding: 2em;
  }
  main .two-one, main .one-two {
    grid-template-columns: 1fr;
    padding-bottom: 2em;
  }
  main .switch-small {
    grid-row: 1/2;
  }
  .services-grid {
    grid-template-columns: 1fr;
    padding: 2em;
  }
  .services-grid h2 {
    grid-column: 1/2;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    margin: 2em;
  }
}/*# sourceMappingURL=style.css.map */