@font-face {
  font-family: "cairo";
  src: url("../fonts/cairo/Cairo-SemiBold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "cairo";
  src: url("../fonts/cairo/Cairo-Regular.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "cairo";
  src: url("../fonts/cairo/Cairo-Bold.ttf");
  font-weight: 900;
}
* {
  margin: 0px;
  box-sizing: border-box;
  font-family: "cairo", sans-serif;
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: var(--primary-color);
  color: #fff;
}
*::selection {
  background-color: var(--primary-color);
  color: #fff;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background-color: #ccc;
}
*::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.overflowNone {
  overflow: hidden;
}

.btn:focus,
button:focus,
input:focus,
.form-control:focus {
  outline-width: 0px !important;
  outline-color: transparent !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
  text-decoration: none !important;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

button {
  outline: none !important;
  border: 0px !important;
}

.swiper-pagination {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: var(--light-color);
}

@keyframes bounce-in-fwd {
  0% {
    transform: scale(0);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: scale(1);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: scale(0.7);
    animation-timing-function: ease-in;
  }
  72% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  81% {
    transform: scale(0.84);
    animation-timing-function: ease-in;
  }
  89% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  95% {
    transform: scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-top {
  0% {
    transform: translateY(-50px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-15px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-left {
  0% {
    transform: translateX(-30px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateX(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateX(-10px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateX(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
}
@keyframes pulse-shadow {
  100% {
    box-shadow: 0 0 0 10px rgba(255, 102, 0, 0), 0 0 0 20px rgba(255, 102, 0, 0);
  }
}
@keyframes spinner {
  0% {
    transform: scale3d(1, 1, 1);
  }
  100% {
    transform: scale(1.4);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.4, 1.4, 1.4);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
/*dropdown animation*/
@keyframes dropdown-animate {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes wave {
  0%, 100% {
    -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@keyframes niceAnimate {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes translation {
  0% {
    transform: translateZ(0%);
  }
  100% {
    transform: translateZ(10%);
  }
}
@keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-10px, 10px);
  }
  40% {
    transform: translate(-10px, -10px);
  }
  60% {
    transform: translate(10px, 10px);
  }
  80% {
    transform: translate(10px, -10px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes translateX {
  0%, 100% {
    transform: translateX(2px);
  }
  50% {
    transform: translateX(-2px);
  }
}
@keyframes translateY {
  0%, 100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-2px);
  }
}
@keyframes flip-in-hor-bottom {
  0% {
    transform: rotateX(80deg) translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    transform: rotateX(0) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes shadow {
  0% {
    box-shadow: 0px 0px 35px -4px #00a4e6;
    opacity: 0 !important;
  }
  100% {
    box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
  }
}
@keyframes rotate {
  0% {
    border-radius: 50% 60% 55% 40%;
  }
  25% {
    border-radius: 30% 10% 70% 20%;
  }
  50% {
    border-radius: 20% 40% 30% 60%;
  }
  75% {
    border-radius: 70% 20% 50% 30%;
  }
  100% {
    border-radius: 50% 60% 55% 40%;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateX(30px);
  }
  67% {
    opacity: 1;
    transform: translateX(40px);
  }
  100% {
    opacity: 0;
    transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes clip {
  0% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
  }
}
@keyframes sideClip {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes sideClip_2 {
  0% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
  }
  50% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
  }
}
@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes storm {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}
@keyframes moving {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -10000px;
  }
}
:root {
  --primary-color: #793E2C;
  --secondary-color: #9C7D74;
  --third-color: #EEBA94;
  --dark-color: #000;
  --light-color: #fff;
  --gray-color: #808080;
  --primary-filter: invert(26%) sepia(6%) saturate(5490%) hue-rotate(328deg) brightness(93%) contrast(86%);
  --secondary-filter: invert(53%) sepia(5%) saturate(1610%) hue-rotate(327deg) brightness(96%) contrast(93%);
  --third-filter: invert(76%) sepia(45%) saturate(346%) hue-rotate(335deg) brightness(97%) contrast(92%);
  --light-filter: invert(92%) sepia(100%) saturate(23%) hue-rotate(251deg) brightness(108%) contrast(100%);
  --gray-filter: invert(58%) sepia(0%) saturate(3400%) hue-rotate(13deg) brightness(87%) contrast(97%);
}

.custom-btn {
  width: 150px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  gap: 10px;
  overflow: hidden;
}
.custom-btn::after, .custom-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  z-index: -1;
  transition: all 0.3s linear;
}
.custom-btn::after {
  left: 0;
}
.custom-btn::before {
  right: 0;
}
.custom-btn img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.custom-btn span {
  font-size: 16px;
  font-weight: 900;
}
.custom-btn.primary-btn {
  border: 1px solid var(--primary-color) !important;
  background-color: var(--light-color);
}
.custom-btn.primary-btn span {
  color: var(--light-color);
}
.custom-btn.primary-btn img {
  filter: var(--light-filter);
}
.custom-btn.primary-btn::after, .custom-btn.primary-btn::before {
  width: 100%;
  background-color: var(--primary-color);
}
.custom-btn.primary-btn:hover span {
  color: var(--primary-color);
}
.custom-btn.primary-btn:hover img {
  animation: storm 0.4s linear both;
  filter: var(--primary-filter);
}
.custom-btn.green-btn {
  border: 1px solid #40BE72 !important;
  background-color: var(--light-color);
}
.custom-btn.green-btn span {
  color: var(--light-color);
}
.custom-btn.green-btn img {
  filter: var(--light-filter);
}
.custom-btn.green-btn::after, .custom-btn.green-btn::before {
  width: 100%;
  background-color: #40BE72;
}
.custom-btn.green-btn:hover span {
  color: #40BE72;
}
.custom-btn.green-btn:hover img {
  animation: storm 0.4s linear both;
  filter: var(--primary-filter);
}
.custom-btn.red-btn {
  width: 100%;
  border: 1px solid #D4424C !important;
  background-color: var(--light-color);
}
.custom-btn.red-btn span {
  color: var(--light-color);
}
.custom-btn.red-btn img {
  filter: var(--light-filter);
}
.custom-btn.red-btn::after, .custom-btn.red-btn::before {
  background-color: #D4424C;
}
.custom-btn.red-btn:hover span {
  color: #D4424C;
}
.custom-btn.red-btn:hover img {
  animation: storm 0.4s linear both;
  filter: var(--primary-filter);
}
.custom-btn.light-btn {
  width: 100%;
  border: 1px solid var(--light-color) !important;
  background-color: transparent;
}
.custom-btn.light-btn span {
  color: var(--primary-color);
}
.custom-btn.light-btn img {
  filter: var(--primary-filter);
}
.custom-btn.light-btn::after, .custom-btn.light-btn::before {
  width: 50%;
  background-color: var(--light-color);
}
.custom-btn.light-btn:hover span {
  color: var(--light-color);
}
.custom-btn.light-btn:hover img {
  animation: storm 0.4s linear both;
  filter: var(--light-filter);
}
.custom-btn.light-border {
  border: 1px solid var(--light-color) !important;
  background-color: transparent;
}
.custom-btn.light-border span {
  color: var(--light-color);
}
.custom-btn.light-border img {
  filter: var(--light-filter);
}
.custom-btn.light-border::after, .custom-btn.light-border::before {
  width: 0px !important;
  background-color: var(--light-color);
}
.custom-btn.light-border:hover span {
  color: var(--secondary-color);
}
.custom-btn.light-border:hover img {
  animation: storm 0.4s linear both;
  filter: var(--secondary-filter);
}
.custom-btn.light-border:hover::after, .custom-btn.light-border:hover::before {
  width: 50% !important;
}
.custom-btn:hover::after, .custom-btn:hover::before {
  width: 0px;
}

.custom-heading {
  width: 100%;
  margin-bottom: 45px;
  text-align: center;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  .custom-heading {
    margin-bottom: 35px;
  }
}
.custom-heading h1 {
  font-size: 30px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
}
.custom-heading h1.white-heading {
  color: var(--light-color);
}
.custom-heading p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  margin: 20px 0px 0px;
}
.custom-heading .menu-logo {
  width: 250px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 0px auto;
}
.custom-heading .news-intro {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  animation: pulse 20s linear infinite alternate;
}

.general-section {
  width: 100%;
  padding: 90px 0px;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  .general-section {
    padding: 40px 0px;
  }
}

@media (max-width: 992px) {
  .padding-shape {
    padding: 0px 3px;
  }
}

.navbar {
  width: 100%;
  padding: 15px 0px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.3s linear;
}
.navbar.scrolled {
  background-color: var(--primary-color);
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
  padding: 10px 0px;
}
.navbar .contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.navbar .contain .hamburger {
  display: none;
}
@media (max-width: 992px) {
  .navbar .contain .hamburger {
    display: block;
  }
}
.navbar .contain .hamburger .line {
  width: 30px;
  height: 3px;
  background: var(--light-color);
  display: block;
  margin: 8px auto;
  transition: all 0.3s ease-in-out;
}
.navbar .contain .hamburger.active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}
.navbar .contain .hamburger.active .line:nth-child(2) {
  width: 0px;
}
.navbar .contain .hamburger.active .line:nth-child(1), .navbar .contain .hamburger.active .line:nth-child(3) {
  transition-delay: 0.3s;
}
.navbar .contain .hamburger.active .line:nth-child(1) {
  transform: translateY(6.5px);
}
.navbar .contain .hamburger.active .line:nth-child(3) {
  transform: translateY(-15px) rotate(90deg);
}
.navbar .contain .brand-name img {
  width: 250px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .navbar .contain .brand-name img {
    -o-object-position: right;
       object-position: right;
  }
}
.navbar .contain .navbar-nav {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 30px;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 90px;
    right: -100%;
    background-color: var(--primary-color);
    padding: 15px 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    gap: 0px;
    transition: all 0.3s linear;
  }
  .navbar .contain .navbar-nav.active-nav {
    right: 0px;
  }
}
.navbar .contain .navbar-nav .nav-item {
  padding: 0px;
  margin: 0px;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item {
    width: 100%;
    padding: 10px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar .contain .navbar-nav .nav-item:last-child {
    border-bottom: 0px;
    padding-bottom: 0px;
  }
  .navbar .contain .navbar-nav .nav-item:first-child {
    padding-top: 0px;
  }
}
.navbar .contain .navbar-nav .nav-item.dropdown .dropdown-toggle {
  padding-inline-end: 30px;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item.dropdown .dropdown-toggle {
    width: 100%;
  }
}
.navbar .contain .navbar-nav .nav-item.dropdown .dropdown-toggle::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url("../images/icons/bottom_arrow.svg") center/contain no-repeat;
  top: calc(50% - 10px);
  left: 0px;
  z-index: -1;
  transition: all 0.4s linear;
  filter: var(--light-filter);
}
.navbar .contain .navbar-nav .nav-item.dropdown .dropdown-toggle[aria-expanded=true]::before {
  transform: rotate(180deg);
}
.navbar .contain .navbar-nav .nav-item.dropdown .dropdown-toggle[aria-expanded=true]::after {
  transform: scaleX(1);
}
.navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: -200px;
  z-index: 999;
  background-color: var(--light-color);
  display: block;
  min-width: 1000px;
  padding: 40px 40px 30px;
  border: 0px !important;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
.navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu.another-drop {
  left: 0px !important;
}
@media (max-width: 1190px) {
  .navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu.another-drop {
    left: -200px !important;
  }
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu.another-drop {
    top: unset !important;
    left: unset !important;
  }
}
@media (max-width: 1190px) {
  .navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu {
    left: -300px;
  }
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu {
    min-width: 100%;
    padding: 15px 20px 0px;
    display: none;
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
    position: relative;
    top: unset !important;
    left: unset !important;
  }
}
.navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu.show {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu.show {
    display: block !important;
  }
}
.navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu .box {
  width: 100%;
  height: 260px;
  position: relative;
  z-index: 9;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  transition: all 0.3s linear;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu .box {
    height: 150px;
    padding: 10px;
  }
}
.navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s linear;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu .box .custom-btn {
  width: 100%;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu .box .custom-btn {
    height: 40px;
  }
  .navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu .box .custom-btn span {
    font-size: 14px;
  }
}
.navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu .box:hover {
  transform: translateY(-10px);
}
.navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu .box:hover img {
  transform: scale(1.2);
}
.navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu .head {
  width: 100%;
  padding: 0px 0px 15px;
  margin: 15px 0px;
  border-bottom: 1px solid var(--dark-color);
  font-size: 20px;
  font-weight: 900;
  text-align: right;
  color: var(--dark-color);
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu .head {
    padding: 0px 0px 10px;
    margin: 10px 0px;
  }
}
.navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu .links {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: right;
  gap: 10px;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu .links {
    margin-bottom: 10px;
    gap: 7px;
  }
}
.navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu .links li {
  width: calc(50% - 10px);
}
.navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu .links li a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-color);
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu .links li a {
    font-size: 12px;
  }
}
.navbar .contain .navbar-nav .nav-item.dropdown .dropdown-menu .links li a:hover {
  color: var(--primary-color);
}
@media (min-width: 992px) {
  .navbar .contain .navbar-nav .nav-item.button-contain {
    margin-inline-start: 25px;
  }
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item.button-contain .custom-btn {
    width: 100%;
  }
}
.navbar .contain .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--light-color);
  position: relative;
  z-index: 9;
}
.navbar .contain .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--light-color);
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  z-index: -1;
  transition: all 0.3s linear;
  border: 0px !important;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item .nav-link::after {
    display: none;
  }
}
.navbar .contain .navbar-nav .nav-item .nav-link:hover::after, .navbar .contain .navbar-nav .nav-item .nav-link.active::after {
  transform: scaleX(1);
}

header {
  width: 100%;
  padding: 260px 0px 202px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
header.small-header {
  padding: 150px 0px;
}
@media (max-width: 992px) {
  header.small-header {
    padding: 60px 0px;
  }
}
@media (max-width: 992px) {
  header {
    padding: 150px 0px 60px;
  }
}
header .intro-img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  animation: pulse 20s linear infinite alternate;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
header .contain {
  width: 100%;
  text-align: center;
}
header .contain h1 {
  font-size: 32px;
  font-weight: 900;
  color: var(--third-color);
  margin: 0px;
}
@media (max-width: 992px) {
  header .contain h1 {
    font-size: 25px;
  }
}
header .contain h1.white-title {
  color: var(--light-color);
}
header .contain p {
  color: var(--third-color);
  font-size: 16px;
  font-weight: 900;
  margin: 28px 0px 25px;
}
header .contain .custom-btn {
  margin: 0px auto;
}
header .swiper-wrapper {
  padding: 0px 0px 40px;
}
header .data {
  width: 100%;
  text-align: center;
}
header .data p {
  color: var(--light-color);
  opacity: 0.7;
}
header .data .user-data {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;
}
header .data .user-data img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -o-object-position: center;
     object-position: center;
}
header .data .user-data span {
  color: var(--light-color);
  font-size: 18px;
  font-weight: 900;
}
header .call-now {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto 20px;
  padding: 10px;
  border: 1px solid var(--light-color);
  background-color: transparent;
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
}
header .link {
  font-size: 15px;
  font-weight: 500;
  color: var(--light-color);
  text-align: center;
}

.locations .box {
  width: 100%;
  position: relative;
  z-index: 9;
  transition: all 0.3s linear;
}
.locations .box h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
}
@media (max-width: 992px) {
  .locations .box h2 {
    font-size: 20px;
  }
}
.locations .box p {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
  margin: 10px 0px;
}
@media (max-width: 992px) {
  .locations .box p {
    font-size: 12px;
    margin: 5px 0px;
  }
}
.locations .box .list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .locations .box .list {
    gap: 3px;
  }
}
.locations .box .list li a, .locations .box .list li span {
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s linear;
}
@media (max-width: 992px) {
  .locations .box .list li a, .locations .box .list li span {
    font-size: 12px;
  }
}
.locations .box .list li a:hover, .locations .box .list li span:hover {
  padding-inline-start: 10px;
}
.locations .box .list li a {
  color: var(--dark-color);
}
.locations .box .list li span {
  color: var(--secondary-color);
}
.locations .box .see-more {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.locations .box .see-more span {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color);
}
@media (max-width: 992px) {
  .locations .box .see-more span {
    font-size: 10px;
  }
}
.locations .box .see-more img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .locations .box .see-more img {
    width: 16px;
    height: 16px;
  }
}
.locations .box .see-more:hover span {
  animation: storm 0.4s linear both;
}
.locations .box .see-more:hover img {
  animation: translateX 1s linear infinite alternate;
}
.locations .box:hover {
  transform: translateY(-10px);
}
.locations .box:hover h2 {
  color: var(--primary-color);
}

.about-us .contain {
  width: 100%;
  height: 90%;
  background-color: var(--light-color);
  border-radius: 8px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  animation: translateY 1s linear infinite alternate;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  align-content: center;
  text-align: center;
  padding: 80px 100px;
  z-index: 9;
  position: relative;
}
.about-us .contain.no-hover {
  animation: none !important;
}
@media (min-width: 992px) {
  .about-us .contain.margin-end {
    margin-inline-start: -80px !important;
  }
}
@media (min-width: 992px) {
  .about-us .contain {
    margin-inline-start: 80px;
  }
}
@media (max-width: 992px) {
  .about-us .contain {
    padding: 30px 15px;
  }
}
.about-us .contain h1 {
  font-size: 30px;
  font-weight: 900;
  color: var(--primary-color);
  margin: 0px;
}
.about-us .contain p {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
  margin: 20px 0px;
}
.about-us .contain .see-more {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.about-us .contain .see-more span {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color);
}
@media (max-width: 992px) {
  .about-us .contain .see-more span {
    font-size: 10px;
  }
}
.about-us .contain .see-more img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .about-us .contain .see-more img {
    width: 16px;
    height: 16px;
  }
}
.about-us .contain .see-more:hover span {
  animation: storm 0.4s linear both;
}
.about-us .contain .see-more:hover img {
  animation: translateX 1s linear infinite alternate;
}
.about-us .image-contain {
  width: 100%;
  height: 205px;
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s linear;
}
.about-us .image-contain.large-img {
  height: 410px;
}
@media (max-width: 992px) {
  .about-us .image-contain.large-img {
    height: 150px;
  }
}
@media (max-width: 992px) {
  .about-us .image-contain {
    height: 150px;
  }
}
.about-us .image-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s linear;
}
.about-us .image-contain:hover {
  transform: translateY(-10px);
}
.about-us .image-contain:hover img {
  transform: scale(1.2);
}

.news {
  overflow: hidden;
}
.news .custom-heading {
  height: 400px;
  position: relative;
  z-index: 9;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 992px) {
  .news .custom-heading {
    height: 300px;
  }
}
.news .custom-heading h1 {
  color: var(--light-color);
  margin: 0px;
}
.news.offers-img .box {
  height: 250px;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .news.offers-img .box {
    height: 150px;
  }
}
.news .box {
  width: 100%;
  height: 400px;
  position: relative;
  z-index: 9;
  overflow: hidden;
  display: flex;
  align-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .news .box {
    height: 200px;
  }
}
.news .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s linear;
}
.news .box .date, .news .box .name {
  right: 40px;
  position: absolute;
  z-index: 9;
  font-size: 32px;
  font-weight: 900;
  color: var(--light-color);
  margin: 0px;
}
@media (max-width: 992px) {
  .news .box .date, .news .box .name {
    font-size: 15px;
    right: 20px;
  }
}
.news .box .date {
  top: 40px;
}
@media (max-width: 992px) {
  .news .box .date {
    top: 20px;
  }
}
.news .box .date span {
  display: block;
  font-size: 20px;
  font-weight: 700;
}
.news .box .name {
  bottom: 40px;
}
@media (max-width: 992px) {
  .news .box .name {
    bottom: 20px;
  }
}
.news .box:hover img {
  transform: scale(1.2);
}

footer {
  width: 100%;
  padding: 50px 0px 30px;
  position: relative;
  z-index: 9;
  background-color: #2F2F2F;
}
footer .flex-data {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}
footer .contain .brand-name img {
  width: 240px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}
footer .contain p {
  color: var(--light-color);
  opacity: 0.7;
  font-size: 15px;
  font-weight: 500;
  margin-top: 30px;
}
footer .contain h1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--light-color);
  margin-bottom: 20px;
}
footer .contain .links {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
footer .contain .links li a {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 992px) {
  footer .contain .links li a {
    font-size: 12px;
  }
}
footer .contain .links li a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .contain .links li a span {
  color: rgba(255, 255, 255, 0.7);
}
footer .contain .links li a:hover {
  color: var(--secondary-color);
}
footer .contain .links li a:hover img {
  animation: tada 0.4s linear;
}
footer .contain .links li a:hover span {
  animation: storm 0.4s linear both;
  color: var(--secondary-color);
}

.fixed-icons {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 99;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 15px;
}
html[dir=ltr] .fixed-icons {
  left: unset;
  right: 10px;
}
.fixed-icons .fixed-icon {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  animation: pulse-shadow 4s linear infinite alternate;
}
.fixed-icons .fixed-icon.primary-color {
  background-color: var(--primary-color);
}
.fixed-icons .fixed-icon.secondary-color {
  background-color: #25d366;
}
.fixed-icons .fixed-icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.fixed-icons .fixed-icon:hover img {
  animation: fadeInLeft 0.4s linear;
}

.eat .data {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 992px) {
  .eat .data {
    gap: 15px;
  }
}
.eat .data.hover-data {
  transition: all 0.3s linear;
}
.eat .data.hover-data:hover {
  transform: translateY(-10px);
}
.eat .data.hover-data:hover .image-contain img {
  transform: scale(1.2);
}
.eat .data.hover-data:hover h2 {
  color: var(--primary-color);
}
.eat .data.hover-data .image-contain {
  height: 350px;
}
@media (max-width: 992px) {
  .eat .data.hover-data .image-contain {
    height: 250px;
  }
}
.eat .data .image-contain {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .eat .data .image-contain {
    height: 200px;
  }
}
.eat .data .image-contain.animate {
  animation: translateY 1s linear infinite alternate;
}
.eat .data .image-contain img {
  width: 100%;
  transition: all 0.3s linear;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.eat .data h2 {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 900;
  margin: 0px;
}
.eat .data span {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-color);
}
.eat .data p {
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}

.menu .contain {
  width: 100%;
}
.menu .contain h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--dark-color);
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .menu .contain h1 {
    font-size: 20px;
  }
}
.menu .contain .list {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .menu .contain .list {
    gap: 18px;
    margin-bottom: 25px;
  }
}
.menu .contain .list li {
  width: 100%;
}
.menu .contain .list li .healthy {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  padding-bottom: 10px;
  overflow: hidden;
}
.menu .contain .list li .healthy h2 {
  width: 100%;
  padding: 15px 10px;
  background-color: var(--primary-color);
  margin-bottom: 15px;
  color: var(--light-color);
  font-size: 20px;
  font-weight: 900;
}
@media (max-width: 992px) {
  .menu .contain .list li .healthy h2 {
    font-size: 18px;
    padding: 10px 5px;
    margin-bottom: 10px;
  }
}
.menu .contain .list li .data {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 9;
  margin-bottom: 10px;
}
.menu .contain .list li .data::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  border: 1px dashed var(--dark-color);
  top: calc(50% - 0.5px);
  left: 0;
  z-index: -1;
}
.menu .contain .list li .data .name {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-color);
  padding: 0px 10px;
  display: flex;
  align-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 9;
  background-color: var(--light-color);
}
@media (max-width: 992px) {
  .menu .contain .list li .data .name {
    font-size: 16px;
    padding: 0px 6px;
  }
}
.menu .contain .list li .data .price {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark-color);
  padding: 0px 10px;
  display: flex;
  align-content: center;
  align-items: center;
  background-color: var(--light-color);
}
@media (max-width: 992px) {
  .menu .contain .list li .data .price {
    font-size: 17px;
    padding: 0px 6px;
  }
}
.menu .contain .list li .details {
  font-size: 14px;
  flex-wrap: 500;
  padding: 0px 10px;
  display: flex;
  align-content: center;
  align-items: center;
  color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 992px) {
  .menu .contain .list li .details {
    font-size: 12px;
  }
}

