body {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 20px 16px;
  overflow-x: hidden;
  overflow-y: visible;
  font-family: "Poppins", sans-serif;
  background-color: #00255a;
  color: #000;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: visible;
}

.text-black {
  color: #000;
}

.index-hero {
  width: 100%;
  background-color: #00255a;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)), url("../../imgs/hero/Artisan-Greek-Kitchen-food.jpg");
  background-repeat: no-repeat;
  background-position: 12% 29%;
  background-size: cover;
  color: #fff;
  transition: ease-in-out 1.5s;
  border-radius: 16px;
}
.index-hero:hover {
  background-position: 30% 15%;
}

a.main-order-btn {
  text-decoration: none;
  color: #fff;
  background: #00255a;
  padding: 14px 50px;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

a.main-order-btn:hover {
  background-color: #00255a;
  animation: infinite pulse 1s ease-in-out;
  color: #fff;
}

/* Customize  Color Of Selection  */
::-moz-selection {
  background-color: #00255a;
  color: white;
}

::selection {
  background-color: #00255a;
  color: white;
}

::-moz-selection {
  background-color: #00255a;
  color: white;
}

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

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

.fade-bottom-hero {
  animation: fade-bottom-hero 2s ease-in-out;
}

@keyframes fade-bottom-hero {
  0% {
    transform: translateY(150px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-top-hero {
  animation: fade-top-hero 2s ease-in-out;
}

@keyframes fade-top-hero {
  0% {
    transform: translateY(-150px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-left-hero {
  animation: fade-left-hero 2s ease-in-out;
  -webkit-animation: fade-left-hero 2s ease-in-out;
}

.fade-left-hero2 {
  animation: fade-left-hero 2.5s ease-in-out;
  -webkit-animation: fade-left-hero 2.5s ease-in-out;
}

.fade-left-hero3 {
  animation: fade-left-hero 3s ease-in-out;
  -webkit-animation: fade-left-hero 3s ease-in-out;
}

@keyframes fade-left-hero {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}
.reveal.active .fade-bounce {
  animation: fade-bounce 2s ease-in-out;
}
.reveal.active .fade-bounce1 {
  animation: fade-bounce 2.5s ease-in-out;
}
.reveal.active .fade-bounce2 {
  animation: fade-bounce 3s ease-in-out;
}
@keyframes fade-bounce {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.reveal.active .fade-bottom {
  animation: fade-bottom 2s ease-in-out;
}
.reveal.active .fade-bottom1 {
  animation: fade-bottom 2.5s ease-in-out;
}
.reveal.active .fade-bottom2 {
  animation: fade-bottom 3s ease-in-out;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(190px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.reveal.active .top {
  animation: top 0.5s ease-in;
}
@keyframes top {
  0% {
    transform: translateY(-150px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.location-section {
  padding: 80px 0 20px 0;
  background-image: url(../../imgs/hero/traditional-house-interior-design.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 900px) {
  .location-section {
    padding: 30px 0;
  }
}
.location-section .section-title {
  color: #fff;
  font-weight: 700;
  margin: 30px 0 50px 0;
  font-weight: bolder;
  font-size: 3.6rem;
  text-shadow: 1px 1px 10px #00255a;
}
@media (max-width: 1200px) {
  .location-section .section-title {
    font-size: 3rem;
  }
}
@media (max-width: 991px) {
  .location-section .section-title {
    font-size: 2.8rem;
    margin: 35px 0;
  }
}
@media (max-width: 769px) {
  .location-section .section-title {
    font-size: 2.4rem;
    margin: 30px 0;
  }
}
@media (max-width: 481px) {
  .location-section .section-title {
    font-size: 1.4rem;
    margin: 25px 0;
  }
}
.location-section .map-container iframe {
  width: 100%;
  min-height: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}
.location-section iframe:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}
.location-section #openinghours:hover {
  transform: scale(1.02);
}
.location-section #openinghours h6 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 15px;
}
.location-section #openinghours p {
  font-size: 1rem;
  margin: 5px 0;
  color: #fff;
}
.location-section .address-section {
  margin: 0 20px;
  background: #ffffff;
  border: 3px dashed #203848;
  border-radius: 15px;
  padding: 0 25px;
  min-height: 350px;
}
@media (max-width: 1200px) {
  .location-section .address-section {
    margin: 0;
    min-height: 380px;
  }
}
@media (max-width: 768px) {
  .location-section .address-section {
    min-height: unset;
  }
}
.location-section .address-section .img-fluid {
  margin-top: 10px;
  max-width: 300px;
  border-radius: 12px;
}
.location-section .address-section .location-address {
  margin-top: 27px;
  font-size: 1rem;
  color: #fff;
}
.location-section .opening-container {
  margin: 0;
  min-height: 320px;
  border-radius: 15px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  width: 100%;
  backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, 0.8352941176);
  color: #00255a;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .location-section .opening-container {
    margin: 0;
    min-height: unset;
  }
}
@media (max-width: 768px) {
  .location-section .opening-container {
    min-height: unset;
  }
}
.location-section .opening-container h6 {
  margin-top: 0.5%;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #00255a;
}
@media (max-width: 480px) {
  .location-section .opening-container h6 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.location-section .opening-container #openinghour {
  padding: 0 4%;
  font-size: 1rem;
  color: #00255a;
}
.location-section .opening-container #openinghour .d-flex {
  padding: 5px;
}
@media (max-width: 1200px) {
  .location-section .opening-container #openinghour .d-flex {
    padding: 8px;
  }
}
.location-section .opening-container svg {
  color: #00255a;
}
.location-section .opening-container img {
  max-width: 100%;
}
@media (max-width: 1200px) {
  .location-section .opening-container img {
    max-width: 50%;
  }
}
@media (max-width: 768px) {
  .location-section .opening-container img {
    max-width: 200px;
  }
}
.location-section a {
  color: #00255a;
}

section.about-us {
  background-image: url("../../imgs/hero/background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 40px 120px 40px;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 1200px) {
  section.about-us {
    padding: 40px 0;
  }
}
section.about-us .about_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  section.about-us .about_title {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}
section.about-us .about_title h2 {
  max-width: 70%;
  font-size: 3.2rem;
  color: #fff;
}
@media (max-width: 1200px) {
  section.about-us .about_title h2 {
    max-width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  section.about-us .about_title h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  section.about-us .about_title h2 {
    font-size: 1.5rem;
  }
}
section.about-us .about_title a {
  margin-bottom: 40px;
  font-weight: bolder;
  border: 1px solid #fff;
  padding: 25px 50px;
}
@media (max-width: 480px) {
  section.about-us .about_title a {
    padding: 15px 30px;
  }
}
section.about-us img {
  width: 100%;
  border-radius: 16px;
}
section.about-us .card {
  border-radius: 8px;
  padding: 24px;
  color: #000;
  background-color: rgb(255, 249, 237);
  max-width: 400px;
  border: 1px dashed #000;
  box-shadow: 2px 2px 15px #000;
}
@media (max-width: 1200px) {
  section.about-us .card {
    background-color: transparent;
    padding: 20px 0 0 0;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0);
    text-align: center;
    border: none;
    min-width: 100%;
    align-items: center;
    margin: 0 auto;
  }
}
section.about-us .card p {
  font-size: 18px;
}
@media (max-width: 1200px) {
  section.about-us .card p {
    color: #fff;
  }
}
section.about-us .about_icon {
  max-width: 70px;
}
section.about-us .card-left {
  position: absolute;
  top: 40%;
  left: 50px;
}
@media (max-width: 1200px) {
  section.about-us .card-left {
    position: relative;
    top: unset;
    left: unset;
  }
}
section.about-us .card-rightone {
  position: absolute;
  top: 50%;
  left: 70%;
}
@media (max-width: 1200px) {
  section.about-us .card-rightone {
    position: relative;
    top: unset;
    left: unset;
  }
}
section.about-us .card-righttwo {
  position: absolute;
  top: 65%;
  left: 60%;
}
@media (max-width: 1200px) {
  section.about-us .card-righttwo {
    position: relative;
    top: unset;
    left: unset;
  }
}
@media (max-width: 1200px) {
  section.about-us h3 {
    color: #fff;
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
section.about-us .responsive_btn {
  display: none;
}
@media (max-width: 1200px) {
  section.about-us .responsive_btn {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    background-color: #fff;
    color: #00255a;
  }
}
@media (max-width: 480px) {
  section.about-us .responsive_btn {
    font-size: 16px;
  }
}

video {
  max-width: 100%;
  border-radius: 16px;
}

.animation-image {
  transform-origin: 50%;
  animation: linear scale-down-on-scroll;
  animation-timeline: view() !important;
  animation-range: exit-crossing 0% exit-crossing 100% !important;
}
@keyframes scale-down-on-scroll {
  to {
    opacity: 0.5;
    translate: -60vi;
    rotate: -20deg;
    scale: 0.9;
  }
}
.animation-image img {
  -o-object-position: top left;
     object-position: top left;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  width: 100%;
  display: block;
}

.scrolling .box {
  transform: translateY(0); /* Initial transform state */
  animation-timeline: view();
  animation-range: entry 0% exit 100%; /* Start at entry, end at exit */
  animation-fill-mode: both; /* Ensures animation state is maintained */
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}
@keyframes fadeInUp {
  0% {
    opacity: 0.2;
    transform: scale(1) translateY(0);
  }
  40% {
    opacity: 0.4;
    transform: scale(2) translateY(60px);
  }
  60% {
    opacity: 0.8;
    transform: scale(4) translateY(100px);
  }
  100% {
    opacity: 1;
    transform: scale(3) translateY(130px);
  }
}
.scrolling .video {
  transform: translateY(0); /* Initial transform state */
  animation-timeline: view();
  animation-range: entry 0% exit 100%; /* Start at entry, end at exit */
  animation-fill-mode: both; /* Ensures animation state is maintained */
  animation-name: SCaleup;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}
@keyframes SCaleup {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1.8);
  }
}

/* header */
.openmenuu {
  width: 100% !important;
}

.displayy {
  display: block !important;
}
@media (min-width: 768px) {
  .displayy {
    display: flex !important;
  }
}

.valentine-section {
  background-color: rgb(99, 0, 0);
  background-image: url(https://www.mealzoforbusiness.co.uk/1/heart-background.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.valentine-section img {
  max-width: 55px;
}
@media (max-width: 480px) {
  .valentine-section img {
    max-width: 35px;
  }
}
.valentine-section marquee {
  color: #fff;
  font-size: 17px;
}
@media (max-width: 480px) {
  .valentine-section marquee {
    font-size: 15px;
  }
}

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

.new-branch-text .container {
  background-color: transparent;
  color: #fff;
  padding: 10px 0;
  border-radius: 0 0 5px 5px;
}
.new-branch-text p {
  margin: 0;
  text-align: center;
  font-size: 20px;
}
@media (max-width: 991px) {
  .new-branch-text p {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .new-branch-text p {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .new-branch-text p {
    font-size: 15px;
  }
}

.offers-section p {
  color: #fff;
  text-align: center;
  padding: 5px 0;
}

.top-header {
  background-color: transparent;
  color: #fff;
  text-align: left;
  position: relative;
  z-index: 3;
}
@media (max-width: 600px) {
  .top-header {
    padding-inline: 4%;
  }
}
.top-header .container {
  padding: 0;
  padding-top: 10px;
  border-bottom: 1px solid #fff;
}
.top-header svg {
  padding-inline: 10px;
  margin-bottom: 5px;
  width: 35px;
  height: auto;
  fill: #00255a;
}
.top-header a {
  color: #fff;
}
.top-header p {
  color: #ffffff;
  font-weight: bolder;
}
.top-header img {
  max-width: 220px;
  margin-right: 5px;
}

header {
  padding: 10px 0;
}
header .navbar-brand {
  font-size: 1rem !important;
}
header .shop-logo {
  max-width: 190px;
  border-radius: 8px;
}
@media (max-width: 480px) {
  header .shop-logo {
    max-width: 160px;
  }
}
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 span.open-menu svg {
  fill: #fff;
}
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: rgba(0, 0, 0, 0.93);
  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 > 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: -2%;
  right: 10%;
  font-size: 26px;
  z-index: 100;
  color: #7bc3ff;
}
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 #00255a;
  color: #00255a !important;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link:hover svg {
  fill: #00255a !important;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link.active {
  border-bottom: 1px solid #7bc3ff;
  color: #7bc3ff !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: #00255a;
  color: black;
}
header section.menu-section div.mobile-overlay .overlay-content a.login-btn {
  background-color: #00255a;
  border-radius: 35px 35px 12px 12px !important;
  padding: 8px 15px 8px 15px;
  color: #fff;
}

.header-svg {
  margin-top: -139px;
}
@media (max-width: 768px) {
  .header-svg {
    margin-top: -170px;
  }
}
@media (max-width: 480px) {
  .header-svg {
    margin-top: -100px;
  }
}

.CTA_button {
  padding: 16px 35px;
  background-color: #00255a;
  text-transform: uppercase;
  font-size: 20px;
  color: #fff;
  border-radius: 10px;
  line-height: 1;
  letter-spacing: 1px;
  transition: 0.4s ease-in-out;
  border: 1px solid #00255a;
  max-width: -moz-max-content;
  max-width: max-content;
  text-decoration: none;
}
.CTA_button svg {
  margin-left: 8px;
}
.CTA_button:hover {
  background-color: #001121;
  color: #00255a;
  border-color: #00255a;
  text-decoration: none;
}

#myModal {
  color: #000;
}

.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;
}

section.food-items {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 8% 1%;
  position: relative;
  overflow: hidden;
}
section.food-items h3.section-title {
  position: sticky;
  top: 0;
  font-size: 4rem;
  margin-bottom: 40px;
  color: #000;
  font-weight: 550;
  filter: contrast(150%);
  text-shadow: 0px 0px 2px #000;
}
@media (max-width: 600px) {
  section.food-items h3.section-title {
    font-size: 2rem;
  }
}
section.food-items #card_1 {
  --index: 1;
}
section.food-items #card_2 {
  --index: 2;
}
section.food-items #card_3 {
  --index: 3;
}
section.food-items #card_4 {
  --index: 4;
}
section.food-items .card {
  position: sticky;
  top: 0;
  padding-top: calc(var(--index) * var(--card-top-offset));
}
@supports (animation-timeline: works) {
  @scroll-timeline cards-element-scrolls-in-body {
    section.food-items {
      source: selector(body);
      scroll-offsets: selector(#cards) start 1, selector(#cards) start 0;
      start: selector(#cards) start 1;
      /* Start when the start edge touches the top of the scrollport */
      end: selector(#cards) start 0;
      /* End when the start edge touches the start of the scrollport */
      time-range: 4s;
    }
  }
  section.food-items .card {
    --index0: calc(var(--index) - 1);
    /* 0-based index */
    --reverse-index: calc(var(--numcards) - var(--index0));
    /* reverse index */
    --reverse-index0: calc(var(--reverse-index) - 1);
    /* 0-based reverse index */
  }
  section.food-items .card__content {
    transform-origin: 50% 0%;
    will-change: transform;
    --duration: calc(var(--reverse-index0) * 1s);
    --delay: calc(var(--index0) * 1s);
    animation: var(--duration) linear scale var(--delay) forwards;
    animation-timeline: cards-element-scrolls-in-body;
  }
  @keyframes scale {
    to {
      transform: scale(calc(1.1 - 0.1 * var(--reverse-index)));
    }
  }
}
section.food-items {
  /** DEBUG **/
}
section.food-items #debug {
  position: fixed;
  top: 1em;
  left: 1em;
}
section.food-items #debug::after {
  content: " Show Debug";
  margin-left: 1.5em;
  color: white;
  white-space: nowrap;
}
section.food-items #debug:checked ~ main {
  --outline-width: 1px;
}
section.food-items #cards {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--numcards), var(--card-height));
  gap: var(--card-margin);
  border-radius: 15px;
}
@media (max-width: 767px) {
  section.food-items #cards {
    display: flex;
    flex-wrap: wrap;
  }
}
section.food-items #cards .card {
  border-radius: 15px;
  margin: 30px 0;
}
section.food-items #cards .card__content {
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.1), 0 1em 2em rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  color: rgb(10, 5, 7);
  border-radius: 1em;
  display: grid;
  grid-template-areas: " img text";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  align-items: stretch;
}
@media (max-width: 767px) {
  section.food-items #cards .card__content {
    display: flex;
    flex-direction: column;
  }
}
section.food-items #cards .card__content > div {
  grid-area: text;
  width: 80%;
  place-self: center;
  text-align: left;
  display: grid;
  gap: 1em;
  place-items: start;
}
@media (max-width: 767px) {
  section.food-items #cards .card__content > div {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
  }
}
section.food-items #cards .card__content figure {
  grid-area: img;
  margin-bottom: 0;
  margin-top: -100px;
}
section.food-items #cards .card__content figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.food-items #cards h1 {
  font-size: 3.5em;
}
section.food-items #cards h5 {
  font-size: 25px;
  font-weight: bolder;
  font-family: ArchivoBlack;
}
@media (max-width: 1200px) {
  section.food-items #cards h5 {
    font-size: 21px;
  }
}
section.food-items #cards p {
  font-family: sans-serif;
  font-weight: 300;
}
@media (max-width: 1200px) {
  section.food-items #cards p {
    margin-bottom: 5px;
  }
}
section.food-items #cards .btn {
  background: #00255a;
  color: rgb(255, 255, 255);
  text-decoration: none;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 40px;
  border: 2px solid #00255a;
}
section.food-items #cards .btn:hover {
  background-color: transparent;
  color: #00255a;
}
section.food-items #cards aside {
  width: 50vw;
  margin: 0 auto;
  text-align: left;
}
section.food-items #cards aside p {
  margin-bottom: 1em;
}

