@charset "UTF-8";
/*
Template Name: Template Name
Author       : Author Name
Version      : 1.0
*/
/*==============================================================================
[Table of contents]
===================
  01. Theme default CSS
  02. Header Area
  03. Banner Area
==============================================================================*/
/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
/**
 * Convert font-size from px to rem with px fallback
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p font-size: fs-rem(12px);
 * e.g. p {@include fontSize(12px);}
 *
 */
/*--------------------------------------
	- Base
----------------------------------------*/
/**
 * Convert font-size from px to rem with px fallback
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {@include fontSize(12px);}
 *
 */
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Poppins:wght@100;200;400;500;600;700;800&display=swap");
.col {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/*--------------------------------------
	- Utilities
----------------------------------------*/
:root {
  --container-width: 100%;
  --container-sm: 33.75rem;
  --container-md: 45rem;
  --container-lg: 60rem;
  --container-xl: 71.25rem;
  --container-xxl: 90rem;
  --container-fluid: 100%;
  --gutter-x: 1.875rem;
  --gutter-5: 0.3125rem;
  --gutter-10: 0.625rem;
  --gutter-15: 0.9375rem;
  --gutter-20: 1.25rem;
  --gutter-25: 1.5625rem;
  --gutter-30: 1.875rem;
  --gutter-35: 2.1875rem;
  --gutter-40: 2.5rem;
  --gutter-45: 2.8125rem;
  --gutter-50: 3.125rem;
  --ff-poppins: "Poppins", sans-serif;
  --ff-barlow: "Barlow", sans-serif;
  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;
  --fw-900: 900;
  --fs-12: 0.75rem;
  --fs-13: 0.8125rem;
  --fs-14: 0.875rem;
  --fs-15: 0.9375rem;
  --fs-16: 1rem;
  --fs-17: 1.0625rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-21: 1.3125rem;
  --fs-24: 1.5rem;
  --fs-25: 1.5625rem;
  --fs-28: 1.75rem;
  --fs-30: 1.875rem;
  --fs-32: 2rem;
  --fs-35: 2.1875rem;
  --fs-40: 2.5rem;
  --fs-45: 2.8125rem;
  --hr-bg: var(--clr-black);
  --hr-width: 100%;
  --hr-height: 0.3125rem;
  --hr-gutter-y: 1.875rem;
  --hr-gutter-x: 0;
  --hr-padding: 0;
  --hr-radius: 0;
  --m: 0;
  --mt: 0;
  --mr: 0;
  --mb: 0;
  --ml: 0;
  --mx: 0;
  --my: 0;
  --m-auto: auto;
  --my-auto: auto;
  --mx-auto: auto;
  --p: 0;
  --pt: 0;
  --pr: 0;
  --pb: 0;
  --pl: 0;
  --px: 0;
  --py: 0;
  --p-auto: auto;
  --py-auto: auto;
  --px-auto: auto;
  --border-width: 0.0625rem;
  --border-style: solid;
  --border-clr: transparent;
  --border: var(--border-width) var(--border-style) var(--border-clr);
  --border-t: var(--border-width) var(--border-style) var(--border-clr);
  --border-r: var(--border-width) var(--border-style) var(--border-clr);
  --border-b: var(--border-width) var(--border-style) var(--border-clr);
  --border-l: var(--border-width) var(--border-style) var(--border-clr);
  --border-x: var(--border-width) var(--border-style) var(--border-clr);
  --border-y: var(--border-width) var(--border-style) var(--border-clr);
  --radius: 0;
  --radius-t: 0;
  --radius-r: 0;
  --radius-b: 0;
  --radius-l: 0;
  --radius-full: 50%;
  --btn-bg: transparent;
  --btn-clr: inherit;
  --btn-ff: var(--ff-poppins);
  --btn-fs: var(--fs-16);
  --btn-py: 0.625rem;
  --btn-px: 1.125rem;
  --btn-my: var(--my);
  --btn-mx: var(--mx);
  --shadow: 0px 4px 46px rgba(248, 136, 8, 0.22);
  --shadow-1: 0px 10px 43px 2px rgba(0, 0, 0, 0.15);
  --clr-black: #000;
  --clr-black-1: #1A1A1A;
  --clr-black-2: #1D1D1D;
  --clr-black-3: #383838;
  --clr-black-4: #474747;
  --clr-black-5: #595252;
  --clr-black-6: #5E5E5E;
  --clr-black-7: #757575;
  --clr-black-8: #808080;
  --clr-white: #fff;
  --clr-white-1: #F2F2F2;
  --clr-white-2: #F4F4F4;
  --clr-white-3: #F5F5F5;
  --clr-white-4: #E1E1E1;
  --clr-white-5: #D2D2D2;
  --clr-white-6: #D4D4D4;
  --clr-red: #DA1717;
  --clr-yellow: #F88808;
  --clr-green: #5CB523;
}

/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  font-family: var(--ff-poppins);
  font-weight: 400;
  font-size: var(--fs-15);
  line-height: 1.875rem;
  text-rendering: optimizeSpeed;
  color: var(--clr-black);
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.hr {
  background: var(--clr-black-200);
  width: 100%;
  height: 1px;
  margin: 50px 0;
  padding: 0;
  border: none;
  border-radius: 0;
  opacity: 1;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.fill-current {
  fill: currentColor;
}

.scrollToTop {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: var(--clr-yellow);
  font-size: 25px;
  background: transparent;
  position: fixed;
  right: 20px;
  bottom: 50px;
  display: none;
  z-index: 99999;
  border-radius: 50%;
}
@media screen and (min-width: 576px) {
  .scrollToTop {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.scrollToTop:hover {
  color: var(--clr-yellow);
}

.no-scroll-y {
  overflow-y: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-poppins);
  color: #14183E;
  font-weight: var(--fw-700);
  line-height: 1.4;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 2rem;
}
@media screen and (min-width: 20rem) {
  h1 {
    font-size: calc(2rem + 1.75 * ((100vw - 20rem) / 55));
  }
}
@media screen and (min-width: 75rem) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 2rem;
}
@media screen and (min-width: 20rem) {
  h2 {
    font-size: calc(2rem + 0.8125 * ((100vw - 20rem) / 55));
  }
}
@media screen and (min-width: 75rem) {
  h2 {
    font-size: 2.8125rem;
  }
}

h3 {
  font-size: 1.25rem;
}
@media screen and (min-width: 20rem) {
  h3 {
    font-size: calc(1.25rem + 0.625 * ((100vw - 20rem) / 55));
  }
}
@media screen and (min-width: 75rem) {
  h3 {
    font-size: 1.875rem;
  }
}

h4 {
  font-size: 1.125rem;
}
@media screen and (min-width: 20rem) {
  h4 {
    font-size: calc(1.125rem + 0.375 * ((100vw - 20rem) / 55));
  }
}
@media screen and (min-width: 75rem) {
  h4 {
    font-size: 1.5rem;
  }
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

hr {
  background: #c2cfff;
  width: 50px;
  height: 3px;
  margin: 35px 0;
  padding: 0;
  border: none;
}
@media screen and (min-width: 768px) {
  hr {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

p {
  margin: 0;
}

label {
  color: var(--clr-black);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

/*Home 3 Default Font Family*/
.home-3 {
  font-size: var(--fs-15);
  font-weight: var(--fw-400);
  color: var(--clr-black);
  font-family: var(--font-quicksand);
}

/*Home 3 Default Font Family*/
.home-4 {
  font-size: var(--fs-15);
  font-weight: var(--fw-400);
  font-family: var(--font-arimo);
}

.maan-section-padding {
  padding: 4.375rem 0;
}
@media screen and (min-width: 992px) {
  .maan-section-padding {
    padding: 6.25rem 0;
  }
}

.maan-section-title {
  margin-bottom: var(--gutter-20);
}
@media screen and (min-width: 992px) {
  .maan-section-title {
    margin-bottom: var(--gutter-50);
  }
}
.maan-section-title .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--gutter-10);
  margin-top: -0.3125rem;
}
@media screen and (min-width: 768px) {
  .maan-section-title .title {
    margin-top: -0.625rem;
  }
}
.maan-section-title .subtitle {
  display: block;
  color: var(--clr-yellow);
  font-weight: var(--fw-600);
  margin-bottom: var(--gutter-10);
  margin-top: -0.5rem;
}
.maan-section-title p {
  font-family: var(--ff-barlow);
  color: var(--clr-black-4);
  margin-top: var(--gutter-20);
  font-weight: var(--fw-500);
}

.swup-progress-bar {
  height: 4px;
  background-color: blue;
}

.transition-fade {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}

@-webkit-keyframes top-image-bounce {
  0% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}

@keyframes top-image-bounce {
  0% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}
/* Shine */
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@-webkit-keyframes maan-pulse {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
@keyframes maan-pulse {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
/*--------------------------------------
	- Color
----------------------------------------*/
.color {
  color: var(--clr-black);
}

.text-black {
  color: var(--clr-black) !important;
}

.bg-black {
  background: var(--clr-black);
}

.text-white {
  color: var(--clr-white) !important;
}

.bg-white {
  background: var(--clr-white);
}

.text-white-3 {
  color: var(--clr-white-3) !important;
}

.bg-white-3 {
  background: var(--clr-white-3);
}

.text-yellow {
  color: var(--clr-yellow) !important;
}

.bg-yellow {
  background: var(--clr-yellow);
}

/*--
    - Font Famaly 
-----------------------------------------*/
/*--
    - Font weight
-----------------------------------------*/
.font-regular {
  font-weight: var(--fw-400);
}

.font-medium {
  font-weight: var(--fw-500);
}

.font-semi-bold {
  font-weight: var(--fw-600);
}

.font-bold {
  font-weight: var(--fw-700);
}

.font-black {
  font-weight: var(--fw-900);
}

/*--
    - Font Size
-----------------------------------------*/
/*--
    - Margin
-------------------------------------------*/
.mt-n3 {
  margin-top: -0.4375rem;
}

.mt-n4 {
  margin-top: -0.75rem;
}

.m-auto {
  margin: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-0 {
  margin-top: 0;
}

.mt-73 {
  margin-top: 4.5625rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

@media (min-width: 768px) {
  .mt-md-n4 {
    margin-top: -0.75rem;
  }
}

.mt-40 {
  margin-top: 40px;
}

/*--- 
-- Padding 
-------------------------------------------*/
/*----------------------------------------*/
/*  Component CSS
/*----------------------------------------*/
/*-------------------------------------------------------
21. Breadcrumb css
---------------------------------------------------------*/
.maan-site-breadcrumb {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
@media screen and (min-width: 992px) {
  .maan-site-breadcrumb {
    min-height: 420px;
  }
}
.maan-site-breadcrumb .maan-breadcrumb-title {
  font-style: normal;
  font-weight: var(--fw-700);
  font-size: var(--fs-30);
  line-height: 65px;
  text-align: center;
  margin-bottom: 5px;
  color: var(--clr-def);
}
@media screen and (min-width: 992px) {
  .maan-site-breadcrumb .maan-breadcrumb-title {
    font-size: var(--fs-45);
  }
}
.maan-site-breadcrumb .maan-breadcrumb-menu {
  position: relative;
  z-index: 1;
}
.maan-site-breadcrumb .maan-breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 0rem;
  color: var(--clr-def);
  font-weight: var(--fw-400);
  text-transform: capitalize;
}
.maan-site-breadcrumb .maan-breadcrumb-menu li a {
  font-style: normal;
  font-weight: var(--fw-600);
  font-size: var(--fs-16);
  line-height: 35px;
  text-align: center;
  color: var(--clr-def);
  padding: 0 10px;
}
.maan-site-breadcrumb .maan-breadcrumb-menu li::before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: var(--fw-600);
  width: 2rem;
  right: -26px;
  top: 4px;
  text-align: center;
  font-size: 1.2rem;
  color: var(--clr-def);
  padding-right: 1rem;
}
.maan-site-breadcrumb .maan-breadcrumb-menu li:last-child::before {
  display: none;
}
.maan-site-breadcrumb .maan-breadcrumb-menu li.active {
  color: var(--clr-def);
}

/*--------------------------------------
	- Button
----------------------------------------*/
.btn {
  --btn-fs: var(--fs-16);
  --btn-ff: var(--ff-poppins);
  --btn-py: 0.5rem;
  --btn-px: 1.875rem;
  position: relative;
  font-family: var(--btn-ff);
  font-size: var(--btn-fs);
  font-weight: var(--fw-600);
  line-height: 1.5;
  background: var(--btn-bg);
  color: var(--btn-clr);
  border: var(--btn-bw, var(--border-width)) var(--btn-bs, var(--border-style)) var(--btn-bc, var(--btn-bg));
  text-transform: capitalize;
  text-decoration: none;
  border-radius: var(--btn-radius, var(--radius));
  padding: var(--btn-py) var(--btn-px);
  margin: var(--btn-mx) var(--btn-mx);
  display: inline-block;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.btn i {
  margin-left: var(--gutter-5);
}
.btn:hover {
  color: var(--btn-clr);
}
.btn-sm {
  --btn-py: 0.3125rem;
}
.btn-lg {
  --btn-py: 0.85rem;
  --btn-px: 2.8rem;
}
.btn-xl {
  --btn-py: 1.1rem;
}
.btn-none {
  --btn-radius: 0;
}
.btn-round {
  --btn-radius: 0.375rem;
}
.btn-rounded {
  --btn-radius: 1.875rem;
}
.btn-round-full {
  --btn-radius: 50%;
}
.btn-black {
  --btn-bg: var(--clr-black);
  --btn-clr: var(--clr-white);
  --btn-bc: var(--clr-black);
}
.btn-black:hover {
  --btn-clr: var(--clr-black);
  --btn-bg: transparent;
  --btn-bc: var(--clr-black);
}
.btn-black:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.4rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 0 0.4rem rgba(0, 0, 0, 0.5);
}
.btn-outline-black {
  --btn-clr: var(--clr-black);
  --btn-bc: var(--clr-black);
}
.btn-outline-black:hover {
  --btn-clr: var(--clr-yellow);
  --btn-bg: transparent;
  --btn-bc: var(--clr-yellow);
}
.btn-outline-black:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.4rem rgba(var(--clr-black), 0.5);
          box-shadow: 0 0 0 0.4rem rgba(var(--clr-black), 0.5);
}
.btn-white {
  --btn-bg: var(--clr-white);
  --btn-clr: var(--clr-black);
  --btn-bc: var(--clr-white);
}
.btn-white:hover {
  --btn-clr: var(--clr-white);
  --btn-bg: var(--clr-yellow);
  --btn-bc: transparent;
}
.btn-white:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.4rem rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 0 0.4rem rgba(255, 255, 255, 0.5);
}
.btn-yellow {
  --btn-bg: var(--clr-yellow);
  --btn-clr: var(--clr-white);
  --btn-bc: var(--clr-yellow);
}
.btn-yellow:hover {
  --btn-clr: var(--clr-yellow);
  --btn-bg: transparent;
  --btn-bc: var(--clr-yellow);
}
.btn-yellow:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.4rem rgba(248, 136, 8, 0.5);
          box-shadow: 0 0 0 0.4rem rgba(248, 136, 8, 0.5);
}
.btn-outline-white {
  --btn-clr: var(--clr-white);
  --btn-bc: var(--clr-white);
}
.btn-outline-white:hover {
  --btn-clr: var(--clr-black);
  --btn-bg: var(--clr-white);
  --btn-bc: var(--clr-white);
}
.btn-outline-white:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.4rem rgba(var(--clr-white), 0.5);
          box-shadow: 0 0 0 0.4rem rgba(var(--clr-white), 0.5);
}
.btn-outline-yellow {
  --btn-clr: var(--clr-yellow);
  --btn-bc: var(--clr-yellow);
}
.btn-outline-yellow:hover {
  --btn-clr: var(--clr-white);
  --btn-bg: var(--clr-yellow);
  --btn-bc: var(--clr-yellow);
}
.btn-outline-yellow:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.4rem rgba(var(--clr-yellow), 0.5);
          box-shadow: 0 0 0 0.4rem rgba(var(--clr-yellow), 0.5);
}

.menu-dropdown {
  position: relative;
}
.menu-dropdown .nav-link {
  position: relative;
}
@media screen and (min-width: 992px) {
  .menu-dropdown > .sub-menu {
    top: 100%;
    right: 0;
    left: 0;
    position: absolute;
    z-index: 9;
    border-radius: 5px;
    border: none;
    display: block;
    padding: 18px 0;
    min-width: 270px;
    background: #ffffff;
    -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
            box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    margin: 0;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    opacity: 0;
    visibility: hidden;
  }
  .menu-dropdown > .sub-menu li {
    margin-left: 0;
    text-align: left;
  }
  .menu-dropdown > .sub-menu li a {
    padding: 0.75rem var(--gutter-10) 0.75rem var(--gutter-25);
    font-family: var(--ff-poppins);
    font-weight: var(--fw-600);
    font-size: var(--fs-16);
    color: var(--clr-black-1);
    text-transform: capitalize;
    display: block;
    text-decoration: none;
    position: relative;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .menu-dropdown > .sub-menu li a:hover {
    padding-left: var(--gutter-35);
    color: var(--clr-yellow);
    background: rgba(248, 136, 8, 0.15);
  }
}
@media screen and (min-width: 992px) and (min-width: 992px) {
  .menu-dropdown > .sub-menu .menu-dropdown::before {
    content: "";
    top: 50%;
    right: 25px;
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: var(--fs-16);
    color: var(--clr-black-1);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    line-height: 1;
  }
}
@media screen and (min-width: 992px) {
  .menu-dropdown > .sub-menu .menu-dropdown:hover::before {
    color: var(--clr-yellow);
  }
}
@media screen and (min-width: 992px) {
  .menu-dropdown > .sub-menu .menu-dropdown > .sub-menu {
    left: 100%;
    top: 0;
  }
}
@media screen and (min-width: 992px) {
  .menu-dropdown:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.dropdown {
  position: relative;
}
.dropdown .caption {
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  background-color: var(--clr-white);
  color: var(--clr-black-1);
  padding: 14px 24px;
  border-radius: 5px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
  position: relative;
}
.dropdown .caption::before {
  content: "";
  top: 50%;
  right: 15px;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: var(--fs-16);
  color: var(--clr-black-1);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.dropdown .list {
  position: absolute;
  background-color: #f2f2f2;
  width: 100%;
  border-radius: 0 0 3px 3px;
  display: none;
}
.dropdown .item {
  font-size: var(--fs-16);
  padding: 11px 24px;
  cursor: pointer;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.dropdown .item i {
  margin-right: var(--gutter-10);
}
.dropdown .item:hover {
  background-color: var(--clr-yellow);
  color: #fff;
}
.dropdown.open {
  border-radius: 3px 3px 0 0;
  border-bottom: solid 1px #999;
}
.dropdown.open .caption::before {
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
}
.dropdown.open .list {
  display: block;
}

.hamburger-menu {
  cursor: pointer;
}

/* header-extra-info */
.extra-info {
  background: #152136 none repeat scroll 0 0;
  height: 100%;
  padding: 30px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  width: 340px;
  z-index: 9999;
  overflow-y: scroll;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.extra-info.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  z-index: 99999;
}

.close-icon {
  margin-top: -16px;
  text-align: right;
}

.close-icon > button {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 0 none;
  color: var(--clr-black);
  cursor: pointer;
  font-size: 20px;
  padding: 0;
}

.side-info {
  border-top: 1px solid #344159;
  padding-top: 25px;
}

.contact-list h4 {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}
.contact-list p {
  color: #fff;
  margin: 0;
  margin-bottom: 5px;
  line-height: 28px;
  font-size: 14px;
}
.contact-list p i {
  float: left;
  margin-top: 6px;
  width: 25px;
}
.contact-list p span {
  display: block;
  overflow: hidden;
}

.offcanvas-overly {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.offcanvas-overly.active {
  opacity: 0.5;
  visibility: visible;
}

.play-btn {
  background: transparent;
  border: none;
  position: relative;
  background: rgba(248, 136, 8, 0.12);
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  text-align: center;
  font-size: var(--fs-20);
  color: var(--clr-yellow);
  display: block;
  z-index: 2;
}
.play-btn::before, .play-btn::after {
  content: "";
  top: -10px;
  left: -10px;
  position: absolute;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  text-align: center;
  background: rgba(248, 136, 8, 0.12);
  z-index: -1;
  -webkit-animation: maan-pulse 2s linear infinite;
          animation: maan-pulse 2s linear infinite;
}
.play-btn::after {
  width: 140px;
  height: 140px;
  top: -20px;
  left: -20px;
  z-index: -2;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.play-btn i {
  margin: 0 !important;
}
.play-btn:hover {
  color: var(--clr-yellow);
}

.play-btn-white {
  background: var(--clr-white);
}
.play-btn-white::before, .play-btn-white::after {
  background: rgba(255, 255, 255, 0.12);
}

.swiper-pagination {
  position: unset;
  text-align: center !important;
  padding: 45px 0 0;
}

.swiper-pagination-bullet {
  --swiper-pagination-bullet-horizontal-gap: 0.5rem;
  background: transparent;
  border: 1px solid #f88808;
  opacity: 1;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  width: 0.5rem;
  height: 0.5rem;
  line-height: 0.5rem;
  border-radius: 50%;
  text-align: center;
}
.swiper-pagination-bullet::before {
  content: "";
  top: -7px;
  left: -7px;
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  line-height: 1.25rem;
  border-radius: 50%;
  text-align: center;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transform: scale(0);
          transform: scale(0);
  z-index: -1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #f88808;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background: rgba(248, 136, 8, 0.15);
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*  scrollup*/
/*----------------------------------------*/
/*  02. Header Area
/*----------------------------------------*/
.header-area {
  position: relative;
  z-index: 99;
}

.maan-header-navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: var(--gutter-20) 0;
}

.maan-header-menu {
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .maan-header-menu .menu {
    margin-right: var(--gutter-30);
  }
}
.maan-header-menu .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.maan-header-menu .nav-item .nav-link {
  font-size: var(--fs-16);
  font-weight: var(--fw-600);
  color: var(--clr-black);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  padding: var(--gutter-10) var(--gutter-20);
}
.maan-header-menu .nav-item .nav-link:hover {
  color: var(--clr-yellow);
}

.maan-header-right .maan-cart-icon {
  margin: 0 var(--gutter-50);
}
.maan-header-right .maan-cart-icon .badge {
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  border-radius: 50%;
  text-align: center;
  padding: 0;
}
.maan-header-right .header-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.maan-header-right .header-btn i {
  line-height: 1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

/*----------------------------------------*/
/* Sidebar Area
/*----------------------------------------*/
/*----------------------------------------*/
/*  13. Footer Area
/*----------------------------------------*/
.footer-top {
  padding-top: 4.375rem;
  padding-bottom: 3.75rem;
  border-bottom: 1px solid var(--clr-black-5);
}

@media screen and (min-width: 768px) {
  .footer-info {
    margin-top: var(--gutter-30);
  }
}
.footer-info p {
  color: var(--clr-white);
  font-family: var(--ff-barlow);
  font-size: var(--fs-16);
  margin-top: var(--gutter-20);
}
@media screen and (min-width: 1200px) {
  .footer-info p {
    width: 88%;
  }
}

.footer-social li {
  position: relative;
  display: inline-block;
}
.footer-social li + li {
  margin-left: 0.75rem;
}
.footer-social li a {
  font-size: 20px;
  background: transparent;
  color: var(--clr-white);
  display: block;
  text-align: center;
  border: 1px solid transparent;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.footer-social li a:hover {
  color: var(--clr-yellow);
}

.footer-social {
  margin-top: var(--gutter-25);
}

.footer-menu {
  margin-top: var(--gutter-50);
}
.footer-menu h5 {
  font-size: var(--fs-18);
  font-family: var(--ff-barlow);
  font-weight: var(--fw-700);
  color: var(--clr-white);
  margin-bottom: var(--gutter-25);
}
.footer-menu ul li a {
  font-size: var(--fs-16);
  color: var(--clr-white);
  opacity: 1;
  padding-bottom: 10px;
  display: block;
  text-transform: capitalize;
  text-decoration: none;
}
.footer-menu ul li a:hover {
  color: var(--clr-yellow);
  text-decoration: none;
}
.footer-menu ul a {
  font-family: var(--ff-barlow);
}

.footer-bottom {
  padding: var(--gutter-20) 0;
}
.footer-bottom p {
  font-family: var(--ff-barlow);
  color: var(--clr-black-7);
  font-size: var(--fs-16);
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }

  .gx-30 {
    --bs-gutter-x: 30px;
  }
}
/*-------------------------------------------------------
20. About css
---------------------------------------------------------*/
.maan-about-section {
  padding: 50px 0px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .maan-about-section {
    padding: 110px 0px;
  }
}
.maan-about-section .maan-section-title {
  max-width: 936px;
  margin: 0 auto 50px;
}
.maan-about-section .maan-section-title h3 {
  font-size: var(--fs-45);
  margin-bottom: 40px;
  color: #1D1D1D;
  line-height: 1;
}
.maan-about-section .maan-section-title h5 {
  margin-bottom: 30px;
  color: #444444;
}
.maan-about-section .maan-section-title p {
  font-family: var(--ff-barlow);
  font-size: var(--fs-16);
  color: #444444;
  line-height: 28px;
}
.maan-about-section .maan-about-wrapper {
  position: relative;
  z-index: 1;
}
.maan-about-section .maan-about-wrapper .maan-about-image figure {
  margin: 0;
}
.maan-about-section .maan-about-wrapper .maan-about-image figure img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media screen and (min-width: 992px) {
  .maan-about-section .maan-about-wrapper .maan-about-image figure img {
    width: 1170px;
    height: 581px;
  }
}
.maan-about-section .maan-about-wrapper .maan-about-image .maan-about-overlay {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: rgba(29, 29, 29, 0.33);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}

@media (max-width: 575px) {
  .maan-about-section .maan-section-title h5 {
    font-size: 16px;
  }

  .maan-service-section .maan-section-title h3 {
    color: var(--clr-white);
    line-height: 28px;
    margin-top: -4px;
  }

  .maan-section-title .maan-test-title {
    line-height: 24px;
    margin-top: -4px;
  }

  .maan-blog-section .maan-section-title h3 {
    margin-top: -5px;
  }
}
@media (max-width: 992px) {
  .maan-about-section .maan-section-title h3 {
    line-height: 24px;
  }

  .maan-section-title .maan-test-title {
    margin-top: -5;
  }
}
@media (max-width: 768px) {
  .maan-about-section .maan-section-title h3 {
    line-height: 25px;
  }
}
/*----------------------------------------*/
/*  03. Banner Area
/*----------------------------------------*/
.maan-banner-area {
  position: relative;
  z-index: 1;
  margin-top: -6.25rem;
  background-color: rgba(248, 136, 8, 0.12);
}
.maan-banner-area .shape {
  bottom: 2.375rem;
  left: 2.0625rem;
  position: absolute;
  z-index: -1;
}
.maan-banner-area .shape2 {
  bottom: 2.0625rem;
  left: 30%;
  position: absolute;
  z-index: -1;
}
.maan-banner-area .maan-banner-content {
  margin-top: 3.125rem;
}
@media screen and (min-width: 576px) {
  .maan-banner-area .maan-banner-content {
    height: 430px;
  }
}

.maan-banner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 556px;
}
.maan-banner-content h2 {
  font-family: var(--ff-poppins);
  font-weight: var(--fw-700);
}
.maan-banner-content p {
  font-family: var(--ff-poppins);
  margin-top: var(--gutter-10);
}
.maan-banner-content.banner-content-2 {
  height: 540px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: var(--gutter-40);
}
@media screen and (min-width: 576px) {
  .maan-banner-content.banner-content-2 {
    height: 360px;
  }
}
@media screen and (min-width: 768px) {
  .maan-banner-content.banner-content-2 {
    max-width: 90%;
  }
}
@media screen and (min-width: 992px) {
  .maan-banner-content.banner-content-2 {
    max-width: 100%;
  }
}
.maan-banner-content.banner-content-2 h3 {
  font-family: var(--ff-poppins);
  font-size: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .maan-banner-content.banner-content-2 form {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.maan-banner-content.banner-content-2 .banner-search-form {
  max-width: 410px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (min-width: 1200px) {
  .maan-banner-content.banner-content-2 .maan-banner-img {
    width: 115%;
  }
}

.maan-banner-form {
  margin-top: var(--gutter-35);
}
.maan-banner-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--gutter-20);
}
.maan-banner-form input {
  font-size: var(--fs-14);
  color: var(--clr-black-7);
  border-color: transparent;
  border-radius: 0.375rem;
  padding: 1.125rem 0.9375rem 1.125rem 3rem;
  position: relative;
}
.maan-banner-form input:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 136, 8, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(248, 136, 8, 0.25);
  border-color: transparent;
}
.maan-banner-form .banner-search-form {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .maan-banner-form .banner-search-form {
    max-width: 376px;
  }
}
.maan-banner-form .banner-search-form::before {
  content: "";
  top: 50%;
  left: 1.25rem;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: var(--fs-20);
  color: var(--clr-black-7);
  z-index: 1;
}
.maan-banner-form .search-map {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.maan-banner-form .banner-search-date {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .maan-banner-form .banner-search-date {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .maan-banner-form .banner-search-date {
    width: 100%;
    max-width: 220px;
  }
}
.maan-banner-form .banner-search-date input {
  background: var(--clr-white);
}
.maan-banner-form .banner-search-date .form-select {
  font-family: var(--ff-poppins);
  font-weight: var(--fw-500);
  font-size: var(--fs-16);
  color: var(--clr-black-2);
  border-radius: 0.375rem;
  padding: 1.0625rem 0.9375rem 1.0625rem 1.5625rem;
  border-color: transparent;
  position: relative;
}
.maan-banner-form .banner-search-date .form-select:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 136, 8, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(248, 136, 8, 0.25);
  border-color: transparent;
}
.maan-banner-form .banner-search-button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (min-width: 576px) {
  .maan-banner-form .banner-search-button {
    width: 46%;
  }
}
@media screen and (min-width: 768px) {
  .maan-banner-form .banner-search-button {
    width: auto;
  }
}
.maan-banner-form .banner-search-button .btn {
  max-height: 3.75rem;
  width: 100%;
}

.maan-banner-area .maan-banner-image {
  position: relative;
  -webkit-animation: top-image-bounce 3s infinite ease-in-out;
          animation: top-image-bounce 3s infinite ease-in-out;
}
.maan-banner-area .maan-banner-image img {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  max-width: 167%;
  position: relative;
}
@media screen and (min-width: 992px) {
  .maan-banner-area .maan-banner-image img {
    margin-top: 105px;
    left: -110px;
  }
}
@media screen and (min-width: 1200px) {
  .maan-banner-area .maan-banner-image img {
    max-width: 140%;
  }
}
@media screen and (min-width: 1441px) {
  .maan-banner-area .maan-banner-image img {
    max-width: 167%;
    left: -40px;
  }
}

.popup-model .modal-header {
  border-bottom: none;
  padding: 1.5rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.popup-model .modal-header .btn-close {
  margin-left: 0;
  width: 1.875rem;
  height: 1.875rem;
  line-height: 1.875rem;
  border-radius: 50%;
  text-align: center;
  border: 1px solid var(--clr-black-7);
  background: transparent;
  font-size: var(--fs-18);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.popup-model .modal-header .btn-close:hover, .popup-model .modal-header .btn-close:focus {
  border-color: var(--clr-black-7);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--clr-black-7) !important;
  background: transparent;
  opacity: 0.7;
}
.popup-model .modal-body {
  padding: 0 1.5rem 1.5rem;
}
.popup-model .pickup-time h3 {
  font-size: 2.25rem;
  margin-bottom: var(--gutter-20);
}
.popup-model .pickup-time .form-select {
  font-family: var(--ff-poppins);
  font-weight: var(--fw-500);
  font-size: var(--fs-16);
  color: var(--clr-black-2);
  background-color: var(--clr-white-1);
  border-radius: 0.1875rem;
  padding: 0.9375rem 0.9375rem 0.9375rem 1.5625rem;
  border-color: transparent;
  margin-top: var(--gutter-15);
  cursor: pointer;
}
.popup-model .modal-footer {
  border-top: none;
  margin-top: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--gutter-15);
  padding: 0 1.5rem 1.8rem;
}
.popup-model .modal-footer .btn {
  width: 100%;
}

.modal-date-select {
  position: relative;
  z-index: 1;
}
.modal-date-select::before {
  content: "";
  top: 50%;
  right: 1rem;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: var(--fs-20);
  color: var(--clr-black-7);
  z-index: 1;
}
.modal-date-select input {
  font-family: var(--ff-poppins);
  font-weight: var(--fw-500);
  font-size: var(--fs-16);
  color: var(--clr-black-2);
  background: var(--clr-white-1);
  border-radius: 0.1875rem;
  padding: 0.9375rem 0.9375rem 0.9375rem 1.5625rem;
  border-color: transparent;
  margin-top: var(--gutter-15);
  cursor: pointer;
}
.modal-date-select input::-webkit-input-placeholder {
  color: var(--clr-black-2);
}
.modal-date-select input::-moz-placeholder {
  color: var(--clr-black-2);
}
.modal-date-select input:-ms-input-placeholder {
  color: var(--clr-black-2);
}
.modal-date-select input::-ms-input-placeholder {
  color: var(--clr-black-2);
}
.modal-date-select input::placeholder {
  color: var(--clr-black-2);
}

.location-modal-dialog {
  max-width: 660px;
}
.location-modal-dialog .modal-content {
  border-radius: 30px;
}
.location-modal-dialog .modal-header {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: var(--gutter-30) var(--gutter-30) 0;
}
.location-modal-dialog .modal-header h4 {
  color: var(--clr-black);
  font-size: var(--fs-25);
  font-weight: var(--fw-500);
}
.location-modal-dialog .modal-body {
  padding: var(--gutter-20) var(--gutter-30) var(--gutter-30);
  position: relative;
  z-index: 1;
}
.location-modal-dialog .modal-body .btn {
  width: auto;
  margin-top: 0;
  right: 0;
  bottom: 60px;
  left: 0;
  position: absolute;
  --btn-py: 0.75rem;
  --btn-px: 2.5rem;
  z-index: 9;
  margin: 0 auto;
}
.location-modal-dialog .modal-body .btn:hover {
  --btn-bg: var(--clr-yellow);
  --btn-clr: var(--clr-white);
  -webkit-box-shadow: var(--shadow-1);
          box-shadow: var(--shadow-1);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.location-modal-dialog .location-field {
  margin-bottom: var(--gutter-20);
}
.location-modal-dialog .location-field input {
  padding: 0.75rem var(--gutter-20);
}

/*----------------------------------------*/
/*  04. Category Area
/*----------------------------------------*/
.maan-category-area .maan-section-title {
  margin-bottom: 50px;
}

.maan-category-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  grid-auto-rows: 270px;
  row-gap: var(--gutter-30);
}
@media screen and (min-width: 768px) {
  .maan-category-grid {
    gap: var(--gutter-30);
  }
}
@media screen and (min-width: 992px) {
  .maan-category-grid .wide {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}

.maan-category-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.625rem;
}
.maan-category-item .category-img {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .maan-category-item .category-img {
    height: 270px;
  }
}
.maan-category-item:hover .category-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.maan-category-item .category-btn {
  right: 0;
  bottom: 1.875rem;
  left: 0;
  position: absolute;
  text-align: center;
}
.maan-category-item .category-btn a {
  --btn-fs: var(--fs-18);
  font-weight: var(--fw-600);
  text-transform: uppercase;
}
.maan-category-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------------------------------------*/
/*  05. Feature Area
/*----------------------------------------*/
.maan-section-title {
  margin-bottom: var(--gutter-20);
}

.maan-feature-item {
  position: relative;
  margin-top: var(--gutter-30);
}
.maan-feature-item:hover .feature-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.feature-image {
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
  height: 270px;
}
.feature-image img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-discount {
  top: 1.25rem;
  left: 1.25rem;
  position: absolute;
  display: block;
  background-color: var(--clr-red);
  color: var(--clr-white);
  border-radius: 1.875rem;
  font-family: var(--ff-barlow);
  font-size: var(--fs-18);
  font-weight: var(--fw-700);
  padding: 0.125rem 0.75rem;
}

.feature-category {
  top: 1.25rem;
  right: 1.25rem;
  position: absolute;
  display: block;
  background-color: var(--clr-yellow);
  color: var(--clr-white);
  border-radius: 1.875rem;
  font-family: var(--ff-barlow);
  font-size: var(--fs-15);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  padding: 0.125rem 1.125rem;
}

.maan-feature-content {
  margin-top: var(--gutter-20);
  background-color: var(--feature-bg, var(--clr-white));
  padding: var(--gutter-30) var(--gutter-20);
  border-radius: 0.625rem;
}
@media screen and (min-width: 576px) {
  .maan-feature-content {
    padding: var(--gutter-30);
  }
}
.maan-feature-content .title {
  position: relative;
  margin-top: 0;
  font-weight: var(--fw-600);
}
.maan-feature-content .title::before {
  content: "";
  top: 0.5rem;
  left: -1.25rem;
  position: absolute;
  width: 0.25rem;
  height: 1.25rem;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  background: var(--clr-yellow);
}
@media screen and (min-width: 576px) {
  .maan-feature-content .title::before {
    left: -1.875rem;
  }
}
.maan-feature-content .title a {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.maan-feature-content .title a:hover {
  color: var(--clr-yellow);
}
.maan-feature-content .content {
  margin-top: var(--gutter-10);
  font-family: var(--ff-barlow);
  font-weight: var(--fw-500);
  color: var(--clr-black-4);
}
.maan-feature-content .content i {
  font-size: var(--fs-18);
  color: var(--clr-black-7);
  margin-right: var(--gutter-10);
}

.feature-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px dashed #CACACA;
  margin-top: var(--gutter-20);
  padding-top: var(--gutter-15);
}
.feature-meta .feature-time {
  color: var(--clr-black-4);
  font-size: var(--fs-15);
  font-weight: var(--fw-500);
}
.feature-meta .feature-time i {
  font-size: var(--fs-18);
  color: var(--clr-black-7);
}

.feature-review ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--gutter-10);
}
.feature-review ul a {
  color: #9C9C9C;
  font-size: var(--fs-16);
}
.feature-review ul a.active {
  color: var(--clr-yellow);
}
.feature-review ul li {
  font-weight: var(--fw-600);
  color: var(--clr-black-1);
}

.maan-feature-content-two {
  --feature-bg: #fafafa;
}

/*----------------------------------------*/
/*  06. Restaurant Area
/*----------------------------------------*/
.maan-restaurant-area {
  position: relative;
  z-index: 1;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 992px) {
  .maan-restaurant-area {
    padding-bottom: 7.8125rem;
  }
}
.maan-restaurant-area .maan-section-title h3 {
  color: var(--clr-white);
}
.maan-restaurant-area .maan-section-title p {
  color: var(--clr-white);
}
@media screen and (min-width: 1200px) {
  .maan-restaurant-area .maan-section-title p {
    padding-right: var(--gutter-50);
  }
}
.maan-restaurant-area .bg-img {
  width: 100%;
  height: 100%;
  max-height: 31.875rem;
  z-index: -1;
}
@media screen and (min-width: 576px) {
  .maan-restaurant-area .bg-img {
    max-height: 28.125rem;
  }
}
@media screen and (min-width: 768px) {
  .maan-restaurant-area .bg-img {
    max-height: 31.875rem;
  }
}

.restaurant-left-content .btn {
  --btn-py: 1rem;
  margin-top: var(--gutter-50);
}

.maan-total-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--gutter-25);
  margin-top: 6.25rem;
  margin-bottom: var(--gutter-50);
}
@media screen and (min-width: 768px) {
  .maan-total-number {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .maan-total-number {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 8.75rem;
  }
}
.maan-total-number .total h2 {
  color: var(--clr-black-1);
  font-weight: var(--fw-800);
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .maan-total-number .total h2 {
    font-size: 3.4375rem;
  }
}
.maan-total-number .total h2 span {
  font-weight: var(--fw-700);
  color: var(--clr-yellow);
  -webkit-text-fill-color: var(--clr-white);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--clr-yellow);
}
.maan-total-number .total p {
  font-family: var(--ff-barlow);
  font-weight: var(--fw-700);
  font-size: var(--fs-15);
  color: var(--clr-black-1);
  letter-spacing: 0.52em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .maan-total-number .total p {
    font-size: var(--fs-18);
  }
}

.restaurant-right-content {
  position: relative;
  z-index: 1;
}

.restaurant-image {
  position: relative;
  z-index: 1;
}
.restaurant-image .play-button {
  top: 2.5rem;
  right: 2.5rem;
  position: absolute;
  width: 4.75rem;
  height: 4.75rem;
  line-height: 4.75rem;
  border-radius: 50%;
  text-align: center;
  line-height: 4.35rem;
  color: var(--clr-yellow);
  border: 3px solid var(--clr-yellow);
  display: block;
  font-size: var(--fs-24);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  z-index: 1;
}
.restaurant-image .play-button:hover {
  color: var(--clr-white);
  background-color: var(--clr-yellow);
}

.restaurant-border {
  bottom: -1.625rem;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 524px;
  max-height: 444px;
  border: 3px solid var(--clr-yellow);
  border-top: none;
  border-left: none;
  z-index: 1;
  display: none;
}
@media screen and (min-width: 576px) {
  .restaurant-border {
    left: -1.625rem;
    display: block;
  }
}
.restaurant-border::before {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 3px;
  height: 120px;
  background-color: var(--clr-yellow);
}

.filter-top {
  background-color: var(--clr-white-2);
  border-radius: 4px;
  padding: var(--gutter-25) var(--gutter-40);
}
.filter-top .filter-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: var(--gutter-25);
}
@media screen and (min-width: 768px) {
  .filter-top .filter-group {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .filter-top .filter-group {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.filter-top .form-select {
  padding: var(--gutter-10) var(--gutter-20);
  background-color: #FaFAFA;
  border: 1px solid var(--clr-white-4);
  max-width: 210px;
  cursor: pointer;
}
.filter-top .total-restaurant {
  margin-bottom: var(--gutter-25);
}
@media screen and (min-width: 992px) {
  .filter-top .total-restaurant {
    margin-bottom: 0;
  }
}
.filter-top .total-restaurant h5 {
  margin-top: 0;
  margin-bottom: 0;
}
.filter-top .filter-button {
  position: relative;
}
.filter-top .filter-button .filter-select {
  color: var(--clr-black-1);
  padding-left: var(--gutter-45);
  font-size: var(--fs-18);
  font-weight: var(--fw-600);
}
.filter-top .filter-button::before {
  content: "";
  top: 0.625rem;
  left: 1.25rem;
  position: absolute;
  font-size: var(--fs-18);
  font-weight: var(--fw-900);
  color: var(--clr-black-6);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.hidden {
  visibility: hidden;
  width: 0px !important;
  height: 0px !important;
  margin: 0px !important;
  padding: 0px !important;
}

/*----------------------------------------*/
/*  07. CTA Area
/*----------------------------------------*/
.maan-cta-area {
  position: relative;
  z-index: 1;
}
.maan-cta-area .cta-img {
  top: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  width: 32%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
@media screen and (min-width: 768px) {
  .maan-cta-area .cta-img {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .maan-cta-area .cta-img {
    width: 48%;
  }
}

@media screen and (min-width: 1200px) {
  .maan-cta-content h3 {
    width: 75%;
  }
}
.maan-cta-content p {
  color: var(--clr-black-4);
}
.maan-cta-content .btn {
  --btn-py: 1.1rem;
  margin-top: var(--gutter-50);
}

.partnership-image img {
  width: 100%;
}

.maan-apps-area .maan-section-title p {
  padding-right: 50px;
}

/* account css start */
.sign-in-model {
  z-index: 99999;
}
.sign-in-model .modal-dialog {
  max-width: 600px;
}
.sign-in-model .maan-user-account-wraper {
  padding: var(--gutter-50) var(--gutter-40);
}

.maan-user-account-wraper {
  background: #F3F3F3;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 15px;
  border-radius: 6px;
}
@media screen and (min-width: 992px) {
  .maan-user-account-wraper {
    padding: 80px;
  }
}
.maan-user-account-wraper .user-header-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--gutter-20);
}
.maan-user-account-wraper .user-header-area .logo {
  display: block;
}
.maan-user-account-wraper .user-header-area .logo img {
  max-width: 215px;
  width: 100%;
}
.maan-user-account-wraper form {
  margin-top: 85px;
}
.maan-user-account-wraper form .maan-input-group {
  position: relative;
  margin-bottom: 20px;
}
.maan-user-account-wraper form .maan-input-group span {
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-size: 25px;
  color: #545454;
}
.maan-user-account-wraper form .maan-input-group span img {
  font-size: 25px;
  min-width: 25px;
}
.maan-user-account-wraper form .maan-input-group input {
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #A2A2A2;
  padding: 20px 30px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 8px;
  border: 1px solid #D4D4D4;
  background: rgba(255, 255, 255, 0.8);
}
.maan-user-account-wraper form .maan-input-group input::-webkit-input-placeholder {
  color: #A2A2A2;
}
.maan-user-account-wraper form .maan-input-group input::-moz-placeholder {
  color: #A2A2A2;
}
.maan-user-account-wraper form .maan-input-group input:-ms-input-placeholder {
  color: #A2A2A2;
}
.maan-user-account-wraper form .maan-input-group input::-ms-input-placeholder {
  color: #A2A2A2;
}
.maan-user-account-wraper form .maan-input-group input::placeholder {
  color: #A2A2A2;
}
.maan-user-account-wraper form .forget-pass {
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 25px;
  color: #545454;
}
.maan-user-account-wraper form .forget-pass a {
  color: var(--clr-yellow);
}
.maan-user-account-wraper form .forget-pass a:hover {
  text-decoration: underline;
}
.maan-user-account-wraper form .maan-primary-btn {
  margin-bottom: 48px;
  margin-top: 30px;
}

.maan-swetch-btn {
  display: block;
  width: 250px;
  height: 45px;
  overflow: hidden;
  position: relative;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: var(--clr-white);
  border-radius: 28px;
}
.maan-swetch-btn .nav-link {
  display: block;
  font-size: var(--fs-20);
  background: var(--clr-white);
  border: none;
  color: #545454;
  border-radius: 28px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  padding: 8px 19px;
}
.maan-swetch-btn .nav-link.active {
  color: #fff;
  background: var(--clr-yellow);
}

.maan-primary-btn {
  display: block;
  width: 100%;
  font-size: 20px;
  line-height: 29px;
  background: var(--clr-black-2);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 20px;
  font-weight: 600;
}
.maan-primary-btn:hover, .maan-primary-btn:focus {
  background: #0A0B2E;
  color: #fff;
}

/*-------------------------------------------------------
 Testimonial css
---------------------------------------------------------*/
.testimonial-section {
  position: relative;
  padding: 50px 0px;
}
@media screen and (min-width: 992px) {
  .testimonial-section {
    padding: 110px 0px;
  }
}
.testimonial-section .maan-section-title {
  margin-bottom: 30px;
}
.testimonial-section .maan-section-title h2 {
  margin-top: -12px;
}
.testimonial-section .maan-testimonial-container {
  position: relative;
  padding-bottom: 56px;
}
.testimonial-section .swiper-pagination {
  position: absolute;
  bottom: 0;
}

.maan-testimonial-item {
  border-radius: 10px;
  background-color: var(--clr-white);
  border: 1px solid #cfcfcf;
  padding: 30px 30px 20px;
  margin: 20px 1rem 1rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.maan-testimonial-item:hover {
  -webkit-box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.16);
  border: 1px solid transparent;
}
.maan-testimonial-item .lp-testimonial-icon {
  font-size: var(--fs-18);
  color: var(--clr-yellow);
  margin-bottom: 10px;
}
.maan-testimonial-item .maan-testimonial-content p {
  font-size: var(--fs-17);
  color: var(--clr-black-1);
  font-weight: var(--fw-400);
  font-family: var(--ff-barlow);
  margin-bottom: 20px;
}

.maan-testimonial-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.maan-testimonial-wrapper .maan-testimonial-image img {
  width: 68px;
  height: 68px;
  border-radius: 34px;
}
.maan-testimonial-wrapper .maan-testimonial-info-box .maan-testimonial-title {
  font-size: var(--fs-18);
  line-height: 15px;
  color: var(--clr-yellow);
  font-weight: var(--fw-600);
  font-family: var(--ff-barlow);
  margin-bottom: 0;
}
.maan-testimonial-wrapper .maan-testimonial-info-box .maan-testimonial-designation {
  font-size: var(--fs-16);
  line-height: 35px;
  color: var(--clr-black-7);
  font-weight: var(--fw-400);
  font-family: var(--ff-barlow);
  margin-bottom: 0;
}

/*-------------------------------------------------------
service css
---------------------------------------------------------*/
.maan-service-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  padding: 50px 0px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .maan-service-section {
    padding: 110px 0px;
  }
}
.maan-service-section .maan-section-title {
  margin-bottom: 40px;
}
.maan-service-section .maan-section-title h2 {
  margin-top: -11px;
}

.maan-service-item {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
.maan-service-item .maan-inner-box {
  position: relative;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.maan-service-item .maan-inner-box .maan-image-box figure {
  margin: 0;
}
.maan-service-item .maan-inner-box .maan-image-box figure img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
}
@media screen and (min-width: 1200px) {
  .maan-service-item .maan-inner-box .maan-image-box figure img {
    width: 270px;
    height: 307px;
  }
}
.maan-service-item .maan-inner-box .maan-image-box:hover .maan-info-box {
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  opacity: 1;
  visibility: visible;
}
.maan-service-item .maan-info-box {
  bottom: -30px;
  position: absolute;
  left: auto;
  right: auto;
  border-radius: 20px;
  background-color: var(--clr-white);
  padding: 25px;
  margin: 0 13px 0px 16px;
  width: 90%;
  height: auto;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
}
@media screen and (min-width: 992px) {
  .maan-service-item .maan-info-box {
    margin: 0 13px;
  }
}
.maan-service-item .maan-info-box .maan-name {
  font-size: var(--fs-20);
  line-height: 16px;
  color: #1d1d1d;
  font-family: "Playfair Display", serif;
  font-weight: var(--fw-700);
  text-align: center;
  margin-bottom: 15px;
}
.maan-service-item .maan-info-box .maan-name:hover {
  color: var(--clr-yellow);
}
.maan-service-item .maan-info-box .maan-designation {
  font-size: var(--fs-16);
  line-height: 16px;
  color: #7e7e7e;
  font-family: var(--ff-barlow);
  text-align: center;
  margin-bottom: 20px;
}
.maan-service-item .maan-info-box .social-icon-one {
  position: relative;
  padding: 14px 0 0;
  text-align: center;
}
.maan-service-item .maan-info-box .social-icon-one li {
  position: relative;
  display: inline-block;
  margin-right: 8px;
}
.maan-service-item .maan-info-box .social-icon-one li a .fab {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 27px;
  text-align: center;
  font-size: var(--fs-16);
  color: var(--clr-yellow);
  border: 1px solid var(--clr-yellow);
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
  border-radius: 50%;
}
.maan-service-item .maan-info-box .social-icon-one li a:hover .fab {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  background-color: var(--clr-yellow);
  border-color: var(--clr-yellow);
  color: var(--clr-white);
}

@media (max-width: 1100px) {
  .maan-service-section .maan-section-title h3 {
    margin-top: -13px;
  }

  .maan-section-title .maan-test-title {
    line-height: 30px;
    margin-top: -4px;
  }

  .maan-section-title .maan-blog-title {
    line-height: 30px;
    margin-top: -4px;
  }
}
@media (max-width: 991px) {
  .maan-service-section .maan-section-title h3 {
    margin-top: -13px;
  }
}
@media (max-width: 768px) {
  .maan-service-section .maan-service-item .maan-inner-box .maan-image-box:hover .maan-info-box {
    -webkit-transform: translateY(-34%);
            transform: translateY(-34%);
  }
}
@media (max-width: 767px) {
  .maan-service-section .maan-service-item .maan-info-box {
    bottom: -20px;
    border-radius: 10px;
    padding: 12px;
    margin: 0 13px 0px 11px;
  }
}
@media only screen and (min-width: 400px) and (max-width: 600px) {
  .maan-service-section .maan-service-item .maan-info-box {
    margin: 0 13px 0px 22px;
    padding: 20px;
    border-radius: 20px;
  }
}
@media (max-width: 400px) {
  .maan-service-section .maan-service-item .maan-info-box {
    margin: 0 13px 0px 16px;
    padding: 20px;
    border-radius: 20px;
  }
}
/*-------------------------------------------------------
20. Restaurant Details css
---------------------------------------------------------*/
.restaurant-details-banner img {
  width: 100%;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
}

.restaurant-info-area {
  position: relative;
}

.restaurant-info-box {
  background: #FFFFFF;
  -webkit-box-shadow: var(--shadow-1);
          box-shadow: var(--shadow-1);
  border-radius: 0.375rem;
  padding: var(--gutter-35) var(--gutter-15);
  margin-top: -4.0625rem;
}
@media screen and (min-width: 768px) {
  .restaurant-info-box {
    padding: var(--gutter-35);
  }
}

.restaurant-info-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .restaurant-info-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.restaurant-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--gutter-30);
}
@media screen and (min-width: 768px) {
  .restaurant-info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.restaurant-info .restaurant-image {
  width: 9.25rem;
  height: 9.25rem;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.restaurant-info .restaurant-image img {
  width: 100%;
  height: 100%;
}

.restaurant-name-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.restaurant-meta {
  border-top: 1px dashed #DBDBDB;
  padding-top: var(--gutter-15);
  margin-top: var(--gutter-10);
}
.restaurant-meta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--gutter-20);
}
.restaurant-meta li {
  font-size: var(--fs-15);
  font-weight: var(--fw-500);
  color: var(--clr-black-4);
}
.restaurant-meta li :is(svg, i) {
  margin-right: var(--gutter-5);
  color: var(--clr-yellow);
}

.restaurant-name {
  padding-right: var(--gutter-10);
}
@media screen and (min-width: 1200px) {
  .restaurant-name {
    padding-right: var(--gutter-35);
  }
}
.restaurant-name h4 {
  font-size: var(--fs-20);
  color: var(--clr-black-1);
}
.restaurant-name span {
  font-family: var(--ff-barlow);
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  color: var(--clr-black-4);
  margin-top: var(--gutter-5);
  display: block;
}
.restaurant-name span i {
  color: var(--clr-yellow);
}

.restaurant-author-online {
  position: relative;
  font-size: var(--fs-14);
  font-weight: var(--fw-600);
  color: var(--clr-green);
  padding-left: var(--gutter-25);
  line-height: 1;
  z-index: 1;
  margin: var(--gutter-15) 0;
}
.restaurant-author-online::before, .restaurant-author-online::after {
  content: "";
  top: 0.3125rem;
  left: 0.3125rem;
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  line-height: 0.5rem;
  border-radius: 50%;
  text-align: center;
  background: var(--clr-green);
  z-index: 1;
}
.restaurant-author-online::after {
  top: 0;
  left: 0;
  width: 1.125rem;
  height: 1.125rem;
  line-height: 1.125rem;
  border-radius: 50%;
  text-align: center;
  background: var(--clr-white-3);
  z-index: -1;
}
@media screen and (min-width: 576px) {
  .restaurant-author-online {
    margin: 7px 0;
  }
}

.about-restaurant {
  margin-top: var(--gutter-20);
}
@media screen and (min-width: 768px) {
  .about-restaurant {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: var(--gutter-30);
  }
}
@media screen and (min-width: 992px) {
  .about-restaurant {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.about-restaurant .about-restaurant-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--gutter-25);
}
@media screen and (min-width: 768px) {
  .about-restaurant .about-restaurant-list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 0.8125rem;
  }
}
.about-restaurant li {
  color: var(--clr-yellow);
  font-size: var(--fs-15);
}
.about-restaurant .product-discount {
  position: relative;
  top: 0;
  left: 0;
}
.about-restaurant .restaurant-review {
  margin-top: var(--gutter-15);
}
@media screen and (min-width: 768px) {
  .about-restaurant .restaurant-review {
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .about-restaurant .restaurant-review {
    margin-top: 3.5rem;
  }
}
.about-restaurant .restaurant-review .feature-review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.about-restaurant .all-reivews {
  font-size: var(--fs-15);
  font-weight: var(--fw-400);
  margin-right: var(--gutter-10);
  color: var(--clr-black-7);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.about-restaurant .all-reivews:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--clr-yellow);
          text-decoration-color: var(--clr-yellow);
  color: var(--clr-yellow);
}

.restaurant-menu {
  margin-top: var(--gutter-40);
  background-color: #ECECEC;
  border-radius: 0.3125rem;
  padding: 0 var(--gutter-15);
}
@media screen and (min-width: 992px) {
  .restaurant-menu {
    padding: 0 var(--gutter-50);
  }
}
.restaurant-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--gutter-10);
}
@media screen and (min-width: 768px) {
  .restaurant-menu ul {
    gap: var(--gutter-20);
  }
}
.restaurant-menu li {
  display: block;
  text-decoration: none;
  font-size: var(--fs-15);
  position: relative;
  padding: var(--gutter-10) 0;
  cursor: pointer;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (min-width: 1200px) {
  .restaurant-menu li {
    padding: var(--gutter-25) 0;
  }
}
.restaurant-menu li::before {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 0;
  height: 2px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.restaurant-menu li:is(.mixitup-control-active, :hover) {
  color: var(--clr-yellow);
}
.restaurant-menu li:is(.mixitup-control-active, :hover)::before {
  width: 100%;
  background: var(--clr-yellow);
}
.restaurant-menu li.mixitup-control-active {
  font-weight: var(--fw-600);
}

.restaurant-menu-area {
  padding: var(--gutter-50) 0;
}

.restaurant-menu-accordion {
  position: relative;
  height: auto !important;
}

.menu-accordion-item {
  border-color: #E9E9E9;
  margin-top: var(--gutter-20);
  width: 100%;
}
.menu-accordion-item:first-of-type {
  border-radius: 0;
}
.menu-accordion-item:last-of-type {
  border-radius: 0;
}
.menu-accordion-item .accordion-header {
  margin-top: 0;
}
.menu-accordion-item .accordion-button {
  background-color: var(--clr-white-2);
  font-weight: var(--fw-600);
  color: var(--clr-black-1);
  padding: var(--gutter-15) var(--gutter-30);
}
@media screen and (min-width: 576px) {
  .menu-accordion-item .accordion-button {
    font-size: var(--fs-20);
  }
}
.menu-accordion-item .accordion-button:not(.collapsed) {
  color: var(--clr-black-1);
  background-color: var(--clr-white-2);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.menu-accordion-item .accordion-body {
  padding: var(--gutter-20) var(--gutter-15);
}
@media screen and (min-width: 768px) {
  .menu-accordion-item .accordion-body {
    padding: var(--gutter-25) var(--gutter-30);
  }
}

.restaurant-menu-container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, 1fr);
  gap: var(--gutter-20);
}
.restaurant-menu-container .restaurant-menu {
  background-color: transparent;
  margin-top: 0;
  border: 1px solid var(--clr-white-6);
  padding: var(--gutter-10) var(--gutter-20);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--gutter-25);
}
.restaurant-menu-container .restaurant-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 23%;
}
.restaurant-menu-container .restaurant-image img {
  width: 156px;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
.restaurant-menu-container .restaurant-menu-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 49%;
}
.restaurant-menu-container .restaurant-button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20%;
}
.restaurant-menu-container .restaurant-button .btn {
  padding: 0.8rem var(--gutter-20) 0.75rem;
}
.restaurant-menu-container .restaurant-title h5 {
  margin-top: 0;
  font-size: var(--fs-16);
  font-weight: var(--fw-600);
  margin-bottom: var(--gutter-10);
}
.restaurant-menu-container :is(.form-check-wrapper, .form-check) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--gutter-10);
  margin-right: 0;
}
.restaurant-menu-container .form-check-label {
  font-size: var(--fs-15);
  color: #595252;
}
.restaurant-menu-container .form-check-input {
  width: 1.125rem;
  height: 1.125rem;
  line-height: 1.125rem;
  border-radius: 50%;
  text-align: center;
  border: 1px solid #E3E3E3;
}
.restaurant-menu-container .form-check-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.restaurant-menu-container .form-check-input:checked {
  background-color: var(--clr-yellow);
  border-color: transparent;
}
.restaurant-menu-container .form-check-input:checked ~ .form-check-label {
  color: var(--clr-yellow);
  font-weight: var(--fw-500);
}
.restaurant-menu-container .restaurant-menu-pricing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: var(--gutter-15);
  font-size: var(--fs-14);
  color: var(--clr-black-1);
}
.restaurant-menu-container .restaurant-menu-pricing strong {
  font-size: var(--fs-14);
  font-weight: var(--fw-600);
  line-height: 1;
}
.restaurant-menu-container .restaurant-menu-pricing del {
  color: var(--clr-black-7);
}
.restaurant-menu-container .restaurant-menu-pricing a {
  font-size: var(--fs-18);
  color: var(--clr-yellow);
  padding: 0;
}
.restaurant-menu-container .restaurant-menu-pricing a::before {
  content: none;
}