.numbers .box {
  width: 100%;
  text-align: center;
  transition: all 0.3s linear;
}
.numbers .box .number {
  font-size: 40px;
  font-weight: 900;
  color: var(--dark-color);
  margin-bottom: 10px;
}
.numbers .box span {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
}
.numbers .box:hover {
  transform: translateY(-10px);
}
.numbers .box:hover .number {
  color: var(--primary-color);
}

.form-contain {
  width: 100%;
  text-align: start !important;
}
.form-contain .form-group {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  z-index: 9;
}
.form-contain .form-group label {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-color);
  display: block;
  margin-bottom: 10px;
}
.form-contain .form-group .form-control {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background-color: var(--light-color);
  padding: 15px 10px;
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 500;
}
.form-contain .form-group .form-control.textareea {
  height: 100px;
  resize: none;
}
.form-contain .form-group .form-control::-moz-placeholder {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
}
.form-contain .form-group .form-control::placeholder {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
}
.form-contain .form-group .error {
  display: flex;
  align-items: center;
  align-content: center;
  margin-top: 5px !important;
  position: relative;
  z-index: 9;
  color: var(--danger-color);
  font-size: 16px;
  font-weight: 500;
}

.modal-dialog {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
}
.modal-dialog.big-modal {
  min-width: 700px;
}
.modal-dialog .modal-content {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 20px !important;
}
.modal-dialog .modal-content .modal-body {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 20px !important;
}
.modal-dialog .modal-content .modal-body .contain {
  width: 100%;
  padding: 70px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  border-radius: 20px !important;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.modal-dialog .modal-content .modal-body .contain::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: url("../images/logo/icon.svg") center/contain no-repeat;
  animation: spin 7s linear infinite;
  bottom: 0;
  left: 0;
  z-index: -1;
  filter: var(--primary-filter);
  opacity: 0.06;
}
.modal-dialog .modal-content .modal-body .contain img {
  width: 85px;
  height: 85px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
.modal-dialog .modal-content .modal-body .contain .brand-name {
  width: 190px;
  height: 50px;
  margin: 0px auto 30px;
}
.modal-dialog .modal-content .modal-body .contain .brand-name img {
  width: 100% !important;
  height: 100% !important;
  margin-bottom: 0px;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal-dialog .modal-content .modal-body .contain h1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
}
.modal-dialog .modal-content .modal-body .contain p {
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
}

@media (max-width: 999px) {
  .order-mobile-0 {
    order: 0;
  }
  .order-mobile-1 {
    order: 1;
  }
}/*# sourceMappingURL=style.css.map */