/* font-family */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* Variable Define*/
:root {
  --primary-color: #ab2c41;
  --secondey-color: #43121d;
  --third-color: #f98160;
  --white-color: #fff;
  --text-color: #555;
  --black-color: #000;
  --primary-font: "Roboto", sans-serif;
  --secondey-font: "Quicksand", sans-serif;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:active,
:hover,
:focus {
  outline: 0;
  outline-offset: 0;
}
a,
a:hover {
  text-decoration: none !important;
}
a:hover {
  color: var(--primary-color);
}
ul,
ol {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--primary-font);
  font-size: 100%;
  font-weight: 400;
}
h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 3rem;
  color: var(--secondey-color);
}
h2 {
  font-weight: 700;
  font-size: 2.25rem;
  text-transform: capitalize;
  font-family: var(--secondey-font);
  color: var(--secondey-color);
  line-height: 3rem;
}
h4 {
  color: var(--secondey-color);
  font-family: var(--secondey-font);
  font-weight: 800;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}
h5 {
  color: var(--primary-color);
  font-family: var(--secondey-font);
  font-weight: 700;
  font-size: 1rem;
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}
p {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.75rem;
  letter-spacing: 1px;
}
.main-btn {
  display: inline-block;
  padding: 0.625rem 1.875rem;
  line-height: 1.5625rem;
  background-color: var(--primary-color);
  border: 0.1875rem solid var(--primary-color);
  color: var(--white-color);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 19%);
  -webkit-transtion: all 0.4s ease-out 0s;
  -o-tranistion: all 0.4s ease-out 0s;
  -moz-tranistion: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.white-btn {
  display: inline-block;
  padding: 0.625rem 1.875rem;
  line-height: 1.5625rem;
  background-color: var(--white-color);
  border: 0.1875rem solid var(--white-color);
  color: var(--text-color);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 19%);
  -webkit-transtion: all 0.4s ease-out 0s;
  -o-tranistion: all 0.4s ease-out 0s;
  -moz-tranistion: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.main-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}
.white-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.wapper {
  padding-top: 8.25rem;
  padding-bottom: 8.25rem;
}
.text-content {
  width: 70%;
  margin: auto;
}
/* Header degin */
.navigation-wrap {
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease-out;
}
.navigation-wrap .nav-item {
  padding: 0 0.625rem;
  transition: all 200ms linear;
}
.navbar-toggler:focus {
  outline: unset;
  border: unset;
  box-shadow: none;
}
.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--primary-color);
  letter-spacing: 1px;
}
.navigation-wrap .main-btn {
  padding: 0.1335rem 1.4375rem;
  box-shadow: none;
  margin-bottom: 0.625rem;
}
/* Changing navbar style in scrolling */
.navigation-wrap.scroll-on {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: var(--white-color);
  box-shadow: 0 0.125rem 1.76rem rgb(0, 0, 0, 0.09);
  transition: all 0.15s ease-in-out 0s;
}
/* Top Banner */
.top-banner {
  width: 100%;
  background-image: url("../images/bg/bg-1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 16.875rem 0 9.375rem;
}
/* counter section */
.counter-section {
  background-color: var(--primary-color);
  padding: 2.5rem 0;
}
.counter-section p {
  color: var(--white-color);
  text-transform: uppercase;
}
/* About section */
.about-section {
  background: var(--white-color);
}
.about-section .card,
.about-section .card img {
  border-radius: 0.625rem;
}
.about-section .text-sec {
  padding-right: 2rem;
}

/*About food type section*/
.food-type {
  padding-top: 6.25rem;
}
.food-type ul li {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 32px;
  position: relative;
  margin-left: 30px;
}
.food-type ul li::before {
  position: absolute;
  left: -2.1875rem;
  ccolor: var(--primary-color);
  font-size: 1.25rem;
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
}
/*About Story Section*/
.story-section {
  width: 100%;
  height: 28.125rem;
  background: url("../images/bg/bg-2.jpg") no-repeat center;
  background-size: cover;
  padding-top: 100px;
  text-align: center;
}
.story-section h2 {
  color: var(--primary-color);
}
/*Explore Food Section*/
.explore-food .card {
  border: none;
  background-color: transparent;
  border-radius: 0.9375rem;
}
.explore-food .card img {
  border-radius: 0.9375rem;
  object-fit: cover;
}
.explore-food .card span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #eee;
}
.explore-food .card span del {
  color: var(--text-color);
  margin-left: 0.5rem;
}
/*Testiminial section*/
.testimonial-section {
  background-color: var(--primary-color);
}

.testimonial-section h2 {
  color: var(--white-color);
}

.testimonial-section .carousel-item {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  background-color: var(--white-color);
  border-radius: 0.9375rem;
}

.carousel-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.testimonial-section .carousel-indicators button {
  background-color: var(--secondey-color);
}

.testimonial-text {
  color: var(--text-color);
  font-size: 1.2rem;
  font-style: italic;
}

.client-name {
  color: var(--primary-color);
  font-weight: bold;
  margin-top: 0.5rem;
}

.client-designation {
  font-size: 0.9rem;
  color: #6c757d;
  font-style: italic;
}
/*FAQ Section */
.faq h4 span {
  color: var(--primary-color);
  font-size: 1.875rem;
  margin-right: 0.3125rem;
}

/*Book-Food Section*/
.book-food {
  width: 100%;
  background: url("../images/bg/bg-3.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  background-position: 0 71.9125px;
  padding: 4.375rem 0;
}

/*Newslettar */
.newslettar {
  width: 55%;
  margin: 0 auto;
}
.newslettar .form-control {
  height: 3.225rem;
  padding: 0 1.25rem;
  font-size: 0.875rem;
  width: 100%;
  border: none;
  border-radius: 0;
  background: transparent;
  border: 0.1875rem solid var(--text-color);
  color: var(--black-color);
  font-weight: 700;
}
.newslettar .form-control:hover,
.newslettar .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--primary-color);
}
/*Footer Section*/
.footer {
  background: var(--primary-color);
}
.footer .footer-link {
  font-size: 1rem;
  color: var(--white-color);
  padding: 0 1.875rem;
}
.footer .footer-link:hover {
  color: var(--white-color) !important;
}
.footer a i {
  font-size: 1.5rem;
  color: var(--white-color);
  padding: 0 1rem;
}
