body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 30px;
  color: #a82c48;
  text-transform: capitalize;
}

h2 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 32px;
  text-transform: capitalize;
  color: #43121d;
  line-height: 48px;
}

h4 {
  color: #43121d;
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 8px;
}

h5 {
  color: #a82c48;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 8px;
}

p {
  font-size: 16px;
  color: #555;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
}

.main-btn,
.white-btn {
  /* display: inline-block; */
  padding: 10px 30px;
  line-height: 25px;
  background-color: #a82c48;
  border: 3px solid #a82c48;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0px 2px 10px -1px rgb(0 0 0 /19%);
  -webkit-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}

.main-btn:hover {
  background-color: transparent;
  color: #a82c48;
}

.white-btn {
  color: #555;
  background-color: #fff;
  border: 3px solid #fff;
}

.white-btn:hover {
  background-color: transparent;
  color: #a82c48;
  border-color: #a82c48;
}

.wrapper {
  padding: 100px 0;
}

.text-content {
  width: 70%;
  margin: auto;
}

.about-heading {
  font-size: 40px;
  margin-bottom: 30px;
}

.testimonial-section h2,
.book-food-text h2 {
  color: #fff;
}

.nav-change {
  background-color: #fff !important;
  box-shadow: 0px 3px 3px #a82c48;
}

@media (max-width: 767px) {
  h1 {
    font-size: 29px;
    line-height: 1.4;
  }

  p {
    line-height: 1.8;
  }

  h2 {
    font-size: 24px;
    line-height: 35px;
  }

  .white-btn {
    margin-left: 10px;
  }
}

@media (min-width: 767px) and (max-width: 991px) {
  h1 {
    line-height: 1.4;
  }

  .white-btn {
    margin-left: 14px;
  }

  p {
    line-height: 1.8;
  }
}

/* navbar */

.navbar img {
  width: 85%;
}

.nav-item {
  padding: 0 10px;
  transition: 200ms linear;
}

.navbar-toggler:focus {
  outline: unset;
  /* unset-when we don't want to give any value to a certain element use unset */
  border: unset;
  box-shadow: none;
}

.nav-link {
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
  color: #a82c48;
  letter-spacing: 1px;
}

.nav-link:hover {
  color: #3b71ca;
}

.nav-link:active {
  color: #54b4d3;
}

header .main-btn {
  padding: 5px 23px;
  box-shadow: none;
  margin-left: 10px;
}

@media (min-width: 767px) and (max-width: 991px) {
  .navbar {
    background-color: white;
  }

  .text-content {
    width: 100%;
  }

  .navbar-brand img {
    height: 61px;
  }

  .nav-link {
    text-align: center;
    font-size: 20px;
    line-height: 30px;
  }

  .btn-list {
    text-align: center;
    margin-top: 5px;
  }
}

@media (max-width: 767px) {
  .navbar {
    background-color: white;
  }

  .navbar-brand img {
    height: 61px;
  }
  .nav-link {
    text-align: center;
  }

  .btn-list {
    text-align: center;
    margin-top: 5px;
  }

  .text-content {
    width: 100%;
  }
}

/* top-banner */