.restaurant-menu-cart {
  background-color: var(--clr-white-1);
  margin-top: var(--gutter-20);
  position: sticky;
  top: 30px;
}

.menu-cart-header {
  padding: var(--gutter-30);
}
.menu-cart-header h4 {
  font-size: var(--fs-18);
  font-weight: var(--fw-600);
  color: var(--clr-black-1);
}
.menu-cart-header span {
  display: block;
  font-size: var(--fs-14);
  color: var(--clr-black-8);
}

.switch-input {
  display: none;
}
.switch-input:checked + .switch-label {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.switch-input:checked + .switch-label::before {
  right: 0;
}

.switch-label {
  display: inline-block;
  width: 38px;
  height: 10px;
  border: 1px solid rgba(248, 136, 8, 0.15);
  background-color: transparent;
  position: relative;
  border-radius: 100px;
}
.switch-label::before {
  content: "";
  top: -5px;
  right: 18px;
  position: absolute;
  width: 1.125rem;
  height: 1.125rem;
  line-height: 1.125rem;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  background-color: var(--clr-yellow);
  border-radius: 100px;
}

.menu-delivery-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--gutter-15);
  margin-top: var(--gutter-10);
}
.menu-delivery-switch .form-label {
  color: #595252;
  font-size: var(--fs-14);
}

