@import url("https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap");
/*------- Font Family Starts -------*/
@font-face {
  font-family: "Amithen";
  src: url("../fonts/Gin-Regular.ttf");
}
@font-face {
  font-family: "GinRegular";
  src: url("../fonts/Gin-Regular.ttf");
}
/*------- Font Family Ends -------*/

/* ------------ Reset CSS starts ------------ */
* {
  text-decoration: none;
  list-style: none;
}

:root {
  --fs-xl: 8rem;
  --fs-600: 5rem;
  --fs-500: 4rem;
  --fs-400: 1.2rem;
  --fs-300: 1rem;
}

html {
  letter-spacing: 1px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}
ul,
li {
  list-style: none;
}
a,
a:hover,
a:focus {
  outline: 0;
  text-decoration: none;
  -webkit-transition: 0.5s linear;
  -moz-transition: 0.5s linear;
  -ms-transition: 0.5s linear;
  -o-transition: 0.5s linear;
  transition: 0.5s linear;
}
h3 {
  font-size: 1.3rem;
}
body {
  font-family: "Oxygen", sans-serif;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: 0.3vw;
}
html::-webkit-scrollbar-thumb {
  background-color: #bf2600;
}
html::-webkit-scrollbar-track {
  background-color: #f0491f;
}
html::-webkit-scrollbar-thumb:hover {
  background-color: #009d57;
} 

/* --------------- Reset CSS ends -------------- */

/* ---------- comman CSS start ------------ */
.container--fluid__full {
  padding: 100px;
}
.container--fluid {
  padding: 50px 50px;
}
.container--fluid__right {
  padding: 100px 0 100px 50px;
}
.container--fluid__right-left {
  padding: 0 50px;
}

