@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Analogist";
  src: url(./assets/fonts/Analogist/Analogist.otf);
}
@font-face {
  font-family: "WorkSans_Regular";
  src: url(./assets/fonts/Work_Sans/WorkSans-Regular.ttf);
}
@font-face {
  font-family: "WorkSans_SemiBold";
  src: url(./assets/fonts/Work_Sans/WorkSans-SemiBold.ttf);
}
@font-face {
  font-family: "WorkSans_Bold";
  src: url(./assets/fonts/Work_Sans/WorkSans-Bold.ttf);
}
@font-face {
  font-family: "WorkSans_Light";
  src: url(./assets/fonts/Work_Sans/WorkSans-Light.ttf);
}
html {
  scroll-behavior: smooth;
}

body {
  background: #F6F0D4;
  font-family: "WorkSans_Regular";
}

.WebBtn {
  padding: 1em 2em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  transition: all 1000ms;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  outline: 2px solid #F6F0D4;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px auto 0;
  background: #E76153;
}
.WebBtn:active {
  transform: scale(0.9);
}

.WebBtn:hover {
  color: #E76153;
  transform: scale(1.1);
  outline: 2px solid #E76153;
  box-shadow: 4px 5px 17px -4px #E76153;
}

.WebBtn::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #F6F0D4;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
}

.WebBtn:hover::before {
  width: 250%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Analogist";
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
}

