
.hero .menu-btn {
  top: 50px;
  cursor: pointer;
  letter-spacing: 5px;
  font-weight: bold;
}
.hero .menu-btn:hover span:nth-child(1) {
  width: 22px;
}
.hero .menu-btn:hover span:nth-child(2) {
  width: 20px;
}
.hero .menu-btn span {
  display: block;
  margin: 4px 10px;
  background: #8b0101;
  width: 25px;
  height: 3px;
  border: 5px;
  transition: 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hero .menu-btn span:nth-child(2) {
  width: 25px;
  transition-delay: 0.1s;
}
.hero .menu-btn span:nth-child(3) {
  width: 25px;
  transition-delay: 0.1s;
}

.menu.active {
  opacity: 0;
  visibility: hidden;
}

.menu {
  transition: 0.52s;
  z-index: 1111;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(27, 14, 5, 0.95);
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu span {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 48px;
  cursor: pointer;
}
.menu .links-container {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
}
.menu .links-container a {
  width: 100%;
  height: 400px;
  font-size: 4em;
  text-decoration: none;
  color: whitesmoke;
  transition: 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  position: relative;
}
.menu .links-container a:hover {
  color: #8b0101;
  font-size: 4.5em;
  margin-left: 10px;
}
.menu .links-container a:before {
  color: whitesmoke;
}
.menu .home:after {
  content: "";
  position: absolute;
  background: url("../img/sbl1.jpg");
  width: 350px;
  height: 460px;
  background-size: cover;
  top: -200%;
  right: -1000px;
  transition: 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  filter: grayscale(75%);
  visibility: hidden;
}
.menu .home:hover:after {
  visibility: visible;
  top: -205%;
}
.menu .home:hover:before {
  visibility: visible;
  right: -1150px;
}
 .menu .places:after {
  content: "";
  position: absolute;
  background: url("../img/sbl2.jpg");
  width: 350px;
  height: 460px;
  background-size: cover;
  top: -200%;
  right: -1000px;
  transition: 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  filter: grayscale(75%);
  visibility: hidden;
}
.menu .places:hover:after {
  visibility: visible;
  top: -205%;
}
.menu .places:hover:before {
  visibility: visible;
  right: -1150px;
}
.menu .about:after {
  content: "";
  position: absolute;
  background: url("../img/sbl3.jpg");
  width: 350px;
  height: 460px;
  background-size: cover;
  top: -200%;
  right: -1000px;
  transition: 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  filter: grayscale(75%);
  visibility: hidden;
}
.menu .about:hover:after {
  visibility: visible;
  top: -475%;
}
.menu .about:hover:before {
  visibility: visible;
  right: -1150px;
}
.menu .contact:after {
  content: "";
  position: absolute;
  background: url("../img/sbl4.jpg");
  width: 350px;
  height: 460px;
  background-size: cover;
  top: -200%;
  right: -1000px;
  transition: 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  filter: grayscale(75%);
  visibility: hidden;
}
.menu .contact:hover:after {
  visibility: visible;
  top: -575%;
}
.menu .contact:hover:before {
  visibility: visible;
  right: -1375px;
} 



.menu .privacy:after {
  content: "";
  position: absolute;
  background: url("../img/sbl5.jpg");
  width: 350px;
  height: 460px;
  background-size: cover;
  top: -200%;
  right: -1000px;
  transition: 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  filter: grayscale(75%);
  visibility: hidden;
}
.menu .privacy:hover:after {
  visibility: visible;
  top: -575%;
}
.menu .privacy:hover:before {
  visibility: visible;
  right: -1375px;
} 

.menu .terms:after {
  content: "";
  position: absolute;
  background: url("../img/sbl6.jpg");
  width: 350px;
  height: 460px;
  background-size: cover;
  top: -200%;
  right: -1000px;
  transition: 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  filter: grayscale(75%);
  visibility: hidden;
}
.menu .terms:hover:after {
  visibility: visible;
  top: -575%;
}
.menu .terms:hover:before {
  visibility: visible;
  right: -1375px;
} 

.menu .menu-title {
  color: white;
  font-size: 1em;
  opacity: 0.4;
  letter-spacing: 10px;
}
.btn-close{
  background: none !important;
}
.btn-close:hover{
  color: #fff;
}



@media screen and (min-width : 767px) {
 .menu .links-container a {
  font-size: 40px;
}
.menu .links-container a:hover {
  font-size: 44px;
}
}
@media screen and (max-width : 575px) {
 .menu .links-container a {
  font-size: 28px;
}
.menu .links-container a:hover {
  font-size: 30px;
}
}