.airoplan-down {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background-color: #009d57;
  animation: animate 2s linear infinite;
  cursor: pointer;
  z-index: 5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.airoplan-down i {
  font-size: 1rem;
  padding: 10px;
  color: #fff;
}
@keyframes animate {
  0% {
    bottom: 3%;
    opacity: 1;
  }

  100% {
    bottom: 5%;
    opacity: 1;
  }
}

.choose-city {
    font-size: 4.5rem;
}

h1 {
  font-family: "Amithen";
  font-size: var(--fs-600);
}
h2 {
  font-family: "Amithen";
  font-size: var(--fs-600);
}
.mexican--flex {
  display: flex;
}
.mexican--aling-items-center {
  align-items: center;
}
.mexican--sm {
  display: none;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mexican--sm-swiperarrow-next {
  position: absolute;
  top: 5%;
  right: 10px;
}
.mexican--sm-swiperarrow-prev {
  position: absolute;
  top: 5%;
}

.mexican--btn-white-sm {
  background-color: #fff;
}
.mexican--btn-yellow-sm {
  background-color: #f2d51f;
}
.mexican--btn-red-sm {
  background-color: #f0491f;
}
.mexican--btn-green-light {
  background-color: #addf6b;
}
/* ---------- comman CSS ends ------------ */

/* -------------- main menu CSS starts -------------- */
.main-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
  background-color: #fcf972;
  height: 80px;
  left: 0;
  position: fixed;
  top: -80px;
  width: 100%;
  z-index: 999;
  transition: all 0.5s;
}

.main-menu-navbar {
  max-width: 100%;
  margin: auto 0;
}
.main-menu-navbar ul {
  display: flex;
}
.main-menu-navbar-ul > li {
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.main-menu-navbar-ul li a {
  color: #000 !important;
}
.main-menu-navbar-ul > ul > li {
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.main-menu-navbar-ul > li > a {
  color: #000;
  text-decoration: none;
  font-family: "GinRegular";
  font-weight: 300;
  font-size: 1rem;
}
.main-menu-navbar-ul > ul > li > a {
  color: #000;
  text-decoration: none;
  font-family: "GinRegular";
  font-weight: 300;
  font-size: 1rem;
}
.main-menu-navbar-ul > li > a:active {
  color: #bf2600;
}
.main-menu-navbar-ul > li > a.active {
  color: #bf2600;
}
.main-menu-navbar-ul > li > a:hover {
  color: #bf2600;
}

.main-menu-navbar-ul a:active {
  color: #bf2600 !important;
}
.main-menu-navbar-ul  a.active {
  color: #bf2600 !important;
}
.main-menu-navbar-ul  a:hover {
  color: #bf2600 !important;
}


.main-menu-navbar ul ul {
  position: absolute;
  top: 60px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-out;
  background-color: #fcf972;
  /* box-shadow: 0 6px 10px rgb(0 0 0 / 0.2); */
  opacity: 0;
  visibility: hidden;
}

.main-menu-navbar ul li:hover > ul {
  /* display: block; */
  visibility: visible;
  display: block;
  opacity: 1;
  transition: all 0.3s ease-out;
}
.main-menu-navbar ul ul li {
  width: auto;
  padding: 15px;
  float: none;
  display: list-item;
  position: relative;
}
.main-menu-navbar ul ul li a {
  color: #000;
  text-decoration: none;
  font-family: "GinRegular", sans-serif;
  font-size: 1rem;
}

.main-menu-navbar ul ul > li > a:active {
  color: #0078b9;
}
.main-menu-navbar ul ul > li > a.active {
  color: #0078b9;
}
.main-menu-navbar ul ul > li > a:hover {
  color: #0078b9;
}


.order-btn button{
  background-color: #000 !important;
  color: #fff !important;
  padding: 10px 30px;
  cursor: pointer;
  font-family: "GinRegular";
  font-weight: 300;
  font-size: 1rem;
}

.logo {
  width: 80px;
  height: 80px;
  padding: 10px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.right-menu {
  display: none;
  justify-content: center;
  align-items: center;
}
.right-menu i {
  width: 100%;
  color: #000;
  font-size: 1.6rem;
}
/* -------------- main menu CSS ends -------------- */

/* ------------- footer section CSS starts ------------ */
.footer--container {
  position: relative;
  z-index: 10;
}
.footer--dark {
  background-color: #004024;
  color: #fff;
}
.footer--light {
  background-color: #004024;
  color: #fff;
}
.footer--second-container {
  padding: 20px 50px;
}
.footer__link,
.footer__link a {
  text-decoration: none;
  color: #fff;
}

.footer--col-1 {
  max-width: 350px;
}
.footer--col-1__title {
  font-family: "Oxygen", sans-serif;
  font-weight: 700;
  padding: 40px 0 10px;
}
.footer__menu,.footer--col-3__title {
  font-family: "GinRegular";
  font-weight: 300;
}

.footer__social {
  /* font-family: "Oxygen", sans-serif;
  font-weight: 300; */
}

.footer__menu li {
  font-size: var(--fs-400);
}
.footer__img {
  width: 250px;
}
.footer__img img {
  width: 100%;
}
/* ------------- footer section CSS ends --------------- */

/* -------------- home page starts ------------------ */
/* btn CSS starts */
.mexican--btn__white {
  z-index: 2;
  position: relative;
}
.mexican--btn__yellow {
  background-color: #f2d51f;
}
.mexican--btn__red {
  background-color: #F0491F;
}

.mexican--btn {
  position: relative;
  font-family: "Oxygen", sans-serif;
  transform: translateX(-35px);
  z-index: 10;
}
.mexican--btn:hover {
  color: #000;
}

.mexican--btn-white {
  position: relative;
  font-family: "Oxygen", sans-serif;
  transform: translateX(-35px);
  z-index: 10;
}
.mexican--btn-white:hover {
  color: #fff;
}

.mexican--btn__svg-container {
  position: relative;
  z-index: 5;
}
.mexican--btn__svg {
  width: 100%;
  height: 100%;
}
#circle {
  z-index: 2;
}

#circle2 {
  z-index: 1;
}
.mexican--link__dark {
  text-decoration: none;
  color: #000;
}
.mexican--link__dark-contact {
  color: #000 !important;
}
.mexican--link__white {
  text-decoration: none;
  color: #fff;
}

/* btn CSS ends */

/* franchisee CSS starts */
.info-section--article {
  position: relative;
}
.info-section__about__catus {
  position: absolute;
  right: -5%;
  top: 0%;
  width: 80px;
}
.info-section__about__catus img {
  width: 100%;
}
.info-section__title {
  padding-bottom: 30px;
  text-align: center;
}
.info-section__title__white {
  color: #fff;
}
.info-section__title__green {
  color: #A9CD39;
}
/* .info-section__title__green-dark {
  color: #009d57; 
} */
.info-section__title__black {
  color: #000;
}
.info-section__title__red {
  color: #f0491f;
}
.info-section--body {
  position: relative;
  max-width: 850px;
  margin: auto;
}
.info-section--body-1 {
  position: relative;
  max-width: 850px;
  margin: auto;
}
.info-section--body-width {
  position: relative;
  max-width: 850px;
  margin: auto;
}
.info-section--body_kitchen {
  position: relative;
  max-width: 950px;
  margin: auto auto auto auto;
}

.info-section--body__img {
  position: absolute;
  top: 0%;
  left: 0;
  width: 120px;
}
.info-section--body__img img {
  width: 100%;
}
.icon--size-2 {
  width: 300px;
  position: relative;
  top: 0%;
  padding: 20px 0;
}
.icon--size-3 {
  width: 300px;
  position: relative;
  top: 0%;
  left: 0%;
  padding: 20px 0;
}

.icon--size-3-hero {
  width: auto;
  position: relative;
}

.icon--size-cloud {
  width: 300px;
  position: relative;
  top: 0%;
  padding: 20px 0;
}
.info-section--body__btn {
  text-align: right;
  padding-top: 50px;
}
/* franchisee CSS ends */

/* about us CSS starts */
.about--section__bg {
  background: url("../images/home-service-bg.png") no-repeat;
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
}
.about--section {
  background-color: #fff;
  position: relative;
  padding: 50px 0px 50px;
  max-width: 950px;
  margin: auto;
}
.about--section__body {
  width: 950px;
  position: relative;
}
.about--section__icon {
  position: absolute;
  bottom: -10%;
  right: -10%;
}

.about--section__body img {
  width: 100%;
  object-fit: cover;
}
/* about us CSS ends */

/* quality section CSS starts */
.quality--section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #a9cd39;
}
.quality--section__body {
  text-align: center;
}
.quality--section__hat {
  max-width: 200px;
  margin: auto;
}
.quality--section__hat img {
  width: 100%;
}
.quality--section__title {
  padding: 20px 0 50px;
}
.quality--section__text {
  max-width: 650px;
  margin: auto;
}
/* quality section CSS ends */

/* service section CSS starts */
.service--section {
  background: url("../images/home-service-bg.png") no-repeat;
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
  padding: 200px 100px;
}
.service--col-1__img-1 {
  width: 450px;
  position: relative;
}
.service--col-1__img-2 {
  width: 750px;
  position: relative;
}
.service--col-2__img {
  width: 450px;
  position: relative;
}
.service--section__icon-1 {
  position: absolute;
  top: -14%;
  right: -14%;
}
.service--section__icon-2 {
  position: absolute;
  top: -20%;
  right: -14%;
}
.service--section__icon-3 {
  position: absolute;
  top: -14%;
  right: -14%;
}

.service--section__icon-4 {
  position: absolute;
  top: 10%;
  right: 10%;
  transform: translateX(-10%);
  z-index: 5;
}

.service--col-1__img-1 img {
  width: 100%;
}
.service--col-1__img-2 img {
  width: 100%;
}
.service--col-2__img img {
  width: 100%;
}

.service--col-1__btn {
  padding: 40px 0 0 0px;
}

.service--col-2 {
  display: flex;
  justify-content: flex-end;
  margin-top: -80px;
}
.service--col-1__body-2 {
  margin-left: 20px;
  padding-top: 50px;
  margin: auto;
  width: auto;
}
/* service section CSS ends */

/* our food section CSS starts */
.food--section {
  position: relative;
  /* height: 100vh; */
  background-color: #f2d51f;
  background-image: url("../images/delectable_absolute.png");
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
  /* padding: 200px 100px; */
}
.food-article__chilli-img {
  width: 200px;
  position: absolute;
  top: -5%;
  right: 10%;
}
.food-article__chilli-img img {
  width: 100%;
}

.food--swiper {
  display: flex;
  position: sticky;
  padding: 30px 50px 0 50px;
}
.food--swiper__body {
  display: block !important;
}
.cloud--swiper, .cloud--swiper1, .gourmet--swiper {
  padding: 0 50px;
}

.food--article__body {
  position: relative;
}
.food--swiper__img img {
  width: 100%;
}
.food--swiper__img {
  width: 100%;
}
.food--swiper__btn {
  padding: 20px 0 20px 10px;
}
.contact-btn-padding {
  padding: 20px 10px;
  display: flex;
  justify-content: center;
}

.food--article__body {
  padding-top: 100px;
}

.food--swiper-container {
  position: relative;
}

.food--swiper__padding-left {
  padding-left: 20px;
}
/* our food section CSS ends */

/* restaurant section CSS starts */
.restaurant--section {
  padding: 0 0 100px 50px;
}
.restaurant--swiper__img {
  width: auto;
}
.restaurant--swiper__img img {
  width: 100%;
}
.restaurant--menu__text {
  position: relative;
}
/* restaurant section CSS ends */
/* .row > [class*="col-"] {
  padding-left: 0 !important;
} */
/* mexican food section starts */
.mexican--food {
  position: relative;
  height: auto;
  width: 100%;
  background-color: #f2d51f;
  padding: 50px 50px 200px 50px;
}
#wrapper2 {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mexican--food__sub-title {
  text-align: center;
}
.mexican--food__sub-title span {
  font-family: "Oxygen", sans-serif;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
}
.mexican--food__sub-title p {
  font-family: "Oxygen", sans-serif;
  font-weight: 400;
  text-align: center;
}