section {
  padding: 70px 0;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.SectionTitle {
  text-align: center;
  margin-bottom: 42px;
}
.SectionTitle h3 {
  font-size: 85px;
  color: #333333;
  box-sizing: border-box;
  perspective: 500px;
}
.SectionTitle p {
  font-size: 26px;
}

#Header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #F6F0D4;
  z-index: 1000;
  /*
  * More from me link 🔥
  */
}
#Header .WebBtn {
  margin: 0;
}
#Header .HeaderMain {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#Header .HeaderMain .Menu {
  width: 30%;
}
#Header .HeaderMain .Menu img {
  width: 60px;
}
#Header .HeaderLogo {
  width: 30%;
  padding: 14px;
  text-align: center;
  position: relative;
  z-index: 100;
}
#Header .HeaderLogo img {
  width: 80%;
}
#Header .SocialMedia {
  display: flex;
  gap: 24px;
  width: 30%;
  justify-content: end;
  position: relative;
  z-index: 100;
  align-items: center;
}
#Header .SocialMedia a {
  transition: 600ms all ease;
}
#Header .SocialMedia a:hover {
  transform: scale(1.1);
}
#Header .SocialMedia img {
  width: 42px;
}
#Header .MenuWrapper {
  position: relative;
  z-index: 100;
  width: 30%;
}
#Header .MenuBtn {
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 100;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#Header .MenuBtn i {
  margin-top: 3px;
}
#Header .MenuBtn img {
  width: 100%;
}
#Header .MenuBtn.active .btn i::before {
  content: "\f00d" !important;
}
#Header .btn i {
  font-size: 42px;
  color: #E76153;
}
#Header .main-menu.open .btn i::before {
  content: "\f00d";
}
#Header .main-menu {
  position: fixed;
  top: -50%;
  left: -50%;
  height: 200%;
  width: 200%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  visibility: hidden;
  z-index: 2;
  transform: rotate(-15deg) translate3d(0, 0, 0);
}
#Header .main-menu::before, #Header .main-menu::after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  width: 100%;
  height: 80%;
  background-size: cover;
  transform-origin: center center;
  transition: all 500ms ease;
  will-change: transform;
  z-index: -1;
  background: #F6F0D4;
}
#Header .main-menu::before {
  top: 51%;
  transform: translate(100%, -100%) translate3d(0, 0, 0);
}
#Header .main-menu::after {
  top: 49%;
  transform: translate(-150%, 0%) translate3d(0, 0, 0);
  transition-delay: 100ms;
}
#Header .main-menu .nav {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  padding: 60px;
  list-style: none;
  counter-reset: menu-counter;
  margin-top: 65px;
  max-width: 1381px;
  width: 100%;
  justify-content: center;
  transform: rotate(15deg);
  gap: 14px 54px;
  font-family: "Analogist";
}
#Header .main-menu .nav__item {
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(-15px) translate3d(0, 0, 0);
  transition: all 100ms ease 100ms;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#Header .main-menu .nav__item a {
  -webkit-text-stroke: 8px rgba(245, 131, 31, 0);
  paint-order: stroke fill;
  color: #E76153;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 4px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: 300ms all ease;
}
#Header .main-menu .nav .nav__item:hover a {
  color: #333;
}
#Header .main-menu.open {
  visibility: visible;
}
#Header .main-menu.open::before {
  animation: menu-in-left 500ms ease;
  transform: translate(-50%, -100%) translate3d(0, 0, 0);
  transition-duration: 0ms;
}
#Header .main-menu.open::after {
  animation: menu-in-right 500ms ease 100ms;
  transform: translate(-50%, 0%) translate3d(0, 0, 0);
  transition-duration: 0ms;
}
#Header .main-menu.open .nav__item {
  opacity: 1;
  transform: translateX(0px) translate3d(0, 0, 0);
  transition: all 250ms ease;
}
#Header .main-menu.open .nav__item:nth-child(0n) {
  transition-delay: 250ms;
}
#Header .main-menu.open .nav__item:nth-child(1n) {
  transition-delay: 300ms;
}
#Header .main-menu.open .nav__item:nth-child(2n) {
  transition-delay: 350ms;
}
#Header .main-menu.open .nav__item:nth-child(3n) {
  transition-delay: 400ms;
}
#Header .main-menu.open .nav__item:nth-child(4n) {
  transition-delay: 450ms;
}
#Header .main-menu.open .nav__item:nth-child(5n) {
  transition-delay: 500ms;
}
#Header .main-menu.open .nav__item:nth-child(6n) {
  transition-delay: 550ms;
}
#Header .main-menu.open .nav__item:nth-child(7n) {
  transition-delay: 600ms;
}
#Header .main-menu.open .nav__item:nth-child(8n) {
  transition-delay: 650ms;
}
#Header .main-menu.open .nav__item:nth-child(9n) {
  transition-delay: 700ms;
}
#Header .main-menu.open .nav__item:nth-child(10n) {
  transition-delay: 750ms;
}
#Header .main-menu.open .nav__item:nth-child(11n) {
  transition-delay: 800ms;
}
#Header .main-menu.open .nav__item:nth-child(12n) {
  transition-delay: 850ms;
}
#Header .main-menu.open .nav__item:nth-child(13n) {
  transition-delay: 900ms;
}
#Header .main-menu.open .nav__item:nth-child(14n) {
  transition-delay: 950ms;
}
#Header .main-menu.open .nav__item:nth-child(15n) {
  transition-delay: 1000ms;
}
#Header .main-menu.open .nav__item:nth-child(16n) {
  transition-delay: 1050ms;
}
#Header .main-menu.open .nav__item:nth-child(17n) {
  transition-delay: 1100ms;
}
#Header .main-menu.open .nav__item:nth-child(18n) {
  transition-delay: 1150ms;
}
#Header .main-menu.open .nav__item:nth-child(19n) {
  transition-delay: 1200ms;
}
#Header .main-menu.open .nav__item:nth-child(20n) {
  transition-delay: 1250ms;
}
#Header .main-menu.open .nav__item a {
  transition: all 250ms ease;
}
@keyframes menu-in-left {
  0% {
    transform: translate(-150%, -100%) translate3d(0, 0, 0);
  }
  100% {
    transform: translate(-50%, -100%) translate3d(0, 0, 0);
  }
}
@keyframes menu-in-right {
  0% {
    transform: translate(100%, 0%) translate3d(0, 0, 0);
  }
  100% {
    transform: translate(-50%, 0%) translate3d(0, 0, 0);
  }
}
#Header .content {
  max-width: 400px;
}
#Header .content h1 {
  font-size: 1.6em;
}
#Header .content p {
  line-height: 1.5;
}
#Header .more {
  position: absolute;
  bottom: 15px;
  right: 15px;
  padding: 7px 21px;
  border-radius: 8px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  animation: reveal 5000ms cubic-bezier(0.87, -0.41, 0.19, 1.44);
}
#Header .more::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 20%;
  height: 100%;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0);
  transition: max-width 0ms ease 250ms, background-color 250ms ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}
#Header .more:hover::before {
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 250ms ease;
}
@keyframes reveal {
  0%, 90% {
    bottom: -30px;
  }
  100% {
    bottom: 15px;
  }
}
#Header .social-media {
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 1000;
  position: fixed;
  bottom: 37%;
  left: 24%;
  transform: rotate(15deg) !important;
}
#Header .social-media a {
  transition: 500ms;
}
#Header .social-media a:hover {
  transform: scale(1.05);
}
#Header .ContactItem {
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 1000;
  position: fixed;
  bottom: 16.5%;
  right: 29%;
  transform: rotate(15deg) !important;
}
#Header .ContactItem .HeaderItem {
  display: flex;
  align-items: center;
  gap: 14px;
}
#Header .ContactItem .HeaderItem a {
  font-size: 24px !important;
}
#Header .ContactItem .HeaderItem a:hover {
  color: #F5821F;
}