.menu-item-list .menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px dashed #CACACA;
  padding: 30px;
}
.menu-item-list .menu-item-name h5 {
  font-size: var(--fs-15);
  font-weight: var(--fw-500);
  color: var(--clr-yellow);
  margin-bottom: 0;
}
.menu-item-list .menu-item-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  row-gap: var(--gutter-15);
}
.menu-item-list .menu-item-quantity strong {
  font-size: var(--fs-15);
  font-weight: var(--fw-500);
  color: var(--clr-black-5);
  line-height: 1.4;
}
.menu-item-list .nice-number button {
  color: var(--clr-yellow);
  font-size: var(--fs-24);
  font-weight: var(--fw-500);
  padding: 0;
}
.menu-item-list .nice-number .number {
  border: none;
  background-color: transparent;
  color: var(--clr-black-1);
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  padding: 0 var(--gutter-5);
}

.menu-cart-footer {
  padding-top: 8.75rem;
}
.menu-cart-footer .menu-cart-amount-list {
  padding: var(--gutter-30) var(--gutter-30) var(--gutter-15);
  border-top: 1px dashed #CACACA;
}
.menu-cart-footer .menu-cart-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: var(--gutter-5);
}
.menu-cart-footer .menu-cart-amount h5 {
  font-size: var(--fs-15);
  font-weight: var(--fw-400);
  color: var(--clr-black-5);
}
.menu-cart-footer .menu-cart-amount strong {
  color: var(--clr-black-5);
  font-weight: var(--fw-400);
}
.menu-cart-footer .menu-cart-amount.sub-total h5 {
  color: var(--clr-black);
  font-weight: var(--fw-500);
}
.menu-cart-footer .menu-cart-amount.sub-total strong {
  color: var(--clr-black-1);
  font-weight: var(--fw-400);
}
.menu-cart-footer .menu-cart-amount.discount :is(h5, strong) {
  color: var(--clr-red);
  font-weight: var(--fw-400);
}
.menu-cart-footer .menu-cart-total {
  padding: var(--gutter-15) var(--gutter-30) var(--gutter-30);
}
.menu-cart-footer .menu-cart-total {
  border-top: 1px dashed #CACACA;
}
.menu-cart-footer .total-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.menu-cart-footer .total-amount h5 {
  margin-bottom: 0;
  font-size: var(--fs-15);
  font-weight: var(--fw-500);
  color: var(--clr-black);
}
.menu-cart-footer .total-amount strong {
  font-size: var(--fs-16);
  font-weight: var(--fw-600);
  color: var(--clr-black-1);
}
.menu-cart-footer .menu-cart-btn {
  margin-top: var(--gutter-20);
}
.menu-cart-footer .menu-cart-btn .btn {
  display: block;
}
.menu-cart-footer .discount {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.menu-cart-footer .discount h5 {
  cursor: pointer;
}

.coupon-field {
  position: relative;
  z-index: 1;
  margin-top: var(--gutter-10);
  display: none;
}
.coupon-field .form-control {
  padding: 0.875rem var(--gutter-15);
  border: 1px solid #E0E0E0;
  border-radius: 7px;
  color: var(--clr-black);
  font-size: var(--fs-15);
  font-weight: var(--fw-500);
  text-transform: uppercase;
}
.coupon-field .btn {
  top: 5px;
  right: 5px;
  position: absolute;
  padding: 0.5rem 1.25rem 0.5625rem;
}

.coupon-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.8125rem;
  border-radius: 1px;
  background: rgba(248, 136, 8, 0.03);
  border: 1px solid var(--clr-yellow);
  width: 100%;
  margin-top: var(--gutter-10);
  position: relative;
  display: none;
}
.coupon-submit::before, .coupon-submit::after {
  content: "";
  top: -7px;
  left: 55px;
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  line-height: 0.75rem;
  border-radius: 50%;
  text-align: center;
  background: var(--clr-white-1);
  border-bottom: 1px solid var(--clr-yellow);
}
.coupon-submit::after {
  top: auto;
  bottom: -7px;
  border-bottom-color: transparent;
  border-top: 1px solid var(--clr-yellow);
}