.mexican--sub-title-1 {
  position: absolute;
  left: 6%;
  top: 20%;
  transform: rotate(20deg);
  color: #f0491f;
}
.mexican--sub-title-2 {
  position: absolute;
  left: 5%;
  top: 55%;
  transform: rotate(-6deg);
  color: #004024;
}
.mexican--sub-title-3 {
  position: absolute;
  left: 10%;
  bottom: 10%;
  transform: rotate(-10deg);
  color: #de4039;
}
.mexican--sub-title-4 {
  position: absolute;
  top: 15%;
  right: 10%;
  transform: rotate(-10deg);
  color: #004024;
}
.mexican--sub-title-5 {
  position: absolute;
  right: 8%;
  top: 30%;
  transform: rotate(6deg);
  color: #f0491f;
}
.mexican--sub-title-6 {
  position: absolute;
  left: 25%;
  bottom: 10%;
  transform: rotate(6deg);
  color: #004024;
}
.mexican--sub-title-7 {
  position: absolute;
  left: 40%;
  bottom: 10%;
  transform: rotate(-6deg);
  color: #f0491f;
}
.mexican--sub-title-8 {
  position: absolute;
  right: 45%;
  bottom: 10%;
  transform: rotate(6deg);
  color: #749803;
}
.mexican--sub-title-9 {
  position: absolute;
  right: 30%;
  bottom: 10%;
  transform: rotate(-5deg);
  color: #f0491f;
}
.mexican--sub-title-10 {
  position: absolute;
  right: 10%;
  bottom: 50%;
  transform: rotate(-2deg);
  color: #004024;
}
.mexican--sub-title-11 {
  position: absolute;
  right: 5%;
  bottom: 30%;
  transform: rotate(6deg);
  color: #f0491f;
}
.mexican--sub-title-12 {
  position: absolute;
  right: 8%;
  bottom: 10%;
  transform: rotate(10deg);
  color: #f0491f;
}
.mexican--sub-title-13 {
  position: absolute;
  left: 5%;
  top: 40%;
  transform: rotate(6deg);
  color: #f0491f;
}
.mexican--sub-title-14 {
  position: absolute;
  left: 5%;
  bottom: 22%;
  transform: rotate(6deg);
  color: #f0491f;
}




.mexican--btn__white {
  background-color: none;
}
.mexican--btn__white-menu {
  background-color: #fff;
  transition: all 0.3s ease-out;
}
.mexican--food__body {
  text-align: center;
}

.mexican--food__subtitle {
  font-family: "Amithen";
  padding-top: 20px;
  font-size: 2rem;
  text-align: center;
}

/* circle animation CSS starts */
.mexican--food__img {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: calc(100% - (40%));
}
.mexican--food__right {
  bottom: 0;
  width: 80%;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}
.mexican--food__red {
  width: 100%;
  border: 2px solid red;
}
.mexican--food-img {
  width: 480px;
  display: flex;
  justify-content: center;
}
.mexican--food-img img {
  object-fit: contain;
  width: 100%;
}

.mexican--food__red {
  background-color: #f2d51f;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mexican--food__red {
  -webkit-clip-path: url("#reveal");
  clip-path: url("#reveal");
}
.mexican--food__red {
  min-height: 100vh;
}

.svg-demo {
  position: relative;
  width: 100%;
  height: 200px;
}
#demo {
  position: absolute;
  bottom: -80%;
  left: 50%;
  transform: translateX(-50%);
}

.mexican--food__right .mexican--food__red {
  -webkit-clip-path: circle(0% at 50% 50%);
  clip-path: circle(0% at 50% 50%);
}

.mexican--food__text {
  max-width: 750px;
  margin: auto;
}