#Header.darkHeader {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

#mobile-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  padding: 0;
  background: #E4F3E4;
  /* common styles*/
  /* bottom line of hamburger */
  /* top line of hamburger */
  /* line one of close icon */
  /* line two of close icon */
}
#mobile-nav #mobile_nav_area.darkHeader {
  background: #E4F3E4;
}
#mobile-nav #mobile_nav_area.darkHeader .icon-menu {
  background: #BF4804;
}
#mobile-nav #mobile_nav_area.darkHeader .icon-menu::before {
  background: #BF4804;
}
#mobile-nav #mobile_nav_area.darkHeader .icon-menu::after {
  background: #BF4804;
}
#mobile-nav .side-menu {
  height: 100%;
  overflow: auto;
  background: #E4F3E4;
  padding: 10px 10px;
}
#mobile-nav .side-menu .SocialMedia {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  margin-top: 8px;
}
#mobile-nav .side-menu .SocialMedia img {
  width: 42px;
}
#mobile-nav .side-menu .SocialMedia a:hover {
  transform: scale(1.05);
}
#mobile-nav .side-menu .logo {
  width: 100px;
  margin-bottom: 42px;
}
#mobile-nav .side-menu .description {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}
#mobile-nav .side-menu .image {
  width: 100%;
  margin-bottom: 30px;
}
#mobile-nav .side-menu .image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#mobile-nav .side-menu .location {
  font-size: 14px;
}
#mobile-nav .side-menu .location strong {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
  color: #BF4804;
}
#mobile-nav .side-menu .location p {
  margin: 4px 0;
  font-size: 15px;
  color: #333;
}
#mobile-nav .side-menu .location a {
  display: block;
  color: #BF4804;
  font-weight: 400;
  font-size: 16px;
  margin-top: 14px;
  bottom: 14px;
}
#mobile-nav #container {
  position: relative;
}
#mobile-nav #checkbox {
  /* checkbox is hidden*/
  display: none;
}
#mobile-nav #icon-container {
  cursor: pointer;
  display: block;
  height: 30px;
  width: 30px;
}
#mobile-nav .icon-menu,
#mobile-nav .icon-menu::before,
#mobile-nav .icon-menu::after,
#mobile-nav .icon-close,
#mobile-nav .icon-close::before,
#mobile-nav .icon-close::after {
  content: "";
  display: block;
  height: 2.7px;
  position: absolute;
  width: 28px;
  border-radius: 20px;
  transition: top ease 0.3s, transform ease 0.3s 0.3s, background 0.3s ease 0.3s;
  background: #BF4804;
}
#mobile-nav .icon-menu::before {
  top: -7px;
  transition: background ease 0.3s, top ease 0.3s 0.3s, transform ease 0.3s;
}
#mobile-nav .icon-menu::after {
  top: 7px;
  transition: background ease 0.3s, top ease 0.3s 0.3s, transform ease 0.3s;
  width: 60%;
}
#mobile-nav .icon-close {
  background: transparent;
}
#mobile-nav .icon-close::before {
  transform: rotate(45deg);
  top: 0px;
  background: #BF4804;
}
#mobile-nav .icon-close::after {
  transform: rotate(-45deg);
  top: 0px;
  background: #BF4804;
}
#mobile-nav #icon {
  top: 34px;
  transition: 400ms all ease;
  position: fixed;
  z-index: 100000;
  width: 24px;
}
#mobile-nav .navbar-expand-lg .navbar-nav .nav-link {
  color: #C4C4C4;
}
#mobile-nav li {
  position: relative;
  font-size: 19px;
  transition: 300ms all ease;
  color: #C4C4C4;
  letter-spacing: 1px;
  transition: 300ms all ease;
  margin: 0 4px;
  display: inline-flex;
  font-weight: 300;
  padding-left: 20px;
}
#mobile-nav li::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 130px;
  left: 10px;
  bottom: 44%;
  transition: 400ms all ease;
  border: 1px solid #C4C4C4;
}
#mobile-nav li:hover::after {
  background: #C4C4C4;
}
#mobile-nav li:hover a {
  color: #C4C4C4;
}
#mobile-nav li a {
  color: #C4C4C4;
  padding: 5px 3px 7px;
  transition: 300ms all ease;
}
#mobile-nav li.contact-btn {
  padding: 0;
}
#mobile-nav li.contact-btn::after {
  display: none;
}
#mobile-nav li.active::after {
  background: #C4C4C4;
}
#mobile-nav li.active a {
  color: #C4C4C4;
}
#mobile-nav .SocialIcons {
  display: flex;
  gap: 14px;
}
#mobile-nav .SocialIcons a:hover {
  transition: 300ms all ease;
  transform: scale(1.04);
}
#mobile-nav .mobile_nav_area {
  padding: 12px 12px;
  display: block;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  transition: 400ms all ease;
}
#mobile-nav .mobile_nav_right img {
  transition: 400ms all ease;
}
#mobile-nav .mobile_nav_area.darkHeader .mobile_nav_right img {
  width: 70px;
}
#mobile-nav .mobile_nav_area.darkHeader #icon {
  top: 26px;
}
#mobile-nav .mobile_nav_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#mobile-nav .mobile_nav_right {
  width: 20%;
}
#mobile-nav .mobile_nav_right img {
  width: 80px;
  height: auto;
}
#mobile-nav .mobile_nav_left {
  width: 10%;
  margin-top: 0px;
}
#mobile-nav .mobile_nav_left i {
  cursor: pointer;
  color: #fff;
  font-size: 28px;
}
#mobile-nav .mobile_nav_____ {
  background-color: #E4F3E4;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 100vh;
  margin-left: -1100px;
  transition: 0.6s all ease;
  overflow: scroll;
}
#mobile-nav .mobile_nav_____ .navbar-menus ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  margin-top: 18px;
  margin-bottom: 0px;
  padding-left: 0;
}
#mobile-nav .mobile_nav_____ .navbar-menus ul .nav-item {
  border-bottom: 1px solid rgba(131, 131, 131, 0.48);
  transition: 0.3s ease-in-out;
  margin: 0 4px;
  position: relative;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
}
#mobile-nav .mobile_nav_____ .navbar-menus ul .nav-item a {
  padding: 4px 14px;
  text-decoration: none;
  position: relative;
  color: #fff;
  text-transform: capitalize;
  font-size: 21px;
  display: flex;
  align-items: center;
  gap: 6px;
}
#mobile-nav .mobile_nav_____ .navbar-menus ul .nav-item a .material-symbols-outlined {
  transition: 0.3s ease-in-out;
}
#mobile-nav .mobile_nav_____ .navbar-menus ul .nav-item .dropdown-list {
  position: absolute;
  top: 0px;
  left: 22px;
  width: 100%;
  padding: 12px 22px;
  transform: scale(0.8);
  flex-direction: column;
  background: #d47911;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  list-style-type: none;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
