@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "OtomanopeeOne";
  src: url("../fonts/OtomanopeeOne-Regular.ttf");
}
:root {
  --clr-primary-100: #eff7f8;
  --clr-primary-500: #197A8A;
  --clr-primary-500-hover: #115561;
  --clr-secondary-100: #fdf5ee;
  --clr-secondary-200: #fbebde;
  --clr-secondary-500: #E79468;
  --clr-secondary-500-hover: #b97653;
  --clr-neutral-900: hsl(0, 0%, 0%);
  --clr-neutral-800: #1F2937;
  --clr-neutral-700: #374151;
  --clr-neutral-600: #676767;
  --clr-neutral-400: #00000086;
  --clr-neutral-200: #E7E8E9;
  --clr-neutral-150: #F3F3F3;
  --clr-neutral-100: hsl(0 0% 100%);
  --ff-primary: "OtomanopeeOne", sans-serif;
  --ff-secondary: "Poppins", sans-serif;
  --ff-body: var(--ff-secondary);
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semiBold: 600;
  --fw-bold: 700;
  --fw-extraBold: 800;
  --fw-black: 900;
  --fs-200: 14px;
  --fs-250: 16px;
  --fs-300: 18px;
  --fs-400: 20px;
  --fs-500: 24px;
  --fs-600: 32px;
  --fs-700: 40px;
  --fs-800: 72px;
  --fs-900: 90px;
  --fs-body: var(--fs-300);
  --size-100: 0.25rem;
  --size-200: 0.5rem;
  --size-300: 0.75rem;
  --size-400: 1rem;
  --size-500: 1.5rem;
  --size-600: 2rem;
  --size-700: 3rem;
  --size-800: 4rem;
  --size-900: 5rem;
}

@media (max-width: 768px) {
  :root {
    --fs-800: 55px;
  }
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

[id] {
  scroll-margin-top: 100px;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* 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: initial;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: initial;
}

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

@media (min-width: 768px) {
  html.lenis {
    height: auto;
  }
  .lenis.lenis-smooth {
    scroll-behavior: auto;
  }
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  .lenis.lenis-scrolling iframe {
    pointer-events: none;
  }
}
/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

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

/* 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 {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* general styling */
body {
  font-size: var(--fs-body);
  font-family: var(--ff-body);
  color: var(--clr-neutral-800);
}

p {
  position: relative;
  font-size: 18px;
  line-height: 1.6;
  font-weight: var(--fw-regular);
  color: var(--clr-neutral-600);
}

#main {
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1238px;
}

.text-primary-500 {
  color: var(--clr-primary-500);
}

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

.text-neutral-400 {
  color: var(--clr-neutral-400);
}

.text-neutral-600 {
  color: var(--clr-neutral-600);
}

.text-neutral-800 {
  color: var(--clr-neutral-800);
}

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

.bg-primary-200 {
  background-color: var(--clr-primary-200);
}

.bg-primary-300 {
  background-color: var(--clr-primary-300);
}

.bg-primary-400 {
  background-color: var(--clr-primary-400);
}

.bg-neutral-100 {
  background-color: var(--clr-neutral-100);
}

.bg-neutral-150 {
  background-color: var(--clr-neutral-150);
}

.bg-grey-100 {
  background-color: var(--clr-grey-100);
}

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

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

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

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

.fs-200 {
  font-size: var(--fs-200) !important;
}

.fs-250 {
  font-size: var(--fs-250) !important;
}

.fs-300 {
  font-size: var(--fs-300) !important;
}

.fs-400 {
  font-size: var(--fs-400) !important;
}

.fs-500 {
  font-size: var(--fs-500) !important;
}

.fs-600 {
  font-size: var(--fs-600) !important;
}

.h-100 {
  height: 100vh !important;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-normal {
  text-transform: none !important;
}

.padding-block-900 {
  padding: 90px 0;
}

.padding-block-500 {
  padding: var(--size-500) 0;
}

.margin-top-900 {
  margin-top: var(--size-900);
}

.margin-bottom-900 {
  margin-bottom: var(--size-900);
}

.margin-top-max {
  margin-top: 110px;
}

.margin-block-max {
  margin: 110px 0;
}

.margin-bottom-max {
  margin-bottom: 110px;
}

.padding-top-max {
  padding-top: 120px;
}

.padding-block-max {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .margin-top-max {
    margin-top: 70px;
  }
  .margin-block-max {
    margin: 70px 0;
  }
  .margin-bottom-max {
    margin-bottom: 70px;
  }
  .padding-block-900 {
    padding: 70px 0;
  }
  .margin-top-900 {
    margin-top: 70px;
  }
  .margin-bottom-900 {
    margin-bottom: 70px;
  }
  .padding-top-max {
    padding-top: 70px;
  }
  .padding-block-max {
    padding: 70px 0;
  }
}
.error,
.error p,
label.error {
  font-size: var(--fs-200);
  margin-top: 0;
  color: #ff0000;
}

.btn1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  min-width: 200px;
  height: 51px;
  font-weight: var(--fw-medium);
  padding: 0 20px;
  background: var(--clr-primary-500);
  text-decoration: none;
  color: var(--clr-neutral-100);
  border-radius: 30px;
  gap: 10px;
  overflow: hidden;
  transition: all 0.3s;
  text-align: left;
}
.btn1 img {
  width: 16px !important;
}
.btn1:hover {
  background: var(--clr-primary-500-hover);
}

.btn2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  height: 51px;
  font-weight: var(--fw-medium);
  padding: 0 20px;
  background: var(--clr-secondary-500);
  text-decoration: none;
  color: var(--clr-neutral-100);
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.3s;
}
.btn2:hover {
  background: var(--clr-secondary-500-hover);
}