.coupon-left {
  border-right: 1px dashed var(--clr-yellow);
  padding-right: 0.8125rem;
}

.coupon-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.coupon-code {
  padding-left: var(--gutter-15);
}
.coupon-code span {
  display: block;
  text-transform: uppercase;
  font-size: var(--fs-14);
  font-weight: var(--fw-500);
  color: var(--clr-black);
  line-height: 1;
  margin-bottom: var(--gutter-5);
}
.coupon-code strong {
  display: block;
  font-size: var(--fs-14);
  font-weight: var(--fw-500);
  color: var(--clr-yellow);
  line-height: 1;
  cursor: pointer;
}

.coupon-price {
  display: block;
  font-size: var(--fs-14);
  font-weight: var(--fw-500);
  color: var(--clr-yellow);
  line-height: 1;
  background-color: rgba(248, 136, 8, 0.2);
  padding: 0.5rem 0.75rem;
  border-radius: 27px;
}

/*-------------------------------------------------------
20. About css
---------------------------------------------------------*/
.maan-about-section {
  padding: 50px 0px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .maan-about-section {
    padding: 110px 0px;
  }
}
.maan-about-section .maan-about-wrapper {
  position: relative;
  z-index: 1;
}
.maan-about-section .maan-about-wrapper .maan-about-image figure {
  margin: 0;
}
.maan-about-section .maan-about-wrapper .maan-about-image figure img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media screen and (min-width: 992px) {
  .maan-about-section .maan-about-wrapper .maan-about-image figure img {
    width: 100%;
    height: 581px;
  }
}
.maan-about-section .maan-about-wrapper .maan-about-image .maan-about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: rgba(29, 29, 29, 0.33);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}