#mobile-nav .mobile_nav_____ .navbar-menus ul .dropdown {
  padding-right: 10px;
}
#mobile-nav .mobile_nav_____ .navbar-menus ul .dropdown::before {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.34em solid #fff;
  border-right: 0.34em solid transparent;
  border-bottom: 0;
  border-left: 0.34em solid transparent;
  right: unset;
  left: 27%;
  top: 20px;
  position: absolute;
}
#mobile-nav .mobile_nav_____ .navbar-menus ul .contact-btn {
  border: none;
}
#mobile-nav .mobile_nav_____ .dropdown:hover .dropdown-menu.show {
  opacity: 1;
  display: block;
}
#mobile-nav .mobile_nav_____ .dropdown-menu.show {
  background: #000;
  margin: 0;
  padding-left: 16px;
  opacity: 0;
  transition: 200ms all ease;
  display: none;
}
#mobile-nav .mobile_nav_____ .dropdown:hover .dropdown-menu {
  opacity: 1;
  display: block;
}
#mobile-nav .mobile_nav_____ .dropdown-menu {
  opacity: 0;
  transition: 200ms all ease;
  display: none;
  top: 30px;
}
#mobile-nav .mobile_nav_____ .dropdown-menu li:hover::after {
  display: none;
}
#mobile-nav .mobile_nav_____ .dropdown-menu a {
  font-weight: 500;
}
#mobile-nav .mobile_nav_____ .dropdown-menu a:hover {
  background-color: transparent;
  color: #00ACEE;
}
#mobile-nav .mobile_nav_____ .navbar-expand-lg .navbar-nav .dropdown-menu {
  background-color: #000;
  line-height: 1.5;
  padding: 24px 18px;
  box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.5490196078);
  border: 1px solid #585858;
}
#mobile-nav .mobile_nav_____ .dropdown-item:focus,
#mobile-nav .mobile_nav_____ .dropdown-item:hover {
  color: #fff;
}
#mobile-nav .mobile_nav_____ .dropdown-item.active,
#mobile-nav .mobile_nav_____ .dropdown-item:active {
  color: #fff;
}
#mobile-nav .mobile_nav_____ .navbar > .container-fluid {
  align-items: flex-end;
  align-items: center;
}
#mobile-nav .mobile_nav_____ .navbar-expand-lg .navbar-nav {
  width: 90%;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