/* home first section CSS starts */
.home--first {
  height: 100vh;
  position: relative;
  background: url("../images/home-bg.png") no-repeat;
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-color: #fcf972;
}
.home--first__body {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.home--first__title {
  font-family: "Amithen";
  font-size: 1.8rem;
}
.home--first__logo {
  width: 300px;
  margin: auto;
  padding: 20px 0;
}
.home--first__logo-img {
  width: 100%;
  transform: scale(0);
}

.home--first__line-up {
  position: absolute;
  bottom: 0%;
  z-index: 1;
  width: inherit;
}
.home--first__line-down {
  position: absolute;
  top: -0.5%;
  z-index: 1;
  width: inherit;
}
.home--first__line-left {
  position: absolute;
  left: 0%;
  height: 100vh;
}
.home--first__line-left img {
  height: 100%;
}

.home--first__icon {
  position: absolute;
}

.icon--size-cloud1 {
  width: auto;
  position: relative;
}

.home--first__hat {
  right: 5%;
  top: 10%;
  width: 150px;
}
.home--first__catus-left {
  bottom: 10%;
  right: 10%;
  width: 100px;
}

.home--first__red-chiili {
  right: 20%;
  top: 40%;
  width: 150px;
}
.home--first__flower {
  right: 30%;
  top: 15%;
  width: 60px;
}
.home--first__green-chilli {
  width: 80px;
  top: 8%;
  left: 6%;
}
.home--first__catus-right {
  width: 100px;
  top: 35%;
  left: 12%;
}
.home--first__sun {
  width: 60px;
  left: 1%;
  bottom: 20%;
}
.home--first__home-g {
  width: 100px;
  left: 10%;
  bottom: 12%;
}

.home--first__img {
  width: 100%;
}
/* home first section CSS ends */

/* our offer section CSS starts */
.offer--section {
  position: relative;
  padding: 50px 0 0 0;
  /* height: 100vh; */
  background-color: #f0491f;
}
.offer-btn {
  display: flex;
  justify-content: center;
}
.offer--section__lines-1 {
  display: none;
  position: absolute;
  right: 0;
  top: 5%;
  width: 250px;
}
.offer--section__lines-2 {
  position: absolute;
  left: -5%;
  bottom: 2%;
  width: 250px;
  z-index: 0;
}
.offer--section__lines-1 img {
  width: 100%;
}
.offer--section__lines-2 img {
  width: 100%;
}

.offer--section__title-container {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.enquiry-icon {
  width: 150px;
  position: relative;
  z-index: 1;
}
.enquiry-icon img {
  width: 100%;
}
.offer--section__title {
  position: relative;
  font-size: 12rem;
  color: #bf2600;
}

.offer--section__img-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offer--section__img {
  width: 480px;
  margin-right: 250px;
}
.offer--section__img img {
  width: 100%;
}
.scale-img {
  transform: scale(1.5);
}

.scale-down-img {
  transform: scale(0.75);
}

.offerSwiper {
  height: 80vh;
}
.offerSwiper .swiper-pagination.swiper-pagination-progressbar {
  top: inherit;
  bottom: 15%;
  width: 100%;
  left: 0%;
}
.offerSwiper .swiper-pagination.swiper-pagination-progressbar {
  background-color: rgb(139, 139, 139) !important;
}
.swiper-pagination-progressbar-fill {
  background: #fff !important;
}

.offer--section__slide {
  display: flex;
  align-items: center;
}
/* our offer section CSS ends */
/* -------------- home page ends ------------------ */

/* background color change css starts */
body {
  background-color: transparent;
  transition: background-color 1s ease;
}

/* colours */
.color-green {
  background-color: #a9cd39;
}
.color-yellow {
  background-color: #f2d51f;
}
.color-red {
  background-color: #f0491f;
}
/* background color change css ends */

.icon--size {
  width: 220px;
  height: 220px;
  z-index: 10;
}
.icon--size-1 {
  width: 180px;
  height: 180px;
  z-index: 20 !important;
  position: relative;
}

#aboutus {
  width: 38rem;
  margin: 0 auto 30px 0;
}
#ourfood {
  width: 35rem;
  margin: 0 auto 30px 0;
}
#gourmetcloudkitchen {
  width: 65rem;
  margin: 0 auto 30px 0;
}
.mexican--sm1 {
  display: none;
}
.mexican--mg1 {
  display: block;
}
#ofp {
  width: 32rem;
}
#aboutusred {
  width: 32rem;
}
#contactusred {
  width: 32rem;
}
#menugreen {
  width: 28rem;
  margin: 0 auto 30px 0;
  position: relative;
  z-index: 1;
}

#mystory {
  width: 20rem;
}
#What_makes_it_so_special_x3F_ {
  width: 55rem;
}
#dv {
  width: 42rem;
}

#mexicanfood {
  width: 32rem;
  margin: 0 auto 0px auto;
}
#tarunapatel {
  width: 25rem;
}
#ravinshah {
  width: 25rem;
}
#mg {
  width: 35rem;
}
#mgsm {
  width: 15rem;
}
#cn {
  width: 25rem;
}
#gp {
  width: 45rem;
}
#cs {
  width: 25rem;
}
#cssm {
  width: 18rem;
}
#rakeshprasad {
  width: 30rem;
}
#ravinshahsm {
  width: 25rem;
}
#rakeshprasadsm {
  width: 25rem;
  margin: 10px auto 0px 0;
}

.mexican--map-container {
  margin: auto;
  padding-top: 20px;
  position: relative;
}
.map--icon {
  position: absolute;
}
button {
  background: none;
  border: none;
}
.map--icon-size {
  width: 20px;
}
.map--icon-size-big {
  width: 30px;
}
.map--icon-size-medium {
  width: 20px;
}
.map--icon-size img {
  width: 100%;
 
}
.map--icon-size-big img {
  width: 100%;

}

.map--ahmedabad {
  top: 47.5%;
  left: 12.5%;
  z-index: 10;
}
.map--nadiad {
  top: 48.5%;
  left: 15.5%;
}
.map--gandhinagar {
  top: 46.5%;
  left: 13.5%;
}
.map--vadodara {
  top: 49.5%;
  left: 15.5%;
}
.map--sanand {
  top: 47.5%;
  left: 10.5%;
}
.map--mehsana {
  top: 45.5%;
  left: 12.5%;
}
.map--palanpur {
  top: 43.5%;
  left: 13.5%;
}
.map--rajkot {
  top: 48.5%;
  left: 7%;
}
.map--bhavnagar {
  top: 50.5%;
  left: 11.5%;
}
.map--jamnagar {
  top: 48.5%;
  left: 4.5%;
}
.map--junagarh {
  top: 51%;
  left: 5.5%;
}
.map--dwarka {
  top: 48.5%;
  left: 2%;
}
.map--somnath {
  top: 52.5%;
  left: 7%;
}
.map--porbandar {
  top: 50%;
  left: 4%;
}
.map--bharuch {
  top: 50%;
  left: 14%;
}
.map--ankleshwar {
  top: 52%;
  left: 15%;
}
.map--surat {
  top: 53.5%;
  left: 14.5%;
}
.map--vapi {
  top: 55%;
  left: 15%;
}