header {
  position: fixed;
  width: 100%;
  z-index: 999;
  transition: all 0.9s;
}
header .logo {
  width: 134px !important;
}
@media (max-width: 768px) {
  header .logo {
    min-width: 124px !important;
    padding-right: 15px;
  }
}
header .wrapper {
  position: relative;
  display: flex;
  width: 100%;
  padding: 20px 0;
  align-items: center;
  justify-content: space-between;
  transition: all 0.9s;
}
header .wrapper .desktopMenu {
  display: flex;
  gap: 48px;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: auto;
  align-items: center;
}
@media (max-width: 768px) {
  header .wrapper .desktopMenu {
    display: none;
  }
}
header .wrapper .desktopMenu a {
  position: relative;
  display: block;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  font-weight: var(--fw-medium);
  align-items: center;
  justify-content: center;
  color: var(--clr-neutral-900);
  transition: all 0.6s;
}
header .wrapper .desktopMenu > li.active a, header .wrapper .desktopMenu > li:hover a {
  color: var(--clr-primary-500);
}
header .wrapper .navigationWrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 80px;
}
header .wrapper .accountNav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
}
header .wrapper .accountNav .btn1 {
  min-width: auto !important;
  max-width: 121px !important;
}
@media (max-width: 768px) {
  header .wrapper .accountNav .btn1 {
    display: none;
  }
}
header .wrapper .accountNav a {
  height: 43px !important;
}
header .loggedIN button {
  padding: 0;
  background-color: transparent;
  border: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--clr-neutral-900);
}
header .loggedIN button .arrow {
  position: relative;
}
@media (max-width: 768px) {
  header .loggedIN button .arrow {
    display: none;
  }
}
header .loggedIN button:hover, header .loggedIN button:focus, header .loggedIN button.show, header .loggedIN button:active {
  background-color: transparent !important;
  color: var(--clr-neutral-900) !important;
}
header .loggedIN button.show .arrow {
  transform: rotateX(-180deg);
}
header .loggedIN button .profile {
  position: relative;
  width: 27px;
  height: 27px;
  background-color: var(--clr-secondary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-neutral-100);
  flex-grow: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  header .loggedIN button .name {
    display: none;
  }
}
header .loggedIN .dropdown-menu {
  border: 0;
  border-radius: 12px;
}
header .loggedIN .dropdown-menu li {
  width: 213px;
}
header .loggedIN .dropdown-menu li a {
  font-size: 16px;
  padding: 12px 22px;
  font-weight: var(--fw-medium);
  color: var(--clr-neutral-900);
  display: flex;
  align-items: center;
  gap: 10px;
}
header .loggedIN .dropdown-menu li a span {
  background-color: var(--clr-secondary-500);
  border-radius: 30px;
  padding: 1px 10px;
}
header.background {
  background: #ffffff !important;
  border-bottom: 1px solid #e9e9e9;
}
@media (max-width: 768px) {
  header.background .wrapper {
    height: 80px !important;
  }
}

.headeBorder header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--clr-primary-500);
}
.headeBorder header.background {
  background: #ffffff !important;
  border-bottom: 1px solid var(--clr-primary-500);
}
@media (max-width: 768px) {
  .headeBorder header.background .wrapper {
    height: 80px !important;
  }
}

.mobileToggle {
  position: relative;
  display: none;
  padding: 0;
  background: transparent;
  border: 0;
  width: 30px;
  margin-right: 15px;
}
@media (max-width: 768px) {
  .mobileToggle {
    display: block;
  }
}

.mobile-menu {
  position: relative;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu ul li {
  border-bottom: 1px solid var(--clr-neutral-200);
}
.mobile-menu ul li a {
  position: relative;
  padding: 10px 15px;
  display: block;
  color: var(--clr-neutral-900);
  text-decoration: none;
  font-size: 16px;
}

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}
.banner .bg {
  position: absolute;
  z-index: -1;
  right: -20px;
}
@media (max-width: 768px) {
  .banner {
    height: auto;
    padding-top: 100px;
  }
}
@media (max-width: 768px) {
  .banner .bg {
    top: 0;
  }
}
.banner .details {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 567px;
}
.banner .details h1 {
  position: relative;
  font-family: var(--ff-primary);
  font-size: 64px;
  color: var(--clr-primary-500);
  text-align: left;
}
.banner .details h1 span {
  font-size: 45px;
}
@media (max-width: 768px) {
  .banner .details h1 {
    font-size: 40px;
  }
  .banner .details h1 span {
    font-size: 22px;
  }
}
.banner .details p {
  text-align: left;
}
.heading1 {
  position: relative;
  font-family: var(--ff-primary);
  font-size: 48px;
  color: var(--clr-primary-500);
}
@media (max-width: 768px) {
  .heading1 {
    font-size: 36px;
  }
}

.heading2 {
  position: relative;
  font-size: 31px;
  font-weight: var(--fw-bold);
  color: var(--clr-neutral-900);
}
.heading2 span {
  color: var(--clr-primary-500);
}
@media (max-width: 768px) {
  .heading2 {
    font-size: 26px;
  }
}

.heading3 {
  position: relative;
  font-size: 24px;
  font-weight: var(--fw-semiBold);
  color: var(--clr-neutral-900);
}
.heading3 span {
  color: var(--clr-primary-500);
}
@media (max-width: 768px) {
  .heading3 {
    font-size: 18px;
  }
}
.numberPointList {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
}
.numberPointList > li {
  position: relative;
  padding-left: 40px;
}
.numberPointList > li::before {
  position: absolute;
  content: attr(num);
  left: 0;
  font-weight: 500;
}
.numberPointList a {
  text-decoration: none;
  color: var(--clr-primary-500);
}
form {
  position: relative;
}
form label {
  position: relative;
  font-size: 14px;
  color: var(--clr-neutral-900);
  bottom: 5px;
}
form input, form select {
  position: relative;
  width: 100%;
  height: 46px;
  font-size: 16px;
  border-radius: 50px;
  padding: 0 30px;
  border: 0;
  background: #F7F7F7;
}
form input:focus, form select:focus {
  outline: 2px solid var(--clr-secondary-500);
}
form input[type=checkbox], form select[type=checkbox] {
  width: 20px !important;
  height: 20px !important;
  padding: 0 !important;
  margin-top: -1px;
}
form textarea {
  position: relative;
  width: 100%;
  height: 100px;
  font-size: 16px;
  border-radius: 30px;
  padding: 20px 30px;
  border: 0;
  background: #F7F7F7;
}
form textarea:focus {
  outline: 2px solid var(--clr-secondary-500);
}
form button {
  height: 46px;
  border: 0;
  width: 100%;
}

.breadcrumb {
  position: relative;
  margin-top: 84px;
  padding: 32px;
}
.breadcrumb ul {
  position: relative;
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb ul li {
  position: relative;
  font-size: 16px;
  color: var(--clr-neutral-900);
  font-weight: var(--fw-semiBold);
  color: var(--clr-primary-500);
  display: flex;
}
.breadcrumb ul li:not(:last-child) {
  padding-right: 30px;
}
.breadcrumb ul li:not(:last-child) a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-neutral-900);
  font-weight: var(--fw-regular);
  text-decoration: none;
}
.breadcrumb ul li:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 12px;
  background: url("../images/icons/breadcrumb-arrow.svg");
  background-position: center center;
  background-size: 100% 100%;
  top: 6px;
  right: 5px;
}
.breadcrumb ul li:not(:last-child).noArrow::before {
  display: none !important;
}