/*-------------------------------------------------------
 Blog css
---------------------------------------------------------*/
.maan-blog-section {
  position: relative;
  padding: 50px 0px;
  overflow: hidden;
  z-index: 5;
}
@media screen and (min-width: 992px) {
  .maan-blog-section {
    padding: 0 0 110px;
  }
}
.maan-blog-section .maan-section-title h2 {
  margin-top: -12px;
}

.maan-blog-item {
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
.maan-blog-item .maan-post-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.maan-blog-item .maan-post-thumb::before {
  content: "";
  top: 0;
  left: -75%;
  position: absolute;
  width: 50%;
  height: 100%;
  z-index: 2;
  display: block;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
}
.maan-blog-item .maan-post-thumb img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 500ms linear 0s;
  transition: all 500ms linear 0s;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .maan-blog-item .maan-post-thumb img {
    width: 370px;
    height: 252px;
  }
}
.maan-blog-item .maan-post-thumb .maan-btn {
  bottom: 20px;
  left: 20px;
  position: absolute;
  background: var(--clr-white);
  border-radius: 30px;
  padding: 6px 14px;
  font-size: var(--fs-14);
  line-height: 14px;
  color: #fd4a36;
  font-weight: var(--fw-400);
  text-transform: capitalize;
}
.maan-blog-item .maan-blog-info {
  padding-top: 20px;
}
.maan-blog-item .maan-blog-info span {
  font-size: 14px;
  line-height: 22px;
  color: #8a8a8a;
  font-weight: 500;
  font-family: var(--ff-barlow);
  text-transform: capitalize;
}
.maan-blog-item .maan-blog-info .post-title {
  font-size: 20px;
  line-height: 29px;
  color: #262626;
  font-weight: 700;
  font-family: var(--ff-barlow);
  margin: 10px 0 0 0;
  display: block;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.maan-blog-item .maan-blog-info .post-title.maan-white {
  color: #fff;
}
.maan-blog-item:hover .maan-post-thumb::before, .maan-blog-item:focus .maan-post-thumb::before {
  -webkit-animation: shine 0.75s;
          animation: shine 0.75s;
}
.maan-blog-item:hover .maan-post-thumb img, .maan-blog-item:focus .maan-post-thumb img {
  -webkit-transform: scale3D(1.2, 1.2, 1);
          transform: scale3D(1.2, 1.2, 1);
}
.maan-blog-item:hover .maan-blog-info .post-title, .maan-blog-item:focus .maan-blog-info .post-title {
  color: #fd4a36;
}

/*blog section css start */
.maan-blog-section-two {
  padding: 50px 0;
}
@media screen and (min-width: 992px) {
  .maan-blog-section-two {
    padding: 110px 0;
  }
}

.maan-card-area .blog-card {
  margin-bottom: 30px;
}
.maan-card-area .maan-pagination {
  margin-top: 30px;
}

.maan-category-btn {
  font-family: var(--ff-poppins);
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 30px;
  text-align: center;
  padding: 0 7px;
  border-radius: 6px;
  background: var(--clr-yellow);
}
.maan-category-btn:hover, .maan-category-btn:focus {
  color: #fff;
  background: var(--clr-yellow);
}

.blog-card {
  display: block;
  width: 100%;
}
.blog-card .card-thumb {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: -60px;
}
.blog-card .card-thumb::before {
  content: "";
  top: 0;
  left: -75%;
  position: absolute;
  width: 50%;
  height: 100%;
  z-index: 2;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
}
.blog-card .card-thumb img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.blog-card .card-thumb .maan-category-btn {
  top: 20px;
  left: 20px;
  position: absolute;
}
.blog-card .card-description {
  background: #fff;
  padding: 15px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 0 20px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  .blog-card .card-description {
    padding: 30px 20px;
  }
}
.blog-card .card-description .author-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.blog-card .card-description .author-date a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #787878;
  text-transform: capitalize;
}
@media screen and (min-width: 1200px) {
  .blog-card .card-description .author-date a {
    font-size: 14px;
  }
}
.blog-card .card-description .author-date a span {
  display: inline-block;
  margin-right: 7px;
}
.blog-card .card-description .author-date a i {
  color: var(--clr-yellow);
  font-size: 16px;
}
.blog-card .card-description .author-date a i.fa-calendar-alt {
  font-size: 18px;
}
.blog-card .card-description .post-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #191919;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
  margin-bottom: 20px;
  text-transform: capitalize;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (min-width: 1200px) {
  .blog-card .card-description .post-title {
    font-size: 20px;
    line-height: 1.4;
  }
}
.blog-card .card-description .post-title::after {
  content: "";
  top: 6px;
  left: 0;
  position: absolute;
  width: 1px;
  height: 27px;
  display: block;
  background: var(--clr-yellow);
}
.blog-card .card-description .post-title::before {
  content: "";
  bottom: 10px;
  left: 0;
  position: absolute;
  width: 1px;
  height: 7px;
  display: block;
  background: var(--clr-yellow);
}
.blog-card .card-description .post-title:hover, .blog-card .card-description .post-title:focus {
  color: var(--clr-yellow);
}
.blog-card .card-description .link {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  font-size: 20px;
  border: 1px solid #DCDCDC;
  color: #191919;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.blog-card .card-description .link:hover, .blog-card .card-description .link:focus {
  border-color: var(--clr-yellow);
  background: var(--clr-yellow);
  color: #fff;
}
.blog-card:hover .card-thumb::before, .blog-card:focus .card-thumb::before {
  -webkit-animation: shine 0.75s;
          animation: shine 0.75s;
}
.blog-card:hover .card-thumb img, .blog-card:focus .card-thumb img {
  -webkit-transform: scale3D(1.2, 1.2, 1);
          transform: scale3D(1.2, 1.2, 1);
}
.blog-card:hover .card-description .post-title, .blog-card:focus .card-description .post-title {
  color: var(--clr-yellow);
}