.map--mumbai {
  top: 59.5%;
  left: 15.5%;
}
.map--indore {
  top: 47.5%;
  left: 25.5%;
}
.map--pune {
  top: 58.5%;
  left: 18.5%;
}
.map--banglore {
  bottom: 16.5%;
  left: 30.5%;
}
.map--hyderabad {
  bottom: 28.5%;
  left: 34.5%;
}
.map--chennai {
  bottom: 16.5%;
  left: 39.5%;
}
.map--nagpur {
  top: 53.5%;
  left: 36.5%;
}
.map--delhi {
  top: 29.5%;
  left: 40%;
}

/* rajesthan */
.map--jaipur {
  top: 35.5%;
  left: 26.5%;
}
.map--udaipur {
  top: 41.5%;
  left: 17.5%;
}
.map--jodhpur {
  top: 36.5%;
  left: 15.5%;
}
.map--jaisalmer {
  top: 33.5%;
  left: 8.5%;
}
/* map locations */

/* map colors */
.map--red {
  color: #bf2600;
}
.map--green {
  color: #a9cd39;
}
.map--red__dark {
  color: #de4039;
}
.map--green__dark {
  color: #004024;
}
.map--yellow {
  color: #f2d51f;
}
/* map colors */

/* ------------ home page CSS ends ------------- */

/* ---------------- subpage hero section CSS starts ------------------ */
.subpage--hero-section {
  position: relative;
  height: 100vh;
}
.hero-section--main-img {
  width: 100%;
  height: 100vh;
  position: absolute;
}
.hero-section--main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section--icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
}
.hero-section--icon img {
  width: 100%;
}
/* ----------------- subpage hero section ends -------------------- */

/* ---------------- contact page CSS starts ---------------- */
.contact__body {
  display: flex;
  padding-bottom: 20px;
}


.contact__body__text {
  padding-left: 10px;
  font-family: "Oxygen", sans-serif;
  font-weight: 700;
  color: black;
}
.contact--section__lines {
  position: absolute;
  right: -8%;
  top: -5%;
  width: 220px;
}
.contact--section__lines img {
  width: 100%;
}
.contact--section {
  position: relative;
  height: auto;
}
.contact--map {
  height: 100%;
}
.contact--map iframe {
  width: 100%;
  height: 100%;
}
/* ---------------- contact page CSS ends ---------------- */

/* ------------- menu page css starts --------------- */
.submenu--text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.submenu--text__title {
  z-index: 5;
  font-size: 10rem;
}

.menu--tab-pan {
  display: flex;
  align-items: center;
  background-color: transparent;
  border-radius: 20px;
  justify-content: start;
  padding: 20px 20px;
  width: 800px;
  max-height: 500px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.3s ease-out;
}


.sticky {
  position: fixed;
  top: 100px;
  left: 2%;
  width: 400px;
}

.bg--color-show {
  background-color: #addf6b;
  color: #fff;
}
.bg--color-show .mexican--btn__white {
  background-color: #addf6b;
}

.bg--color-show .mexican--link__dark {
  color: #fff;
}

.tab-pan__pera {
  padding-top: 10px;
  text-align: justify;
}
.tab-pan__rs {
  padding-top: 25px;
}
.tab-pan__kcal {
  padding-top: 5px;
}
.tab-pan__kcal {
  font-family: "Oxygen", sans-serif;
}
.tab-pan__rs,
.tab-pan__title {
  font-family: "Oxygen", sans-serif;
  font-weight: 700;
}
.restaurant--menu {
  display: flex;
  justify-content: space-evenly;
}

.tabs__ul {
  width: 400px;
  flex-direction: column;
  text-align: right;
  font-family: "Amithen";
  font-size: 2.5rem;
}
.tabs__ul li a {
  color: #2db04a;
}
.tabs__ul li a:hover {
  color: #addf6b;
}
.tabs__ul li a.active {
  color: #addf6b;
}
.restaurant--menu__tabs {
  padding-right: 20px;
  width: 450px;
  border-right: 3px solid rgb(173, 173, 173);
}
.restaurant--menu__text {
  padding-left: 20px;
}

.mexican--btn__container {
  display: inline-flex;
  align-items: center;
}
.menu-btn-m {
  margin-left: -10px;
  margin-top: 10px;
}
.mexican--btn__container-flex {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 335px;
  margin: auto 0 auto auto;
}

.another-circle {
  stroke-dasharray: 227;
  stroke-dashoffset: 227;
  transition: stroke-dashoffset 0.5s linear;
}

.mexican--btn__container:hover .another-circle {
  stroke-dashoffset: 0;
}
.mexican--btn__container-flex:hover .another-circle {
  stroke-dashoffset: 0;
}

/* swiper for small screen css starts */
.mexican-menu--sm {
  display: none;
}
/* swiper for small screen css ends */

/* ------------- menu page css ends -------------- */

/* ---------------- about us page CSS starts ------------------ */
.about--partner-img-container {
  display: flex;
  justify-content: start;
  padding-left: 25px;
}
.about--partner-img-container1 {
  display: flex;
  justify-content: end;
  padding-right: 25px;
}

.about--partner__img {
  width: 450px;
}
.about--partner__img img {
  width: 100%;
}
.about--partner__title {
  font-size: 2.5rem;
  /* margin-top: -5px; */
}
.about--partner__title-right {
  z-index: 1;
  font-size: 2.5rem;
  position: relative;
}

