*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* ===================== Global Variable Open ===================== */
:root {
  /*    Color Variable */
  --color-main: #ff3f34;
  --color-main-dark: #cf0b00;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-light: rgba(0, 0, 0, 0.3);

  --color-main-rgba: 255, 63, 52;
  /*    Font Family weight Variable */
  --fw-thin: 100;
  --fw-Elight: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semiBold: 600;
  --fw-bold: 700;
  --fw-Ebold: 800;
  --fw-black: 900;
}

/* ===================== Global Variable Close  ===================== */

::selection {
  background-color: var(--color-main);
  color: var(--color-white);
}

/* --- Create custom scrollbars Open  (* it only support on chrome  browser) ----- */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: var(--color-white);
  border-radius: 100vw;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-main);
  border-radius: 100vw;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #ff6159;
}

/* --- Create custom scrollbars Close ----- */

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "League Spartan", sans-serif;
  overflow-x: hidden;
}
.no-scroll {
  overflow: hidden;
}

a {
  color: var(--color-black);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
  margin-bottom: 0;
}
p {
  margin-bottom: 0;
}
ul,
ol {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

/* ============== LOADER OPEN =================== */
.loader-container {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: var(--color-main);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 64px;
  height: 64px;
  border: 8px solid;
  border-color: var(--color-white) transparent var(--color-white) transparent;
  border-radius: 50%;
  animation: spin-anim 1.2s linear infinite;
}

@keyframes spin-anim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ============== LOADER CLOSE =================== */

/* ===================== Shared Component Open ===================== */

.hero-text {
  font-size: 80px;
  color: var(--color-black);
  font-weight: var(--fw-Ebold);
}

.hero-descraption {
  color: var(--color-black);
  font-size: 20px;
  font-weight: var(--fw-regular);
}

.heading {
  color: var(--color-black);
  font-size: 45px;
  font-weight: var(--fw-bold);
  margin-top: 20px;
}

.sub-heading {
  font-family: "Marck Script", cursive;
  font-size: 35px;
  color: var(--color-main);
  position: relative;
  display: inline-block;
}

.sub-heading::after {
  content: "";
  height: 3px;
  width: 80px;
  background-color: var(--color-main);
  display: inline-block;
  margin: 0 3px 2px 8px;
}

.paragraph {
  color: var(--color-black);
  font-size: 16px;
}

/* ===================== Shared Component Close  ===================== */

/* ===================== Buttons Open ===================== */

/* ---- Fill Button Open ------ */
.fillBtn {
  font-size: 20px;
  color: var(--color-white);
  background-color: var(--color-main);
  border-radius: 30px;
  padding: 8px 25px;
  display: inline-block;
  font-weight: var(--fw-bold);
  position: relative;
  transition: all 0.8s ease-in-out;
  isolation: isolate;
  overflow: hidden;
}

.fillBtn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-black);
  color: var(--color-white) !important;
  border-radius: 30px;
  z-index: -1;
}
.fillBtn:hover {
  color: var(--color-white);
}
.fillBtn:hover::after {
  width: 100%;
  transition: all 0.5s;
}

.whiteBtn {
  font-size: 20px;
  color: var(--color-main);
  background-color: var(--color-white);
  border-radius: 30px;
  padding: 8px 25px;
  display: inline-block;
  font-weight: var(--fw-bold);
  transition: all 0.5s ease-in-out;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.whiteBtn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-black);
  color: var(--color-white) !important;
  border-radius: 30px;
  z-index: -1;
  transition: all 0.8s;
}

.whiteBtn:hover::after {
  width: 100%;
}

.whiteBtn:hover {
  color: var(--color-main);
}

/* ---- Fill Button Close ------ */