.howItWorksSection {
  position: relative;
}
.howItWorksSection .bg {
  position: absolute;
  z-index: -1;
  top: -250px;
  left: -490px;
  width: 600px;
}
.howItWorksSection .item {
  position: relative;
  display: flex;
  flex-direction: column;
}
.howItWorksSection .item img {
  width: auto;
  height: 240px;
}
.howItWorksSection .item h2 {
  position: relative;
  text-align: center;
  font-size: 28px;
  font-weight: var(--fw-bold);
  margin-top: 20px;
}
.howItWorksSection .item h2 span {
  color: var(--clr-primary-500);
}

.rootedCuisines {
  position: relative;
  background-image: url("../images/bg/003.svg");
  background-size: 100% auto;
  background-position: center 200px;
  background-repeat: no-repeat;
}
.rootedCuisines .nav-pills {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}
.rootedCuisines .nav-link {
  padding: 0;
  color: inherit;
}
.rootedCuisines .nav-link .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rootedCuisines .nav-link .item img {
  z-index: 2;
}
.rootedCuisines .nav-link .item .details {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -105px;
  padding: 95px 10px 20px;
  border-radius: 40px;
  z-index: 1;
}
.rootedCuisines .nav-link .item .details h2 {
  text-align: center;
  font-size: 20px;
  font-weight: var(--fw-semiBold);
  color: #3F3F3F;
  transition: all 0.3s;
}
.rootedCuisines .nav-link .item .details p {
  text-align: center;
  font-size: 16px;
  transition: all 0.3s;
}
.rootedCuisines .nav-link .item .details.prime {
  background-color: var(--clr-primary-100);
  transition: all 0.3s;
}
.rootedCuisines .nav-link .item .details.prime svg {
  stroke: var(--clr-primary-500);
  transition: all 0.3s;
}
.rootedCuisines .nav-link .item .details.second {
  background-color: var(--clr-secondary-100);
  transition: all 0.3s;
}
.rootedCuisines .nav-link .item .details.second svg {
  stroke: var(--clr-secondary-500);
  transition: all 0.3s;
}
.rootedCuisines .nav-link:hover, .rootedCuisines .nav-link.active {
  background-color: transparent;
}
.rootedCuisines .nav-link:hover .item .details h2, .rootedCuisines .nav-link.active .item .details h2 {
  color: var(--clr-neutral-100);
}
.rootedCuisines .nav-link:hover .item .details p, .rootedCuisines .nav-link.active .item .details p {
  color: var(--clr-neutral-100);
}
.rootedCuisines .nav-link:hover .item .details.prime, .rootedCuisines .nav-link.active .item .details.prime {
  background-color: var(--clr-primary-500);
}
.rootedCuisines .nav-link:hover .item .details.prime svg, .rootedCuisines .nav-link.active .item .details.prime svg {
  stroke: var(--clr-neutral-100);
}
.rootedCuisines .nav-link:hover .item .details.second, .rootedCuisines .nav-link.active .item .details.second {
  background-color: var(--clr-secondary-500);
}
.rootedCuisines .nav-link:hover .item .details.second svg, .rootedCuisines .nav-link.active .item .details.second svg {
  stroke: var(--clr-neutral-100);
}
.rootedCuisines .tab-content {
  padding-top: 20px;
}
.rootedCuisines .tab-content .box {
  position: relative;
  width: 100%;
  border-radius: 40px;
  padding: 30px 0;
}
.rootedCuisines .tab-content .box p {
  font-size: 16px;
}
.rootedCuisines .tab-content .box .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  @media (max-width: 766px) {
    margin-top: 20px
  }
}
.rootedCuisines .tab-content .box .item h3 {
  font-size: 24px;
  font-weight: var(--fw-semiBold);
  text-align: center;
}
.rootedCuisines .tab-content .box .item p {
  text-align: center;
}
.rootedCuisines .tab-content .box .rootedCuisines-prev, .rootedCuisines .tab-content .box .rootedCuisines-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 50%;
  outline: 20px solid var(--clr-neutral-100);
}
.rootedCuisines .tab-content .box .rootedCuisines-prev svg, .rootedCuisines .tab-content .box .rootedCuisines-next svg {
  stroke: #fff;
  width: 14px;
}
.rootedCuisines .tab-content .box .rootedCuisines-prev {
  left: -30px;
}
.rootedCuisines .tab-content .box .rootedCuisines-next {
  right: -30px;
}
.rootedCuisines .tab-content .box .swiper-button-next.swiper-button-disabled, .rootedCuisines .tab-content .box .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}
.rootedCuisines .tab-content .box.prime {
  background: var(--clr-primary-100);
}
.rootedCuisines .tab-content .box.prime .rootedCuisines-prev, .rootedCuisines .tab-content .box.prime .rootedCuisines-next {
  background-color: var(--clr-primary-500);
}
.rootedCuisines .tab-content .box.second {
  background: var(--clr-secondary-100);
}
.rootedCuisines .tab-content .box.second .rootedCuisines-prev, .rootedCuisines .tab-content .box.second .rootedCuisines-next {
  background-color: var(--clr-secondary-500);
}
.rootedCuisines .tab-content .tab-pane .box {
  transform: scale(0.5) translateY(-200px);
  transition: all 0.5s;
}
.rootedCuisines .tab-content .tab-pane.show .box {
  transform: scale(1) translateY(0px);
}