.maan-pagination .page-item .page-link {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  outline: none;
  background: #fff;
  height: 30px;
  width: 30px;
  border-radius: 3px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  color: #E3E3E3;
  border: 1px solid #E3E3E3;
  padding: 0;
  margin-right: 8px;
}
.maan-pagination .page-item:hover .page-link, .maan-pagination .page-item:focus .page-link, .maan-pagination .page-item:active .page-link {
  background: var(--clr-yellow);
  color: #fff;
  border-color: var(--clr-yellow);
}

.maan-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.maan-pagination li a {
  font-family: var(--ff-barlow);
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  outline: none;
  background: #fff;
  height: 30px;
  width: 30px;
  padding: 5px;
  display: block;
  border-radius: 3px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  color: #E3E3E3;
  border: 1px solid #E3E3E3;
  padding: 0;
  margin-right: 8px;
}
.maan-pagination li:hover a, .maan-pagination li:focus a, .maan-pagination li.active a {
  background: var(--clr-yellow);
  color: #fff;
  border-color: var(--clr-yellow);
}

.maan-wedgets-area .widget {
  margin-bottom: 40px;
}

.widget {
  padding: 30px 15px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1200px) {
  .widget {
    padding: 30px 33px;
  }
}
.widget .wedgets-title {
  display: block;
  position: relative;
  font-size: 20px;
  font-weight: 600;
  color: #191919;
  line-height: 30px;
  padding-bottom: 8px;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.widget .wedgets-title::after {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  display: block;
  height: 1px;
  width: 50px;
  background: var(--clr-yellow);
}
.widget .wedgets-title::before {
  content: "";
  bottom: 0;
  left: 55px;
  position: absolute;
  display: block;
  height: 1px;
  width: 6x;
  background: #054055;
}
.widget .maan-input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.widget .maan-input-group input {
  width: 100%;
  font-size: 16px;
  line-height: 30px;
  padding: 10px 20px;
  color: #565872;
  background: #F4F6F9;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.widget .maan-input-group input::-webkit-input-placeholder {
  color: #565872;
}
.widget .maan-input-group input::-moz-placeholder {
  color: #565872;
}
.widget .maan-input-group input:-ms-input-placeholder {
  color: #565872;
}
.widget .maan-input-group input::-ms-input-placeholder {
  color: #565872;
}
.widget .maan-input-group input::placeholder {
  color: #565872;
}
.widget .maan-input-group .maan-btn {
  height: 50px;
  min-width: 50px;
  text-align: center;
  line-height: 50px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  color: var(--clr-white);
  background: var(--clr-yellow);
}
.widget.categories li {
  display: block;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.widget.categories li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #222429;
  line-height: 26px;
  text-transform: capitalize;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.widget.categories li a:hover, .widget.categories li a:focus {
  color: var(--clr-yellow);
  padding-left: 10px;
}
.widget.maan-popular-tags li {
  display: inline-block;
  margin: 5px;
}
.widget.maan-popular-tags li a {
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  background: #F4F6F9;
  color: #565872;
  padding: 5px 20px;
  border-radius: 40px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.widget.maan-popular-tags li a:hover, .widget.maan-popular-tags li a:focus {
  background: var(--clr-yellow);
  color: #fff;
}

.blog-post-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 2px dashed #C4C4C4;
}
.blog-post-categories:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.blog-post-categories .post-thumb {
  display: block;
  overflow: hidden;
  border-radius: 5px;
  margin-right: 13px;
  min-width: 75px;
  height: 80px;
  position: relative;
}
.blog-post-categories .post-thumb::before {
  content: "";
  top: 0;
  left: -75%;
  position: absolute;
  width: 50%;
  height: 100%;
  display: block;
  z-index: 2;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
}
.blog-post-categories .post-thumb img {
  min-width: 80px;
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  -webkit-transition: all 500ms linear 0s;
  transition: all 500ms linear 0s;
}
.blog-post-categories .post-content .post-title {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: #3B3B3B;
}
.blog-post-categories .post-content .post-title:hover, .blog-post-categories .post-content .post-title:focus {
  color: var(--clr-yellow);
}
.blog-post-categories .post-content .post-date {
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
  color: #565872;
}
.blog-post-categories:hover .post-thumb::before, .blog-post-categories:focus .post-thumb::before {
  -webkit-animation: shine 0.75s;
          animation: shine 0.75s;
}
.blog-post-categories:hover .post-thumb img, .blog-post-categories:focus .post-thumb img {
  -webkit-transform: scale3D(1.2, 1.2, 1);
          transform: scale3D(1.2, 1.2, 1);
}

.instagram-post.grid-3 {
  display: -ms-grid;
  display: grid;
  grid-gap: 1rem;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(3, 1fr);
}
.instagram-post .instagram-thumb {
  position: relative;
  margin: 0;
  overflow: hidden;
  display: block;
}
.instagram-post .instagram-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (min-width: 1200px) {
  .instagram-post .instagram-thumb img {
    width: 95px;
    height: 86px;
  }
}
.instagram-post .instagram-thumb .link {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  background: rgba(255, 170, 24, 0.7);
  color: #fff;
  opacity: 0;
}
.instagram-post .instagram-thumb:hover .link, .instagram-post .instagram-thumb:focus .link {
  opacity: 1;
}
.instagram-post .instagram-thumb:hover img, .instagram-post .instagram-thumb:focus img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.post-details-title {
  margin-bottom: 40px;
}
.post-details-title h3 {
  color: #191919;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .post-details-title h3 {
    font-size: 36px;
  }
}
.post-details-title .author-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-details-title .author-area .maan-btn {
  font-family: var(--ff-poppins);
  background: var(--clr-yellow);
  font-size: var(--fs-14);
  display: inline-block;
  height: 37px;
  min-width: 130px;
  border-radius: 4px;
  text-align: center;
  line-height: 37px;
  color: #fff;
  margin-right: 16px;
}
@media screen and (min-width: 576px) {
  .post-details-title .author-area .maan-btn {
    margin-right: var(--gutter-30);
  }
}
.post-details-title .author-area .author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.post-details-title .author-area .author .author-thumb img {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-details-title .author-area .author .content a {
  display: block;
}
.post-details-title .author-area .author .content .title {
  font-family: var(--ff-poppins);
  font-size: 12px;
  font-weight: 500;
  line-height: 13px;
  color: var(--clr-yellow);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 576px) {
  .post-details-title .author-area .author .content .title {
    font-size: 15px;
  }
}
.post-details-title .author-area .author .content .date {
  font-family: var(--ff-poppins);
  display: block;
  font-size: 12px;
  font-weight: var(--fw-400);
  line-height: 1;
  color: #2E2E2E;
}

.maan-details-description {
  margin-bottom: 50px;
}
.maan-details-description p {
  font-family: var(--ff-barlow);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  color: #565872;
  margin-bottom: 20px;
}

.market-industry-thumb img {
  width: 100%;
  border-radius: 8px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.market-industry-thumb .content {
  position: relative;
  background: #222429;
  border-radius: 5px;
  z-index: 1;
  margin: 0 15px;
  padding: 30px;
  margin: 0 50px;
}
@media screen and (min-width: 768px) {
  .market-industry-thumb .content {
    margin-top: -50px;
    padding: 15px;
  }
}
.market-industry-thumb .content::after {
  position: absolute;
  content: "";
  display: block;
  left: 50%;
  top: 0;
  width: 90%;
  height: 2px;
  background: var(--clr-yellow);
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.market-industry-thumb .content p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}
.market-industry-thumb .content h4 {
  font-family: var(--ff-barlow);
  font-weight: italic;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .market-industry-thumb .content h4 {
    font-size: 24px;
    line-height: 40px;
  }
}
.market-industry-thumb .images-thumb {
  overflow: hidden;
  display: block;
  border-radius: 8px;
  position: relative;
}
.market-industry-thumb .images-thumb::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 1;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.market-industry-thumb:hover .images-thumb::before, .market-industry-thumb:focus .images-thumb::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}
.market-industry-thumb:hover .images-thumb img, .market-industry-thumb:focus .images-thumb img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.toproviding-customers {
  margin-top: 30px;
}
.toproviding-customers h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #191919;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .toproviding-customers h3 {
    font-size: 24px;
  }
}
.toproviding-customers P {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #565872;
  margin-bottom: 20px;
}
.toproviding-customers ul {
  margin-bottom: 10px;
}
.toproviding-customers ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #565872;
  padding: 2px 0;
  padding-left: 20px;
  position: relative;
}
.toproviding-customers ul li::after {
  position: absolute;
  content: "";
  display: block;
  background: #2E2E2E;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.toproviding-customers .thumb {
  margin-bottom: 30px;
  margin-top: 30px;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  position: relative;
}
.toproviding-customers .thumb::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.toproviding-customers .thumb img {
  width: 100%;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.toproviding-customers .thumb:hover::before, .toproviding-customers .thumb:focus::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}