#mobile-nav .mobile_nav_____ .dropdown {
  padding-right: 10px;
}
#mobile-nav .mobile_nav_____ .dropdown::before {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  right: 0px;
  top: 14px;
  position: absolute;
}
#mobile-nav #header-btn .web-btn {
  cursor: pointer;
  padding: 3px 20px;
}
#mobile-nav .mobile_nav1_icon_____ {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 100%;
  margin-top: 18px;
  padding: 0 20px;
}
#mobile-nav .mobile_nav1_icon_____ img {
  width: 80px;
}
#mobile-nav .mobile_nav1_icon_____ .material-symbols-outlined {
  color: #0C0C0C;
  font-size: 27px;
  width: 44px;
  height: 44px;
  line-height: 42px;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  margin-right: 0px;
  cursor: pointer;
}
#mobile-nav .mobile_nav1_icon_____ i {
  color: #0C0C0C;
  font-size: 27px;
  width: 44px;
  height: 44px;
  line-height: 42px;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  margin-right: 16px;
  cursor: pointer;
  position: absolute;
  right: 0;
  opacity: 0;
}

#Hero {
  margin-top: 48px;
}
#Hero .HeroImg {
  overflow: hidden;
  border-radius: 32px;
}
#Hero .HeroImg img {
  transition: 600ms all ease;
}
#Hero .HeroImg img:hover {
  transform: scale(1.05);
}

#AboutUs {
  background: url("./assets/images/AboutUsBg.svg") no-repeat;
  background-size: cover;
  background-color: #234173;
  /* Keyframes for smooth zoom in and out */
}
#AboutUs .AboutUsImage {
  overflow: hidden;
  border-radius: 18px;
}
#AboutUs .AboutUsImage img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out;
  /* Apply animation */
  animation: zoomInOut 8s ease-in-out infinite;
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    /* Zoom in slightly */
  }
  100% {
    transform: scale(1);
  }
}
#AboutUs .AboutUsMain {
  padding: 0 48px;
}
#AboutUs .AboutUsMain .SectionTitle h3 {
  color: #F6F0D4;
}
#AboutUs .AboutUsMain .AboutusContent p {
  color: #F6F0D4;
  font-size: 1.4rem;
  line-height: 140%;
  letter-spacing: 0%;
}
#AboutUs .AboutUsMain .Year {
  margin-top: 42px;
}
#AboutUs .AboutUsMain .Year h4 {
  color: #E76153;
  font-size: 2.8rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
}

#Menu {
  position: relative;
  /* --- Layout sizes to match screenshot --- */
}
#Menu .MenuButton {
  display: block;
  transition: 600ms all ease;
}
#Menu .MenuButton:hover {
  transform: scale(0.9);
}
#Menu .MenuElement {
  position: absolute;
  width: 120px;
  bottom: 0;
  left: 4%;
  z-index: 0;
  animation: floatMove 6s ease-in-out infinite alternate;
}
@keyframes floatMove {
  0% {
    transform: translateX(-50%) translateY(0px);
  }
  25% {
    transform: translateX(-60%) translateY(-10px);
  }
  50% {
    transform: translateX(-50%) translateY(-20px);
  }
  75% {
    transform: translateX(-40%) translateY(-10px);
  }
  100% {
    transform: translateX(-50%) translateY(0px);
  }
}
#Menu .grid {
  max-width: 100%;
  width: 100% !important;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1.5%;
  background: #234173;
  padding: 24px 15px 24px 24px;
}
#Menu .grid-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  color: #F6F0D4;
  font-size: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
  font-family: "WorkSans_Light";
}
#Menu .grid-item:hover img {
  filter: brightness(100%);
  transform: scale(1.05);
}
#Menu .grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(65%);
  transition: 500ms all ease;
  display: block;
}
#Menu .grid-item span {
  position: absolute;
  z-index: 2;
  font-size: 1.6rem;
  font-weight: 600;
}
#Menu .drinks {
  width: 30%;
  height: 350px;
}
#Menu .mains {
  width: 36%;
  height: 350px;
}
#Menu .starters {
  width: 30%;
  height: 350px;
}
#Menu .desserts {
  width: 40%;
  height: 350px;
}
#Menu .appetizers {
  width: 58%;
  height: 350px;
}

#InteriorVideo {
  padding: 0;
}
#InteriorVideo .VideoWrapper video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