.whyRooted {
  position: relative;
}
.whyRooted .tab-content {
  position: relative;
  width: 590px;
  margin-right: 30px;
}
.whyRooted .box {
  position: relative;
  height: 605px;
  border-radius: 25px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .whyRooted .box {
    height: 100%;
    padding: 15px;
  }
}
.whyRooted .box .num {
  position: absolute;
  font-size: 48px;
  font-family: var(--ff-primary);
  right: 30px;
  top: 20px;
  color: var(--clr-neutral-100);
  opacity: 0.5;
}
@media (max-width: 768px) {
  .whyRooted .box .num {
    font-size: 28px;
  }
}
.whyRooted .box h2 {
  position: relative;
  color: var(--clr-neutral-100);
  font-size: 24px;
  font-weight: var(--fw-semiBold);
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .whyRooted .box h2 {
    font-size: 18px;
  }
}
.whyRooted .box p {
  text-align: center;
  color: var(--clr-neutral-100);
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .whyRooted .box p {
    font-size: 14px;
  }
}
.whyRooted .box.prime {
  background: var(--clr-primary-500);
}
.whyRooted .box.second {
  background: var(--clr-secondary-500);
}
.whyRooted .desktop {
  display: block;
}
@media (max-width: 768px) {
  .whyRooted .desktop {
    display: none;
  }
}
.whyRooted .mobile {
  display: none;
}
@media (max-width: 768px) {
  .whyRooted .mobile {
    display: block;
  }
}
.whyRooted .nav {
  position: relative;
  width: 580px;
  flex-grow: 0;
  flex-shrink: 0;
  gap: 40px;
}
.whyRooted .nav .nav-link {
  padding: 0;
}
.whyRooted .nav .nav-link .item {
  position: relative;
  width: 605px;
  height: 175px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 23px;
  padding-right: 80px;
  border-radius: 25px;
  text-align: left;
}
.whyRooted .nav .nav-link .item .num {
  position: absolute;
  font-size: 34px;
  font-family: var(--ff-primary);
  right: 20px;
  top: 10px;
}
.whyRooted .nav .nav-link .item h2 {
  position: relative;
  font-size: 24px;
  font-weight: var(--fw-semiBold);
  color: #3F3F3F;
}
.whyRooted .nav .nav-link .item p {
  font-size: 16px;
  margin: 0;
}
.whyRooted .nav .nav-link:nth-child(odd) .item {
  background-color: var(--clr-secondary-100);
  transition: all 0.3s;
}
.whyRooted .nav .nav-link:nth-child(odd) .item .num {
  color: rgba(231, 148, 104, 0.768627451);
}
.whyRooted .nav .nav-link:nth-child(even) .item {
  background-color: var(--clr-primary-100);
  transition: all 0.3s;
}
.whyRooted .nav .nav-link:nth-child(even) .item .num {
  color: rgba(25, 123, 138, 0.5137254902);
}
.whyRooted .nav .nav-link.active {
  background: transparent;
  display: none;
}
.whyRooted .nav .nav-link.active ~ .nav-link:nth-child(even) .item {
  background-color: var(--clr-secondary-100);
  transition: all 0.3s;
}
.whyRooted .nav .nav-link.active ~ .nav-link:nth-child(even) .item .num {
  color: rgba(231, 148, 104, 0.768627451);
}
.whyRooted .nav .nav-link.active ~ .nav-link:nth-child(odd) .item {
  background-color: var(--clr-primary-100);
  transition: all 0.3s;
}
.whyRooted .nav .nav-link.active ~ .nav-link:nth-child(odd) .item .num {
  color: rgba(25, 123, 138, 0.5137254902);
}

.testimonials {
  position: relative;
  background: var(--clr-secondary-200);
  background-image: url("../images/bg/004.svg");
  background-position: center top;
  background-size: cover;
}
.testimonials .item {
  position: relative;
  width: 100%;
  border-radius: 22px;
  background-color: var(--clr-primary-500);
}
.testimonials .item .text {
  position: relative;
  background-color: var(--clr-neutral-100);
  border-radius: 20px;
  padding: 25px 40px 50px 40px;
}
.testimonials .item .text h2 {
  position: relative;
  font-size: 40px;
  color: var(--clr-neutral-900);
  font-weight: var(--fw-medium);
}
.testimonials .item .text p {
  position: relative;
  font-size: 14px !important;
  margin-top: -20px;
  color: var(--clr-neutral-900);
}
.testimonials .item .name {
  position: relative;
  height: 95px;
  text-align: center;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #D8D8D8;
  text-transform: uppercase;
  justify-content: center;
  letter-spacing: 1.6px;
}
.testimonials .item .name .pic {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -60%;
}
.testimonials .testimonials-prev, .testimonials .testimonials-next {
  width: 60px;
  height: 60px;
  background-color: var(--clr-primary-500);
  border-radius: 50%;
  top: 50%;
}
.testimonials .testimonials-prev svg, .testimonials .testimonials-next svg {
  stroke: #fff;
  width: 14px;
}
@media (max-width: 768px) {
  .testimonials .testimonials-prev, .testimonials .testimonials-next {
    top: calc(50% + 10px);
    width: 45px;
    height: 45px;
    margin: 10px;
  }
}
.testimonials .swiper-button-next.swiper-button-disabled, .testimonials .swiper-button-prev.swiper-button-disabled {
  background-color: var(--clr-neutral-100);
}
.testimonials .swiper-button-next.swiper-button-disabled svg, .testimonials .swiper-button-prev.swiper-button-disabled svg {
  stroke: #263238;
}

.ourValueSection {
  position: relative;
}
.ourValueSection .item {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 32px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ourValueSection .item .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 0;
     object-position: 0 0;
  transition: all 0.8s;
}
.ourValueSection .item .bg.sharing {
  -o-object-position: -50px 0;
     object-position: -50px 0;
}
.ourValueSection .item .details {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.8s;
}
.ourValueSection .item .details::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.ourValueSection .item .details.prime::before {
  background: var(--clr-primary-500);
}
.ourValueSection .item .details.second::before {
  background: var(--clr-secondary-500);
}
.ourValueSection .item .details h2 {
  position: relative;
  font-size: 20px;
  font-weight: var(--fw-semiBold);
  color: var(--clr-neutral-100);
}
.ourValueSection .item .details p {
  font-size: 16px;
  font-weight: 300;
  display: block;
  display: -webkit-box;
  color: var(--clr-neutral-100);
  height: 50px;
  margin: 0;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.8s;
}
.ourValueSection .item:hover .bg.inclusive {
  -o-object-position: -150px 0;
     object-position: -150px 0;
}
.ourValueSection .item:hover .bg.sustainable {
  transform: scale(1.1);
}
.ourValueSection .item:hover .bg.sharing {
  -o-object-position: 0 0;
     object-position: 0 0;
}
.ourValueSection .item:hover .bg.reconnecting {
  -o-object-position: -80px 0;
     object-position: -80px 0;
}
.ourValueSection .item:hover .details {
  height: 420px;
}
.ourValueSection .item:hover .details::before {
  opacity: 0.9;
}
.ourValueSection .item:hover .details p {
  font-size: 16px;
  height: 300px;
  -webkit-line-clamp: 10;
}

