@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
::-moz-selection {
  background: #291f15;
  color: #fff;
}

::selection {
  background: #291f15;
  color: #fff;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Roboto Slab", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #291f15;
  background-image: url("/img/bg.jpg");
  background-attachment: fixed;
  background-position: center center;
  background-size: 100% 100%;
  height: 100vh;
}

@media (max-width: 768px) {
  body {
    background-size: cover;
  }
}
#top {
  background: rgba(0, 0, 0, 0.9);
  padding: 20px 0;
  box-sizing: border-box;
}
#top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#top .container .logo img {
  height: 40px;
}
#top .container .bt-hamburguer {
  display: none;
}
@media (max-width: 1199px) {
  #top .container .bt-hamburguer {
    display: block;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #fff;
    font-size: 30px;
  }
}
#top .container .menu-main-container {
  width: 100%;
  text-align: center;
  z-index: 999;
}
#top .container .menu-main-container ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  padding: 0;
  margin: 0;
}
#top .container .menu-main-container ul li {
  position: relative;
  width: 100%;
}
@media (min-width: 1200px) {
  #top .container .menu-main-container ul li {
    display: flex;
    align-items: center;
  }
}
#top .container .menu-main-container ul li a {
  padding: 8px;
  width: 100%;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
#top .container .menu-main-container ul li a:hover {
  opacity: 0.8;
}
#top .container .menu-main-container ul li:not(:last-child) {
  border-right: 1px solid #fff;
}
#top .container .menu-main-container ul li.show ul {
  background: #111;
  display: block;
  width: 100%;
  position: absolute;
  z-index: 999;
}
@media (min-width: 1200px) {
  #top .container .menu-main-container ul li.show ul {
    top: 33px;
  }
}
#top .container .menu-main-container ul li.show ul li {
  border-right: none;
}
#top .container .menu-main-container ul li.show ul li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}
#top .container .menu-main-container ul li ul {
  display: none;
}
@media (max-width: 1199px) {
  #top .container .menu-main-container {
    position: absolute;
    left: -100vw;
    transition: all ease 0.3s;
    background: rgba(0, 0, 0, 0.9);
    top: 85px;
  }
  #top .container .menu-main-container.show {
    left: 0;
  }
  #top .container .menu-main-container ul {
    flex-direction: column;
  }
  #top .container .menu-main-container ul li {
    border: none !important;
  }
  #top .container .menu-main-container ul li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
  }
  #top .container .menu-main-container ul li a {
    padding: 15px 0;
  }
  #top .container .menu-main-container ul li.show ul {
    background: #444;
    display: block;
    position: relative;
    z-index: 99;
    width: 100%;
  }
  #top .container .menu-main-container ul li.show ul li {
    border-right: none;
  }
  #top .container .menu-main-container ul li.show ul li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  }
}

#footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 30px 0;
  color: #fff;
  font-size: 12px;
  text-align: center;
  box-sizing: border-box;
  bottom: 0;
  width: 100%;
  z-index: 9;
}
#footer p {
  margin: 0;
  padding: 0;
}
#footer a {
  color: #fff;
  text-decoration: none;
}
#footer a:hover {
  text-decoration: underline;
}
#footer .social-media {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
#footer .social-media li a {
  height: 23px;
  width: 23px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  color: #000;
  text-decoration: none;
  margin: 0 15px;
}

@media (max-width: 600px) {
  #footer {
    position: relative;
  }
}
@media (min-width: 2000px) {
  #footer {
    position: fixed;
  }
}
.current-menu-item {
  color: #877543 !important;
}

#therms {
  color: rgba(0, 0, 0, 0) !important;
  opacity: 0 !important;
  position: absolute !important;
  bottom: 0 !important;
  right: 0 !important;
}/*# sourceMappingURL=styles.css.map */