body {
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  /* font-family: Arial, sans-serif; */
  /* background: #ada4a5; */
  background: transparent;
}

header {
  /* background: url('https://picsum.photos/1920/600') center/cover no-repeat; */
  height: 45vh;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  color: black;
  background: rgba(255, 255, 255, 0.8);
  /* text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7); */
  margin-bottom: 20rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  margin-top: 25px;

}

#inner-content {
  position: relative;
  top: 0;
  width: 80vw;
  height: 100vh;
  margin: auto;
  /* padding: 0px 27px; */
  overflow-y: auto;
  scrollbar-width: none;
}

footer {
  background: #222;
  color: #c52222;
  padding: 2rem 0;
  z-index: -1 !important;
}

.navbar {
  background: rgba(255, 255, 255, 0.8);
  font-size: large;
  font-weight: bold;
  width: 100%;
}

.nav-link {
  text-transform: capitalize;
  margin: 0 10px;
}

nav::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="100" height="50" viewBox="0 0 100 100"><polygon points="0 0, 100 0, 80 0, 61 50, 39 50, 20 0" fill="%23ffffffcc"/></svg>') repeat-x;
  background-size: 50px 50px;
  background-position: 10px 0;
}

a.nav-link img {
  width: 40px;
  height: 25px;
  border-radius: 5px;
  padding: 0px;
  border: 2px solid #ccc;
}

section {
  background: rgba(255, 255, 255, 0.8);
  /* margin-top: 345px; */
  margin-bottom: 50rem;
  padding: 20px 40px 40px;
  position: relative;
  /* scroll-margin-top: 100px; */
}

.sectionhook::after,
header::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: 0;
  width: 100vw;
  height: 50px;
  background: inherit;
  clip-path: polygon(0 0, 30% 100%, 75% 40%, 90% 80%, 100% 0);
}

.sectionhook::before,
header::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -15px;
  width: 110vw;
  height: 50px;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="60" height="30" viewBox="0 0 100 100"><polygon points="0 100, 100 100, 90 100, 70 50, 30 50, 10 100" fill="%23ffffffcc"/></svg>') repeat-x;
  background-size: 50px 50px;
}

/* .sectionhook::before , header::before{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: inherit;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
} */


#background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
  width: auto;
  height: 100vh;
  margin: 0 auto;
  /* position: relative; */
}

#background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: -1;
  transition: opacity 2s ease-out;
  transform: scale(1);
}

#background img.active {
  opacity: 1;
  z-index: 0;
}

#background img.animating {
  animation: move 15s ease-out forwards;
}

.card-text {
  text-align: justify;
}

.card-text span {
  font-weight: bold;
  text-indent: -1rem;
}

#products-main img {
  max-height: 200px !important;
}

@keyframes move {
  0% {
    transform: scale(1) translate(0, 0);
    transform-origin: center center;
  }

  100% {
    transform: scale(1.5) translate(0%, -20%);
    transform-origin: center center;
  }
}


@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    /* margin-top: 0; */
  }
}

@media (max-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: none;
    /* margin-top: 0; */
  }

  nav::after {
    width: 110vw;
  }

  #inner-content {
    width: 90vw;
  }

  #header {
    min-height: 82vh;
    padding: 0 15px;
  }

  /* .sectionhook,
  header {
    margin-top: 323px;
  } */

  /* .navbar-collapse.show{
    position: absolute;
    top: 8rem;
    left: 5rem;
    background: white;
    border-radius: 15px;
    z-index: 500;
  } */
}