/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
:root {
  --color-primary: #f7eacd;
  --color-primary-dark: #dccc9e;
  --color-white: #fff;
  --color-black: #000;
  --color-black-opacity-1: rgba(0, 0, 0, 0.7);
  --color-black-opacity-2: rgba(0, 0, 0, 0.85);
  --color-black-opacity-3: rgba(0, 0, 0, 0.95);
  --border-radius: 0.5rem;
  --default-font-size: 1.6rem;
  --border-light-grey: 1px solid var(--color-white);
}

.button, .button:link, .button:visited {
  border: var(--border-light-grey);
  text-align: center;
  text-decoration: none;
  display: block;
  cursor: pointer;
  padding: 1.5rem 0;
  width: 14rem;
  transition: all 0.2s;
}
.button:active, .button:focus {
  outline: none;
}
.button--black {
  color: var(--color-white);
  background-color: var(--color-black-opacity-1);
}
.button--black:hover {
  background-color: var(--color-black-opacity-2);
}

.section {
  padding: 2rem 5rem;
}
.section__title {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: var(--color-white);
}
.section__title--sub {
  margin-top: 2rem;
}
.section--white {
  background-color: var(--color-white);
}
@media only screen and (max-width: 768px) {
  .section {
    padding: 1rem 3rem;
  }
}

.blockquote {
  display: flex;
  justify-content: center;
}
.blockquote__item {
  display: flex;
  justify-content: space-between;
  background-color: var(--color-black-opacity-1);
  width: 70%;
  height: 20rem;
  margin: 0 0 1.5rem;
  padding: 0 0 0 1.25rem;
  border-left: 0.3rem solid var(--color-white);
  color: var(--color-white);
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 300;
}
.blockquote__item__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}
.blockquote__item__by-who {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Karla, serif;
  color: inherit;
}
.blockquote__item__by-who--main {
  font-size: 2.5rem;
  font-family: KarlaSemiBold, serif;
  text-transform: uppercase;
}
.blockquote__item__by-who--sub {
  font-size: 1.5rem;
  font-style: italic;
}
.blockquote__item__text {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-style: italic;
  align-self: center;
  color: var(--color-white);
}
.blockquote__item__icon {
  width: 6rem;
  height: 6rem;
  fill: var(--color-white);
}
.blockquote__item__icon--1 {
  padding: 2rem 0 0 2rem;
}
.blockquote__item__icon--2 {
  padding: 2rem 0 0 2rem;
  align-self: flex-end;
  transform: rotateZ(180deg);
}

.card {
  background-color: var(--color-primary);
  padding: 3rem;
}

.tranding-slide {
  width: 60rem;
  height: 40rem;
  position: relative;
}

@media (max-width: 500px) {
  .tranding-slide {
    width: 35rem !important;
    height: 36rem !important;
  }
  .tranding-slide .tranding-slide-img img {
    width: 35rem !important;
    height: 36rem !important;
  }
}
.tranding-slide .tranding-slide-img img {
  width: 60rem;
  height: 40rem;
  border-radius: 2rem;
  object-fit: cover;
}

.tranding-slide .tranding-slide-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.tranding-slide-content .food-price {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--color-white);
}

.tranding-slide-content .tranding-slide-content-bottom {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: var(--color-white);
}

.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
  display: none;
}