#Cta {
  padding-bottom: 30px;
  overflow: visible;
  position: relative;
}
#Cta .ContactWrapper {
  background: #234173;
  padding: 70px;
  border-radius: 32px;
  text-align: center;
}
#Cta .ContactWrapper .CtaTitle {
  font-weight: 500;
  font-size: 48px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 14px;
}
#Cta .ContactWrapper .CtaText {
  font-size: 27px;
  max-width: 65%;
  margin: auto;
  color: #fff;
  margin-bottom: 32px;
}
#Cta .ContactWrapper .ZomatoTitle {
  font-size: 27px;
  max-width: 65%;
  margin: 0 auto 24px;
  color: #fff;
}
#Cta .ContactWrapper .ZomatoIcon {
  display: block;
  transition: 400ms all ease;
}
#Cta .ContactWrapper .ZomatoIcon:hover {
  transform: scale(1.05);
}
#Cta .ContactWrapper .ZomatoIcon img {
  width: 100px;
}
#Cta .VegieElement {
  width: 240px;
  position: absolute;
  bottom: -100px;
  right: 0;
  transform-origin: right bottom;
  animation: scaleInOut 6s ease infinite alternate;
}
@keyframes scaleInOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#OrderNow {
  position: relative;
  overflow: visible;
}
#OrderNow .WebBtn {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  gap: 14px;
  color: #F6F0D4;
}
#OrderNow .WebBtn:hover {
  color: #E76153;
}
#OrderNow .WebBtn:hover .IconMain img {
  opacity: 0;
}
#OrderNow .WebBtn:hover .IconMain .ImgHov {
  opacity: 1;
}
#OrderNow .WebBtn .IconMain {
  position: relative;
}
#OrderNow .WebBtn .IconMain img {
  width: 36px;
  transition: 500ms all ease;
}
#OrderNow .WebBtn .IconMain .ImgHov {
  position: absolute;
  top: 0;
  opacity: 0;
  left: 0;
}
#OrderNow .VegieElement {
  width: 240px;
  position: absolute;
  bottom: -200px;
  right: 0;
  transform-origin: right bottom;
  animation: scaleInOut 6s ease infinite alternate;
}
@keyframes scaleInOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
#OrderNow .ZomatoTitle {
  font-size: 27px;
  max-width: 65%;
  margin: 60px auto 24px;
  color: #262626;
}
#OrderNow .OrderWrapper {
  border-bottom: 3px solid #E76153;
  height: 100%;
}
#OrderNow .OrderWrapper .OrderNowImage {
  margin-bottom: -18px;
  max-width: 450px;
}

#Instagram {
  /* Clone for infinite effect */
}
#Instagram .SectionTitle {
  text-align: center;
}
#Instagram .marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  box-sizing: border-box;
}
#Instagram .marquee {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll 30s linear infinite;
}
#Instagram .marquee img {
  width: 310px;
  opacity: 1;
  border-radius: 22px;
  margin: 0 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
#Instagram .marquee-container {
  display: flex;
}
#Instagram .marquee-container .marquee {
  flex-shrink: 0;
}

#Footer {
  position: relative;
  padding-bottom: 30px;
  overflow: hidden;
  /* Chopstick floating scale + rotation */
  /* Fries floating scale + rotation */
}
#Footer .ZomatoTitle {
  margin: 0 !important;
}
#Footer .ZomatoTitle img {
  width: 52px;
}
#Footer .ZomatoTitle h3 {
  color: #234173;
  font-size: 42px !important;
}
#Footer .SectionTitle {
  margin-bottom: 65px;
}
#Footer .SectionTitle h3 {
  font-size: 60px;
  margin-bottom: 14px;
}
#Footer .SectionTitle a {
  font-size: 27px;
  line-height: 140%;
  letter-spacing: 1px;
  text-align: center;
  transition: 500ms all ease;
}
#Footer .SectionTitle a img {
  transition: 500ms all ease;
}
#Footer .SectionTitle a:hover {
  color: #E76153;
}
#Footer .SectionTitle a:hover img {
  transform: scale(1.05);
}
#Footer .SectionTitle p {
  font-size: 27px;
  line-height: 140%;
  letter-spacing: 1px;
  margin: 0;
}
#Footer .FooterIcons {
  display: flex;
  gap: 27px;
  justify-content: center;
}
#Footer .FooterIcons a {
  width: 120px;
}
#Footer .Chopstick {
  position: absolute;
  left: -60px;
  display: none;
  /* Transform origin so it scales/rotates naturally */
  transform-origin: left bottom;
  /* Infinite animation */
  animation: chopstickFloat 5s ease-in-out infinite alternate;
}
#Footer .Fries {
  position: absolute;
  right: -50px;
  transform-origin: right bottom;
  /* Infinite animation */
  animation: friesFloat 3s ease-in-out infinite alternate;
}
@keyframes chopstickFloat {
  0% {
    transform: scale(0.95) rotate(-5deg);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05) rotate(5deg);
    opacity: 1;
  }
  100% {
    transform: scale(0.95) rotate(0deg);
    opacity: 0.9;
  }
}
@keyframes friesFloat {
  0% {
    transform: scale(0.9) rotate(5deg);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05) rotate(-5deg);
    opacity: 1;
  }
  100% {
    transform: scale(0.95) rotate(0deg);
    opacity: 0.9;
  }
}
#Footer .FooterBottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  border: 4px solid #234173;
  padding: 24px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 24px;
}
#Footer .FooterBottom .Copyright {
  width: 33.3%;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}
