<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.main-color {
  color: #fdfdfd;
}

@font-face {
  font-family: fredoka;
  src: url(../../Fonts/Fredoka/FredokaOne-Regular.ttf);
}
@font-face {
  font-family: poppins;
  src: url(../../Fonts/poppins/Poppins-Regular.ttf);
}
body {
  font-family: poppins !important;
  background-color: #fff;
}

html {
  scroll-behavior: smooth;
}

.snowflake {
  position: absolute;
  width: 27px;
  height: 27px;
  background: transparent;
  z-index: 999;
  background-image: url(../../imgs/snow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

ul {
  padding: 0;
  list-style: none;
}
ul li {
  list-style: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: poppins !important;
}

.main-header {
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 600;
  display: inline-flex;
  position: relative;
  color: grey;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}
.reveal.active .fade-left {
  animation: fade-left 0.7s ease-in-out;
}
.reveal.active .fade-right {
  animation: fade-right 1s ease-in-out;
}
@keyframes fade-left {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    transform: translateX(150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.reveal.active .fade-bottom {
  animation: fade-bottom 0.7s ease-in-out;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.top {
  animation: top 0.5s ease-in;
}

@keyframes top {
  0% {
    transform: translateY(-150px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* header */
.openmenuu {
  width: 100% !important;
}

.displayy {
  display: flex !important;
  justify-content: center;
}

.valentine-gif {
  max-width: 100px;
}
@media (max-width: 480px) {
  .valentine-gif {
    max-width: 60px;
  }
}

header {
  background-color: #fdfdfd;
  padding: 20px 0;
}
header .navbar-brand {
  font-size: 1rem !important;
}
header .shop-logo {
  max-width: 180px;
}
@media (max-width: 480px) {
  header .shop-logo {
    max-width: 120px;
  }
}
header .order-btn {
  border: 2px solid #000;
  color: #000;
  background-color: #ffe700;
  padding: 10px 25px;
  border-radius: 20px;
  font-weight: bolder;
}
header section.menu-section span.open-menu {
  align-self: center;
  z-index: 10;
  width: 130px;
  justify-content: flex-end;
  display: flex;
}
header section.menu-section #myNav {
  display: block;
}
header section.menu-section nav {
  padding: 10px 0;
}
header section.menu-section div.mobile-overlay {
  height: 100%;
  width: 0%;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  background-color: #d90000;
  overflow-x: hidden;
  transition: width 0.45s;
}
header section.menu-section div.mobile-overlay .overlay-content {
  justify-content: center;
  position: relative;
  top: 15%;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  header section.menu-section div.mobile-overlay .overlay-content &gt; div#navbarNavAltMarkup {
    display: flex;
    flex-direction: row;
  }
}
header section.menu-section div.mobile-overlay .overlay-content .closebtn {
  text-decoration: unset;
  position: absolute;
  font-size: 20px;
  top: 0%;
  right: 10%;
  font-size: 26px;
  z-index: 100;
  color: #fdfdfd;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link {
  color: #fff;
  font-size: 19px;
  font-weight: bolder;
  border-bottom: 1px solid transparent;
  transition: ease-in-out 0.4s;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link:hover {
  border-bottom: 1px solid #fdfdfd;
  color: #fdfdfd !important;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link:hover svg {
  fill: #fdfdfd !important;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link.active {
  border-bottom: 1px solid #fdfdfd;
  color: #fdfdfd !important;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link svg {
  fill: #fff;
  font-weight: 600;
  width: 25px;
  height: 25px;
}
header section.menu-section div.mobile-overlay .overlay-content a.btn {
  background-color: #fdfdfd;
  color: black;
}
header section.menu-section div.mobile-overlay .overlay-content a.login-btn {
  background-color: #fdfdfd;
  border-radius: 35px 35px 12px 12px !important;
  padding: 8px 15px 8px 15px;
  color: #fff;
}

/* section hero */
section.hero-section .food-banner {
  background-color: #fdfdfd;
  border-radius: 20px;
}

#slider .carousel-item.active {
  transition: transform 7s linear, opacity 5s;
  opacity: 1;
  transform: scale(1.1, 1.1);
}
#slider .carousel-item {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 700px;
}
@media (max-width: 768px) {
  #slider .carousel-item {
    min-height: 540px;
  }
}
@media (max-width: 380px) {
  #slider .carousel-item {
    min-height: 400px;
  }
}
#slider .carousel-item .order-now {
  position: absolute;
  top: 30%;
  left: 10%;
  right: 10%;
  color: #fff;
  padding: 20px;
  flex-direction: column;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  display: flex;
  text-align: center;
}
@media (max-width: 767px) {
  #slider .carousel-item .order-now {
    top: 20%;
    padding: 10px;
  }
}
@media (max-width: 480px) {
  #slider .carousel-item .order-now {
    top: 20%;
  }
}
@media (max-width: 380px) {
  #slider .carousel-item .order-now {
    top: 10%;
  }
}
#slider .carousel-item .order-now h2 {
  font-size: 65px;
  font-weight: bolder;
  margin-bottom: 20px;
  text-shadow: 0px 2px #fff;
  color: #d90000;
}
@media (max-width: 767px) {
  #slider .carousel-item .order-now h2 {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  #slider .carousel-item .order-now h2 {
    font-size: 27px;
  }
}
#slider .carousel-item .order-now h4 {
  margin: 10px auto;
}
@media (max-width: 380px) {
  #slider .carousel-item .order-now h4 {
    font-size: 17px;
  }
}
#slider .carousel-item .order-now a {
  background-color: #d90000;
  border-radius: 5px !important;
  color: #fff;
  padding: 15px 35px;
  font-weight: 800;
  text-transform: capitalize;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: -moz-max-content;
  max-width: max-content;
}
#slider .carousel-item .order-now a:hover {
  color: #d90000;
  border-color: #fdfdfd;
  background-color: #fff !important;
}
@media (max-width: 480px) {
  #slider .carousel-item .order-now a {
    margin-top: 30px;
  }
}
#slider .carousel-item.item-one {
  background-image: url(../../imgs/hero/Delicious-Roast-Whitehaven-basckground.jpg);
}
section.more-about-us-section {
  color: #000;
  padding: 70px 0;
}
@media (max-width: 768px) {
  section.more-about-us-section {
    padding: 20px 0 0 0;
  }
}
section.more-about-us-section .about-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  justify-content: center;
  padding: 20px;
}
@media (max-width: 768px) {
  section.more-about-us-section .about-inner {
    padding: 5px;
  }
}
section.more-about-us-section .about-inner .add-btn {
  background-color: #d90000;
  display: flex;
  border-radius: 5px;
  margin-bottom: 10px;
}
section.more-about-us-section .about-inner .add-btn a {
  color: #fff;
  padding: 12px 18px;
  border-radius: 4px;
  transition: ease-in-out 0.3s;
}
section.more-about-us-section .about-inner .add-btn a:hover {
  background-color: #fff;
  color: #d90000;
  border: 1px solid #d90000;
}
section.more-about-us-section .main-header {
  margin-bottom: 0;
  color: #d90000;
}
section.more-about-us-section .more-imgs {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.more-about-us-section .more-imgs img {
  border-radius: 15px;
  max-width: 100%;
  margin: 20px;
}
section.more-about-us-section .about-img {
  max-width: 70%;
  border-radius: 15px;
}
section.more-about-us-section p {
  font-weight: bolder;
  font-size: 15px;
  text-align: center;
}
@media (max-width: 991px) {
  section.more-about-us-section p {
    font-size: 13px;
  }
}

#openinghour {
  padding: 0 10px;
}