.team {
  position: relative;
}
.team .box {
  position: relative;
  width: 100%;
  height: 495px;
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.team .box .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 0;
     object-position: 0 0;
  transition: all 0.6s;
}
.team .box .overlay {
  position: absolute;
  width: 100%;
  height: 150px;
  left: 0;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9640231092) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.team .box .details {
  position: relative;
  width: 100%;
  height: 110px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.8s;
}
.team .box .details::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 2;
  transition: all 0.8s;
}
.team .box .details.prime::before {
  background: var(--clr-primary-500);
}
.team .box .details.second::before {
  background: var(--clr-secondary-500);
}
.team .box .details h2 {
  position: relative;
  font-size: 24px;
  text-align: center;
  font-weight: var(--fw-semiBold);
  color: var(--clr-neutral-100);
  z-index: 3;
}
.team .box .details p {
  font-size: 18px;
  font-weight: 400;
  display: block;
  text-align: center;
  display: -webkit-box;
  color: var(--clr-neutral-100);
  height: 0px;
  margin-top: 20px;
  -webkit-box-orient: vertical;
  overflow: hidden;
  z-index: 3;
  transition: all 0.5s;
}
.team .box:hover .details {
  height: 495px;
}
.team .box:hover .details::before {
  opacity: 0.9;
}
.team .box:hover .details p {
  font-size: 16px;
  height: 500px;
  transition: all 0.8s;
}

.bottomForm {
  position: relative;
  background: var(--clr-secondary-200);
  background-image: url("../images/bg/004.svg");
  background-position: center top;
  background-size: cover;
}
.bottomForm button {
  width: 100%;
}