#Footer .FooterBottom .Copyright a {
  transform: 600ms all ease;
}
#Footer .FooterBottom .Copyright a:hover {
  color: #E76153;
}
#Footer .FooterBottom .FooterLogo {
  width: 33.3%;
  text-align: center;
}
#Footer .FooterBottom .FooterLogo img {
  width: 55%;
}
#Footer .FooterBottom .FooterText {
  width: 33.3%;
  text-align: end;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}
#Footer .FooterBottom .FooterText a {
  transform: 600ms all ease;
}
#Footer .FooterBottom .FooterText a:hover {
  color: #E76153;
}

#Dishes {
  min-height: 1000px;
  padding-bottom: 200px;
}
#Dishes .SectionTitle {
  position: absolute;
  left: 50%;
  margin-top: 40px;
  transform: translateX(-50%);
}
#Dishes ol,
#Dishes ul {
  list-style: none;
}
#Dishes blockquote,
#Dishes q {
  quotes: none;
}
#Dishes blockquote:before,
#Dishes blockquote:after {
  content: "";
  content: none;
}
#Dishes q:before,
#Dishes q:after {
  content: "";
  content: none;
}
#Dishes table {
  border-collapse: collapse;
  border-spacing: 0;
}
#Dishes .slider {
  width: 100%;
  height: 800px;
  box-sizing: border-box;
  padding: 20px;
  transform: rotate(180deg);
}
#Dishes .circular-slider {
  margin-top: 5%;
  width: 100%;
  height: 100%;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
#Dishes .circular-slider .wrapper {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  padding: 20px 20px 0px 20px;
  overflow: visible;
}
#Dishes .circular-slider .wrapper .controls__left,
#Dishes .circular-slider .wrapper .controls__right,
#Dishes .circular-slider .wrapper .controls__autoplay {
  position: absolute;
  z-index: 101;
  transition: 0.6s all;
  cursor: pointer;
}
#Dishes .circular-slider .wrapper .controls__left:hover .icon-wrapper,
#Dishes .circular-slider .wrapper .controls__right:hover .icon-wrapper,
#Dishes .circular-slider .wrapper .controls__autoplay:hover .icon-wrapper {
  font-size: 1.7em;
  opacity: 1;
}
#Dishes .circular-slider .wrapper .controls__left .icon-wrapper,
#Dishes .circular-slider .wrapper .controls__right .icon-wrapper,
#Dishes .circular-slider .wrapper .controls__autoplay .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 100%;
  color: #8EB8E5;
  font-size: 1.5em;
  opacity: 0.7;
}
#Dishes .circular-slider .wrapper .controls__left,
#Dishes .circular-slider .wrapper .controls__right {
  top: -30%;
}
#Dishes .circular-slider .wrapper .controls__left {
  left: 35%;
  transform: translateY(-50%);
}
#Dishes .circular-slider .wrapper .controls__right {
  right: 35%;
  transform: translate(0%, -50%);
}
#Dishes .circular-slider .wrapper .controls__autoplay {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
}
#Dishes .circular-slider .wrapper .controls__autoplay_running .pause {
  display: block;
}
#Dishes .circular-slider .wrapper .controls__autoplay_running .run {
  display: none;
}
#Dishes .circular-slider .wrapper .controls__autoplay_paused .pause {
  display: none;
}
#Dishes .circular-slider .wrapper .controls__autoplay_paused .run {
  display: block;
}
#Dishes .circular-slider .wrapper .slides-holder {
  border-radius: 50%;
  transform-origin: center;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
}
#Dishes .circular-slider .wrapper .slides-holder__item {
  border-radius: 50%;
  position: absolute;
  box-sizing: border-box;
  transform-origin: center;
  background-color: #222;
  transition: 0.3s linear all;
  filter: brightness(70%);
}
#Dishes .circular-slider .wrapper .slides-holder__item img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
#Dishes .circular-slider .wrapper .slides-holder__item_active {
  filter: brightness(100%);
}
#Dishes .circular-slider .wrapper .slides-holder__item_active img {
  transition: 500ms all ease;
  transform-origin: center center;
}
#Dishes .circular-slider .wrapper .slides-holder__item_active img {
  transform: scale(1.7);
}
#Dishes .circular-slider .wrapper .descriptions {
  position: absolute;
  bottom: 100%;
  z-index: 0;
  transform: rotate(180deg);
}
#Dishes .circular-slider .wrapper .descriptions__item {
  width: 100%;
  height: 0%;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0s 0s linear;
  font-family: "WorkSans";
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}
#Dishes .circular-slider .wrapper .descriptions__item_visible {
  height: 100%;
  opacity: 1;
  transition: opacity 0.6s 0s linear;
}
#Dishes .circular-slider .wrapper .descriptions__item h1,
#Dishes .circular-slider .wrapper .descriptions__item .description {
  color: #000;
  text-align: center;
}
#Dishes .circular-slider .wrapper .descriptions__item h1 {
  font-size: 200%;
  padding-top: 5px;
}
#Dishes .circular-slider .wrapper .descriptions__item .description {
  font-size: 100%;
  margin-top: 5px;
  padding: 0% 10%;
  text-overflow: ellipsis;
  overflow-y: hidden;
}
#Dishes .Leaf {
  position: absolute;
  top: -17%;
}