.specialOffer {
  background-image: url(../../imgs/hero/Delicious-Roast-Whitehaven-special1.jpg);
}

.specialOffers {
  background-image: url(../../imgs/hero/Delicious-Roast-Whitehaven-special2.jpg);
}

.specialOffer,
.specialOffers {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 500px;
}
@media (max-width: 768px) {
  .specialOffer,
  .specialOffers {
    min-height: 300px;
    background-position: 50% 50%;
  }
}

section.special {
  background-color: #fdfdfd;
  padding: 0 0 20px 0;
}
section.special .special-header {
  padding: 30px 0;
  background-color: #d50000;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin-bottom: 40px;
  color: #fdfdfd;
}
section.special .special-header h2 {
  color: #fff;
  margin-bottom: 0;
}
section.special .main-header {
  margin-bottom: 10px;
}
section.special .category {
  display: flex;
  flex-direction: column;
}
section.special .category .category-header {
  border-bottom: none;
}
section.special .category ul {
  display: flex;
  flex-direction: column;
}
section.special .category ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 7px 0;
  padding-bottom: 5px;
  border-bottom: 2px dashed #d90000;
}
section.special .category ul li h3 {
  font-size: 26px;
  color: #d90000;
  text-transform: capitalize;
  font-weight: 800;
}
@media (max-width: 991px) {
  section.special .category ul li h3 {
    font-size: 19px;
  }
}
@media (max-width: 480px) {
  section.special .category ul li h3 {
    font-size: 16px;
  }
}
section.special .category ul li h3 span {
  color: #fdfdfd;
}
section.special .category ul li span {
  text-transform: capitalize;
}
section.special .category ul li .add-btn {
  background-color: #d90000;
  display: flex;
  border-radius: 5px;
}
section.special .category ul li .add-btn a {
  color: #fff;
  padding: 12px 18px;
  border-radius: 4px;
  box-shadow: 3px 3px 0px #940404;
  transition: ease-in-out 0.3s;
}
section.special .category ul li .add-btn a:hover {
  box-shadow: none;
}

