@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,400;0,700;1,100;1,200;1,400;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.top {
  width: 100%;
  height: auto;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3d3c3d;
  color: rgb(218, 218, 218);
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 200;
}

.top a {
  color: rgb(218, 218, 218);
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 200;
  text-decoration: none;
}
.top a:hover {
  color: rgb(218, 218, 218);
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
}
.bar1 {
  width: 35px;
  height: 4px;
  background-color: #000;
  margin: 6px 0;
  margin-left: 30px;

  transition: 0.4s;
}

.bar1:hover {
  background-color: #d33438;
  transform: rotate(360deg);
  transform-origin: center;
}

.bar2 {
  width: 35px;
  height: 4px;
  background-color: #000;
  margin: 6px 0;
  margin-left: 30px;

  transition: 0.4s;
}

.bar2:hover {
  background-color: #d33438;
  transform: rotate(360deg);
  transform-origin: center;
}

.bar3 {
  width: 35px;
  height: 4px;
  background-color: #000;
  margin: 6px 0;
  margin-left: 30px;
  margin-bottom: 30px;
  transition: 0.4s;
}

.bar3:hover {
  background-color: #d33438;
  transform: rotate(360deg);
  transform-origin: center;
}

.hamburguer {
  margin-top: 30px;
  padding-top: 30px;
  color: #ffffff;
  font-size: 36px;
  cursor: pointer;
}
/* The side navigation menu */
.sidenav {
  line-height: 30px;
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 10000; /* Stay on top */
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9); /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 24px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover,
.offcanvas a:focus {
  color: #f1f1f1;
  text-decoration: none;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 15px;
  right: 50px;
  font-size: 36px;
  margin-left: 50px;
  font-size: 36px;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}

.logo {
  width: 100%;
  height: auto;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bannerBkg {
  width: 100%;
  height: auto;

  background-image: url("images/Bkg1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-image {
  background-image: url("../images/Bkg1.jpg");
  background-color: #cccccc;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  transition: 5s;

  animation: animate 45s ease-in-out running infinite alternate-reverse forwards;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.capa {
  color: #fff;
  font-size: 50px;
  text-shadow: 2px 2px 2px #000000;
}
.capa2 {
  color: #fff;
  font-size: 24px;
  text-shadow: 2px 2px 2px #000000;
}

@keyframes animate {
  0% {
    background-image: url("../images/Bkg1.jpg");
  }

  25% {
    background-image: url("../images/Bkg2.jpg");
  }

  50% {
    background-image: url("../images/Bkg3.jpg");
  }

  75% {
    background-image: url("../images/Bkg4.jpg");
  }

  100% {
    background-image: url("../images/Bkg5.jpg");
  }
}

.pagewrap {
  width: 100%;
  height: auto;
  padding: 20px;
  text-align: center;
}

.pagewrap h2 {
  font-weight: 100;
}

.prodcontainer {
  width: 100%;
  height: auto;
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prod {
  width: 100%;
  flex: 1;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 4px 2px #000000;
  box-shadow: 2px 2px 4px 2px #ccc;
  margin: 5px;
  border-radius: 7px;
  padding: 10px;
}

@media (max-width: 768px) {
  .prodcontainer {
    flex-direction: column;
  }
}