.tranding-slider-control {
  position: relative;
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tranding-slider-control .swiper-button-next {
  left: 58% !important;
  transform: translateX(-58%) !important;
}

@media (max-width: 990px) {
  .tranding-slider-control .swiper-button-next {
    left: 70% !important;
    transform: translateX(-70%) !important;
  }
}
@media (max-width: 450px) {
  .tranding-slider-control .swiper-button-next {
    left: 80% !important;
    transform: translateX(-80%) !important;
  }
}
@media (max-width: 990px) {
  .tranding-slider-control .swiper-button-prev {
    left: 30% !important;
    transform: translateX(-30%) !important;
  }
}
@media (max-width: 450px) {
  .tranding-slider-control .swiper-button-prev {
    left: 20% !important;
    transform: translateX(-20%) !important;
  }
}
.tranding-slider-control .slider-arrow {
  background: var(--color-black-opacity-1);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  left: 42%;
  transform: translateX(-42%);
}

.tranding-slider-control .slider-arrow svg {
  width: 2rem;
  height: 2rem;
  fill: var(--color-white);
}

.tranding-slider-control .slider-arrow::after {
  content: "";
}

.tranding-slider-control .swiper-pagination {
  position: relative;
  width: 15rem;
  bottom: 1rem;
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet {
  padding: 0.2rem;
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-black-opacity-1);
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  background-image: url("../../assets/Place Your Image Here (Double Click to Edit).png");
  background-repeat: repeat-y;
  background-size: cover;
}

@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: normal;
  src: url("../../assets/fonts/Merriweather/Merriweather-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "MerriweatherBold";
  font-style: normal;
  font-weight: 700;
  src: url("../../assets/fonts/Merriweather/Merriweather-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "MerriweatherItalic";
  font-style: normal;
  font-weight: normal;
  src: url("../../assets/fonts/Merriweather/Merriweather-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: normal;
  src: url("../../assets/fonts/Karla/Karla-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "KarlaBold";
  font-style: normal;
  font-weight: 700;
  src: url("../../assets/fonts/Karla/Karla-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "KarlaSemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("../../assets/fonts/Karla/Karla-SemiBold.ttf") format("truetype");
}
body {
  font-family: Merriweather, serif;
}

.heading-primary {
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
@media (min-width: 0) {
  .heading-primary {
    font-size: 4rem;
  }
}
@media (min-width: 720px) {
  .heading-primary {
    font-size: 6rem;
  }
}

.heading-tertiary {
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  font-size: 3.5rem;
}

.paragraph {
  font-size: var(--default-font-size);
}

.section__title--sub {
  font-size: 2rem;
}

.menu__item__title {
  font-size: 1.9rem;
}
.menu__item__description {
  font-family: Karla, serif;
  font-size: 1.5rem;
}
.menu__item__price {
  font-family: KarlaSemiBold, serif;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.button {
  font-family: KarlaSemiBold, serif;
  text-transform: uppercase;
  font-size: var(--default-font-size);
}

.our_menu_h2 {
  font-family: KarlaSemiBold, serif;
  text-transform: uppercase;
  font-size: 42px;
}

.u-text-center {
  text-align: center;
}

.u-justify-content-center {
  justify-content: center;
}

.u-justify-content-between {
  justify-content: space-between;
}

.u-justify-content-around {
  justify-content: space-around;
}

.u-align-items-center {
  align-items: center;
}

.u-margin-auto {
  margin: 0 auto;
}

.u-margin-top-small {
  margin-top: 2rem !important;
}

.u-margin-top-medium {
  margin-top: 4rem !important;
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-opacity-0 {
  opacity: 0;
}

.footer {
  background-color: var(--color-black-opacity-2);
  padding: 5rem 0;
  font-size: 1.4rem;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  color: var(--color-white);
  font-family: Karla, serif;
}
.footer__contact, .footer__social {
  display: flex;
  justify-content: space-around;
}
@media only screen and (max-width: 56.25em) {
  .footer__contact {
    flex-direction: column;
  }
}
.footer__item {
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
}
@media only screen and (max-width: 56.25em) {
  .footer__item {
    flex-direction: column;
  }
  .footer__item:not(:first-child) {
    margin-top: 2rem;
  }
}
.footer__item__icon {
  margin-right: 1.5rem;
  width: 4rem;
  height: 4rem;
  fill: var(--color-white);
}
@media only screen and (max-width: 56.25em) {
  .footer__item__icon {
    margin-right: 0;
  }
}
.footer__item__text {
  width: 18rem;
  line-height: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .footer__item__text {
    margin-top: 1.5rem;
    text-align: center;
  }
}
.footer__social {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__social__title {
  font-family: KarlaBold, serif;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
}
.footer__social__icons {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.footer__social__icon {
  padding: 0.7rem;
  width: 3rem;
  height: 3rem;
  fill: var(--color-white);
}
.footer__copyright {
  display: flex;
  justify-content: center;
}

.footer__powerdBy {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  gap: 40px;
  align-items: center;
}

.footer__powerdBy a {
  max-width: 250px;
}
@media (max-width: 1200px) {
  .footer__powerdBy a {
    max-width: 200px;
  }
}

.footer__powerdBy img {
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.row .col {
  flex: 1;
}
.row .col-1 {
  width: 8.3333333333%;
}
.row .col-2 {
  width: 16.6666666667%;
}
.row .col-3 {
  width: 25%;
}
.row .col-4 {
  width: 33.3333333333%;
}
.row .col-5 {
  width: 41.6666666667%;
}
.row .col-6 {
  width: 50%;
}
.row .col-7 {
  width: 58.3333333333%;
}
.row .col-8 {
  width: 66.6666666667%;
}
.row .col-9 {
  width: 75%;
}
.row .col-10 {
  width: 83.3333333333%;
}
.row .col-11 {
  width: 91.6666666667%;
}
.row .col-12 {
  width: 100%;
}

@media (min-width: 768px) {
  .row .col-tablet {
    flex: 1;
  }
  .row .col-tablet-1 {
    width: 8.3333333333%;
  }
  .row .col-tablet-2 {
    width: 16.6666666667%;
  }
  .row .col-tablet-3 {
    width: 25%;
  }
  .row .col-tablet-4 {
    width: 33.3333333333%;
  }
  .row .col-tablet-5 {
    width: 41.6666666667%;
  }
  .row .col-tablet-6 {
    width: 50%;
  }
  .row .col-tablet-7 {
    width: 58.3333333333%;
  }
  .row .col-tablet-8 {
    width: 66.6666666667%;
  }
  .row .col-tablet-9 {
    width: 75%;
  }
  .row .col-tablet-10 {
    width: 83.3333333333%;
  }
  .row .col-tablet-11 {
    width: 91.6666666667%;
  }
  .row .col-tablet-12 {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .row .col-desktop {
    flex: 1;
  }
  .row .col-desktop-1 {
    width: 8.3333333333%;
  }
  .row .col-desktop-2 {
    width: 16.6666666667%;
  }
  .row .col-desktop-3 {
    width: 25%;
  }
  .row .col-desktop-4 {
    width: 33.3333333333%;
  }
  .row .col-desktop-5 {
    width: 41.6666666667%;
  }
  .row .col-desktop-6 {
    width: 50%;
  }
  .row .col-desktop-7 {
    width: 58.3333333333%;
  }
  .row .col-desktop-8 {
    width: 66.6666666667%;
  }
  .row .col-desktop-9 {
    width: 75%;
  }
  .row .col-desktop-10 {
    width: 83.3333333333%;
  }
  .row .col-desktop-11 {
    width: 91.6666666667%;
  }
  .row .col-desktop-12 {
    width: 100%;
  }
}
.header {
  background-color: var(--color-black-opacity-1);
  display: flex;
  padding: 2rem 5rem;
  transition: background-color 0.3s ease;
  max-height: 40px;
  max-height: 40px;
}
.header__logo {
  width: 25rem;
  left: 0;
}

.navigation__list {
  list-style: none;
  display: flex;
}
.navigation__link:link, .navigation__link:visited {
  font-family: KarlaBold, serif;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

footer {
  background-color: var(--color-black-opacity-2);
  padding: 50px 100px;
  font-size: 1.4rem;
  color: var(--color-white);
  font-family: Karla, serif;
}

.footer__container {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer__container h2 {
  position: relative;
  margin-bottom: 15px;
}
.footer__container h2::before {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 50px;
  height: 2px;
  background-color: white;
}

.socail-media-links__footer {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 50px);
  gap: 10px;
}
.socail-media-links__footer li {
  list-style-type: none;
}
.socail-media-links__footer li a {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: white;
  display: grid;
  align-content: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
}

.socail-media-links__footer .fa-brands {
  color: var(--color-black-opacity-2);
}

.section_links li {
  list-style-type: none;
}
.section_links li a {
  color: white;
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
}

.contactus-info li {
  display: grid;
  grid-template-columns: 60px 1fr;
  margin-bottom: 16px;
}
.contactus-info li span {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: white;
  display: grid;
  align-content: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
}

.contactus-info li a {
    color: white;
        display: flex;
    align-items: center;
}

.contactus-info li i {
  color: var(--color-black-opacity-2);
}

.copyright-section {
  width: 100%;
  text-align: center;
}

@media (max-width: 991px) {
  footer {
    padding: 40px;
  }
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  footer {
    padding: 40px;
  }
  .footer__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
html {
  scroll-behavior: smooth;
}

.gotopbtn {
  opacity: 0;
  position: fixed;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--color-black-opacity-1);
  bottom: 20px;
  right: 50px;
  z-index: 99999;
  text-decoration: none;
  text-align: center;
  font-size: 30px;
  color: white;
  line-height: 55px;
}
@media screen and (max-width: 1000px) {
  .gotopbtn {
    right: 0;
    line-height: 40px;
  }
}

.show-menu-button {
  width: 200px;
  height: 40px;
  color: red;
}

.splash-content img {
  width: 50%;
}

.splash-screen {
  /*background-image: url(../assets/30072366762b0f3a3211a53.26966563.jpg);*/
    background-image: url("../../assets/Place Your Image Here (Double Click to Edit).png");
  background-repeat: repeat-y;
  background-size: cover;
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 200;
  color: white;
  text-align: center;
}
.splash-container {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.splash-content {
  animation: drop 1s ease forwards;
}
.splash-content h2 {
  margin-top: 20px;
  font-size: 32px;
  text-transform: uppercase;
}

@keyframes drop {
  0% {
    opacity: 0;
  }
  70% {
    transform: translateY(30%);
  }
  100% {
    transform: translateY(25%);
    opacity: 1;
  }
}
.splash-screen.display-none {
  position: fixed;
  opacity: 0;
  z-index: -200;
  transition: opacity 1s;
}

.welcome__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
}
@media (min-width: 720px) {
  .welcome__section {
    padding: 0 5rem;
  }
}
@media (min-width: 0) {
  .welcome__title {
    width: 100%;
  }
}
@media (min-width: 720px) {
  .welcome__title {
    width: 90rem;
  }
}
.welcome__slider {
  max-width: 100%;
}
.welcome__slider .tranding-slider {
  height: 50rem;
  padding: 2rem 0;
  position: relative;
}
@media (max-width: 500px) {
  .welcome__slider .tranding-slider {
    height: 44rem;
  }
}

.menu {
  display: flex;
  flex-direction: column;
}
.menu__item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  padding: 2rem;
  max-height: 480px;
}
.menu__item__img-container {
  overflow: hidden;
}
.menu__item__img {
  transition: all 0.5s ease;
  transform: scale(1);
  width: 100%;
  display: block;
}
.menu__item__img:hover {
  transform: scale(1.1);
}
.menu__item__info {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  background-color: var(--color-black-opacity-1);
  color: var(--color-white);
}
.menu__item__title {
  padding: 1.5rem 2.5rem 1rem 2.5rem;
}
.menu__item__description {
  padding: 0 2.5rem 1rem 2.5rem;
}
.menu__item__price-info {
  margin-top: 1rem;
  display: flex;
  justify-content: space-around;
  margin-bottom: 1.5rem;
}
.menu__item__price {
  border: var(--border-light-grey);
  margin-top: 0.7rem;
  padding: 0.4rem;
  width: 14rem;
  display: flex;
  justify-content: center;
}

.content-container {
  transition: opacity 1s ease 0.3s;
}

.slider.slider__img.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .blockquote__item {
    padding: 40px;
    text-align: center;
    flex: 1;
  }
}
.toggle {
  display: none;
}

@media (max-width: 760px) {
  .navigation__nav {
    position: fixed;
    top: 0;
    right: 0%;
    z-index: 1;
  }
  .toggle {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
  }
  .navigation__nav .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem;
    z-index: 1;
    transition: all 0.4s ease;
  }
  .navigation__nav .hamburger > div {
    position: relative;
    width: 100%;
    height: 3px;
    background: white;
    transition: all 0.4s ease;
  }
  .navigation__nav .hamburger > div::before,
.navigation__nav .hamburger > div::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: white;
    top: -10px;
  }
  .navigation__nav .hamburger > div::after {
    top: 10px;
  }
  .navigation__nav .navigation__list {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    visibility: hidden;
  }
  .navigation ul li {
    padding: 3rem;
  }
  .navigation ul li a {
    font-size: 2.5rem;
    transition: all 0.4s ease-in-out;
  }
  .navigation ul li a:hover {
    background: none;
    text-decoration: underline;
  }
  .navigation ul {
    display: block;
  }
  .navigation ul li a:hover {
    background: none;
  }
  .navigation .toggle:checked ~ .navigation__list {
    visibility: visible;
  }
}
.offers_popup img {
  width: 100%;
}

.header-content {
  padding-top: 10px;
  margin-bottom: 50px;
  width: 100%;
  height: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.header-content-header {
  text-align: center;
  color: white;
  font-size: 40px;
  text-transform: uppercase;
}

.header-content-title {
  text-align: center;
  color: white;
  font-size: 24px;
}

.tabs_holder .tabs {
  list-style-type: none;
  color: white;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.drop-down-button-container {
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
  display: none;
}

.drop-down-button-container i {
  color: white;
  font-size: 3rem;
  position: absolute;
  right: 10%;
  top: 26%;
  cursor: pointer;
}

.tabs_holder .dropdownbtn {
  background: none;
  display: none;
  width: 340px;
  border: none;
  font-size: 16px;
  color: white;
  padding: 2rem;
  cursor: pointer;
  position: relative;
}

.tabs_holder .tabs li {
  position: relative;
  font-size: 16px;
  padding: 25px;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  text-align: center;
}

.menu-tabs-content {
  position: relative;
}

.menu-tabs-content > div {
  padding: 50px;
}

.menu-tabs-content > div:not(:first-child) {
  display: none;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.toggle {
  display: none;
}

@media (max-width: 760px) {
  .navigation__nav {
    position: fixed;
    top: 0;
    right: 0%;
    z-index: 1;
  }
  .toggle {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
  }
  .navigation__nav .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem;
    z-index: 1;
    transition: all 0.4s ease;
  }
  .navigation__nav .hamburger > div {
    position: relative;
    width: 100%;
    height: 3px;
    background: white;
    transition: all 0.4s ease;
  }
  .navigation__nav .hamburger > div::before,
.navigation__nav .hamburger > div::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: white;
    top: -10px;
  }
  .navigation__nav .hamburger > div::after {
    top: 10px;
  }
  .navigation__nav .navigation__list {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    visibility: hidden;
  }
  .navigation ul li {
    padding: 3rem;
  }
  .navigation ul li a {
    font-size: 2.5rem;
    transition: all 0.4s ease-in-out;
  }
  .navigation ul li a:hover {
    background: none;
    text-decoration: underline;
  }
  .navigation ul {
    display: block;
  }
  .navigation ul li a:hover {
    background: none;
  }
  .navigation .toggle:checked ~ .navigation__list {
    visibility: visible;
  }
}
@media screen and (max-width: 800px) {
  .header-content-title {
    font-size: 18px;
  }
  .tabs_holder .dropdownbtn {
    display: inline-block;
  }
  .drop-down-button-container {
    display: inline-block;
  }
  .tabs_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .tabs {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .dropdown-wrapper {
    display: none;
    z-index: 1;
  }
  .tabs li {
    width: 322px;
  }
}
@media screen and (max-width: 500px) {
  .header-content-title {
    margin-top: 10px;
    font-size: 14px;
  }
  .header-content-header {
    font-size: 24px;
  }
}
.Menu_button {
  font-size: 16px;
  padding: 1.5rem 3rem;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: white;
}

.about-us-container img {
  width: 100%;
}

.about-us-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-left: 30px;
  margin-right: 30px;
}

.about-us-text {
  font-family: KarlaSemiBold, serif;
  margin-top: 30px;
  padding: 10px 20px 10px 20px;
  text-align: left;
  font-size: 18px;
  color: white;
  background-color: rgba(0, 0, 0, 0.9);
  line-height: 3em;
}

.text-margin {
  font-family: KarlaSemiBold, serif;
  text-decoration: underline;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.toggle {
  display: none;
}

@media (max-width: 760px) {
  .about-us-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 760px) {
  .navigation__nav {
    position: fixed;
    top: 0;
    right: 0%;
    z-index: 1;
  }
  .toggle {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
  }
  .navigation__nav .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem;
    z-index: 1;
    transition: all 0.4s ease;
  }
  .navigation__nav .hamburger > div {
    position: relative;
    width: 100%;
    height: 3px;
    background: white;
    transition: all 0.4s ease;
  }
  .navigation__nav .hamburger > div::before,
.navigation__nav .hamburger > div::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: white;
    top: -10px;
  }
  .navigation__nav .hamburger > div::after {
    top: 10px;
  }
  .navigation__nav .navigation__list {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    visibility: hidden;
  }
  .navigation ul li {
    padding: 3rem;
  }
  .navigation ul li a {
    font-size: 2.5rem;
    transition: all 0.4s ease-in-out;
  }
  .navigation ul li a:hover {
    background: none;
    text-decoration: underline;
  }
  .navigation ul {
    display: block;
  }
  .navigation ul li a:hover {
    background: none;
  }
  .navigation .toggle:checked ~ .navigation__list {
    visibility: visible;
  }
}
@media screen and (max-width: 500px) {
  .text-margin {
    font-size: 28px;
  }
  .about-us-text {
    font-size: 14px;
  }
}
.contact {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content {
  text-align: center;
  /*position: absolute;*/
  /*left: 30%;*/
  margin: 0 auto;
  max-width: 800px;
  margin-bottom: 30px;
}

.content h2 {
  font-size: 36px;
  font-weight: 500;
  color: white;
}

.content p {
  font-size: 18px;
  font-weight: 300;
  color: white;
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.container .contactInfo {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.container .contactInfo .box {
  position: relative;
  padding: 20px 0;
  display: flex;
}

.icons {
  margin-right: 1.5rem;
  width: 4rem;
  height: 4rem;
  fill: #fff;
}

.container .contactInfo .box .text {
  display: flex;
  margin-left: 20px;
  font-size: 16px;
  color: #fff;
  flex-direction: column;
  font-weight: 300;
}

.contactForm {
  width: 40%;
  padding: 40px;
  background: #fff;
}

.contactForm h2 {
  font-size: 30px;
  color: #333;
  font-weight: 500;
}

.contactForm .inputBox {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contactForm .inputBox input,
.contactForm .inputBox textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
}

.contactForm .inputBox span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}

.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span {
  color: #e91e63;
  font-size: 12px;
  transform: translateY(-20px);
}

.contactForm .inputBox input[type=submit] {
  background-color: var(--color-black-opacity-1);
  width: 100px;
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
}

@media (max-width: 991px) {
  .contact {
    padding: 50px;
  }
  .container {
    flex-direction: column;
  }
  .container .contactInfo {
    margin-bottom: 40px;
  }
  .container .contactInfo,
.contactForm {
    width: 100%;
  }
}
.toggle {
  display: none;
}

@media (max-width: 760px) {
  .contact {
    margin-top: 30px;
  }
  .content {
    margin-right: 10px;
  }
  .content h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
  }
  .content p {
    text-align: center;
    font-size: 14px;
  }
  .navigation__nav {
    position: fixed;
    top: 0;
    right: 0%;
    z-index: 2;
  }
  .toggle {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
  }
  .navigation__nav .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem;
    z-index: 1;
    transition: all 0.4s ease;
  }
  .navigation__nav .hamburger > div {
    position: relative;
    width: 100%;
    height: 3px;
    background: white;
    transition: all 0.4s ease;
  }
  .navigation__nav .hamburger > div::before,
.navigation__nav .hamburger > div::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: white;
    top: -10px;
  }
  .navigation__nav .hamburger > div::after {
    top: 10px;
  }
  .navigation__nav .navigation__list {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    visibility: hidden;
  }
  .navigation ul li {
    padding: 3rem;
  }
  .navigation ul li a {
    font-size: 2.5rem;
    transition: all 0.4s ease-in-out;
  }
  .navigation ul li a:hover {
    background: none;
    text-decoration: underline;
  }
  .navigation ul {
    display: block;
  }
  .navigation ul li a:hover {
    background: none;
  }
  .navigation .toggle:checked ~ .navigation__list {
    visibility: visible;
  }
}
.bg-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url(../assets/manakesh.jpg);
  min-height: 100vh;
  background-size: cover;
  background-position-y: 40%;
}

.header__logo {
  z-index: 999;
}

.informative_text_header h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: white;
}

.informative_text_header {
  font-family: KarlaBold, serif;
  padding: 15px 30px;
  background-color: rgba(0, 0, 0, 0.9);
  max-width: 800px;
  position: absolute;
  top: 20%;
  left: 2%;
}

.informative_text_header p {
  color: rgb(230, 229, 229);
  text-align: left;
  font-size: 14px;
  line-height: 1.7;
}

.CheckMenu {
  margin-top: 15px;
  font-size: 14px;
  border: var(--border-light-grey);
  text-align: center;
  text-decoration: none;
  display: block;
  cursor: pointer;
  padding: 1.5rem 0;
  width: 14rem;
  transition: all 0.2s;
  color: white;
}

.header_2_bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url("../assets/IraqiShawarma.jpg");
  min-height: 100vh;
  background-size: cover;
  background-position-y: 40%;
}

.header_3_bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url("../assets/FalafelMississauga.jpg");
  min-height: 100vh;
  background-size: cover;
  background-position-y: 40%;
}

.header_4_bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url("../assets/IRAQI SAMOON.jpg");
  min-height: 100vh;
  background-size: cover;
  background-position-y: 40%;
}

@media (max-width: 767.98px) {
    .menu-tabs-content > div {
        padding: 30px !important;
    }
}