.subscribeWrapper {
  position: relative;
  background: url("../images/bg/subscribe.svg");
  background-color: #f9fcfc;
  background-position: center 150px;
  background-size: cover;
}
.subscribeWrapper .coupon {
  position: relative;
}
.subscribeWrapper .coupon input {
  position: relative;
  width: 100%;
  height: 70px;
  border-radius: 12px;
  border: 2px solid #D9DADA;
  background: var(--clr-neutral-100);
  font-size: 18px;
  padding: 0 80px 0 30px;
}
.subscribeWrapper .coupon input:focus {
  outline: none;
}
.subscribeWrapper .coupon input::-moz-placeholder {
  color: #A7A7A7;
}
.subscribeWrapper .coupon input::placeholder {
  color: #A7A7A7;
}
.subscribeWrapper .coupon button {
  position: absolute;
  right: 0;
  top: 0px;
  width: 129px;
  height: 70px;
  background-color: var(--clr-primary-500);
  border-radius: 0 12px 12px 0;
  color: var(--clr-neutral-100);
  font-size: 16px;
}
.subscribeWrapper .subBox {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 2px solid #D9DADA;
  background: var(--clr-neutral-100);
  text-decoration: none;
  overflow: hidden;
}
.subscribeWrapper .subBox .edit {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--clr-primary-500);
  font-size: 20px;
  font-weight: var(--fw-medium);
}
/* .subscribeWrapper .subBox .head.head-cusines{display: block;padding: 15px 25px;}
.subscribeWrapper .subBox .head.head-cusines small{font-size: 12px;color: #8d2727;} */
.subscribeWrapper .subBox .head {
  position: relative;
  width: 100%;
  border-bottom: 2px solid #D9DADA;
  font-size: 24px;
  font-weight: var(--fw-semiBold);
  color: var(--clr-neutral-900);
  height: 72px;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .subscribeWrapper .subBox .head {
    padding: 25px;
    flex-direction: column;
    height: auto;
  }
}
.subscribeWrapper .subBox .head.b0 {
  border: 0 !important;
}
.subscribeWrapper .subBox .head .buttonWrap {
  display: flex;
  gap: 20px;
}
.subscribeWrapper .subBox .head .buttonWrap a {
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: var(--fw-medium);
  text-decoration: none;
}
@media (max-width: 768px) {
  .subscribeWrapper .subBox .head .buttonWrap a {
    margin-top: 10px;
    font-size: 14px;
  }
}
.subscribeWrapper .subBox .head .buttonWrap a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 3px;
  background-color: rgba(0, 0, 0, 0.0901960784);
}
.subscribeWrapper .subBox .head .buttonWrap a.cancel {
  position: relative;
  color: var(--clr-secondary-500);
}
.subscribeWrapper .subBox .head .buttonWrap a.cancel::before {
  background: var(--clr-secondary-500);
}
.subscribeWrapper .subBox .head .buttonWrap a.history {
  position: relative;
  color: var(--clr-primary-500);
}
.subscribeWrapper .subBox .head .buttonWrap a.history::before {
  background: var(--clr-primary-500);
}
.subscribeWrapper .subBox .note {
  position: relative;
  width: 100%;
  font-size: 18px;
  font-weight: var(--fw-regular);
  color: var(--clr-neutral-900);
  padding: 25px 25px 35px;
  display: flex;
  gap: 15px;
  background: #F4FEFF;
  border-top: 1px solid #D9DADA;
}
@media (max-width: 768px) {
  .subscribeWrapper .subBox .note {
    font-size: 14px;
  }
}
.subscribeWrapper .subBox .content {
  position: relative;
  display: block;
  width: 100%;
  padding: 40px 25px;
}
.subscribeWrapper .subBox .content .box-size {
  position: relative;
}
.top-main-box{
  width: 70%;
  margin: 0 auto;
}
.subscribeWrapper .subBox .content .box-size .title {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: var(--fw-semiBold);
  color: var(--clr-primary-500);
  margin-top: 20px;
}
.subscribeWrapper .subBox .content .box-size .title1 {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: var(--fw-semiBold);
  color: var(--clr-primary-500);
  margin-top: 0;
}
.subscribeWrapper .subBox .content .box-size .checkmark {
  position: absolute;
  display: block;
  top: 10px;
  left: 10px;
  height: 34px;
  width: 34px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--clr-primary-500);
  z-index: 3;
  cursor: default;
}
.subscribeWrapper .subBox .content .box-size .checkmark:after {
  content: "";
  position: absolute;
  left: 9px;
  top: 3px;
  width: 10px;
  height: 20px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: none;
}
.subscribeWrapper .subBox .content .box-size input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.subscribeWrapper .subBox .content .box-size input:checked ~ .checkmark {
  background: var(--clr-primary-500);
}
.subscribeWrapper .subBox .content .box-size input:checked ~ .checkmark:after {
  display: block;
}
.subscribeWrapper .subBox .content .box-size label {
  position: relative;
  border-radius: 16px;
  width: 100%;
  padding: 20px 30px;
  background: #E3F6F8;
  border: 2px solid var(--clr-primary-500);
  cursor: pointer;
  display: flex;
  justify-content: center;
}
.subscribeWrapper .subBox .content .box-size label::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 9;
}
.subscribeWrapper .subBox .content .personalDetails input, .subscribeWrapper .subBox .content .personalDetails select {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #D7D4D4;
}
.subscribeWrapper .subBox .content .personalDetails input::-moz-placeholder, .subscribeWrapper .subBox .content .personalDetails select::-moz-placeholder {
  color: #A7A7A7;
}
.subscribeWrapper .subBox .content .personalDetails input::placeholder, .subscribeWrapper .subBox .content .personalDetails select::placeholder {
  color: #A7A7A7;
}
.subscribeWrapper .subBox .content .accordion {
  border: 0;
}
.subscribeWrapper .subBox .content .accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
}
.subscribeWrapper .subBox .content .accordion .accordion-item:last-child {
  border: 0;
}
.subscribeWrapper .subBox .content .accordion .accordion-button, .subscribeWrapper .subBox .content .accordion .accordion-body {
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  box-shadow: none;
}
.subscribeWrapper .subBox .content .accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
}
.subscribeWrapper .subBox .content .accordion .accordion-button:not(.collapsed):focus {
  outline: 0;
  box-shadow: none;
}
.subscribeWrapper .subBox .content .calendar .grid-7-by-1 {
  /* Activate grid layout */
  display: grid;
  /* Create 5 columns, each 1 "fractional unit" wide */
  grid-template-columns: repeat(7, 1fr);
  /* Create 5 rows, each 1 "fractional unit" high */
  grid-template-rows: repeat(1, 1fr);
  font-size: 16px;
}
.subscribeWrapper .subBox .content .calendar .grid-7-by-1 .title {
  min-width: 50px;
  padding: 5px;
  font-size: var(--fw-semiBold);
  color: var(--clr-neutral-900);
}
@media (max-width: 768px) {
  .subscribeWrapper .subBox .content .calendar .grid-7-by-1 .title {
    min-width: 45px;
  }
}
@media (max-width: 768px) {
  .subscribeWrapper .subBox .content .calendar .grid-7-by-1 {
    font-size: 12px;
  }
}
.subscribeWrapper .subBox .content .calendar .grid-7-by-5 {
  /* Activate grid layout */
  display: grid;
  /* Create 5 columns, each 1 "fractional unit" wide */
  grid-template-columns: repeat(7, 1fr);
  /* Create 5 rows, each 1 "fractional unit" high */
  grid-template-rows: repeat(5, 1fr);
}
.subscribeWrapper .subBox .content .calendar .item {
  position: relative;
  min-width: 50px;
  aspect-ratio: 105/120;
  padding: 17px;
  display: flex;
  flex-direction: column;
  font-family: Lato;
  font-size: 16px;
  font-weight: var(--fw-semiBold);
  border: 1px solid #E7EEF8;
}
@media (max-width: 768px) {
  .subscribeWrapper .subBox .content .calendar .item {
    min-width: 45px;
    padding: 8px;
    font-size: 12px;
  }
}
.subscribeWrapper .subBox .content .calendar .item.disabled {
  color: #B6C0D9;
}
.subscribeWrapper .subBox .content .calendar .item.holiday {
  color: var(--clr-secondary-500);
}
.subscribeWrapper .subBox .content .calendar .item .icon {
  width: 32px;
}
@media (max-width: 768px) {
  .subscribeWrapper .subBox .content .calendar .item .icon {
    width: 16px;
  }
}
.subscribeWrapper .subBox .content .calendar .item:first-child {
  border-radius: 12px 0 0 0;
}
.subscribeWrapper .subBox .content .calendar .item:nth-child(7) {
  border-radius: 0 12px 0 0;
}
.subscribeWrapper .subBox .content .calendar .item:nth-child(29) {
  border-radius: 0 0 0 12px;
}
.subscribeWrapper .subBox .content .calendar .item:nth-child(35) {
  border-radius: 0 0 12px 0;
}
.subscribeWrapper .subBox .boxSelected {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.subscribeWrapper .subBox .boxSelected .box {
  position: relative;
  width: 94px;
  height: 61px;
  border-radius: 8px;
  background: #E3F6F8;
  display: flex;
  align-items: center;
  padding: 10px;
  justify-content: center;
}
.subscribeWrapper .subBox .boxSelected .box img {
  max-height: 48px;
}
.subscribeWrapper .subBox .boxSelected .title {
  font-size: 20px;
  font-weight: var(--fw-regular);
}
.subscribeWrapper .summary {
  position: relative;
  width: 100%;
  border-radius: 12px;
  border: 2px solid #D9DADA;
  background: var(--clr-neutral-100);
}
.subscribeWrapper .summary .head {
  position: relative;
  width: 100%;
  border-bottom: 2px solid #D9DADA;
  font-size: 20px;
  font-weight: var(--fw-semiBold);
  color: var(--clr-neutral-900);
  height: 72px;
  padding-left: 25px;
  display: flex;
  align-items: center;
}
.subscribeWrapper .summary ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 10px 25px 0 25px;
}
.subscribeWrapper .summary ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.subscribeWrapper .summary ul li:not(:first-child) {
  border-top: 1px solid rgba(0, 0, 0, 0.0901960784);
}
.subscribeWrapper .summary ul li .title, .subscribeWrapper .summary ul li .price {
  position: relative;
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: var(--clr-neutral-900);
}
.subscribeWrapper .summary ul li .title.red, .subscribeWrapper .summary ul li .price.red {
  color: #FF0B0B;
}
.subscribeWrapper .summary ul li:last-child {
  height: 78px;
  border-top: 1px solid rgba(0, 0, 0, 0.4039215686);
}
.subscribeWrapper .summary ul li:last-child .title, .subscribeWrapper .summary ul li:last-child .price {
  font-weight: var(--fw-semiBold);
}
.subscribeWrapper .summary ul li:last-child .price {
  font-size: 28px;
}
.subscribeWrapper .billing-history {
  position: relative;
  width: 100%;
  overflow-x: auto;
}
.subscribeWrapper .billing-history .head, .subscribeWrapper .billing-history .body {
  width: 100%;
  min-width: 1000px;
  display: flex;
}
.subscribeWrapper .billing-history .head > div, .subscribeWrapper .billing-history .body > div {
  width: 20%;
  flex-shrink: 0;
  flex-grow: 0;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.subscribeWrapper .billing-history .head .title, .subscribeWrapper .billing-history .body .title {
  position: relative;
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--clr-neutral-400);
}
.subscribeWrapper .billing-history .head .text, .subscribeWrapper .billing-history .body .text {
  position: relative;
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: var(--clr-neutral-800);
}
.subscribeWrapper .billing-history .body {
  position: relative;
  background-color: var(--clr-neutral-100);
  border-radius: 12px;
  border: 1px solid #D9DADA;
  margin-bottom: 20px;
}
.subscribeWrapper .billing-history .actionButton {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid var(--clr-primary-500);
  border-radius: 10px;
  transition: all 0.3s;
}
.subscribeWrapper .billing-history .actionButton svg {
  fill: var(--clr-primary-500);
  transition: all 0.3s;
}
.subscribeWrapper .billing-history .actionButton:hover {
  background-color: var(--clr-primary-500);
}
.subscribeWrapper .billing-history .actionButton:hover svg {
  fill: var(--clr-neutral-100);
}
.subscribeWrapper .loginBox {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  background: var(--clr-neutral-100);
  text-decoration: none;
  overflow: hidden;
  padding: 60px 45px;
  gap: 30px;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.subscribeWrapper .loginBox .enterMobileNo {
  width: 100%;
  max-width: 394px;
  margin-top: 30px;
}
.subscribeWrapper .loginBox .enterMobileNo label {
  position: relative;
  font-size: 20px;
  font-weight: var(--fw-semiBold);
  color: var(--clr-neutral-400);
}
.subscribeWrapper .loginBox .enterMobileNo .group {
  position: relative;
}
.subscribeWrapper .loginBox .enterMobileNo .group .code {
  position: absolute;
  color: var(--clr-neutral-900);
  z-index: 9;
  left: 25px;
  top: 10px;
}
.subscribeWrapper .loginBox .enterMobileNo .group input {
  background-color: #fff;
  padding-left: 60px;
  border-radius: 12px;
  font-size: 16px;
  border: 1px solid #D7D4D4;
}
.subscribeWrapper .loginBox .enterMobileNo .group input::-moz-placeholder {
  color: #A7A7A7;
}
.subscribeWrapper .loginBox .enterMobileNo .group input::placeholder {
  color: #A7A7A7;
}
.subscribeWrapper .loginBox .loginWith {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  height: 51px;
  font-weight: var(--fw-medium);
  padding: 0 20px;
  text-decoration: none;
  color: var(--clr-primary-500);
  width: 100%;
  max-width: 394px;
  border-radius: 30px;
  gap: 10px;
  overflow: hidden;
  transition: all 0.3s;
  background-color: #edf6fd;
}
.subscribeWrapper .loginBox .loginWith img {
  width: 22px;
}
.subscribeWrapper .loginBox .otp {
  width: 100%;
  max-width: 394px;
  margin-top: 30px;
}
.subscribeWrapper .loginBox .otp label {
  position: relative;
  font-size: 20px;
  font-weight: var(--fw-semiBold);
  color: var(--clr-neutral-400);
}
.subscribeWrapper .loginBox .otp .group {
  position: relative;
  display: flex;
  width: 100%;
  gap: 25px;
}
@media (max-width: 768px) {
  .subscribeWrapper .loginBox .otp .group {
    gap: 5px;
  }
}
.subscribeWrapper .loginBox .otp .group input {
  background-color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 0;
  font-size: 16px;
  border: 1px solid #D7D4D4;
}
.subscribeWrapper .loginBox .otp .group input::-moz-placeholder {
  color: #A7A7A7;
}
.subscribeWrapper .loginBox .otp .group input::placeholder {
  color: #A7A7A7;
}
.subscribeWrapper .loginBox .resend {
  position: relative;
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--clr-primary-500);
  margin-top: 36px;
}
.subscribeWrapper .loginBox .back {
  position: absolute;
  top: 25px;
  left: 25px;
  cursor: pointer;
}
.subscribeWrapper .loginBox button {
  width: 100%;
  max-width: 394px;
  height: 58px;
  border-radius: 100px;
  font-size: 20px;
  margin-top: auto;
  background-color: var(--clr-primary-500);
  color: #ffffff;
}
.subscribeWrapper .loginBox button:disabled {
  position: relative;
  background-color: #F8F7FA;
  color: #A7A7A7;
}

