@import"normalize.css";
@import"header.css";
@import "fonts.css";
@import "varriables.css";
@import"strengths.css";
@import"history.css";
@import'order.css';
@import'foods.css';
@import"chefs.css";
@import"gallery.css";
@import"reviews.css";
@import"menu.css";




.restaurant img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 550px;
  max-height: 770px;
  vertical-align: top;
}




.gen-btn {
  padding: 13px 17px;
  background: var(--orange);
  border: 1px solid var(--orange);
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: var(--white);
  transition: 300ms;
}

.gen-btn:hover {
  background: transparent;
  color: var(--orange);
}

.gen-title {
  font-style: normal;
  font-weight: 400;
  font-size: 54px;
  line-height: 62px;
  color: var(--black);

}

.gen-title span {
  color: var(--dark-orange);
}

@media(max-width:800px) {


  .gen-title {
    font-size: 45px;
  }


}

@media(max-width:600px) {
  .gen-title {
    font-size: 42px;
  }


}

.to-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  color: var(--orange);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
}

.to-top>span {
  animation: anim 500ms infinite linear;
}

@keyframes anim {

  0%,
  100% {
    transform: translate(0);
  }

  75% {
    transform: translateY(-7px);
  }
}

@media (max-width: 800px) {
  .gen-title {
    font-size: 45px;
  }
}

@media (max-width: 600px) {
  .gen-title {
    font-size: 42px;
  }
}