/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Quattrocento+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@font-face {
  font-family: MyriadPro;
  src: url(../fonts/Myriad-Pro-Regular.ttf);
}

@font-face {
  font-family: MyriadProBold;
  src: url(../fonts/Myriad-Pro-Bold.ttf);
}

@font-face {
  font-family: Brat;
  src: url(../fonts/Brat.ttf);
}

/* UNIVERSAL */
* {
  padding: 0;
  margin: 0;
}

.page-wrapper {
  position: relative;
  min-height: 100vh;
}

a {
  color: #9b1e29;
}

/* NAVBAR*/
.menu-icon-wrapper {
  padding: 12px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  z-index: 2;
}

.menu-icon-wrapper .navbar-menu-icon {
  color: white;
  cursor: pointer;
  font-size: 1.85rem;
  margin-left: auto;
  -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.7));
}

nav {
  padding: 20px 0;
  z-index: 1;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  -webkit-transition: ease-in-out 200ms;
  transition: ease-in-out 200ms;
}

nav a {
  font-family: "Quattrocento Sans", sans-serif;
  color: #0e0a0a;
  text-decoration: none;
  font-size: 14px;
  padding: 0 16px;
  font-weight: 600;
}

nav a img {
  width: 100px;
}

nav a:nth-child(1) {
  margin-left: auto;
}

nav :hover {
  color: #9b1e29;
}

/* CONTENT */

.right-slider{
  padding-top: 24%;
}
.landing {
  color: white;
  padding-top: 3.5%;
  /* padding-left: 13.5%;*/
}

.landing p {
  font-family: MyriadProBold, sans-serif;
  max-width: 500px;
  text-shadow: -2px 1px #1b1b1b;
  line-height: 2.2rem;
  font-size: 1.65rem;
}

.landing .tabbed1 {
  color: #9b1e29;
  line-height: 1rem;
  font-size: 2.2rem;
}

.landing .tabbed2 {
  font-family: Brat, sans-serif;
  font-size: 5rem;
  line-height: 0;
  padding-top: 28px;
  padding-bottom: 15px;
  text-indent: 4rem;
  color: #9b1e29;
}

.landing .tabbed3 {
  text-indent: 8rem;
  font-size: 2.2rem;
  color: #9b1e29;
}

.landing .tabbed4 {
  text-indent: 12rem;
}

.slider {
  padding-top: 13%;
  padding-right: 2%;
}

.gallery {
  margin-top: 10em;
}

.interior {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 30px;
  min-height: 82vh;
  border-radius: 8px;
  margin-top: 40px;
}

.interior h1,
.interior h2 {
  font-family: "Bebas Neue", sans-serif;
}

.interior h2 {
  font-size: 1.75rem;
}

.interior h3,
.interior h4 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
}

.interior .title-hr {
  border-top: 1px solid #9b1e29;
  opacity: 1;
  max-width: 150px;
}

.interior hr {
  border-top: 1px solid black;
  opacity: 0.2;
}

.interior p {
  font-size: 0.9rem;
}

.interior .animal h3 {
  font-size: 1rem;
  font-weight: 600;
  font-family: MyriadPro, sans-serif;
}

.interior .animal p {
  font-size: 0.75rem;
}

.interior .animal img {
  border: 1px solid #666;
  width: 100%;
}

.interior .catalog-request-form {
  padding: 0 20px;
  border-left: 2px solid #555;
}

.btn-primary {
  background-color: #9b1e29;
  border: 1px solid #9b1e29;
}

.btn-primary:hover {
  background-color: #333;
  border: 1px solid #333;
}

.btn-primary:active,
.btn-primary:focus {
  background-color: #9b1e29;
  border: 1px solid #9b1e29;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

/* FOOTER 

  color: white;
  position: absolute;
  bottom: 0;
*/
.footer {
  color: white;
  background-color: #0e0a0a;
}

.footer .footer-content p {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.footer .footer-content a {
  color: white;
}

.footer .footer-content a img {
  width: 100px;
}

.footer .footer-content a:hover {
  color: #9b1e29;
}

.footer .footer-content .footer-divider {
  color: #9a6f65;
}

.footer .footer-content .footer-details {
  font-size: 0.75rem;
}

.footer-interior {
  position: initial;
  background-color: #111;
  padding-bottom: 20px;
}

/* IMAGE UNAVAILABLE */
div.unavailable {
  display: flex;
  flex-flow: column nowrap;
  aspect-ratio: 15/10;
  background-color: #ccc;
  color: dimgray;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid;
}

/* MEDIA QUERIES */
@media only screen and (min-width: 801px) {
  .menu-icon-wrapper {
    display: none;
  }
}

@media only screen and (max-width: 800px) {
  .menu-icon-wrapper {
    -webkit-transition: ease-in-out 200ms;
    transition: ease-in-out 200ms;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
    position: fixed;
    top: 0;
  }
  nav {
    padding-top: 60px;
    height: 60vh;
    -webkit-transition: ease-in-out 300ms;
    transition: ease-in-out 300ms;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    background-color: #111;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: -60vh;
  }
  nav .brand-logo {
    display: none;
  }
  nav a {
    font-size: 1rem;
    padding: 10px;
    border-bottom: 1px solid #333;
    color: white;
  }
  nav a:nth-child(1) {
    margin-left: initial;
  }
  .mobile-nav {
    background-color: #111;
  }
  .nav-open {
    top: 0;
  }
  .landing {
    padding: 20px;
    padding-top: 20px;
    margin-top: 60px;
  }
  .landing p {
    line-height: 1.8rem;
    font-size: 1.25rem;
  }
  .landing .tabbed1 {
    font-size: 1.8rem;
  }
  .landing .tabbed2 {
    font-size: 3rem;
    text-indent: 3rem;
  }
  .landing .tabbed3 {
    text-indent: 6rem;
    font-size: 1.8rem;
  }
  .landing .tabbed4 {
    text-indent: 9rem;
  }
  .interior {
    padding: 15px;
    border-radius: 0px;
    width: 100%;
    margin-bottom: 0 !important;
    padding-top: 60px;
    margin-top: 0;
  }
  .interior .catalog-request-form {
    padding: 0;
    border-left: 0px;
  }
  .footer {
    padding: 0 20px;
  }
  .footer p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .footer .footer-details {
    font-size: 0.7rem;
  }
}

/* IF SCREEN HEIGHT GETS SMALLER, THE FOOTER BECOMES RELATIVE POSITIONED */
@media only screen and (max-height: 667px) and (min-width: 601px) {
  .footer {
    margin-top: 50px;
    position: initial;
  }
}
/*# sourceMappingURL=styles.css.map */