.hero-section {
  padding: 70px 0;
  margin: 0;
  width: 100%;
  max-height: -moz-max-content;
  max-height: max-content;
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-section .hero-content {
  padding: 100px 0;
  margin: 0;
}
@media (max-width: 991px) {
  .hero-section .hero-content {
    padding: 0px 0 60px 0;
  }
}
.hero-section .hero-content .hero-text {
  text-shadow: 0px 0px 6px #000;
  margin: 0;
}
@media (max-width: 900px) {
  .hero-section .hero-content .hero-text {
    margin: 0 5%;
    text-align: center;
  }
  .hero-section .hero-content .hero-text p {
    padding-inline: 2%;
  }
}
.hero-section .hero-content .hero-text h1 {
  color: #fff;
  font-weight: bolder;
  font-size: 4.5rem;
}
@media (max-width: 991px) {
  .hero-section .hero-content .hero-text h1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 756px) {
  .hero-section .hero-content .hero-text h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-content .hero-text h1 {
    font-size: 1.7rem;
    padding-inline: 0%;
  }
}
.hero-section .hero-content .hero-text h2 {
  font-size: 1.2rem;
}
@media (max-width: 756px) {
  .hero-section .hero-content .hero-text h2 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-content .hero-text h2 {
    font-size: 1.2rem;
    padding-inline: 0%;
  }
}
.hero-section .hero-content .hero-text p {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}
.hero-section .hero-content .hero-text a {
  position: relative;
  z-index: 9;
}
.hero-section .hero-content .hero-text a.main-order-btn {
  text-shadow: none;
}

.special_svg {
  margin-top: -340px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1600px) {
  .special_svg {
    margin-top: -300px;
  }
}
@media (max-width: 1400px) {
  .special_svg {
    margin-top: -270px;
  }
}
@media (max-width: 1300px) {
  .special_svg {
    margin-top: -250px;
  }
}
@media (max-width: 1200px) {
  .special_svg {
    display: none;
  }
}

.special-items {
  padding: 40px 0;
  position: relative;
}
.special-items:after {
  position: absolute;
  content: "";
  background-image: url(../../imgs/hero/waving-ribbon-banner-with-flag.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0;
  bottom: 0;
  top: 10%;
  left: 0;
  z-index: 0;
  width: 1200px;
  height: 700px;
  opacity: 0.5;
  transform: rotate(-13deg);
}
@media (max-width: 991px) {
  .special-items:after {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .special-items:after {
    width: 100%;
    height: 400px;
  }
}
.special-items span {
  font-weight: bolder;
  position: relative;
  z-index: 5;
  color: #fff;
  text-shadow: 2px 2px 16px #00255a;
  font-size: 4.5rem;
}
@media (max-width: 768px) {
  .special-items span {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .special-items span {
    font-size: 2rem;
  }
}
.special-items img {
  border-radius: 20px;
  display: flex;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}
.special-items a.order-btn {
  position: relative;
  z-index: 5;
  text-decoration: none;
  color: #fff;
  background: #00255a;
  border-radius: 8px;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: auto;
  border: 1px solid #fff;
  padding: 15px 50px;
}
.special-items .deal-img {
  border-radius: 20px;
}
.special-items .swiper {
  border-radius: 20px;
}
.special-items .swiper-deal-reverse {
  transform: rotate(180deg);
}
.special-items .swiper-deal-reverse img {
  transform: rotate(180deg);
}

.tabs {
  @import url("https://fonts.googleapis.com/css?family=Raleway");
}
.tabs .flex-container {
  position: relative;
  height: 550px;
  width: 100%;
  transition: ease-in-out 0.7s;
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .tabs .flex-container {
    flex-direction: column;
    height: unset;
  }
}
.tabs ul {
  list-style: none;
}
.tabs .flex-title {
  color: #f1f1f1;
  position: relative;
  font-size: 2.2rem;
  margin: auto;
  text-align: center;
  transform: rotate(90deg);
  top: 45%;
  display: flex;
  justify-content: center;
  transition: all 500ms ease;
}
@media screen and (max-width: 991px) {
  .tabs .flex-title {
    transform: rotate(0deg) !important;
    top: 60%;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .tabs .flex-title {
    font-size: 1.6rem;
  }
}
.tabs .flex-about {
  opacity: 0;
  color: #f1f1f1;
  position: relative;
  width: 70%;
  font-size: 1.2rem;
  padding: 24px;
  top: 20%;
  border: 2px solid #f1f1f1;
  border-radius: 10px;
  line-height: 1.3;
  margin: auto;
  text-align: center;
  align-items: center;
  transform: rotate(0deg);
  transition: all 500ms ease;
}
@media screen and (max-width: 991px) {
  .tabs .flex-about {
    padding: 8px;
    border: 1px solid #f1f1f1;
    font-size: 1rem;
    top: 23%;
    width: 90%;
  }
}
.tabs .flex-about a {
  color: #fff;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tabs .flex-about a svg {
  width: 20px;
  margin-left: 8px;
}
.tabs .flex-slide {
  flex: 1;
  cursor: pointer;
  transition: all 500ms ease;
}
@media screen and (max-width: 991px) {
  .tabs .flex-slide {
    overflow: auto;
    overflow-x: hidden;
    padding: 24px;
  }
}
.tabs .flex-slide:hover {
  flex-grow: 3;
  min-height: 350px;
}
.tabs .flex-slide:hover .flex-about {
  opacity: 1;
}
.tabs .flex-slide:hover .flex-title {
  transform: rotate(0deg);
  top: 10%;
  bottom: auto;
}
.tabs ul {
  padding: 0;
}
.tabs .home {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../imgs/tabs/Artisan-Greek-Kitchen-Potato-Fries-Livingston.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 991px) {
  .tabs .home {
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}
@keyframes aboutFlexSlide {
  0% {
    flex-grow: 1;
  }
  50% {
    flex-grow: 3;
  }
  100% {
    flex-grow: 1;
  }
}
@media screen and (min-width: 768px) {
  .tabs .flex-title-home {
    transform: rotate(90deg);
    top: 15%;
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}
@keyframes homeFlextitle {
  0% {
    transform: rotate(90deg);
    top: 15%;
  }
  50% {
    transform: rotate(0deg);
    top: 15%;
  }
  100% {
    transform: rotate(90deg);
    top: 15%;
  }
}
.tabs .flex-about-home {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .tabs .flex-about-home {
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}
@keyframes flexAboutHome {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.tabs .about {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../imgs/tabs/Artisan-Greek-Kitchen-Meze-Livingston.jpg);
  background-size: cover;
  background-position: center;
}
.tabs .contact-form {
  width: 100%;
}
.tabs input {
  width: 100%;
}
.tabs textarea {
  width: 100%;
}
.tabs .contact {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../imgs/tabs/Artisan-Greek-Kitchen-Baklava-Livingston.jpg);
  background-size: cover;
  background-position: center;
}
.tabs .work {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../imgs/tabs/Artisan-Greek-Kitchen-Kebab-and-Sauce-Livingston.jpg);
  background-size: cover;
  background-position: center;
}
.tabs .branding {
  position: fixed;
  bottom: 20px;
  background: #fff;
  right: 20px;
  padding: 12px;
  box-sizing: border-box;
  border-radius: 56px;
  line-height: 0;
}
@media screen and (max-width: 991px) {
  .tabs .flex-about {
    opacity: 1;
  }
}
@media screen and (max-width: 991px) {
  .tabs .flex-slide {
    min-height: 400px;
    margin: 24px 0;
  }
}
@media screen and (max-width: 576px) {
  .tabs .flex-slide {
    padding: 40px 10px;
  }
}

.mania-section {
  background-color: rgb(255, 244.3670886076, 227);
}
.mania-section .mania-title {
  font-size: 2rem;
  color: #000;
  margin-bottom: 1rem;
}
.mania-section .mania-description {
  color: #333333;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 500px;
}
.mania-section .mania-image {
  max-width: 100%;
  height: auto;
}
.mania-section .btn-danger {
  background-color: #00255a;
  border: none;
}
.mania-section .btn-danger:hover {
  background-color: rgb(0, 16.0333333333, 39);
}

.special-offer {
  background-color: rgb(255, 244.3670886076, 227);
}
.special-offer .offer-title {
  font-size: 2rem;
  color: #000;
  margin-bottom: 1rem;
}
.special-offer .offer-desc {
  color: #333333;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 1.5rem auto;
}
.special-offer .offer-image {
  max-width: 100%;
  height: auto;
  border: 2px solid #00255a;
  border-radius: 8px;
}
.special-offer .btn-danger {
  background-color: #00255a;
  border: none;
}
.special-offer .btn-danger:hover {
  background-color: rgb(0, 16.0333333333, 39);
}

.soup-section .section-title {
  font-size: 2rem;
  color: #000;
  margin-bottom: 0.5rem;
}
.soup-section .section-subtitle {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 2rem;
}
.soup-section .soup-card {
  transition: transform 0.3s ease;
}
.soup-section .soup-card:hover {
  transform: translateY(-5px);
}
.soup-section .soup-card img {
  border-bottom: 2px solid #00255a;
  -o-object-fit: cover;
     object-fit: cover;
}
.soup-section .soup-card .card-body .card-title {
  color: #000;
  margin-bottom: 0.5rem;
}
.soup-section .soup-card .card-body .card-text {
  color: #333333;
  font-size: 0.9rem;
}
.soup-section .soup-card .card-body .price {
  color: #00255a;
  font-size: 1.1rem;
  font-weight: 600;
}
.soup-section .soup-card .card-body .btn-danger {
  background-color: #00255a;
  border: none;
}
.soup-section .soup-card .card-body .btn-danger:hover {
  background-color: rgb(0, 16.0333333333, 39);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* dwnloap app section */
section.dl-app {
  padding: 0% 6%;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
@media (max-width: 1200px) {
  section.dl-app {
    margin-top: -220px;
  }
}
@media (max-width: 991px) {
  section.dl-app {
    margin-top: -190px;
  }
}
@media (max-width: 600px) {
  section.dl-app {
    padding: 160px 0;
  }
}
section.dl-app h3 {
  color: rgb(158.7385892116, 81.353526971, 0.6614107884);
}
@media (max-width: 900px) {
  section.dl-app h3 {
    font-size: 1.5rem;
    color: #FFF !important;
    margin-bottom: 20px;
  }
}
section.dl-app p {
  margin-left: 5%;
}
@media (max-width: 900px) {
  section.dl-app p {
    color: #FFF !important;
    font-size: 1rem;
    text-align: center !important;
  }
}
section.dl-app img.app-mockup {
  max-width: 100%;
  height: auto;
  z-index: 0;
  filter: drop-shadow(0 1rem 3rem rgba(0, 0, 0, 0.4));
}
section.dl-app .app-mockup-container {
  padding: 6% 0;
  position: relative;
  z-index: 0;
}
section.dl-app .app-mockup-container::before {
  content: "";
  position: absolute;
  left: -40%;
  top: 15%;
  width: 900px;
  height: 900px;
  /* Circle diameter */
  background-color: #00255a; /* Change to desired color */
  border-radius: 50%;
  z-index: -2;
}
section.dl-app {
  /* Circle on the right */
}
section.dl-app .app-mockup-container::after {
  content: "";
  position: absolute;
  left: -60%;
  top: 20%;
  width: 500px;
  height: 500px;
  background-color: rgb(158.7385892116, 81.353526971, 0.6614107884);
  border-radius: 50%;
  z-index: -1;
}
section.dl-app .dl-app-img {
  max-width: 100%;
}
@media (max-width: 480px) {
  section.dl-app .dl-app-img {
    max-width: 120px;
  }
}
@keyframes scale-up-center {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
.dl-app-svg {
  margin-top: -150px;
}
@media (max-width: 768px) {
  .dl-app-svg {
    margin-top: -280px;
  }
}

.swiper-container {
  width: 100%;
}

.reviews-section {
  padding: 80px;
  position: relative;
  z-index: 0;
  text-align: center;
}
.reviews-section .swiper {
  margin: 0;
  padding: 0;
}
@media (max-width: 900px) {
  .reviews-section .swiper {
    padding: 0 4%;
  }
}
.reviews-section h2 {
  color: #00255a;
  font-weight: 500;
  filter: contrast(150%);
  font-size: 2.6rem;
}
@media (max-width: 600px) {
  .reviews-section h2 {
    font-size: 1.8rem;
  }
}
.reviews-section .lead {
  font-size: 1.6rem;
}
@media (max-width: 600px) {
  .reviews-section .lead {
    font-size: 1rem;
  }
}

.review-card {
  height: 400px;
  background: rgba(255, 255, 255, 0.3);
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transform-style: preserve-3d;
  perspective: 1000px;
  position: relative;
  margin: 1rem;
  border-right: 4px solid #00255a;
  background-color: #000;
  border: 1px solid red;
}
.review-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.4);
}
.review-card::before, .review-card::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.review-card::before {
  top: 0;
  left: 0;
  border-width: 30px 30px 0 0;
  border-color: #00255a transparent transparent transparent;
}
.review-card::after {
  bottom: 0;
  left: 0;
  border-width: 0 30px 30px 0;
  border-color: transparent transparent #00255a transparent;
}

.review-content .review-header {
  align-items: center;
  margin: 10% 5%;
}
.review-content .review-header img.reviewer {
  width: 60px;
  border-radius: 50%;
  background: transparent;
}

.review-text {
  text-align: left;
  font-size: 1rem;
  font-style: italic;
  color: #fff;
}

.review-author {
  font-weight: bold;
  margin-top: 10px;
  color: #555;
}

.stars {
  text-align: left;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}

.swiper-pagination-bullet {
  background: #00255a !important;
  width: 12px;
  height: 12px;
  opacity: 1;
}

/* Custom Button */
/* footer */
footer {
  color: #fff;
  padding: 80px 0;
}
@media (max-width: 991px) {
  footer {
    text-align: center;
  }
}
footer .swiper img {
  max-width: 100%;
  border-radius: 8px;
}
footer p {
  font-size: 16px;
}
footer span {
  font-weight: bolder;
  font-size: 15px;
}
footer a.btn {
  background-color: #fff;
  padding: 16px 30px;
  border: 1px solid #fff;
  margin-bottom: 16px;
}
footer a.btn:hover {
  background-color: transparent;
  color: #fff !important;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  footer ul {
    text-align: center;
  }
}
footer ul h6 {
  font-weight: bolder;
}
footer ul li {
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  footer ul li {
    text-align: center;
  }
}
footer ul li a {
  text-shadow: 0px 0px 20px #fff;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-weight: 500;
}
footer ul li a:hover {
  color: #fff;
  text-shadow: 0 0 10px #fff;
}
footer .quality-title {
  font-size: 3.6rem;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  footer .quality-title {
    font-size: 3rem;
  }
}
@media (max-width: 991px) {
  footer .quality-title {
    text-align: center;
  }
}
@media (max-width: 768px) {
  footer .quality-title {
    font-size: 2rem;
  }
}
footer ul {
  list-style: none;
  color: #fff;
  margin-bottom: 1.5rem;
}
footer ul li {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  footer ul li {
    text-align: center;
    justify-content: center;
  }
}
footer ul li p {
  font-size: 1rem;
  margin-bottom: 0;
  color: #fff;
}
@media (max-width: 900px) {
  footer ul li p {
    font-size: 1.01rem;
    line-height: 1.4em;
    text-align: center;
    justify-content: center;
  }
}
footer ul li img.tik {
  filter: drop-shadow(0 1rem 3rem rgba(0, 0, 0, 0.4));
  aspect-ratio: initial;
  max-width: 30px;
  margin-right: 8px;
}

marquee ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.dl-app-img {
  max-width: 170px;
}
@media (max-width: 480px) {
  .dl-app-img {
    max-width: 120px;
  }
}

.contact-us .col-12 {
  height: 100%;
}
.contact-us .navbar-social a svg {
  fill: #00255a;
  font-weight: 600;
  width: 555px;
  height: 25px;
}
.contact-us .navbar-social a {
  transition: ease-in-out 0.4s;
}
.contact-us .navbar-social a:hover {
  transform: rotate(10deg);
}
.contact-us .navbar-social a:hover svg {
  fill: #fff;
}
.contact-us div.section-heading-div h3 {
  font-weight: bold;
  font-size: 32px;
  line-height: 48px;
  text-align: center;
  margin-bottom: 70px;
  text-transform: capitalize;
  color: #00255a;
}
.contact-us div.about-us-content {
  background-color: #00255a;
}
.contact-us div.about-us-content h5 {
  font-size: 1.2rem;
}
@media (max-width: 350px) {
  .contact-us div.about-us-content h5 {
    font-size: 11px;
  }
}
.contact-us div.about-us-content div.shop-name-secoundry h4 {
  font-family: Quicksand-bold;
  font-size: 24px;
  line-height: 36px;
  color: #fff;
  margin-bottom: 50px;
  font-weight: bolder;
}
.contact-us div.about-us-content div.shop-about-text {
  padding: 0 40px;
}
.contact-us div.about-us-content div.shop-about-text h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 37px;
  line-height: 33px;
  font-weight: bolder;
  letter-spacing: -2px;
}
.contact-us div.about-us-content div.shop-about-text h3 span {
  font-size: 50px;
  color: #00255a;
}
@media (max-width: 1200px) {
  .contact-us div.about-us-content div.shop-about-text h3 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .contact-us div.about-us-content div.shop-about-text h3 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 37px;
    line-height: 33px;
    font-weight: bolder;
    letter-spacing: -2px;
    font-family: Worksans;
  }
}
@media (max-width: 768px) {
  .contact-us div.about-us-content div.shop-about-text h3 {
    font-size: 26px;
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .contact-us div.about-us-content div.shop-about-text h3 {
    font-size: 20px;
  }
}
.contact-us div.about-us-content div.shop-about-text p {
  color: #fff;
  font-size: 15px;
  line-height: 25px;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .contact-us div.about-us-content div.shop-about-text p {
    font-size: 15px;
  }
}
@media (max-width: 1100px) {
  .contact-us div.about-us-content div.shop-about-text p {
    font-size: 12px;
  }
}
.contact-us div.about-us-content #openinghour {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  margin: auto;
}
@media (max-width: 480px) {
  .contact-us div.about-us-content #openinghour p {
    font-size: 15px;
  }
}
.contact-us div.about-us-content iframe {
  height: 700px;
}
@media (max-width: 991px) {
  .contact-us div.about-us-content iframe {
    height: 350px;
  }
}

.foods-tags {
  background-color: transparent;
}
.foods-tags ul.foods-link {
  text-decoration: none;
  margin: 2% 1%;
}
.foods-tags ul.foods-link li {
  list-style: none;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 18px;
  padding: 6px 12px;
  margin: 2px;
  background-color: #00255a;
  font-weight: 500;
  font-size: 13px;
  transition: ease-in-out 0.7s;
}
@media (max-width: 768px) {
  .foods-tags ul.foods-link li {
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }
}
.foods-tags ul.foods-link li a {
  text-decoration: none;
  color: #fff;
  transition: ease-in-out 0.7s;
}
.foods-tags ul.foods-link li:hover {
  border: 2px solid #00255a;
  background-color: #fff;
  backdrop-filter: blur(20px);
}
.foods-tags ul.foods-link li:hover a {
  color: #00255a;
}

section.copyright {
  position: relative;
  z-index: 4;
}
section.copyright .container {
  padding: 30px 0;
  border-top: 1px solid #fff;
  color: #fff;
}
@media (max-width: 1200px) {
  section.copyright .container {
    color: rgb(0, 2, 75);
  }
}
section.copyright p {
  line-height: 40px;
  margin-bottom: 0;
  font-size: 17px;
  text-shadow: 1px 1px 10px #00255a;
}
@media (max-width: 1200px) {
  section.copyright p {
    text-shadow: 1px 1px 10px #fff;
  }
}
@media (max-width: 480px) {
  section.copyright p {
    font-size: 11px;
    line-height: 20px;
    padding: 5px;
  }
}
section.copyright a i {
  color: #000;
}
section.copyright a:hover {
  text-decoration: none;
  color: rgb(0, 57.9666666667, 141);
}
section.copyright ul {
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  display: flex;
}
@media (max-width: 768px) {
  section.copyright ul {
    flex-wrap: wrap;
  }
}
section.copyright ul li {
  padding: 0 5px;
}
section.copyright ul li:not(:last-child) {
  border-right: 1px solid #5b5b5b;
}
section.copyright ul li a {
  color: #000;
  font-size: 12px;
}
@media (max-width: 1200px) {
  section.copyright ul li a {
    font-size: 10px;
  }
}
@media (max-width: 991px) {
  section.copyright ul li a {
    font-size: 12px;
  }
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 59px;
  left: 25px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #00255a;
  color: white;
  cursor: pointer;
  padding: 6px 11px 6px 11px;
  border-radius: 12px;
  transition: all 0.5s ease;
  border: 1px solid #00255a;
}
#myBtn:hover {
  color: #00255a;
  border: 1px dashed #00255a;
  background-color: white;
  box-shadow: #000 0px 7px 29px 0px;
}

.Modal-btn {
  background-color: #00255a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.modal-header {
  padding: 0.5rem 1rem;
}
@media (max-width: 340px) {
  .modal-header {
    flex-direction: column;
    text-align: center !important;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 340px) {
  .modal-header .modal-title-container {
    flex-direction: column;
    text-align: center !important;
    justify-content: center;
    align-items: center;
  }
}
.modal-header .modal-title-container p {
  font-size: 14px;
  margin-bottom: 0;
}
@media (max-width: 380px) {
  .modal-header .modal-title-container p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

/* Customize  Color Of Selection  */
::-moz-selection {
  background-color: #00255a;
  color: white;
}
::selection {
  background-color: #00255a;
  color: white;
}

::-moz-selection {
  background-color: #00255a;
  color: white;
}

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

::-webkit-scrollbar-thumb {
  background: #00255a;
  border-radius: 10px;
}/*# sourceMappingURL=style2.css.map */