/* ---- Outline Button Open ------ */
.outlineBtn {
  font-size: 20px;
  color: var(--color-black);
  background-color: transparent;
  border: 2px solid var(--color-main);
  border-radius: 30px;
  padding: 8px 25px;
  display: inline-block;
  font-weight: var(--fw-bold);
  transition: all 0.5s ease-in-out;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.outlineBtn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-black);
  border-radius: 30px;
  z-index: -1;
  transition: all 0.5s;
}
.outlineBtn:hover::after {
  width: 100%;
}
.outlineBtn:hover {
  background: rgba(var(--color-main-rgba), 0.8);
  color: var(--color-white);
}

/* ---- Outline Button Close ------ */

/* ===================== Buttons Close ===================== */

/* ============= Logo Nav Section Open =============  */
.headerWrapper {
  display: block;
  width: 100%;
  position: fixed;
  z-index: 1000;
  padding-top: 15px;
  padding-bottom: 15px;
}

.headerWrapper.scrollMenu {
  background-color: var(--color-white);
  transition: all 0.5s ease-in-out;
  -webkit-box-shadow: 0px 1px 17px -4px rgba(0, 0, 0, 0.27);
  box-shadow: 0px 1px 17px -4px rgba(0, 0, 0, 0.27);
}

.headerWrapper .headerWrapper__left .headerWrapper__left--logo h2 {
  font-size: 25px;
  font-weight: var(--fw-black);
  color: var(--color-main);
}

.headerWrapper .headerWrapper__left .headerWrapper__left--logo h2 span {
  color: var(--color-black);
}

.headerWrapper .headerWrapper--topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.headerWrapper .headerWrapper__left {
  flex: 0 0 17%;
}

.headerWrapper .headerWrapper__center {
  flex: 0 0 66%;
  display: flex;
  justify-content: center;
}

.headerWrapper .headerWrapper__center .menu--main > li {
  display: inline-block;
  line-height: 50px;
  margin-left: 25px;
}

.headerWrapper .headerWrapper__center .menu--main > li > a {
  font-size: 20px;
  color: var(--color-black);
  font-weight: var(--fw-bold);
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.headerWrapper .headerWrapper__center .menu--main > li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: var(--color-white);
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
}

.headerWrapper
  .headerWrapper__center
  .menu--main
  > .has-item-has-children:hover
  .single-column-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: 0.5s ease-in-out;
}

.headerWrapper .headerWrapper__center .menu--main > li .single-column-menu {
  min-width: 280px;
  max-width: 280px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(5px);
}

.headerWrapper .headerWrapper__center .menu--main > li > a:hover {
  color: var(--color-main);
}

.headerWrapper .headerWrapper__center .menu--main > li .sub-menu ul li a:hover {
  color: var(--color-main);
}

.headerWrapper--item .closeMenu {
  display: none;
}

.headerWrapper .headerWrapper__right {
  display: flex;
  justify-content: flex-end;
  flex: 0 0 17%;
}

.headerWrapper .headerWrapper__right .outlineBtn {
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

.headerWrapper .headerWrapper__right .outlineBtn:hover {
  color: var(--color-white);
}

/* ============= Logo Nav Section Close ============= */
/* ============= HERO SECTION OPEN  ============= */
.heroWrapper {
  position: relative;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}

.heroWrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% - 72%);
  height: 100%;
  background-color: var(--color-main);
  z-index: -1;
}

.heroWrapper-btn {
  margin-top: 21px;
}

.heroWrapper-btn a {
  margin-right: 25px;
}

.heroWrapper .heroWrapper-right {
  position: relative;
}

.heroWrapper .heroWrapper-right .fancyDesign img {
  position: absolute;
  top: -27px;
  left: -27px;
  width: 100%;
  max-width: 686px;
  min-height: 436px;
  max-height: 436px;
  object-fit: cover;
  z-index: -1;
}

.heroWrapper .heroWrapper-right .heroWrapper-item img {
  max-height: 350px;
  min-height: 350px;
  width: 100%;
  object-fit: cover;
}

.heroWrapper .heroWrapper-right .heroJs .slick-dots {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  bottom: -40px;
}