.toproviding-customers .thumb:hover img, .toproviding-customers .thumb:focus img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.maan-details-tags-area {
  display: block;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 576px) {
  .maan-details-tags-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.maan-details-tags-area .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.maan-details-tags-area .tags h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-yellow);
  margin: 0;
}
.maan-details-tags-area .tags ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.maan-details-tags-area .tags ul li .maan-btn {
  font-family: var(--ff-poppins);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: #757575;
  text-align: center;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 30px;
  background: rgba(5, 64, 85, 0.12);
}
.maan-details-tags-area .tags ul li .maan-btn:hover, .maan-details-tags-area .tags ul li .maan-btn:focus {
  background: var(--clr-yellow);
  color: #fff;
}
.maan-details-tags-area .social-share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.maan-details-tags-area .social-share li a {
  font-size: 16px;
  color: #222429;
  display: block;
}
.maan-details-tags-area .social-share li a:hover, .maan-details-tags-area .social-share li a:focus {
  color: var(--clr-yellow);
}

.maan-button-araa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(112, 112, 112, 0.35);
  margin-top: 60px;
  padding-bottom: 110px;
}
.maan-button-araa .maan-btn {
  font-family: var(--ff-poppins);
  width: 100%;
  text-align: center;
  max-width: 120px;
  font-size: 14px;
  font-weight: 500;
  height: 35px;
  background: var(--clr-yellow);
  color: var(--clr-white);
  border-radius: 20px;
  line-height: 35px;
  border: 1px solid var(--clr-yellow);
}
.maan-button-araa .maan-btn:hover, .maan-button-araa .maan-btn:focus {
  background: var(--clr-white);
  color: var(--clr-yellow);
}
.maan-button-araa .prev-post-btn {
  font-family: var(--ff-poppins);
  max-width: 120px;
  border: 1px solid #F88808;
  background: none;
  color: #F88808;
  line-height: 32px;
}
.maan-button-araa .prev-post-btn:hover, .maan-button-araa .prev-post-btn:focus {
  background: #F88808;
  color: #fff;
}