.thankYou {
  position: relative;
}
.thankYou .text1 {
  font-family: var(--ff-primary);
  font-size: 32px;
  color: var(--clr-primary-500);
  margin-top: 50px;
  margin-bottom: 0;
}
.thankYou .text2 {
  font-size: 20px;
  color: #676767;
  font-size: var(--fw-regular);
  margin-top: 40px;
}

.thankYouBottom {
  position: relative;
  background-color: #fef9f5;
  background-image: url("../images/bg/contant-bg.svg");
  background-position: center top;
  background-size: cover;
}
.thankYouBottom .text1 {
  font-size: 24px;
  font-weight: var(--fw-medium);
  color: var(--clr-primary-500);
}
.thankYouBottom .btn1, .thankYouBottom .btn2 {
  height: 56px;
  padding-left: 66px;
  justify-content: flex-start;
}
.thankYouBottom .btn1 .circle, .thankYouBottom .btn2 .circle {
  position: absolute;
  background-color: var(--clr-neutral-100);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 7px;
}
.thankYouBottom h3 {
  font-size: 20px;
  color: var(--clr-primary-500);
  font-weight: var(--fw-semiBold);
  text-transform: uppercase;
}
.thankYouBottom ul {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  margin: auto;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.thankYouBottom ul li a {
  position: relative;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background-color: var(--clr-primary-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.thankYouBottom ul li a:hover {
  background-color: var(--clr-primary-500-hover);
}

#orderSummeryWrap {
  height: auto;
  width: 100%;
  max-width: 412px;
  position: relative;
  z-index: 2;
}

#sidebar {
  width: 100%;
  height: 520px;
  max-width: 412px;
  position: fixed;
}
@media (max-width: 768px) {
  #sidebar {
    position: relative !important;
  }
}
.stickyparent .wrapper {
  position: relative;
}
.stickyparent .wrapper > div {
  transition: all 0.5s;
}
.stickyparent .sticky {
  margin-top: 100px;
}
#sidebar.fixed {
  position: fixed;
  top: 0;
  margin-top: 90px;
}
@media (max-width: 768px) {
  #sidebar.fixed {
    position: relative !important;
  }
}

