/* Universal Operator */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  /* for smooth the custom fonts */
  -webkit-font-smoothing: antialiased;
}
a,
a:hover {
  text-decoration: none;
}
/* Fonts Family */
@font-face {
  font-family: "Raleway-Regular";
  src: url(../fonts/Raleway-Regular.ttf);
}
@font-face {
  font-family: "Raleway-Bold";
  src: url(../fonts/Raleway-Bold.ttf);
}
@font-face {
  font-family: "Raleway-Black";
  src: url(../fonts/Raleway-Black.ttf);
}
@font-face {
  font-family: "Raleway-SemiBold";
  src: url(../fonts/Raleway-SemiBold.ttf);
}
@font-face {
  font-family: "Raleway-SemiBoldItalic";
  src: url(../fonts/Raleway-SemiBoldItalic.ttf);
}
@font-face {
  font-family: "Raleway-extrabold";
  src: url(../fonts/Raleway-ExtraBold.ttf);
}

/* make variables of color */

:root {
  --primary: #eebf00;
  --secondary: #232b38;
  --ternary: #6c6c6c;
  --danger: #fe4545;
  --pure: #fefefe;
  --light: #f0f0f0;
  --heaven: #ffffff;
  --footer: #2d333f;
}
/* Utility classes */
.flex {
  display: flex;
}
.justify-between {
  justify-content: space-between;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.flex-column {
  flex-direction: column;
}
.shadow {
  position: relative;
  background: var(--heaven);
}
.shadow-sm {
  position: relative;
  background: var(--heaven);
}
.btn {
  padding: 0.6rem 0.7rem;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 0.7;
  transition: all 0.4s ease;
  -webkit-border-transition: all 0.4s ease;
  -moz-border-transition: all 0.4s ease;
  -o-border-transition: all 0.4s ease;
  -ms-border-transition: all 0.4s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--heaven);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--heaven);
}
.btn-primary:hover {
  background: var(--heaven);
  color: var(--primary);
}
.btn-secondary:hover {
  background: var(--heaven);
  color: var(--secondary);
}
.heading {
  text-align: center;
  font-family: "Raleway-Bold";
  position: relative;
  margin-bottom: 4rem;
}
.text-center {
  text-align: center;
}
.primary {
  color: var(--primary);
}
.secondary {
  color: var(--secondary);
}
.heaven {
  color: var(--heaven);
}
.wrap {
  flex-wrap: wrap;
}
.main-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.nav-bg {
  height: 100%;
  width: 100%;
  background: var(--light);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 0;
}
.nav-trigger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 15px;
  display: none;
}
.nav-trigger svg {
  transform: rotate(90deg) scaleX(-1);
  -o-transform: rotate(90deg) scaleX(-1);
  -moz-transform: rotate(90deg) scaleX(-1);
  -webkit-transform: rotate(90deg) scaleX(-1);
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.site-content-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  background: var(--heaven);
  z-index: 2;
  transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}
.site-content-wrapper.scale {
  transform: scale(0.9) translateX(90%);
  -o-transform: scale(0.9) translateX(90%);
  -moz-transform: scale(0.9) translateX(90%);
  -webkit-transform: scale(0.9) translateX(90%);
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  box-shadow: 0 3px 11px 0 var(--secondary);
}
.site-content {
  width: 100%;
  height: 100%;
  overflow-x: auto;
}
.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

/* header */
header.topbar {
  background: var(--secondary);
  color: var(--pure);
  font-family: "Raleway-SemiBold";
  padding: 0.75rem 0;
}

header.topbar .container .right .divider {
  color: var(--pure);
  padding: 0 1rem;
}
header.topbar .container .right a {
  color: var(--pure);
}
header.topbar .container .social-icons > a {
  margin-right: 0.6rem;
}
header.topbar .container .right img {
  margin-right: 0.6rem;
  cursor: pointer;
}
nav .topNav {
  padding: 1.1rem 0;
}
nav .topNav .container .contact > div > h5,
nav .topNav .container .timing > div > h5 {
  margin-bottom: 0.3rem;
}
nav .topNav .container .contact > div > h6,
nav .topNav .container .timing > div > h6 {
  letter-spacing: 0.055rem;
  font-size: 0.75rem;
  color: var(--ternary);
}
nav .topNav .container .timing img,
nav .topNav .container .contact img {
  margin-right: 0.6rem;
}

.menuBar .container > a {
  color: var(--secondary);
  padding: 0.7rem 1.4rem;
  font-family: "Raleway-SemiBold";
  font-size: 1rem;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.menuBar .container > a.active {
  background: var(--primary);
  color: var(--pure);
}
.menuBar .container > a:hover {
  background: var(--primary);
  color: var(--pure);
}
.shadow::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 69px;
  background-image: url(../icons/shadow.svg);
  background-repeat: no-repeat;
  background-position: center;
  bottom: -20px;
  z-index: -1;
}
.hero {
  margin-top: 3rem;
  height: 480px;
  background-image: url(../images/hero.png);
  background-position: 0% 150%;
  background-repeat: no-repeat;
  overflow: hidden;
}