.about--partner-text-right {
  max-width: 520px;
  margin: auto 0 auto auto;
}
.about--partner-text {
  max-width: 520px;
  margin: auto auto auto 0;
}

.more {
  display: none;
  text-align: justify;
}
.read {
  background-color: #fff;
  color: #000 !important;
  border: none;
  outline: none;
  font-family: "Oxygen", sans-serif;
  cursor: pointer;
  margin-top: 10px;
}
.read:focus {
  outline: none;
}

.about--partner__pera {
  text-align: justify;
  width: 100%;
}
.about--partner__pera-right {
  text-align: justify;
  text-align-last: left;
  width: 100%;
}
.about--partner__ul-container {
  padding: 10px 0;
}
.about--partner__ul {
  margin-left: 35px;
}
.about--partner__ul li {
  list-style: disc;
}
.about--icon__size {
  width: 90%;
}
.about--paratner__row {
  padding-bottom: 100px;
}
/* ---------------- about us page CSS ends ------------------- */
.about--partner__pera > span {
  font-family: "Oxygen", sans-serif;
  font-weight: 700;
}
.ourfood--text {
  padding-bottom: 25px;
  padding-right: 50px;
}

.info--subtitle__padding {
  padding-bottom: 15px;
}
.info--subtitle {
  font-family: "Oxygen", sans-serif;
  text-align: center;
}
.info-section--body__text span {
  font-family: "Oxygen", sans-serif;
}
.info-section--body__text {
  text-align: justify;
}
.info-section--body__text-center span {
  font-family: "Oxygen", sans-serif;
}
.info-section--body__text-center {
  text-align: justify;
  max-width: 850px;
  margin: auto;
}



#progress_width {
  width: 650px;
}
.loading--bar-container {
  background-color: #F2F2F2;
  width: 650px;
  margin: auto;
  display: flex;
  justify-content: center;
}
.progress {
 position: fixed;
 left: 0px;
 top: 0px;
 width: 100%;
 height: 100%;
 z-index: 9999;
}
.bar 
{ 
  position: absolute;
  background-color: #bf2600; 
  width:0%;
  height:5px;
  border-radius: 3px;
  bottom: 30%;
}
.preloader--img {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%,-50%);
  width: 100%;
  display: flex;
  justify-content: center;
}
.preloader--img img {
  width: 20%;
}


.our--kitchen {
  background-color: #2db04a;
}

.tabs__ul1 {
  border-bottom: none;
}
.tabs__ul1 li a {
  font-size: 1.5rem;
  color: #749803;
}
.tabs__ul1 li a.active {
  color: #fff;
  border-bottom: 2px solid #fff;
}
.tabs__ul1 li a:focus {
  color: #fff;
  padding: 3px;
  border-bottom: 2px solid #fff;
}

.slider-title {
  font-size: 1.5rem;
  color: #749803;
  text-align: center;
}

.mexican--map {
  width: 400px;
  margin: auto;
  position: relative;
  padding-top: 20px;
  display: flex;
}
.mexican--map img {
  width: 100%;
}
.mexican--map1 {
  width: 300px;
  margin: auto;
  position: relative;
  padding-top: 20px;
  display: flex;
}
.mexican--map1 img {
  width: 100%;
}
.karnataka-img {
  width: 80% !important;
}
.delhi-img {
  width: 60% !important;
}

.map--anand-gujarat {
  top: 40%;
  right: 18%;
  z-index: 10;
}
.map--ahmedabad-gujarat {
  top: 38%;
  right: 34%;
  z-index: 10;
}

.map--nadiad-gujarat {
  top: 38%;
  right: 26%;
  z-index: 1;
}


.map--i-anand-gujarat {
  top: 45%;
  left: 10%;
  z-index: 10;
}
.map--i-ahmedabad-gujarat {
  top: 46%;
  left: 8%;
  z-index: 10;
}
.map--i-nadiad-gujarat {
  top: 45%;
  left: 13%;
  z-index: 1;
}
.map--i-vadodara-gujarat {
  top: 50%;
  left: 13%;
}
.map--i-vadodarav-gujarat {
  top: 50%;
  left: 15.5%;
}
.map--i-vadodaravv-gujarat {
  top: 49%;
  left: 14%;
}
.map--i-mumbai-maharastra  {
  top: 58%;
  left: 15%;
}
.map--i-mumbai-maharastra-lower  {
  top: 61%;
  left: 16%;
}
.map--i-mumbai-maharastra-bhalu  {
  top: 60%;
  left: 14%;
}
.map--i-pune-maharastra  {
  top: 62%;
  left: 22%;
}


.map--gandhinagar-gujarat {
  top: 35%;
  right: 30%;
}
.map--vadodara-gujarat {
  top: 49.5%;
  right: 18%;
}
.map--vadodarav-gujarat {
  top: 49%;
  right: 15%;
}
.map--vadodaravv-gujarat {
  top: 48%;
  right: 13%;
}
.map--sanand-gujarat {
  top: 40%;
  right: 42%;
}
.map--mehsana-gujarat {
  top: 30%;
  right: 35%;
}
.map--palanpur-gujarat {
  top: 14%;
  right: 25%;
}
.map--rajkot-gujarat {
  top: 50%;
  left: 40%;
}
.map--bhavnagar-gujarat {
  top: 60%;
  right: 40%;
}
.map--jamnagar-gujarat {
  top: 46%;
  left: 25%;
}
.map--junagarh-gujarat {
  bottom: 25%;
  left: 30%;
}
.map--dwarka-gujarat {
  top: 49%;
  left: 12%;
}
.map--somnath-gujarat {
  bottom: 18%;
  left: 35%;
}
.map--porbandar-gujarat {
  bottom: 36%;
  left: 19%;
}
.map--bharuch-gujarat {
  top: 60%;
  right: 25%;
}
.map--ankleshwar-gujarat {
  top: 65%;
  right: 23%;
}
.map--surat-gujarat {
  bottom: 26%;
  right: 28%;
}
.map--vapi-gujarat {
  bottom: 3%;
  right: 23%;
}