.rdrCalendarWrapper {
  width: 100%;
  max-width: 600px;
  margin: auto;
}
.rdrCalendarWrapper .rdrMonth {
  width: 100%;
}
.rdrCalendarWrapper .rdrDay {
  aspect-ratio: 1/0.7;
  height: auto;
  border: 1px solid #E7EEF8;
}
.rdrCalendarWrapper .rdrDay .rdrDayNumber .normalDay::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url("../images/icons/calendar-icon.svg");
  background-size: cover;
  z-index: 2;
  left: 45px;
  top: 26px;
}
.rdrCalendarWrapper .rdrDay.rdrDayStartOfWeek .rdrDayNumber .normalDay::before,
.rdrCalendarWrapper .rdrDay.rdrDayStartOfWeek .rdrDayNumber .holidayDay::before,
.rdrCalendarWrapper .rdrDay .rdrDayNumber .allSaturday::before,
.rdrCalendarWrapper .rdrDay .rdrDayNumber .firstThirdSaturday::before,
.rdrCalendarWrapper .rdrDay .rdrDayNumber .secondFourthSaturday::before,
.rdrCalendarWrapper .rdrDay .rdrDayNumber .holidayDay::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url("../images/icons/calendar-icon2.svg");
  background-size: cover;
  z-index: 2;
  left: 45px;
  top: 26px;
}
.rdrCalendarWrapper .rdrDay .rdrStartEdge, .rdrCalendarWrapper .rdrDay .rdrEndEdge, .rdrCalendarWrapper .rdrDay .rdrInRange {
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
}
.rdrCalendarWrapper .rdrDayNumber {
  font-size: 16px;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  top: 0;
  padding: 5px;
}
.rdrCalendarWrapper .rdrMonthAndYearPickers select {
  font-size: 16px;
}
.rdrCalendarWrapper .rdrDayStartOfWeek::before {
  background: url("../images/icons/calendar-icon2.svg");
  width: 20px;
  height: 20px;
  background-size: cover;
}
.rdrCalendarWrapper .rdrDayPassive::before {
  display: none;
}

footer {
  position: relative;
  width: 100%;
  background: var(--clr-primary-500);
}
footer .topSection {
  padding: 80px 0 20px;
}
footer .topSection .footerHead {
  position: relative;
  margin-top: 25px;
  font-size: 20px;
  color: var(--clr-neutral-100);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  footer .topSection .footerHead {
    text-align: center;
  }
}
footer .topSection .info .logo {
  width: 200px;
}
@media (max-width: 768px) {
  footer .topSection .info .logo {
    margin: auto;
  }
}
footer .topSection .info p {
  font-size: 16px;
  color: #DEDEDE;
}
@media (max-width: 768px) {
  footer .topSection .info p {
    text-align: center;
  }
}
footer .topSection .linkWrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  gap: 15px;
}
@media (max-width: 768px) {
  footer .topSection .linkWrapper {
    align-items: center;
  }
}
footer .topSection .linkWrapper .singleLink {
  position: relative;
  font-size: 16px;
  font-weight: var(--fw-regular);
  color: #DEDEDE;
  text-decoration: none;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  footer .topSection .linkWrapper .singleLink {
    text-align: center;
  }
}
footer .topSection .linkWrapper .singleLink:hover {
  color: var(--clr-neutral-100);
}
footer .topSection .subscribeForm {
  position: relative;
  width: 100%;
  margin-top: 30px;
}
footer .topSection .subscribeForm form {
  position: relative;
}
footer .topSection .subscribeForm form input {
  position: relative;
  width: 100%;
  height: 55px;
  background: var(--clr-neutral-100);
  border: 0;
  border-radius: 50px;
  padding: 0 50px 0 30px;
}
footer .topSection .subscribeForm form input:focus {
  outline: 2px solid var(--clr-primary-100);
}
footer .topSection .subscribeForm form button {
  position: absolute;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: var(--clr-primary-500);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  right: 6px;
  top: 6px;
  transition: all 0.3s;
}
footer .topSection .subscribeForm form button:hover {
  background: var(--clr-primary-500-hover);
}
footer .topSection .social {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 30px;
  display: flex;
  gap: 10px;
}
footer .topSection .social a {
  position: relative;
  transition: all 0.3s;
}
footer .topSection .social a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  footer .topSection .social {
    justify-content: center;
  }
}
footer .bottomSection {
  position: relative;
  padding: 20px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  color: var(--clr-neutral-100);
  gap: 25px;
}
footer .bottomSection p {
  color: #DEDEDE;
  font-size: 16px;
  padding: 0;
  margin: 0;
}/*# sourceMappingURL=style.css.map */
.react-datepicker-wrapper{width: 100%;}
.holiday {
  background-color: #ffeb3b;
  color: #000;
}
.manage-cal-date li{list-style-type: none;
  background: #115561;
  padding: 5px 28px;
  width: fit-content;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 200;
  color: #ffffff;margin-bottom: 10px;opacity: 0.85;}
.manage-cal-date{float: left;margin-top: 90px;padding: 0px;}
.pause-cal-date{float: left;margin-top: 0px;padding: 0px; margin-bottom: 0;}
.pause-cal-date li{list-style-type: none;
  background: #115561;
  padding: 5px 28px;
  width: fit-content;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 200;
  color: #ffffff;margin-bottom: 10px;opacity: 0.85;float: left;margin-right: 10px;}
.form-check-input:hover{cursor: pointer;}
.faq {
  position: relative;
}
.faq .accordion-button {
  background-color: var(--clr-primary-500);
  color: var(--clr-neutral-100);
}
.faq .accordion-button::after {
  filter: invert(1);
}
.faq .accordion-body {
  font-size: 16px;
}
.head.head-cusines small{
  color:#f73d3d;
  font-weight: normal;
  font-size: 13px;
}