.maan-comment-area .comment-title {
  font-size: 30px;
  font-weight: 700;
  color: #191919;
  line-height: 30px;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 64px;
}
.maan-comment-area .comment-title::after {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 50px;
  background: #054055;
}
.maan-comment-area .comment-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.35);
  margin-bottom: 40px;
}
.maan-comment-area .comment-author.maan-border-none {
  border: none;
  padding: 0;
  margin: 0;
}
.maan-comment-area .comment-author .comment-author-reply {
  max-width: 640px;
  margin-left: auto;
  margin-right: 0;
}
.maan-comment-area .comment-author .author-thumb {
  margin-right: 20px;
}
.maan-comment-area .comment-author .author-thumb img {
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
}
@media screen and (min-width: 576px) {
  .maan-comment-area .comment-author .author-thumb img {
    height: 97px;
    min-width: 97px;
  }
}
.maan-comment-area .comment-author .description .author-title {
  margin-bottom: 14px;
}
.maan-comment-area .comment-author .description .author-title small {
  display: block;
  font-size: 14px;
  color: #565872;
  margin-bottom: 5px;
}
.maan-comment-area .comment-author .description .author-title .author-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #222222;
  line-height: 26px;
}
.maan-comment-area .comment-author .description .author-title .author-name:hover, .maan-comment-area .comment-author .description .author-title .author-name:focus {
  color: #B97654;
}
.maan-comment-area .comment-author .description .comment {
  padding: 15px 20px;
  background: #F0F4F9;
  border-radius: 5px;
  margin-bottom: 12px;
}
.maan-comment-area .comment-author .description .comment p {
  font-size: 16px;
  color: #565872;
  line-height: 30px;
}
.maan-comment-area .comment-author .description .maan-reply a {
  display: inline-block;
  margin: 0 15px;
}
.maan-comment-area .comment-author .description .maan-reply .like {
  font-size: 14px;
  font-weight: 500;
  color: #2E2E2E;
}
.maan-comment-area .comment-author .description .maan-reply .like:hover, .maan-comment-area .comment-author .description .maan-reply .like:focus {
  color: var(--clr-yellow);
}
.maan-comment-area .comment-author .description .maan-reply .reply {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-yellow);
}

.maan-comment-form-area {
  margin-top: 70px;
}
.maan-comment-form-area form input {
  font-family: var(--ff-poppins);
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.35);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #565872;
  padding: 15px;
  margin-bottom: 40px;
}
.maan-comment-form-area form input::-webkit-input-placeholder {
  color: #565872;
}
.maan-comment-form-area form input::-moz-placeholder {
  color: #565872;
}
.maan-comment-form-area form input:-ms-input-placeholder {
  color: #565872;
}
.maan-comment-form-area form input::-ms-input-placeholder {
  color: #565872;
}
.maan-comment-form-area form input::placeholder {
  color: #565872;
}
.maan-comment-form-area form textarea {
  font-family: var(--ff-poppins);
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #565872;
  padding: 15px;
  margin-bottom: 0;
  height: 260px;
  background: #FBFBFB;
  border: 1px solid #EBEBEB;
}
.maan-comment-form-area form textarea::-webkit-input-placeholder {
  color: #565872;
}
.maan-comment-form-area form textarea::-moz-placeholder {
  color: #565872;
}
.maan-comment-form-area form textarea:-ms-input-placeholder {
  color: #565872;
}
.maan-comment-form-area form textarea::-ms-input-placeholder {
  color: #565872;
}
.maan-comment-form-area form textarea::placeholder {
  color: #565872;
}

.maan-news-blog-inner .maan-blog-section-heading {
  margin-bottom: 20px;
}
.maan-news-blog-inner .maan-news-blogs {
  margin-top: 30px;
}

.maan-blog-section-heading {
  max-width: 460px;
  margin: 0 auto;
}
.maan-blog-section-heading .title {
  text-align: center;
}
.maan-blog-section-heading .title::after {
  left: 30%;
}

.maan-news-blogs .blog-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}
.maan-news-blogs .blog-thumb img {
  width: 100%;
  border-radius: 8px;
}
.maan-news-blogs .blog-thumb .maan-blog-ctg-btn {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.maan-news-blogs .maan-blog-content .author-date {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #8A8A8A;
  margin-bottom: 15px;
}
.maan-news-blogs .maan-blog-content .title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 29px;
  color: #262626;
  margin-bottom: 20px;
}
.maan-news-blogs .maan-blog-content .title:hover, .maan-news-blogs .maan-blog-content .title:focus {
  color: #C40E0E;
}

.maan-blog-ctg-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #C40E0E;
  padding: 2px 10px;
  border-radius: 30px;
  background: #fff;
}

/* blog section css end */
@media (max-width: 991px) {
  .maan-comment-form-area {
    margin-bottom: 30px;
  }

  .blog-post-categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .maan-card-area {
    margin-bottom: 50px;
  }

  .maan-blog-section .maan-section-title h3 {
    line-height: 23px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .market-industry-thumb .content {
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .social-share {
    margin-top: 30px;
  }

  .maan-comment-form-area {
    margin-bottom: 30px;
  }

  .maan-details-tags-area .tags ul li .maan-btn {
    margin-bottom: 10px;
  }

  .maan-button-araa {
    padding-bottom: 30px;
  }

  .maan-post-btn {
    margin-top: 0px;
  }

  .maan-comment-area .comment-title {
    margin-bottom: 35px;
  }

  .maan-comment-form-area form textarea {
    margin-bottom: 30px;
  }
}
@media (max-width: 400px) {
  .maan-about-section .maan-section-title h3 {
    margin-top: -4px;
  }

  .maan-blog-section .maan-section-title h3 {
    line-height: 23px;
    margin-top: -4px;
  }
}
/* contact css start */
.maan-contact-section {
  padding: 50px 0;
  position: relative;
}
@media screen and (min-width: 992px) {
  .maan-contact-section {
    padding: 110px 0;
  }
}
.maan-contact-section .maan-contact-shape {
  right: 14%;
  bottom: 23%;
  position: absolute;
  left: auto;
  z-index: -1;
}
.maan-contact-section .maan-contact-shape img {
  width: 200px;
  height: 170px;
}

.contact-form h3 {
  font-family: var(--font-jost);
  font-size: 30px;
  line-height: 28px;
  font-weight: 600;
  color: var(--clr-acc);
  margin-bottom: 15px;
}
.contact-form p {
  font-family: var(--font-jost);
  font-size: var(--fs-16);
  font-weight: 400;
  color: var(--clr-acc);
  line-height: 23px;
  margin-bottom: 40px;
}
.contact-form form input {
  font-family: var(--font-jost);
  width: 100%;
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 23px;
  color: #9D9D9D;
  padding: 18px 20px;
  border-radius: 4px;
  background: rgba(243, 243, 243, 0.6);
  border: 1px solid #ECECEC;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 30px;
}
.contact-form form input::-webkit-input-placeholder {
  color: #9D9D9D;
}
.contact-form form input::-moz-placeholder {
  color: #9D9D9D;
}
.contact-form form input:-ms-input-placeholder {
  color: #9D9D9D;
}
.contact-form form input::-ms-input-placeholder {
  color: #9D9D9D;
}
.contact-form form input::placeholder {
  color: #9D9D9D;
}
.contact-form form textarea {
  font-family: var(--font-jost);
  width: 100%;
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 23px;
  color: #9D9D9D;
  padding: 18px 20px;
  border-radius: 4px;
  background: rgba(243, 243, 243, 0.6);
  border: 1px solid #ECECEC;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 30px;
  height: 166px;
}
.contact-form form textarea::-webkit-input-placeholder {
  color: #9D9D9D;
}
.contact-form form textarea::-moz-placeholder {
  color: #9D9D9D;
}
.contact-form form textarea:-ms-input-placeholder {
  color: #9D9D9D;
}
.contact-form form textarea::-ms-input-placeholder {
  color: #9D9D9D;
}
.contact-form form textarea::placeholder {
  color: #9D9D9D;
}
.contact-form form textarea textarea:focus {
  background-color: #ffeef4 !important;
  color: #0A0B2E !important;
}
.contact-form form .custom-check-btn {
  font-family: var(--font-jost);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: var(--fs-16);
  font-weight: 400;
  color: #9D9D9D;
  gap: 10px;
}
.contact-form form .custom-check-btn input {
  font-family: var(--font-jost);
  height: 18px;
  width: 18px;
  margin: 0;
  background: var(--clr-btn);
}
.contact-form form .custom-check-btn span {
  color: var(--clr-btn);
  font-weight: 600;
}
.contact-form form .custom-check-btn a {
  color: var(--clr-btn);
  font-weight: 600;
}
.contact-form form .custom-check-btn a:hover, .contact-form form .custom-check-btn a:focus {
  text-decoration: underline;
}

.maan-contact-content {
  border-radius: 6px;
  background: var(--clr-white);
  -webkit-box-shadow: 0 10px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 16px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
@media screen and (min-width: 576px) {
  .maan-contact-content {
    padding: 30px;
  }
}
.maan-contact-content .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.maan-contact-content .contact-item .icon {
  margin-right: 20px;
  margin-top: 3px;
}
.maan-contact-content .contact-item .icon i {
  color: #B97654;
}
.maan-contact-content .contact-item .icon i.phone {
  -webkit-transform: rotate(100deg);
          transform: rotate(100deg);
  position: relative;
  top: 2px;
  margin-right: 10px;
}
.maan-contact-content .contact-item .content h4 {
  font-family: var(--font-jost);
  font-size: var(--fs-18);
  font-weight: 600;
  line-height: 26px;
  color: var(--clr-acc);
  margin-bottom: 5px;
}
.maan-contact-content .contact-item .content p {
  font-family: var(--font-jost);
  font-size: var(--fs-16);
  font-weight: 400;
  color: #545454;
  line-height: 23px;
}
.maan-contact-content .contact-item .content ul {
  margin-top: 15px;
}
.maan-contact-content .contact-item .content ul li {
  display: inline-block;
}
.maan-contact-content .contact-item .content ul li a {
  display: block;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  background: rgba(248, 136, 8, 0.1);
  color: var(--clr-btn);
  text-align: center;
  line-height: 28px;
  margin-right: 5px;
}
.maan-contact-content .contact-item .content ul li a:hover, .maan-contact-content .contact-item .content ul li a:focus {
  background: var(--clr-btn);
  color: var(--clr-white);
}

.follow-us {
  margin-left: 30px;
}

.maap-contact-map {
  display: block;
  overflow: hidden;
}
.maap-contact-map iframe {
  width: 100%;
  height: 622px;
}

.forgot-password-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.forgot-password-content img {
  margin-bottom: 70px;
}
.forgot-password-content h3 {
  margin-bottom: 10px;
  font-family: var(--ff-poppins);
  font-size: var(--fs-45);
}
.forgot-password-content p {
  font-family: var(--ff-poppins);
  color: var(--clr-black-7);
  margin-bottom: 30px;
}
.forgot-password-content form {
  width: 100%;
}
.forgot-password-content .form-control {
  width: 100%;
  height: 70px;
  border-radius: 5px;
  padding: 0 20px;
  font-family: var(--ff-poppins);
  font-size: var(--fs-20);
  color: #A2A2A2;
  border: 1px solid #D4D4D4;
  background: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
          box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  margin-bottom: 20px;
}
.forgot-password-content .btn {
  display: block;
  width: 100%;
}
.forgot-password-content .back-to-page {
  font-size: var(--fs-18);
  font-family: var(--ff-poppins);
  margin-top: 50px;
}
.forgot-password-content .back-to-page a {
  color: var(--clr-yellow);
  text-decoration: none;
}

.password-modal .modal-dialog {
  max-width: 600px;
}
.password-modal .forgot-password-content {
  padding: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .password-modal .forgot-password-content {
    padding: 50px 40px 20px;
  }
}
.password-modal .forgot-password-content img {
  margin-bottom: 70px;
  width: 215px;
}
.password-modal .forgot-password-content h3 {
  font-size: var(--fs-32);
  font-weight: var(--fw-400);
}
/*# sourceMappingURL=style.css.map */