.map--mumbai-maharastra  {
  top: 40%;
  left: 2%;
}
.map--mumbai-maharastra-lower  {
  top: 45%;
  left: 5%;
}
.map--mumbai-maharastra-bhalu  {
  top: 34%;
  left: 5%;
}
.map--nagpur-maharastra {
  top: 15%;
  right: 22%;
}
.map--pune-maharastra  {
  top: 52%;
  left: 12%;
}

.map--banglore-karnataka {
  bottom: 20%;
  right: 22%;
}

.map--chennai-tamilnadu {
  top: 4%;
  right: 4%;
}

.map--indore-madhyapradesh {
  top: 60%;
  left: 25.5%;
}

.map--hyderabad-telengana {
  top: 40%;
  right: 40%;
}

.map--jaipur-rajesthan {
  top: 48%;
  right: 20%;
}
.map--udaipur-rajesthan {
  bottom: 20%;
  right: 45%;
}
.map--jodhpur-rajesthan {
  top: 52%;
  left: 45%;
}
.map--jaisalmer-rajesthan {
  top: 40%;
  left: 8.5%;
}
.tabs__ul1 {
  width: auto;
  flex-direction: row;
  text-align: center;
}
.tabs__ul1 li {
  text-align: center;
}
.mapTabSwiper .nav {
  flex-wrap: nowrap !important;
}

.ourkitchen-flawer {
  width: 150px;
  margin-right: 20px;
  align-items: center;
}
.ourkitchen-flawer img {
  width: 100%;
}


.controls {
  display: flex;
  justify-content: center;
}
.gallery {
  min-height: 100vh;
  padding-bottom: 50px;
}
.nav-tabs li {
  width: 140px;
  background: #fff;
  font-size: 1.5rem;
  line-height: 20px;
  cursor: pointer;
  margin: 20px;
  text-align: center;
}
.nav-tabs li a {
  color: #bf2600;
  font-family: "GinRegular";
}

.gallery1,.video1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.image,.videolink {
  height: 250px;
  width: 350px;
  overflow: hidden;
  border: 15px solid #fff;
  box-shadow: 0 3px 5px rgba(0,0,0,.3);
  margin: 20px;
  object-fit: contain;
}
.image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.videolink video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.image:hover img {
  transform: scale(1.2);
}

button:focus {
  outline: none;
}
.swiper-button-next-menu, .swiper-button-prev-menu, .swiper-button-next-cloud, .swiper-button-prev-cloud, .swiper-button-next-cloud1, .swiper-button-prev-cloud1, .swiper-button-next-gourmet, .swiper-button-prev-gourmet {
  color: #000;
}

.mystory_absolute {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 450px;
}
.mystory_absolute img {
  width: 100%;
}
.mystory_absolute1 {
  position: absolute;
  bottom: 10%;
  right: -60%;
  width: 450px;
}
.mystory_absolute1 img {
  width: 100%;
}
.special_absolute {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 300px;
  z-index: -1;
}
.special_absolute img {
  width: 100%;
}

.about-title {
  text-align: center;
}


.m-locations-card__button button {
  width: auto;
  min-width: 250px;
  min-height: 50px;
}
.u-colour--quaternary-g {
  color: #bf2600;
}
.u-colour--quaternary-g a {
  color: #addf6b;
}
.u-bg-colour--tertiary {
  background-color: #addf6b !important;
}
.o-btn--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 250px;
  height: 0;
  min-height: 62px;
  background-color: #bf2600;
  color: #000;
}
.o-btn {
  position: relative;
  cursor: pointer;
}
.c-locations-card__holder button {
  width: auto;
}
.t-paragraph a {
  color: #000;
}

.u-flex-justify--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.u-flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.u-display--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.u-flex-direction--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.u-pl--5 {
  padding-left: 5px;
}

.u-pb--5 {
  padding-bottom: 5px;
}
.u-pr--5 {
  padding-right: 5px;
}
.u-pt--5 {
  padding-top: 5px;
}
.u-position--relative {
  position: relative;
}

.c-locations-card__image {
  width: 100%;
  height: 0;
  padding-bottom: 65%;
  background-color: #fff;
  border-bottom: 4px solid #addf6b;
  /* fcf972 */
}
.c-locations-card__image img {
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  left: 50%;
  width: 100%;
  object-fit: cover;
}