.heroWrapper .heroWrapper-right .heroJs .slick-dots li {
  margin: 0 10px;
}

.heroWrapper .heroWrapper-right .heroJs .slick-dots li button {
  display: block;
  width: 25px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 5px;
  border: 1px solid var(--color-white);
  text-indent: -9999px;
  -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}

.heroWrapper .heroWrapper-right .heroJs .slick-dots li.slick-active button {
  background-color: var(--color-white);
}

/* ============= HERO SECTION CLOSE  ============= */
/* =========================== ABOUT US SECTION OPEN ======================== */
.aboutWrapper {
  margin-top: 80px;
}

.aboutWrapper .aboutWrapper-left .aboutWrapper-img {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.aboutWrapper .aboutWrapper-left .aboutWrapper-left-img {
  margin-right: 40px;
}

.aboutWrapper .aboutWrapper-left .aboutWrapper-topLeftImg {
  flex: 4;
}

.aboutWrapper .aboutWrapper-left .aboutWrapper-topRightImg {
  flex: 3;
  display: flex;
  align-items: flex-end;
}

.aboutWrapper .aboutWrapper-right-img {
  margin-left: 40px;
}

.aboutWrapper .aboutWrapper-right-img .aboutWrapper-bottomLeftImg {
  flex: 3;
  display: flex;
  align-items: flex-start;
}

.aboutWrapper .aboutWrapper-right-img .aboutWrapper-bottomRightImg {
  flex: 4;
}

.aboutWrapper .aboutWrapper-right {
  padding-left: 40px;
}
.aboutWrapper .aboutWrapper-right p {
  margin-top: 40px;
}
.aboutWrapper .aboutWrapper-right .experienceBox {
  margin-top: 40px;
  margin-bottom: 40px;
  border-left: 7px solid var(--color-main);
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 320px;
  padding: 35px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

.aboutWrapper .aboutWrapper-right .experienceBox h2 {
  font-size: 64px;
  color: var(--color-main);
  font-weight: var(--fw-bold);
  margin-right: 35px;
}

.aboutWrapper .aboutWrapper-right .experienceBox h4 {
  line-height: 1.4;
  font-size: 20px;
}

.aboutWrapper .aboutWrapper-right .experienceBox h4 span {
  font-weight: var(--fw-bold);
  text-transform: uppercase;
}

.aboutWrapper .fancyCircle {
  position: relative;
  height: 100%;
  width: 100%;
}
.aboutWrapper .fancyCircle img {
  width: 100%;
  max-width: 300px;
  position: absolute;
  right: -80px;
  bottom: -55px;
}

/* =========================== ABOUT US SECTION CLOSE ======================== */

/* =========================== MENU SECTION OPEN ======================== */
.menuWrapper {
  margin-top: 80px;
}

.menuWrapper .menuWrapper-foodCard {
  margin-top: 80px;
}

.menuWrapper .menuWrapper-foodCard .menuWrapper-item .menuWrapper-foodItemWrap {
  max-height: 500px;
  overflow-y: scroll;
}

.menuWrapper .menuWrapper-item {
  background-color: var(--color-white);
  position: relative;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  isolation: isolate;
  border-radius: 10px;
  margin-top: 20px;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.menuWrapper .menuWrapper-item svg {
  position: absolute;
  top: 0;
  fill: var(--color-main);
  min-height: 250px;
  z-index: -1;
}

.menuWrapper .menuWrapper-item .menuWrapper-top {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 15px;
  margin-bottom: 90px;
}

.menuWrapper .menuWrapper-item .menuWrapper-top img {
  width: 100%;
  max-width: 80px;
}
.menuWrapper .menuWrapper-item .menuWrapper-top h3 {
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  font-size: 25px;
}

.menuWrapper .menuWrapper-item .menuWrapper-food {
  padding: 0 20px 20px 20px;
  margin-bottom: 30px;
}

.menuWrapper .menuWrapper-item .menuWrapper-food .menuWrapper-img img {
  width: 100%;
  max-width: 80px;
  max-height: 80px;
  min-height: 80px;
  object-fit: cover;
  border-radius: 50%;
  float: left;
}

.menuWrapper .menuWrapper-item .menuWrapper-food .menuWrapper-foodNamePrice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed var(--color-light);
  margin-left: 100px;
  position: relative;
  overflow: hidden;
}
.menuWrapper
  .menuWrapper-item
  .menuWrapper-food
  .menuWrapper-foodNamePrice
  .foodname {
  color: var(--color-black);
  font-size: 20px;
  font-weight: var(--fw-bold);
  text-transform: capitalize;
}

.menuWrapper
  .menuWrapper-item
  .menuWrapper-food
  .menuWrapper-foodNamePrice
  .foodprice {
  color: var(--color-main);
  font-size: 20px;
  font-weight: var(--fw-bold);
}

.menuWrapper .menuWrapper-item .menuWrapper-rawmaterial {
  margin-left: 100px;
  margin-top: 15px;
}
.menuWrapper .menuWrapper-item .menuWrapper-rawmaterial ul {
  display: flex;
  align-items: center;
}
.menuWrapper .menuWrapper-item .menuWrapper-rawmaterial ul li {
  color: var(--color-black);
  font-size: 16px;
  font-weight: var(--fw-regular);
  position: relative;
  margin-right: 12px;
}

.menuWrapper
  .menuWrapper-item
  .menuWrapper-rawmaterial
  ul
  li:not(:last-child)::after {
  content: ",";
  position: absolute;
  right: -5px;
  bottom: 0;
}

/* =========================== MENU SECTION CLOSE ======================== */

/* =========================== WYE EAT HERE SECTION OPEN ======================== */
.whyChooseWrapper {
  margin-top: 80px;
}
.whyChooseWrapper .whyChooseWrapper-left {
  position: relative;
  min-height: 478px;
  background-size: cover;
  background-position: center top;
}

.whyChooseWrapper .whyChooseWrapper-left .whyChoosePlay {
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  left: 50%;
}

.whyChooseWrapper .whyChooseWrapper-left .whyChoosePlay a {
  width: 94px;
  height: 94px;
  background: radial-gradient(
    var(--color-main) 50%,
    rgba(255, 63, 52, 0.4) 52%
  );
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--color-white);
}
.whyChooseWrapper .whyChooseWrapper-left .whyChoosePlay a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.whyChooseWrapper .whyChooseWrapper-left .whyChoosePlay a::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 63, 52, 0.8);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.whyChooseWrapper .whyChooseWrapper-left .whyChoosePlay a:hover::after {
  border-left: 15px solid var(--color-main);
  transform: scale(20);
}

