* {
  box-sizing: border-box;
}

/*Animation*/
@keyframes main-opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*End Animation*/
body {
  animation-name: main-opacity;
  animation-duration: 1s;
  background-color: rgb(229, 160, 36);
}

/*Navbar*/
.first-wrapper .navbar-header {
  font-family: "Dancing Script", cursive;
  text-transform: uppercase;
  padding: 5px;
}
.first-wrapper .navbar-header a {
  transition-duration: 0.6s;
}
.first-wrapper .navbar-header a:hover {
  color: rgb(229, 160, 36);
}

/*End Navbar*/
/*Menu Wrapper*/
.menu-wrapper {
  margin: 100px auto;
}
.menu-wrapper .header h1 {
  font-size: 5em;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}
.menu-wrapper .header p {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  font-weight: bold;
}
.menu-wrapper .content .list-item {
  list-style-type: none;
  position: relative;
}
.menu-wrapper .content .list-item li h3 {
  font-size: 1.3em;
  padding: 10px;
}
.menu-wrapper .content .list-item li h3 .price-all {
  font-size: 0.7em;
  position: absolute;
  right: 0%;
  padding-right: 10px;
}
.menu-wrapper .content .list-item li h3 .price {
  position: absolute;
  right: 0%;
  font-weight: bold;
  display: inline;
  padding-right: 10px;
}
.menu-wrapper .content .list-item li h3 .bolder {
  text-transform: uppercase;
  font-weight: bold;
}
.menu-wrapper .content .list-item li h3 .group {
  font-size: 1.5em;
}

.borderNone {
  border-bottom: none !important;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  overflow: hidden;
}
.card img {
  width: auto;
  height: 600px;
}
.card .card-header {
  font-weight: bold;
  color: #000;
  text-align: center;
  padding: 5px;
  font-size: 20px;
}
.card .card-body {
  color: #000;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}

.gallery h2 {
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}

.gallery-box {
  margin: 50px 0 50px 0;
  text-align: center;
}
.gallery-box img {
  width: 350px;
  height: 250px;
  margin: 5px;
}

/*End Menu Wrapper*/
/*Media Screen 991px*/
@media screen and (max-width: 1024px) {
  .gallery-box {
    margin: 40px 0 0px 0;
    text-align: center;
  }
  .gallery-box img {
    width: 300px;
    height: 220px;
    margin: 5px;
  }
  .gallery-box h3 {
    padding-bottom: 50px;
    font-weight: bold;
  }
}
@media screen and (max-width: 991px) {
  .content .list-item li {
    border-bottom: 1px solid #000;
  }
  .content .list-item li:first-child {
    border: none;
  }
  .content .list-item li h3 .price {
    display: block;
    padding-top: 20px;
  }
  .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .card img {
    width: auto;
    height: 600px;
  }
}
@media screen and (max-width: 375px) {
  .gallery-box {
    margin: 40px 0 0px 0;
    text-align: center;
  }
  .gallery-box img {
    width: 220px;
    height: 150px;
  }
  .gallery-box h3 {
    padding-bottom: 50px;
    font-weight: bold;
  }
}/*# sourceMappingURL=pageStyle.css.map */