header.hero .welcome > span,
header.hero .container .left-con > div > h1 > span {
  font-family: "Raleway-Bold";
  color: var(--primary);
  font-size: 2rem;
}
header.hero .container .left-con > div > h1 {
  font-family: "Raleway-extrabold";
  font-size: 1.98rem;
  margin-bottom: 0.5rem;
}
header.hero .welcome > img {
  margin-left: 0.6rem;
  height: 3rem;
}
header.hero .container .left-con :nth-child(3) {
  margin-top: 1.3rem;
}
header.hero .container .left-con :nth-child(3) > :first-child {
  margin-right: 1.3rem;
}

section.topProducts {
  background: var(--light);
  padding: 2rem 0;
  margin-top: -60px;
}
.heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  position: absolute;
  background-image: url(../icons/hr.svg);
  background-repeat: no-repeat;
  background-position: center;
}
section.topProducts .container .slider .food-slider .food-cart {
  background: var(--heaven);
  padding: 2rem 0;
}
section.topProducts
  .container
  .slider
  .food-slider
  .food-cart
  > .product-img
  > img {
  height: 8rem;
  object-fit: contain;
}
hr {
  border: 1px solid var(--light);
  opacity: 0.8;
  margin: 1rem 0;
}
section.topProducts .container .slider .food-slider .food-cart h2 {
  font-family: "Raleway-Bold";
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
section.topProducts
  .container
  .slider
  .food-slider
  .food-cart
  > .product-img
  .stars
  img {
  margin-right: 0.4rem;
}
section.topProducts
  .container
  .slider
  .food-slider
  .food-cart
  > .product-img
  .price {
  color: var(--danger);
  font-family: "Raleway-Bold";
  margin: 0.3rem 0;
}
section.topProducts
  .container
  .slider
  .food-slider
  .food-cart
  > .product-img
  button {
  font-family: "Raleway-Regular";
  cursor: pointer;
  background: var(--heaven);
  color: var(--secondary);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  width: 70%;
  margin-top: 0.5rem auto;
  transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}
section.topProducts
  .container
  .slider
  .food-slider
  .food-cart
  > .product-img
  button
  img {
  background: var(--primary);
  color: var(--heaven);
  height: 32px;
  padding: 0.5rem;
}
section.topProducts
  .container
  .slider
  .food-slider
  .food-cart
  > .product-img
  button
  span {
  margin-left: 1.6rem;
}
section.topProducts
  .container
  .slider
  .food-slider
  .food-cart
  > .product-img
  button
  > span {
  font-family: "Raleway-Bold";
}
section.topProducts
  .container
  .slider
  .food-slider
  .food-cart
  > .product-img
  button:hover {
  color: var(--heaven);
  background: var(--primary);
}
.slick-slide {
  margin: 0 27px;
}
.slick-list {
  margin: 0 -27px;
}
section.topProducts .container .slider .slider-btn {
  background: var(--primary);
  color: var(--heaven);
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
}
section.topProducts .container .slider {
  position: relative;
}
section.topProducts .container .slider .pre-btn {
  position: absolute;
  top: 46%;
  left: -1rem;
  z-index: 1;
}
section.topProducts .container .slider .next-btn {
  position: absolute;
  top: 46%;
  right: -1rem;
  z-index: 1;
}
section.topProducts .container .view-more {
  margin-top: 2rem;
}
.slick-track {
  padding: 1rem 0;
}
.shadow-sm::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 69px;
  background-image: url(../icons/shadow-sm.svg);
  background-repeat: no-repeat;
  background-position: center;
  bottom: -21px;
  z-index: -1;
}
section.aboutMeal {
  padding: 2rem 0;
}
section.aboutMeal .container :last-child > h2 {
  margin-bottom: 1rem;
  font-family: "Raleway-Bold";
  color: var(--secondary);
}
section.aboutMeal .container .about-meal-img img {
  width: 100%;
}
section.aboutMeal .container .about-meal-img,
section.aboutMeal .container .about-meal-content {
  flex: 1;
}
section.aboutMeal .container :last-child > :last-child {
  margin-top: 1rem;
  line-height: 1.5;
}
section.aboutMeal .container :last-child > :nth-child(2) {
  font-family: "Raleway-Regular";
  color: var(--ternary);
}
section.service {
  background: var(--light);
  padding: 3rem 0;
  position: relative;
  z-index: 0;
}
section.service .container {
  margin-top: 8rem;
  gap: 2rem;
}
section.service .container .service-card {
  background: var(--heaven);
  padding: 2rem;
  position: relative;
  border-radius: 6px;
}
section.service .container .service-card h3 {
  font-family: "Raleway-Bold";
  margin-top: 2rem;
  margin-bottom: 1rem;
}
section.service .container .service-card p {
  font-family: "Raleway-Regular";
  margin-bottom: 1rem;
}
section.service .container :nth-child(2) > h3 {
  color: var(--primary);
}
section.service .container .service-card img {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}
section.big-deal {
  background: linear-gradient(rgba(35, 43, 56, 0.7), rgba(35, 43, 56, 0.7)),
    url(../images/food-table.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 3rem 0;
}
section.big-deal .container {
  gap: 3rem;
}
section.big-deal .container > div {
  width: 6rem;
  height: 6rem;
  background: var(--primary);
  color: var(--heaven);
  margin-bottom: 1rem;
  border-radius: 5px;
}
section.big-deal .container > div > span {
  font-size: 2.5rem;
  font-family: "Raleway-Bold";
}
section.big-deal .container > div > small {
  font-size: 1rem;
  font-family: "Raleway-Regular";
}
section.blog {
  background: var(--light);
  position: relative;
  z-index: 0;
  padding: 3rem 0;
}
section.blog .container .article .card .card-img img {
  width: 100%;
}

section.blog .container .article {
  gap: 2rem;
}
section.blog .container .article .card {
  border-radius: 5px;
  background: var(--heaven);
}
section.blog .container .article .card .card-content {
  padding: 1rem 2rem 2rem 1rem;
}
section.blog .container .article .card .card-content :nth-last-child(2) {
  margin: 0.7rem 0;
}
section.blog .container .article .card .card-content p {
  line-height: 1.6;
}
section.blog .container .read {
  margin-top: 2rem;
}
section.subscribe {
  background-color: var(--primary);
}
section.subscribe .container > div img {
  width: 100%;
}
section.subscribe .container div:first-child {
  flex: 1;
}
section.subscribe .container div:last-child {
  flex: 1;
}
section.subscribe .container div:last-child > h2 {
  font-family: "Raleway-Bold";
  margin-bottom: 1rem;
}
section.subscribe .container div:last-child > p {
  font-family: "Raleway-SemiBold";
  margin-bottom: 1rem;
  line-height: 1.6;
}
section.subscribe .container .right .input-box {
  font-size: 1rem;
  background: var(--heaven);
  display: flex;
  padding: 0.2rem;
  border-radius: 5px;
  width: 70%;
}
section.subscribe .container .input-box input {
  width: 100%;
  border: none;
  outline: none;
  padding: 0 1rem;
  font-size: 1rem;
}
section.subscribe .container .input-box input:focus {
  outline: none;
}

section.subscribe .container .input-box button {
  background: var(--primary);
  padding: 0.3rem;
  color: var(--pure);
  cursor: pointer;
  font-size: 1rem;
  outline: none;
  border-radius: 4px;
  transition: all 0.4s ease;
  border: none;
}
section.subscribe .container .input-box button:hover {
  background: var(--secondary);
  color: var(--heaven);
}
.mr {
  margin-right: 0.6rem;
}
section.contact-us .contact-info .contact-content > div:nth-child(1),
section.contact-us .contact-info .contact-content > div:nth-child(2) {
  margin-bottom: 1.5rem;
}
section.contact-us
  .contact-info
  .contact-content
  > div
  > div:last-child
  > span:first-child {
  font-family: "Raleway-Bold";
  margin-bottom: 0.1rem;
}
section.contact-us
  .contact-info
  .contact-content
  > div
  > div:last-child
  > span:last-child {
  color: var(--ternary);
  letter-spacing: 1.2px;
}
section.contact-us .contact-info {
  flex: 1;
  padding: 3rem 0;
}
section.contact-us .map {
  flex: 1;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
section.footer {
  background: var(--footer);
  color: var(--pure);
  padding: 2rem 0;
}
section.footer footer {
  gap: 1rem;
}
section.footer footer div hr {
  border-color: var(--primary);
  width: 100%;
}
section.footer footer .about,
section.footer footer .follow,
section.footer footer .quick-links,
section.footer footer .gallery {
  flex: 1;
}
section.footer footer div a {
  color: var(--pure);
  margin: 0.3rem 0;
}

section.footer footer .follow .social-icons a img {
  margin-right: 0.7rem;
}
section.footer footer .follow .social-icons {
  margin-bottom: 0.9rem;
}
section.footer footer div .btn {
  margin-top: 1rem;
}
section.footer footer .gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.footer footer .gallery .post-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

section.footer footer .gallery .post-wrap div {
  width: calc(1 / 3 * 100% - (1 - 1 / 3) * 10px);
}
footer.copy-right {
  color: var(--heaven);
  margin-top: 1.3rem;
}