.top-banner {
  width: 100%;
  background-image: url("../images/bg-1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 250px 0 150px;
  /* padding: 160px 0; */
}

/* number-features */

.counter-section {
  background-color: #a82c48;
  padding: 40px 0;
}

.counter-section p,
.counter-section span {
  color: #fff;
  font-weight: 600;
  font-style: italic;
}

.counter-section span {
  font-size: 30px;
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
}

@media (max-width: 767px) {
  .counter-section span {
    font-size: 20px;
  }
}

/* about */

.about-section {
  background-color: #fff;
}

.about-section .card,
.about-section .card img {
  border-radius: 10px;
}

.about-section .text-sec {
  padding-left: 32px;
}

/* food-type */

.food-type {
  padding-top: 50px;
}

.food-type ul li {
  font-size: 18px;
  color: #555;
  line-height: 32px;
  position: relative;
  margin-left: 30px;
  font-family: "Quicksand", sans-serif;
  font-style: italic;
  margin-bottom: 8px;
}

.food-type ul li i {
  margin-right: 10px;
  color: #fff;
  background-color: #a82c48;
  border-radius: 100%;
  padding: 3px;
}

@media (max-width: 767px) {
  .food-type ul li {
    margin-left: 0;
  }
}

/* story */

.story-section {
  width: 100%;
  background: url("../images/bg-2.jpg") no-repeat center;
  /* height: 450px; */
  background-size: cover;
  text-align: center;
  padding: 100px 0;
}

.story-section h2 {
  color: #a82c48;
}

@media (max-width: 767px) {
  .story-section {
    background-position: 55%;
  }
  .story-section h2 {
    font-size: 24px;
  }
}

/* explore foods */

.food .card {
  border: none;
  background-color: transparent;
  border-radius: 15px;
}

.food .card img {
  border-radius: 15px;
}

.food .card span {
  display: block;
  font-size: 21px;
  font-weight: 700;
  color: #a82c48;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
  margin-top: 8px;
}

.food .card span del {
  color: #999;
  margin-left: 8px;
}

/* testimonials */

.testimonial-section {
  background-color: #a82c48;
}

.testimonial-section .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  margin-left: 5px;
}

#reviews .wrapper {
  padding: 70px 0;
}

.testimonial-section img {
  border-radius: 100%;
  width: 15%;
  margin-bottom: 20px;
}

.testimonial-section p {
  width: 50%;
  color: #fff;
  margin: auto;
  line-height: 1.7;
  font-size: 20px;
  font-family: "Quicksand", sans-serif;
  font-style: italic;
  margin-bottom: 25px;
}

@media (min-width: 767px) and (max-width: 991px) {
  .testimonial-section p {
    width: 70%;
  }
}

@media (max-width: 767px) {
  .testimonial-section p {
    width: 100%;
    font-size: 18px;
  }

  .testimonial-section img {
    width: 25%;
  }

  .testimonial-section .carousel-control-prev,
  .testimonial-section .carousel-control-next {
    display: none;
  }
}

/* faq */

.accordion-item .accordion-button:focus {
  background-color: #a82c48;
  border: none;
  outline: none;
  box-shadow: none;
  color: #fff;
}

.accordion-item {
  background-color: #333;
  color: #fff;
}

/* .accordion-item .accordion-header button {
  background-color: #a82c48;
} */

.accordion button {
  text-transform: capitalize;
  font-weight: 800;
  color: #555;
}

.accordion-body span {
  color: #a82c48;
  font-weight: 600;
  font-style: italic;
}

@media (max-width: 767px) {
  .accordion button {
    font-size: 14px;
  }
}

/* book food */

.book-food {
  width: 100%;
  background: url("../images/bg-3.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  background-position: 0 70px;
  padding: 70px 0;
}

@media (max-width: 767px) {
  .book-food h2 {
    font-size: 29px;
  }
}

/* newsletter */

.newsletter h2 {
  font-size: 29px;
}

.newsletter-form {
  width: 55%;
  margin: 0 auto;
}

.newsletter-form .form-control {
  height: 51px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  border-radius: 0;
  background: transparent;
  border: 3px solid #555;
  color: #333;
}

.newsletter-form .form-control:hover,
.newsletter-form .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #a82c48;
}

@media (min-width: 767px) and (max-width: 991px) {
  .newsletter h2 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .newsletter-form {
    width: 75%;
  }

  .newsletter-form .main-btn {
    width: 100%;
    margin-top: 16px;
  }

  .newsletter h2 {
    font-size: 23px;
  }

  .newsletter p {
    font-size: 17px;
  }
}

/* footer */

.footer {
  background-color: #a82c48;
}

.footer .footer-link {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  padding: 0 30px;
}

.footer .footer-link:hover {
  color: #54b4d3;
}

.footer i {
  font-size: 20px;
  color: #fff;
  padding: 0 16px;
  margin-top: 12px;
}

.footer i:hover {
  color: #54b4d3;
}

@media (max-width: 767px) {
  .footer .footer-link,
  .footer i {
    padding: 0 10px;
  }
}