#DishesPhone {
  position: relative;
  padding-top: 0;
  display: none;
}
#DishesPhone button {
  border: none;
  background: transparent;
  box-shadow: none;
  width: 50px;
}
#DishesPhone .LeafImg {
  position: absolute;
  left: -20px;
  margin-top: 0px;
}
#DishesPhone .LeafImg img {
  width: 100%;
  transform: scale(1.4);
}
#DishesPhone .DishName {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-top: 72px;
}
#DishesPhone .AwardImage {
  width: 75%;
  margin: auto;
}
#DishesPhone .slider-arrows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 94%;
  bottom: 36px;
  transform: translateY(-50%);
}
#DishesPhone .owl-theme .owl-nav {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#DishesPhone .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  bottom: -1%;
  right: 0%;
  z-index: 11;
  background: url("./assets/images/ArrowRight.svg");
  background-size: contain;
  opacity: 1;
  transition: 300ms all ease;
  background-repeat: no-repeat;
  height: 32px;
  width: 32px;
  color: transparent;
}
#DishesPhone .owl-carousel .owl-nav button.owl-prev {
  background: url("./assets/images/ArrowLeft.svg");
  background-size: contain;
  height: 32px;
  width: 32px;
  background-repeat: no-repeat;
  transition: 300ms all ease;
  position: absolute;
  bottom: -1%;
  left: 0%;
  color: transparent;
}
#DishesPhone .owl-carousel .owl-nav button.owl-next:hover {
  background: url("./assets/images/ArrowRight.svg") no-repeat;
  background-size: contain;
  height: 32px;
  width: 32px;
}
#DishesPhone .owl-carousel .owl-nav button.owl-prev:hover {
  background: url("./assets/images/ArrowLeft.svg") no-repeat;
  background-size: contain;
  height: 32px;
  width: 32px;
}

#Blogs {
  padding-bottom: 1;
  /* Media query for smaller screens to stack the posts */
}
#Blogs .ViewAll .WebBtn {
  margin: 40px auto 12px;
}
#Blogs .blog-post {
  background-color: #F6F0D4;
  flex: 1 1 45%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 1rem;
  border: 1.5px solid #E76153;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#Blogs .blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
#Blogs .BlogImage {
  border-radius: 12px;
  overflow: hidden;
}
#Blogs .blog-post__image {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 500ms all ease;
}
#Blogs .blog-post__content {
  padding: 1.5rem 0.5rem 1rem;
}
#Blogs .blog-post__title {
  color: #234173;
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  font-weight: 600;
}
#Blogs .blog-post__excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #20382B;
  margin-bottom: 1.5rem;
}
#Blogs .WebBtn {
  margin: 0;
}
@media (max-width: 768px) {
  #Blogs .blog-posts-container {
    flex-direction: column;
  }
}

@media screen and (max-width: 1600px) {
  #Blogs .blog-post__image {
    height: 270px;
  }
  #Blogs .blog-post__title {
    font-size: 27px;
  }
}
@media screen and (max-width: 990px) {
  #Blogs {
    padding: 40px 10px;
  }
  #Blogs .blog-post {
    padding: 0.8rem;
  }
  #Blogs .blog-post__image {
    height: 220px;
    border-radius: 10px;
  }
}/*# sourceMappingURL=style.css.map */