.whyChooseWrapper .whyChooseWrapper-left .whyChoosePlay a:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.whyChooseWrapper .whyChooseWrapper-right {
  padding-left: 40px;
  padding-right: 104px;
}

.whyChooseWrapper .whyChooseWrapper-right .icon-box {
  margin-top: 40px;
}
.whyChooseWrapper .whyChooseWrapper-right .icon-box .icon {
  float: left;
  background-color: var(--color-main);
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
.whyChooseWrapper .whyChooseWrapper-right .icon-box .icon img {
  height: 40px;
  width: 40px;
}
.whyChooseWrapper .whyChooseWrapper-right .icon-box h4 {
  color: var(--color-black);
  font-size: 25px;
}
.whyChooseWrapper .whyChooseWrapper-right .icon-box p {
  padding-top: 8px;
}

.whyChooseWrapper .fancyVideoDesign {
  position: absolute;
  z-index: -1;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
}

.whyChooseWrapper .fancyVideoDesign img {
  width: 100%;
  max-width: 450px;
}

/* =========================== WYE EAT HERE SECTION CLOSE ======================== */

/* =========================== MENU SLIDER SECTION OPEN ======================== */
.menuSlider {
  margin-top: 80px;
  position: relative;
  isolation: isolate;
}
.menuSlider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 150px;
  background-color: var(--color-main);
  background-image: url(../images/slider-menu-bg.png);
  z-index: -1;
}

