@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat-VariableFont_wght.ttf);
}
body {
  margin: 0;
  background-image: url(../../img/restoran/background_bar.jfif);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  font-family: Montserrat;
}

.slider_container {
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 95vh;
  color: white;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.slides_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.card_container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.restoran__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 50px;
  background-color: rgba(236, 235, 233, 0.368627451);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  opacity: 0;
  visibility: hidden;
  -webkit-animation: fadeIn 1.5s ease forwards;
          animation: fadeIn 1.5s ease forwards;
  height: 29rem;
  width: 37rem;
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    visibility: visible;
  }
}
.restoran__card:hover {
  -webkit-box-shadow: 0 10px 30px rgba(192, 151, 45, 0.77);
          box-shadow: 0 10px 30px rgba(192, 151, 45, 0.77);
}

.prod_name__container {
  width: 13rem;
  height: 18rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.prod_name__container .name {
  width: 12rem;
  font-weight: bolder;
  text-align: center;
  font-size: 20px;
}

.img_container img {
  width: 145px;
}

.description__container {
  width: 13rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
}

.description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 15rem;
  height: 6rem;
}
.description p {
  font-size: small;
  text-align: center;
}
.description .product_weigth {
  margin-bottom: 10px;
  font-size: 13px;
}

.next_btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 52%;
  right: 27%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.prev_btn {
  background: transparent;
  border: none;
  position: absolute;
  top: 52%;
  left: 27%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.prev_btn:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.next_btn:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.list_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.categories_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  list-style: none;
  padding: 0;
  width: 50%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  border: 2px solid #00f0ff;
  margin: 0;
  border-width: 0 2px 2px 2px;
  border-radius: 0 0 56px 56px;
  height: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 240, 255, 0.4);
          box-shadow: 0px 0px 8px 0px rgba(0, 240, 255, 0.4);
  position: relative;
  font-weight: 400;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.categories_list li {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 110px;
  text-align: center;
}

.header_content ul::before {
  content: "";
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.categories_list::before {
  border-width: 0 2px 2px 2px;
  border-radius: 0 0 56px 56px;
  border: 2px solid #00f0ff;
}

.categories_list:hover::before {
  background: rgba(0, 240, 255, 0.75);
}

.categories_list li:hover {
  color: rgba(180, 0, 168, 0.6352941176);
  cursor: pointer;
  font-weight: 600;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media (min-width: 768px) {
  .list_container .categories_list {
    width: 85%;
    max-width: 670px;
  }
  .next_btn {
    top: 50vh;
    right: -4%;
    z-index: 1;
  }
  .prev_btn {
    top: 50vh;
    left: -4%;
    z-index: 1;
  }
}