.menu-banner .banner-content {
  background-image: url(../../imgs/hero/nhhn.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 70px;
  margin: 0 auto;
  padding: 30px;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.menu-banner .banner-content h2 {
  color: #fdfdfd;
  font-weight: bolder;
  letter-spacing: -0.1rem;
  font-size: 90px;
  text-transform: uppercase;
  text-shadow: -5px 0px #000;
}
.menu-banner .banner-content a {
  background-color: #fdfdfd;
  border-radius: 40px;
  width: 200px;
  height: 50px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 800;
  text-transform: capitalize;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .menu-banner .banner-content a {
    font-size: 15px;
    padding: 10px;
    width: 150px;
  }
}
@media (max-width: 576px) {
  .menu-banner .banner-content a {
    width: 100px;
    font-size: 13px;
  }
}
.menu-banner .banner-content a:hover {
  color: #fdfdfd;
  border-color: #fdfdfd;
  background-color: #fff !important;
}

section.about-us {
  padding: 100px 0;
  background-color: #fdfdfd;
}
section.about-us .inner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
section.about-us .inner-content h2 {
  font-size: 40px;
  color: #d90000;
}
@media (max-width: 768px) {
  section.about-us .inner-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  section.about-us .inner-content h2 {
    font-size: 25px;
  }
}
section.about-us .inner-content p {
  color: #111;
  font-size: 16px;
}
section.about-us .inner-content .add-btn {
  background-color: #d90000;
  display: flex;
  border-radius: 5px;
  border: 2px solid #d90000;
  transition: ease-in-out 0.3s;
}
section.about-us .inner-content .add-btn a {
  padding: 12px 18px;
  border-radius: 4px;
  color: #fff;
}
section.about-us .inner-content .add-btn:hover {
  background-color: #fff;
  border: 2px solid #d90000;
}
section.about-us .inner-content .add-btn:hover a {
  color: #d90000;
}

section.peyment-method {
  background-color: #ffffff;
}
section.peyment-method div.row {
  padding: 50px 0;
}
section.peyment-method div.row div.col-10 .methods-container {
  justify-content: space-evenly;
}
section.peyment-method div.row div.col-10 .methods-container &gt; div img {
  width: 70px;
  display: block;
}

/* dwnloap app section */
section.dl-app {
  background-color: #810202;
  padding: 30px 0;
  border-bottom: 2px solid #d90000;
}
section.dl-app img.dl-app-link {
  width: 200px;
  margin: 0 10px 0 0;
}
section.dl-app a.app-link-dl-container:hover img {
  transform: scale(1.2);
  transition: ease-in-out 0.3s;
}
section.dl-app h3.dl-ur-app-heading {
  font-family: poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 25px;
  margin-top: 20px;
  color: #fff;
}
@media (max-width: 991px) {
  section.dl-app h3.dl-ur-app-heading {
    margin: 0;
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  section.dl-app h3.dl-ur-app-heading {
    margin-top: 20px;
    margin-bottom: 20px;
    text-shadow: unset;
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  section.dl-app h3.dl-ur-app-heading {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 380px) {
  section.dl-app h3.dl-ur-app-heading {
    font-size: 23px;
  }
}
@keyframes scale-up-center {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
section.reviews {
  padding: 80px 0;
}
section.reviews .comment-section .fa {
  font-size: 30px;
  color: #ccc;
}
section.reviews .comment-section .comment-text {
  max-width: 800px;
  min-height: 100px;
  text-align: center;
  color: #333;
  font-size: 14px;
  line-height: 31px;
  margin: 0 auto;
}
section.reviews .comment-section .comment-writter-name {
  margin-top: 35px;
  color: #fdfdfd;
  margin-bottom: 9px;
  font-size: 16px;
  color: #fdfdfd;
}

.short-info {
  background-color: #1b2024;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 60px 0;
  color: #fff;
  text-align: center;
  position: relative;
}
@media (max-width: 480px) {
  .short-info {
    padding: 40px 0;
  }
}
.short-info h2 a {
  color: #fff;
}
@media (max-width: 480px) {
  .short-info h2 {
    font-size: 25px;
  }
}
@media (max-width: 300px) {
  .short-info h2 {
    font-size: 20px;
  }
}

/* footer */
footer {
  color: #fff;
  padding: 60px 0 0 0;
  background-color: #d90000;
}
@media (max-width: 576px) {
  footer {
    padding: 50px 0 20px 0;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 70px 0 15px 0;
  }
}
footer .footer-logo img {
  max-width: 80px;
}
footer .footer-links {
  display: flex;
  flex-direction: column;
  padding: 0;
}
@media (max-width: 576px) {
  footer .footer-links {
    text-align: center;
  }
}
footer .footer-links li {
  margin-bottom: 15px;
}
footer .footer-links li a {
  color: #fff;
  font-size: 16px;
  font-weight: bolder;
}

.foods-tags {
  padding-top: 30px;
  background-color: #d90000;
}
.foods-tags .foods-link {
  padding-top: 20px;
}
.foods-tags ul {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
}
.foods-tags ul li {
  list-style: none;
  display: inline-block;
  border: 1px solid #cdcdcd;
  text-transform: capitalize;
  border-radius: 20px;
  padding: 5px 20px;
  margin: 4px;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  background-color: #fff;
}
.foods-tags ul li a,
.foods-tags ul li span {
  color: #000 !important;
  margin-bottom: 0;
  font-size: 13px;
}
.foods-tags ul li a:hover,
.foods-tags ul li span:hover {
  text-decoration: none;
}
.foods-tags ul li:hover {
  border: 1px solid #fdfdfd;
}

.contact-us {
  background-color: #d90000;
  display: flex;
  color: #fff;
}
@media (max-width: 768px) {
  .contact-us {
    flex-direction: column;
  }
}
.contact-us .contact-details {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
}
@media (max-width: 768px) {
  .contact-us .contact-details {
    width: 100%;
    padding: 40px 0;
  }
}
.contact-us .contact-details ul {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.contact-us .contact-details ul li {
  margin-bottom: 10px;
}
.contact-us .contact-details ul li i {
  margin-right: 10px;
  font-size: 18px;
  display: inline-flex;
}
.contact-us .contact-details ul li img {
  max-width: 70px;
}
.contact-us .contact-details ul li span {
  font-weight: bolder;
  font-size: 20px;
}
.contact-us .contact-details ul li p {
  font-weight: bolder;
}
.contact-us .contact-details ul li a {
  color: white;
  font-weight: bolder;
}
.contact-us .map {
  width: 50%;
}
@media (max-width: 768px) {
  .contact-us .map {
    width: 100%;
  }
}
.contact-us .map iframe {
  min-height: 600px;
}
@media (max-width: 768px) {
  .contact-us .map iframe {
    min-height: 350px;
  }
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 59px;
  left: 25px;
  z-index: 99;
  font-size: 18px;
  border: 1px solid #fff;
  outline: none;
  background-color: #d90000;
  color: #fdfdfd;
  cursor: pointer;
  padding: 6px 11px 6px 11px;
  border-radius: 12px;
}
#myBtn:hover {
  color: #fdfdfd;
  border: 1px solid #fdfdfd;
  background-color: white;
  box-shadow: grey 0px 7px 29px 0px;
}

section.social-media {
  background-color: #000;
}
section.social-media h5 {
  color: #fdfdfd;
}
section.social-media div.icon-holder {
  transition: transform 0.5s ease;
}
section.social-media div.icon-holder:hover {
  transform: translate(0px, -8px);
}

/* Customize  Color Of Selection  */
::-moz-selection {
  background-color: #fdfdfd;
  color: #d90000;
}
::selection {
  background-color: #fdfdfd;
  color: #d90000;
}

::-moz-selection {
  background-color: #fdfdfd;
  color: white;
}

/* Customize  Scrollbar  */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background: #fdfdfd;
  border-radius: 10px;
}

section.copyright {
  background-color: #810707;
  padding: 30px 0;
}
section.copyright .copyright-inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 576px) {
  section.copyright .copyright-inner {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
section.copyright p {
  color: #fff;
  font-weight: bold;
  margin-bottom: 0;
  font-size: 14px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 480px) {
  section.copyright p {
    font-size: 11px;
    line-height: 20px;
    padding: 5px;
  }
}
section.copyright a.mealzo-link {
  color: grey !important;
}
section.copyright a.mealzo-link img {
  max-width: 100px !important;
}/*# sourceMappingURL=style2.css.map */</pre></body></html>