.menuSlider .menuSlider__menu {
  margin-top: 80px;
}

.menuSlider .menuSlider__menu .menuSlider__menuItem {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  margin: 12px;
  margin-bottom: 80px;
}

.menuSlider .menuSlider__menu .menuSlider__menuItem::after {
  content: "";
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
  z-index: 1;
}

.menuSlider .menuSlider__menu .menuSlider__menuItem img {
  width: 100%;
  max-height: 264px;
  min-height: 264px;
  object-fit: cover;
}

.menuSlider__menuCaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  position: absolute;
  bottom: 0;
  z-index: 3;
}

.menuSlider__menuCaption .menuTag {
  display: flex;
  flex-wrap: wrap;
}
.menuSlider__menuCaption .menuCaption__des h4 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: var(--fw-bold);
}
.menuSlider__menuCaption .menuTag p {
  position: relative;
  padding-right: 15px;
  color: var(--color-white);
}
.menuSlider__menuCaption .menuTag p:not(:last-child)::after {
  content: ",";
  position: absolute;
  right: 8px;
}

.menuCaption__price h5 {
  background-color: var(--color-main);
  padding: 4px 10px;
  color: var(--color-white);
  border-radius: 4px;
  font-weight: var(--fw-bold);
}

/* arrow open */
.menuSlider .menuSlider__menu .slick-prev,
.menuSlider .menuSlider__menu .slick-next {
  top: unset;
  bottom: 25px;
  display: none !important;
}
.menuSlider .menuSlider__menu .slick-prev {
  background-color: yellow;
}

.menuSlider .menuSlider__menu .slick-next {
  background-color: yellow;
}

/* arrow close */

/* =========================== MENU SLIDER SECTION CLOSE ======================== */

/* =========================== PHOTO GALLERY SECTION OPEN ======================== */
.gallery {
  margin-top: 80px;
  position: relative;
}

/*  =========================== PHOTO GALLERY SECTION CLOSE ======================== */

/* =========================== FOOTER CTA SECTION OPEN ========================  */
.footerCta {
  margin-top: 80px;
  position: relative;
  background-color: var(--color-main);
  padding-top: 80px;
  padding-bottom: 80px;
}

.footerCta .footerCta__inner .heading {
  color: var(--color-white);
  padding-bottom: 40px;
}

/* =========================== FOOTER CTA SECTION CLOSE ========================  */

/* =========================== FOOTER  SECTION OPEN ======================== */

.footer {
  background-color: var(--color-black);
  padding-block: 50px;
}
.footer .footer__column .footer__logo h2 {
  color: var(--color-white);
  font-size: 25px;
  font-weight: var(--fw-black);
  padding-bottom: 15px;
}
.footer .footer__column p {
  color: var(--color-white);
  font-size: 20px;
}

.footer .footer__column h2 {
  color: var(--color-main);
  padding-bottom: 15px;
  font-size: 25px;
}

.footer .footer__column a {
  color: var(--color-white);
  font-size: 20px;
  display: inline-block;
  transition: all 0.5s;
  line-height: 2;
}

.footer .footer__column a:hover {
  color: var(--color-main);
}

/* =========================== FOOTER  SECTION CLOSE ======================== */

/* =========================== FOOTER BAR  SECTION OPEN ========================  */
.footerBar {
  background-color: var(--color-black);
  border-top: 2px solid #120b0b;
  padding-block: 15px;
}

.footerBar p {
  color: var(--color-white);
  text-align: center;
}

.footerBar p a {
  color: var(--color-main);
}

/* =========================== FOOTER BAR  SECTION CLOSE ========================  */