.o-image--cover {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.o-image {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.u-flex-grow {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.u-pl--15 {
  padding-left: 15px;
}
.u-pb--15 {
  padding-bottom: 15px;
}
.u-pr--15 {
  padding-right: 15px;
}
.u-pt--15 {
  padding-top: 15px;
}
.u-bg-colour--secondary {
  background-color: #fff;
}
.t-heading--epsilon {
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 25px;
  line-height: 2.5rem;
}

.o-content h1, .o-content h2, .o-content h3, .o-content h4, .o-content h5, .o-content h6, [class*=t-heading] {
  font-family: "Amithen";
  font-weight: 700;
}
.c-locations-card__holder p {
  white-space: pre-line;
}
.u-mb--20 {
  margin-bottom: 20px;
}
.u-mt--20 {
  margin-top: 20px;
}
.u-colour--black {
  color: #000;
}
.u-mt--auto {
  margin-top: auto;
}
.u-colour--black {
  color: #000;
}

.swiper-button-next-menu {
  top: 40%;
}
.swiper-button-prev-menu {
  top: 40%;
}

.contact--input input,.contact--textarea textarea, .contact--select select {
  border: none;
  background-color: #fff;
  padding: 10px 10px;
  width: 100%;
  outline: none;
}
.contact--btn {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.contact--body {
  padding: 20px;
  background-color: #fcf972;
  cursor: pointer;
}
.contact--btn__body {
  border: none;
  background-color: #000;
  color: #fff;
  padding: 15px 25px;
  font-family: "GinRegular";
  cursor: pointer;
}
.contact-warning-icon {
  color: #f79308!important;
}
.modal-a {
  color: #000;
}
.modal-a:hover {
  color: #000;
}
.modal-subtitle, .modal-clock, .modal-phone {
  font-weight: 700;
  color: #bf2600 !important;
}
.modal-title {
  color: #000 !important;
  font-weight: 700;
  font-family: "GinRegular";
}
.modal-header {
  background-color: #addf6b;
}
.m-btn-secondary {
  background-color: #bf2600;
  color: #fff;
}
.modal-email {
  color: #bf2600;
  font-weight: 700;
  border-bottom: 2px solid #bf2600;
}
.sefty-img img {
  width: 100%;
}

.menu-tab-img img {
  max-height: 260px;
  border-radius: 20px;
  margin-right: 20px;
}
.header-img {
  padding: 50px;
  object-fit: contain !important;
}


/* .small-circle-12 {
  position: absolute;
  background-color: #e53700;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  bottom: 2%;
  left: 30%;
  opacity: 0.5;
} */

.small1 {
  background-color: #fff;
  border: 5px solid #bf2600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: scale(0.7);
  cursor: pointer;
  position: absolute;
  left: 15%;
  top: 55%;
}
.small2 {
  background-color: #fff;
  border: 5px solid #bf2600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: scale(0.7);
  cursor: pointer;
  position: absolute;
  left: 30%;
  top: 35%;
}
.small3 {
  background-color: #fff;
  border: 5px solid #bf2600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: scale(0.7);
  cursor: pointer;
  position: absolute;
  left: 45%;
  top: 50%;
}
.small4 {
  background-color: #fff;
  border: 5px solid #bf2600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: scale(0.7);
  cursor: pointer;
  position: absolute;
  left: 35%;
  top: 75%;
}
.small5 {
  background-color: #fff;
  border: 5px solid #bf2600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: scale(0.7);
  cursor: pointer;
  position: absolute;
  right: 25%;
  top: 75%;
}
.small7 {
  background-color: #fff;
  border: 5px solid #bf2600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: scale(0.7);
  cursor: pointer;
  position: absolute;
  right: 25%;
  top: 45%;
}
.small8 {
  background-color: #fff;
  border: 5px solid #bf2600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: scale(0.7);
  cursor: pointer;
  position: absolute;
  right: 20%;
  top: 52%;
}
.small9 {
  background-color: #fff;
  border: 5px solid #bf2600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: scale(0.7);
  cursor: pointer;
  position: absolute;
  right: 10%;
  top: 45%;
}




.small1md {
  background-color: #fff;
  border: 5px solid #bf2600;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: scale(0.7);
  cursor: pointer;
  position: absolute;
  left: 15%;
  top: 55%;
}
.small2md {
  background-color: #fff;
  border: 5px solid #bf2600;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: scale(0.7);
  cursor: pointer;
  position: absolute;
  left: 30%;
  top: 35%;
}
.small3md {
  background-color: #fff;
  border: 5px solid #bf2600;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: scale(0.7);
  cursor: pointer;
  position: absolute;
  left: 35%;
  top: 50%;
}
.small4md {
  background-color: #fff;
  border: 5px solid #bf2600;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: scale(0.7);
  cursor: pointer;
  position: absolute;
  left: 30%;
  top: 70%;
}
.small5md {
  background-color: #fff;
  border: 5px solid #bf2600;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: scale(0.7);
  cursor: pointer;
  position: absolute;
  right: 35%;
  top: 70%;
}
.small6md {
  background-color: #fff;
  border: 5px solid #bf2600;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: scale(0.7);
  cursor: pointer;
  position: absolute;
  right: 15%;
  top: 55%;
}

.small7md {
  background-color: #fff;
  border: 5px solid #bf2600;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: scale(0.7);
  cursor: pointer;
  position: absolute;
  left: 51%;
  top: 45%;
}
.small8md {
  background-color: #fff;
  border: 5px solid #bf2600;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: scale(0.7);
  cursor: pointer;
  position: absolute;
  left: 56%;
  top: 52%;
}
.small9md {
  background-color: #fff;
  border: 5px solid #bf2600;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: scale(0.7);
  cursor: pointer;
  position: absolute;
  left: 63%;
  top: 45%;
}

/* label {
  width: 100%;
  cursor: pointer;
  font-size: 1.4rem;
} */
/* .order-card {
  background-color: #fff;
  max-width: 650px;
  width: 350px;
  margin: auto;
  padding: 25px;
  border-radius: 0.5rem;
} */
/* .order-sec {
  height: 100vh;
  background: url('../images/aboutus-hero-section.jpg') no-repeat;
  position: relative;
  background-position: center;
  background-size: cover;
} */
/* .order-article {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.order-title {
  font-size: 2.2rem;
  text-align: center;
  width: 100%;
  font-family: GinRegular, sans-serif;
}
.order-city-container a {
  background-color: #000 !important;
  color: #fff !important;
  padding: 10px 30px;
  cursor: pointer;
  font-family: "GinRegular";
  font-weight: 300;
  font-size: 1rem;
}

.order-redio {
  border: none;
  background-color: none;
}
input[type="radio"] {
  display: none;
}
input[type="radio"]:checked ~ label:before {
  content: '\2714';
  text-indent: .9em;
  color: #333;
  margin-right: 10px;
} */

.women-sec {
  height: 100vh;
  background: rgba(0, 0, 0, 0.5) url("../images/women-hero-section.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: darken;
}
.women-title {
  color: #f2d51f;
  /* text-shadow: 1px 1px 1px #009d57, 0px 0px 3px #009d57;  */
}
.women-article {
  height: 100%;
}
.order-padding {
  padding: 100px;
}
.order-sec  {
  background-color: #f2d51f;
}
.order-img {
  width: 100%;
  height: 100%;
}
.order-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* border-radius: 2rem; */
}

.order-city-text a {
  color: #28282B;
  font-weight: 700;
  font-size: var(--fs-400);
}
.order-city-text a:hover {
  color: #de4039;
}

/* star rating */
.feedback-star-icon {
  font-size: 1.5rem;
}
.feedback-star-title {
  font-weight: bold;
}
.m-b-xs {
  font-size: 1rem;
  color: #28282B;
}
/* star rating */