@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');

:root {
  --main-clr: #5f6444;
  --link-head: 18px;
  --normal-font: 16px;
  --small-link: 15px;
  --item-head: 24px;
  --big-head: 48px;
  --mid-head: 38px;
  --set-head: 36px;
  --para-head: 20px;
  --small-head: 14px;
  --sub-head: 32px;
  --padding: 6vw;
}
*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Roboto', sans-serif;
}

button:focus {
  outline: none;
}
input,
textarea,
button {
  font-family: inherit;
}
a,
button {
  color: inherit;
  text-decoration: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: normal;
  line-height: auto;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* swiper */
.swiper {
  width: 100%;
}
/* swiper end */

/* head word press */

.head-list .current_page_item.active a,
.current-menu-parent,
.m-list .current_page_item.active a {
  color: #cfa1a1;
}

/* head word press */

/* header */
.background-ch {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(180deg, #313131 0%, rgba(255, 255, 255, 0) 100%);
  /* mix-blend-mode: multiply; */
  z-index: -1;
}
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 5vw;
  position: fixed;
  z-index: 100;
  height: 130px;
  align-items: center;
}

.rh-top .head-list {
  gap: 1rem;
}
.head-list {
  display: flex;
  gap: 3rem;
  color: white;
  align-items: center;
}
.m-list .dropdown-menu li,
.head-list .dropdown-menu li {
  padding: 0.5rem;
}
.m-list .dropdown-menu {
  padding: 0.5rem;
}
.rh-bottom .head-list li:nth-last-child(1) .dropdown-menu {
  right: 0;
}
.head-list .dropdown-menu {
  /* transition: all 300ms; */
  background: #0000006c;
  color: white;
  border: none;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.head-list>li:hover>ul {
  display: block;
}
.head-list li a:hover {
  color: #cfa1a1;
}
.head-list > li > a {
  font-family: Roboto;
  font-size: var(--link-head);
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
}

.rh-top > ul > li > a {
  border: 2px solid #fff;
  padding: 0px 20px;
  border-radius: 50px;
  line-height: 36px;
  height: 40px;
  display: flex;
  align-items: center;
  color: #fff;
  font-family: Roboto;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  border-radius: 50px;
  border: 2px solid #fff;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 40px;
}
/* .head-list > li:nth-last-child(1) a {
  color: #fff;
  font-family: Roboto;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  border-radius: 50px;
  border: 2px solid #fff;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 40px;
} */
/* header end*/
/* Mobile */
.mobile.m-show {
  top: 130px;
  visibility: visible;
  /* opacity: 1; */
  transition: all 300ms;
}
.mobile {
  visibility: hidden;
  position: fixed;
  z-index: 10;
  top: -100%;
  right: 0;
  width: 100%;
  text-align: right;
  padding: 2rem;
  /* height: 100vh; */
  background-color: white;
  transition: all 300ms;
  /* opacity: 0; */
}
.m-list li a:hover {
  color: #6a951d;
  transition: all 100ms;
}
.m-list a {
  font-size: var(--normal-font);
  font-weight: 500;
  padding-right: 10px;
}
.m-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.m-list > li:nth-last-child(1) a {
  border-radius: 50px;
  border: 2px solid var(--Ayagreen, #5f6444);
  padding: 10px 15px;
}

/* nav-icon */
#nav-icon1 {
  display: none;
  width: 40px;
  height: 29px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  /* bottom: 10px; */
  margin-left: 30px;
}
#nav-icon1 span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 12px;
}

#nav-icon1 span:nth-child(3) {
  top: 24px;
}

#nav-icon1.open span:nth-child(1) {
  top: 12px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 12px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* nav-icon end */
/* Mobile end */

/* home */
.home-main {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  flex-direction: column;
}
.home-main img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.home-main h1 {
  padding: 0 15%;
  color: #fff;
  font-family: Inter;
  font-size: 46px;
  font-style: normal;
  font-weight: 600;
  line-height: 50.6px; /* 110% */
  white-space: nowrap;
}

.home-about {
  background: #f1f1f1;
}
.ha-contain {
  padding: 3rem var(--padding);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hac-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hac-left a {
  color: #5e5e5e;
  font-family: Inter;
  font-size: var(--small-link);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: inline-flex;
  height: 56px;
  padding: 16px 32px;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 100px;
  border: 2px solid var(--Ayagreen, #5f6444);
  background: #fff;
  width: fit-content;
}
.hac-left p {
  color: #222;
  font-family: Inter;
  font-size: var(--normal-font);

  font-style: normal;
  font-weight: 400;
  line-height: 130.523%; /* 20.884px */
  letter-spacing: -0.048px;
}
.hac-left h3 {
  color: #222;
  font-family: Inter;
  font-size: var(--item-head);
  font-style: normal;
  font-weight: 500;
  line-height: 135%; /* 32.4px */
  letter-spacing: -0.48px;
}
.hac-right {
  width: 50%;
  display: flex;
  justify-content: center;
}
.hac-right:hover .hacr-bottom {
  left: -20px;
}
.hac-contain {
  position: relative;
  display: flex;
  width: fit-content;
  width: 526px;
  height: 409px;
}
.hacr-top a {
  display: flex;
  /* width: 283px; */
  height: 56px;
  padding: 16px 32px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  border-radius: 100px;
  background: var(--Ayagreen, #5f6444);
  color: #fff;
  font-family: Inter;
  font-size: var(--small-link);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.hacr-top p {
  color: #222;
  font-family: Inter;
  font-size: var(--item-head);

  font-style: normal;
  font-weight: 500;
  line-height: 36px; /* 150% */
  margin-bottom: auto;
  margin-top: 1rem;
  max-width: 201px;
}
.hacr-top {
  position: relative;
  width: 367px;
  height: 409px;
  flex-shrink: 0;
  right: 0;
  border-radius: 10px;
  background: #fff;
  left: -180px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.hacr-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hacr-bottom {
  width: 339px;
  height: 396px;
  flex-shrink: 0;
  position: relative;
  bottom: -10%;
  left: 0;
  transition: left 300ms;
  border-radius: 10px;
  border: 1px solid #dedede;
  overflow: hidden;
}
.hacr-icon .iconify {
  font-size: var(--big-head);
  color: #5f6444;
}

.home-featured {
  padding: 3rem var(--padding);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.home-featured h3 {
  color: #222;
  font-family: Inter;
  font-size: var(--mid-head);
  font-style: normal;
  font-weight: 600;
  line-height: 36px; /* 94.737% */
  letter-spacing: -1.14px;
  margin-bottom: 2rem;
}
.home-featured h6 {
  color: #2e2e2e;
  font-family: Inter;
  font-size: var(--normal-font);

  font-style: normal;
  font-weight: 400;
  line-height: 23.2px; /* 145% */
}
.featured-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.featured-item h5 {
  color: #222;
  font-family: Inter;
  font-size: var(--link-head);
  font-style: normal;
  font-weight: 500;
  line-height: 135%; /* 24.3px */
  letter-spacing: -0.36px;
  text-align: left;
}
.featured-item h6 .iconify:nth-last-child(1) {
  font-size: 30px;
  color: #6a951d;
  margin-left: auto;
  visibility: hidden;
  opacity: 0;
  transition: all 200ms;
}
.featured-item h6 .iconify {
  font-size: var(--para-head);
}
.featured-item h6 {
  color: #706f6f;
  font-family: Inter;
  font-size: var(--small-head);
  font-style: normal;
  font-weight: 600;
  line-height: 135%; /* 18.9px */
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.featured-item:hover .fgi-det {
  padding: 1rem;
}
.featured-item:hover {
  background-color: #fff7da;
}
.featured-item:hover h6 .iconify:nth-last-child(1) {
  visibility: visible;
  opacity: 1;
}
.featured-item {
  width: 298px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.featured-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.fi-image {
  width: 298px;
  height: 205px;
}
.fi-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.fgi-det {
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  padding: 1rem 0;
  transition: all 200ms;
}
.home-featured > a {
  width: fit-content;
  color: #fff;
  font-family: Inter;
  font-size: var(--small-link);

  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 100px;
  background: #5f6444;
  display: inline-flex;
  height: 56px;
  padding: 16px 32px;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin: 0 auto;
}

.home-locations {
  background-color: #ece7e7;
}
.h-location-contain {
  padding: 3rem var(--padding);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.h-location-contain h3 {
  color: #222;
  font-family: Inter;
  font-size: var(--mid-head);

  font-style: normal;
  font-weight: 600;
  line-height: 55px; /* 144.737% */
  letter-spacing: -0.38px;
}
.h-location-contain p {
  color: #2e2e2e;
  font-family: Inter;
  font-size: var(--normal-font);

  font-style: normal;
  font-weight: 400;
  line-height: 23.2px; /* 145% */
  max-width: 800px;
}
.location-group {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.location-item {
  width: 294px;
  height: 360px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: end;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
}
.location-item:hover img {
  transform: scale(1.1) rotate(3deg);
}
.location-item img {
  transition: all ease-in-out 0.3s;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.location-item h4 {
  color: #fdfcff;
  font-family: Inter;
  font-size: var(--item-head);
  font-style: normal;
  font-weight: 700;
  line-height: 29px; /* 125% */
  letter-spacing: 0.464px;
  padding: 1rem;
}
.h-location-contain > a {
  color: #fff;
  font-family: Inter;
  font-size: var(--small-link);

  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: inline-flex;
  height: 56px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  border-radius: 100px;
  background: var(--Ayagreen, #5f6444);
  width: fit-content;
  margin: 0 auto;
}

.home-why {
  background: #f1f1f1;
  padding: 3rem var(--padding);
}
.home-why-button li .nav-link.active {
  border-bottom: 3px solid #c993937e;
}
.home-why-button li button {
  color: #222;
  font-family: Inter;
  font-size: var(--link-head);
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 111.111% */
  padding: 0.5rem;
  border-color: #c993937e;
}
.home-why-button {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.we-do-contain {
  display: flex;
  padding: 2rem 0;
  gap: 3rem;
}
.we-do-left {
  width: 30%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}
.we-do-para p {
  margin-bottom: 1.5rem;
}
.we-do-left h3 {
  color: #222;
  font-family: Inter;
  font-size: var(--sub-head);
  font-style: normal;
  font-weight: 600;
  line-height: 36px; /* 112.5% */
  letter-spacing: -0.96px;
}
.we-do-left p {
  color: #222;
  font-family: Inter;
  font-size: var(--normal-font);

  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
}
.we-do-left a {
  color: #5f6444;
  font-family: Inter;
  font-size: var(--small-link);

  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 100px;
  border: 2px solid #5f6444;
  background: #fff;
  display: flex;
  width: 191px;
  height: 56px;
  padding: 16px 32px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.we-do-right {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.we-do-rt-left,
.we-do-rt-right,
.we-do-rb-left,
.we-do-rb-right {
  border-radius: 10px;
  background: #fff;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
}
.we-do-rt-left,
.we-do-rt-right {
  flex-direction: column;
}
.we-do-rb-left,
.we-do-rb-right {
  align-items: center;
}
.we-do-rb1 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.we-do-r-top {
  display: flex;
  gap: 1.5rem;
}
.we-do-rt-left {
  width: 40%;
  gap: 2rem;
  /* min-height: 300px; */
}
.we-do-right img {
  transition: all 1s;
  perspective: 500px;
}
.we-do-rt-left img {
  width: 112px;
  height: 96px;
}
.what-extra-item:hover img,
.we-do-rb-right:hover img,
.we-do-rb-left:hover img,
.we-do-rt-right:hover img,
.we-do-rt-left:hover img {
  transform: rotateY(-360deg);
}
.we-do-right h4 {
  color: #222;
  font-family: Inter;
  font-size: var(--normal-font);

  font-style: normal;
  font-weight: 800;
  line-height: 20px; /* 125% */
  max-width: 150px;
}
.we-do-right p {
  color: #222;
  font-family: Inter;
  font-size: var(--normal-font);

  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  max-width: 300px;
}
.we-do-rt-right {
  width: 60%;
  /* min-height: 300px; */
  gap: 2rem;
}

.we-do-rt-right img {
  width: 112px;
  height: 96px;
  margin-left: auto;
}

.we-do-r-bottom {
  display: flex;
  gap: 1.5rem;
}
.we-do-rb-left {
  width: 70%;
  /* min-height: 219px; */
}
.we-do-rb-right {
  width: 40%;
  /* min-height: 219px; */
}
.we-do-rb-left img {
  width: 107px;
  height: 107px;
  flex-shrink: 0;
}
.we-do-rb-right img {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
}
/* home */

/* footer start */
.foot {
  display: flex;
  flex-direction: column;
  padding: 3rem var(--padding);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 4rem;
  padding-top: 4rem;
  border-bottom: 1px solid #5f64441e;
  border-top: 1px solid #5f64441e;
}
.footer-top-left {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.foot-logo {
}
.foot-para p {
  color: #5e5e5e;
  font-family: Inter;
  font-size: var(--normal-font);

  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
}
.foot-links {
  display: flex;
  gap: 1rem;
}
.foot-links .iconify {
  width: 18px;
  height: 18px;
  color: #5f6444;
}

.footer-top-right {
  width: 65%;
}
.footer-top-right h4 {
  color: #222;
  font-family: Inter;
  font-size: var(--link-head);
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 111.111% */
}
.footer-top-right ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 1rem;
  margin-top: 2rem;
}
.footer-top-right ul li {
  color: #5e5e5e;
  font-family: Inter;
  font-size: var(--normal-font);

  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 3rem 0;
  gap: 1rem;
}
.footer-bottom-left {
  display: flex;
  width: 40%;
  justify-content: space-between;
}
.footer-bottom-right2 {
  width: fit-content;
  display: flex;
}
.footer-bottom-right {
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 0.5rem;
  /* justify-content: space-between; */
}
.footer-bottom-right h3 {
  color: #2e2e2e;
  font-family: Inter;
  font-size: var(--link-head);
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
}
.footer-bottom-left h4 {
  color: #2e2e2e;
  font-family: Inter;
  font-size: var(--link-head);
  font-style: normal;
  font-weight: 600;
  line-height: 36px; /* 200% */
}
.footer-bottom-left ul {
}
.footer-bottom-left ul li a {
  color: #5e5e5e;
  font-family: Inter;
  font-size: var(--normal-font);

  font-style: normal;
  font-weight: 600;
  line-height: 36px; /* 225% */
  letter-spacing: -0.48px;
}

.footer-bottom-right p {
  color: #5e5e5e;
  font-family: Inter;
  font-size: var(--normal-font);

  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  max-width: 300px;
}
.footer-bottom-right2 a {
  margin: 0 auto;
  color: #5f6444;
  font-family: Inter;
  font-size: var(--small-link);
  width: fit-content;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: inline-flex;
  height: 56px;
  padding: 16px;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 100px;
  border: 2px solid #5f6444;
  background: #fff;
  text-wrap: nowrap;
}
.footer-bl-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
/* footer end */

/* login page */
.sign-in {
  display: flex;
  background: #f2f2f2;
}
.sign-in-left {
  position: relative;
  width: 50%;
  min-height: 100vh;
  z-index: 1;
}
.sign-in-left > img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.sign-in-det {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 var(--padding);
  padding-bottom: 20%;
  gap: 3rem;
}
.sign-in-det img {
  width: fit-content;
  height: fit-content;
}
.sign-in-det h1 {
  color: #fff;
  font-family: Inter;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 59px; /* 105.357% */
  letter-spacing: -1.68px;
  max-width: 400px;
}
.sign-in.register .sign-in-right a {
  color: #667085;
  font-family: Inter;
  font-size: var(--para-head);

  font-style: normal;
  font-weight: 400;
  line-height: 47px; /* 235% */
  padding: 0;
}
.sign-in.register .sign-in-right h3 {
  color: #101828;
  font-family: Inter;
  font-size: var(--big-head);

  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 125% */
  letter-spacing: -0.96px;
}
.sign-in-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 8rem;
}
.sign-in-right img {
  width: fit-content;
  height: fit-content;
  margin-bottom: 1rem;
}
.sign-in-right h3 {
  color: #101828;
  font-family: Inter;
  font-size: var(--set-head);
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 166.667% */
  letter-spacing: -0.72px;
  margin-bottom: 1rem;
}
.sign-in-right form {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
}
.sign-in-right form label {
}
.sign-in-right form input {
  color: var(--gray-500, #667085);
  /* Text md/Normal */
  font-family: Inter;
  font-size: var(--normal-font);

  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  display: flex;
  padding: 12px 16px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid #d0d5dd;
  background: #fff;
  /* Shadow/xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  outline: none;
  margin-bottom: 2rem;
}
.sign-in-right form button {
  display: flex;
  padding: 16px 32px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  border-radius: 100px;
  background: #5f6444;
  outline: none;
  border: none;
  color: #fff;
  font-family: Inter;
  font-size: var(--link-head);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.sign-in-right a:nth-last-child(1) {
  color: var(--gray-500, #667085);
  font-family: Inter;
  font-size: var(--para-head);

  font-style: normal;
  font-weight: 600;
  line-height: 127px; /* 635% */
  text-align: center;
  padding-top: 4rem;
}
.sign-in-right a:nth-last-child(2) {
  color: #667085;
  text-align: right;
  font-family: Inter;
  font-size: var(--para-head);

  font-style: normal;
  font-weight: 400;
  line-height: 47px; /* 235% */
  text-decoration-line: underline !important;
}
/* login page */

/* listing-page */

.head-gap {
  height: 130px;
  background: linear-gradient(180deg, #3b3a3a 0%, #9a9393 100%);
  mix-blend-mode: multiply;
}

.featured-listing {
  padding: 3rem var(--padding);
}
.custom-bread {
}
.custom-bread ul li a {
  display: flex;
  align-items: center;
  color: #717171;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.2px; /* 193.333% */
}
.small-banner .custom-bread ul li a::after {
  content: url('https://api.iconify.design/uiw/right.svg?color=white');
}
.custom-bread ul li a::after {
  content: url('https://api.iconify.design/uiw/right.svg?color=%23717171');
  width: 10px;
  height: 15px;
  padding-left: 0.5rem;
}
.custom-bread ul {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.listing-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.listing-search h1 {
  color: #222;
  font-family: Inter;
  font-size: var(--mid-head);

  font-style: normal;
  font-weight: 600;
  line-height: 36px; /* 94.737% */
  letter-spacing: -1.14px;
}
.listing-search h3 {
  color: #222;
  font-family: Inter;
  font-size: var(--item-head);

  font-style: normal;
  font-weight: 600;
  line-height: 36px; /* 150% */
  letter-spacing: -0.72px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.listing-search h3 .iconify {
  width: 27.036px;
  height: 27.036px;
  font-weight: 600;
}
.featured-listing h4 {
  color: #2e2e2e;
  font-family: Inter;
  font-size: var(--normal-font);

  font-style: normal;
  font-weight: 400;
  line-height: 23.2px; /* 145% */
  padding-top: 2rem;
}
.featured-listing-group {
  padding: 3rem var(--padding);
  display: flex;
  flex-direction: column;
}
.featured-listing-group > a {
  color: #fff;
  font-family: Inter;
  font-size: var(--small-link);

  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: inline-flex;
  height: 56px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  border-radius: 100px;
  background: var(--Ayagreen, #5f6444);
  width: fit-content;
  margin: 0 auto;
}
/* listing-page */

/* inside page */
.c-breadcrump {
  padding: 1rem var(--padding);
}

.c-breadcrump .custom-bread ul li:nth-last-child(1) a::after {
  display: none;
}
.inside-check {
  padding: 0 var(--padding);
}
.inside-image {
  width: 100%;
  display: flex;
  gap: 2rem;
  /* flex-direction: column; */
}
.inside-image-left {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.iil-top {
  max-height: 533px;
}
.iil-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.iil-bottom img {
  /* max-width: 187px;
  max-height: 123px; */
  flex-shrink: 0;
  border-radius: 10px;
}
.iil-bottom {
  display: flex;
  justify-content: space-between;
}
.inside-image-right {
  min-width: 30%;
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* min-width: 370px; */
}

.iir-top {
  border-radius: 10px;
  background: #f4f2f2;
  height: 40%;
}
.iir-bottom {
  border-radius: 10px;
  background: #f4f2f2;
  min-height: fit-content;
  /* height: 60%; */
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.iir-top {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.iir-top h2 {
  color: #222;
  font-family: Inter;
  font-size: var(--sub-head);
  font-style: normal;
  font-weight: 600;
  line-height: 45px; /* 140.625% */
  letter-spacing: -0.96px;
}
.iir-top h6 .iconify {
  width: 16px;
  height: 16px;
  color: #706f6f;
}
.iir-top h6 {
  color: #222;
  font-family: Inter;
  font-size: var(--normal-font);

  font-style: normal;
  font-weight: 500;
  line-height: 36px; /* 225% */
  letter-spacing: -0.48px;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.lirb-head {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.lirb-head .lirb-head h6 {
  color: #222;
  font-family: Inter;
  font-size: var(--normal-font);

  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -0.48px;
}
.lirb-head h4 {
  color: #222;
  font-family: Inter;
  font-size: var(--item-head);

  font-style: normal;
  font-weight: 600;
  line-height: 36px; /* 150% */
  letter-spacing: -0.72px;
}
.iir-bottom form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.label-input input,
.label-input select {
  border: none;
  outline: none;
  background: transparent;
}
.iir-bottom form .form-contain .label-input {
  display: flex;
  flex-direction: column;
  width: 155px;
  padding: 7px 8px 7px 8px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 1px solid #bcbcbc;
  background: #fff;
}
.iir-bottom form .form-contain {
  display: flex;
  justify-content: space-between;
}
.iir-bottom form button {
  border-radius: 100px;
  background: #5f6444;
  border: none;
  outline: transparent;
  color: #fff;
  font-family: Inter;
  font-size: var(--small-link);

  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  justify-content: space-between;
  padding: 16px 32px;
  align-items: center;
}
.bottom-control {
  padding: 2rem 0;
  display: flex;
  width: 70%;
  justify-content: space-between;
}
.bottom-control a {
  color: #5e5e5e;
  font-family: Inter;
  font-size: var(--small-link);

  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #5e5e5e;
  background: #fff;
  gap: 0.5rem;
  padding: 0 35px;
}
.custom-nav {
  display: flex;
  gap: 1rem;
}
.custom-nav button {
  width: 46px;
  height: 47px;
  outline: none;
  border-radius: 100px;
  border: 1px solid #5e5e5e;
  background: #fff;
}
.things-know {
  padding: 2rem var(--padding);
}
.things-know-inside {
  width: 100%;
  display: flex;
  gap: 2rem;
}
.things-know-left {
  width: 70%;
}
.things-more-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid #cdcccc;
}
.things-more-detail h3 {
  color: #222;
  font-family: Inter;
  font-size: var(--item-head);

  font-style: normal;
  font-weight: 600;
  line-height: 55px; /* 229.167% */
  letter-spacing: -0.24px;
}
.things-more-detail p {
  color: #222;
  font-family: Inter;
  font-size: var(--normal-font);

  font-style: normal;
  font-weight: 500;
  line-height: 36px; /* 225% */
  letter-spacing: -0.48px;
}
.things-more-detail a {
  color: #5e5e5e;
  font-family: Inter;
  font-size: var(--small-link);

  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 100px;
  border: 2px solid #5e5e5e;
  background: #fff;
  display: inline-flex;
  height: 56px;
  padding: 16px 32px;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  width: fit-content;
  margin: 5rem auto;
}

.most-liked {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.most-liked h3 {
  color: #222;
  font-family: Inter;
  font-size: var(--item-head);

  font-style: normal;
  font-weight: 600;
  line-height: 55px; /* 229.167% */
  letter-spacing: -0.24px;
}
.ml-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.ml-item h4 {
  color: #222;
  text-align: center;
  font-family: Inter;
  font-size: var(--small-head);
  font-style: normal;
  font-weight: 600;
  line-height: 165%; /* 23.1px */
  letter-spacing: -0.14px;
}
.ml-item .iconify {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.ml-item {
  display: flex;
  width: 147px;
  height: 52px;
  padding: 12px 16px;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #f4f2f2;
}
.things-know-right {
  min-width: 30%;
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.things-less-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.things-less-detail h3 {
  color: #222;
  font-family: Inter;
  font-size: var(--item-head);

  font-style: normal;
  font-weight: 600;
  line-height: 55px; /* 229.167% */
  letter-spacing: -0.24px;
}
.tld-group {
  border-radius: 10px;
  background: #fff7da;
  padding: 2rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.tld-group p {
  color: #222;
  font-family: Inter;
  font-size: var(--normal-font);

  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  letter-spacing: -0.48px;
}
.things-location {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 10px;
  background: #f8f5f5;
  padding: 1rem;
}
.things-location h3 {
  color: #222;
  font-family: Inter;
  font-size: var(--item-head);

  font-style: normal;
  font-weight: 600;
  line-height: 55px; /* 229.167% */
  letter-spacing: -0.24px;
}
.things-location iframe {
  min-height: 236px;
}

.book-now {
  padding: 3rem var(--padding);
  display: flex;
  gap: 2rem;
}

.book-now-left {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 10px;
  background: #f8f5f5;
}
.book-now-left h3 {
  color: #222;
  font-family: Inter;
  font-size: var(--item-head);

  font-style: normal;
  font-weight: 600;
  line-height: 55px; /* 229.167% */
  letter-spacing: -0.24px;
}
.book-now-left form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.book-now-left form .form-contain {
  display: flex;
  gap: 1rem;
}
.book-now-left form button {
  color: #fff;
  font-family: Inter;
  font-size: var(--small-link);
  height: 56px;
  max-width: 333px;
  min-width: 200px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 100px;
  background: var(--Ayagreen, #5f6444);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border: none;
  outline: none;
}
.book-now-left form .form-contain .label-input {
  display: flex;
  flex-direction: column;
  width: 155px;
  padding: 7px 8px 7px 8px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 1px solid #bcbcbc;
  background: #fff;
}
.book-now-right {
  width: 30%;
  min-width: 30%;
  border-radius: 10px;
  background: #f8f5f5;
  padding: 2rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.book-now-right a {
  color: #5e5e5e;
  font-family: Inter;
  font-size: var(--small-link);

  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  padding: 16px 32px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  border-radius: 100px;
  border: 1px solid #5f6444;
  background: #fff;
  margin: 0 2rem;
  margin-top: 3rem;
}
.book-now-right h3 {
  color: #222;
  font-family: Inter;
  font-size: var(--item-head);

  font-style: normal;
  font-weight: 600;
  line-height: 55px; /* 229.167% */
  letter-spacing: -0.24px;
}

.book-now-about {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.book-now-about img {
  max-height: 58px;
}
.book-now-about p {
  color: #222;
  font-family: Inter;
  font-size: var(--normal-font);

  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  letter-spacing: -0.48px;
}
/* inside page */

/* about start */
.small-banner {
  position: relative;
  min-height: 404px;
  height: 40vh;
}
.small-b-contain {
  padding: 0 var(--padding);
  z-index: 1;
  padding-top: 130px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.small-b-contain h1 {
  color: #fff;
  font-family: Inter;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: 36px; /* 94.737% */
  letter-spacing: -1.14px;
  max-width: 619px;
}
.small-banner .custom-bread li a {
  color: white;
}
.small-banner img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  object-fit: cover;
}

.about-content {
  padding: 3rem var(--padding);
  display: flex;
  margin-bottom: 60px;
  align-items: center;
}
.about-c-left {
  /* width: 750px; */
}
.about-c-left h3 {
  color: #222;
  font-family: Inter;
  font-size: var(--item-head);
  font-style: normal;
  font-weight: 500;
  line-height: 135%; /* 32.4px */
  letter-spacing: -0.48px;
  max-width: 489px;
}
.about-c-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ac-img-group {
  position: relative;
  /* height: 293px; */
}
.ac-img-group .ac-top {
  width: 281px;
  height: 277px;
  flex-shrink: 0;
  position: absolute;
  bottom: -63px;
  right: -63px;
}
.ac-img-group .ac-top img {
  width: 100%;
  height: 100%;
}
.ac-img-group .ac-bottom {
  /* width: 515px;
  height: 348px; */
  flex-shrink: 0;
  position: relative;
}
.ac-img-group .ac-bottom img {
  max-height: 450px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-c-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 90px;
}
.about-c-right p {
  color: #000;
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.048px;
}

.mission {
  position: relative;
}
.mission > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.mission-content {
  padding: 3rem var(--padding);
  display: flex;
  gap: 2rem;
}
.mc-right:hover img,
.mc-left:hover img {
  transform: scale(1.25) rotate(3deg);
}
.mc-left {
  width: 50%;
  background: #fff;
}
.mc-right {
  width: 50%;
  background: #fff;
}
.mc-img {
  width: 100%;
  overflow: hidden;
}
.mc-img img {
  transition: all ease-in-out 0.3s;
  max-height: 400px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mc-content {
  padding: 1rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mc-content h4 {
  color: #000;
  font-family: Inter;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: 55px; /* 144.737% */
  letter-spacing: -0.38px;
}
.mc-content p {
  color: #000;
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.048px;
}

.aya-message {
  padding: 3rem var(--padding);
  display: flex;
  gap: 3rem;
}
.am-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
}
.am-left h4 {
  color: #000;
  font-family: Inter;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: 55px; /* 144.737% */
  letter-spacing: -0.38px;
}
.am-left p {
  color: #000;
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.048px;
}
.am-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.am-top {
}
.am-top img {
  width: 100%;
  height: 247px;
  object-fit: cover;
}
.am-bottom {
  display: flex;
  gap: 1rem;
}
.am-bottom img {
  width: calc(50% - 0.5rem);
  height: 163px;
  object-fit: cover;
}
/* about end */

/* why us */
.why-det {
  padding: 3rem var(--padding);
  display: flex;
  gap: 5rem;
}
.wd-left {
  width: 50%;
}
.wd-left img {
  max-height: 200px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.wd-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.wd-right p {
  color: #222;
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
}

.what-we {
  position: relative;
}
.what-we::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  z-index: -1;
}
.what-we > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.what-we-contain {
  padding: 3rem var(--padding);
  z-index: 1;
}
.what-we-contain .we-do-left {
  justify-content: unset;
}
.what-we-contain .we-do-left p,
.what-we-contain .we-do-left h3 {
  color: #fff;
}

.we-help {
  display: flex;
  margin: 2rem 0;
  background: #f2f2f2;
}
.we-help-left {
  width: 50%;
}
.we-help-left img {
  max-height: 882px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.we-help-right {
  width: 50%;
  padding: 3rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  /* align-items: center; */
}
.we-help-right h3 {
  color: #101828;
  font-family: Inter;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 125% */
  letter-spacing: -0.96px;
}
.we-help-right form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.we-help-right form input {
  border-radius: 8px;
  border: 1px solid rgba(109, 110, 118, 0.5);
  outline: none;
  width: 100%;
  background: transparent;
  padding: 14px;
}
.we-help-right form button {
  display: flex;
  /* width: 566px; */
  height: 56px;
  padding: 16px 32px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  border-radius: 100px;
  background: var(--Ayagreen, #5f6444);
  border: none;
  outline: none;
  color: #fff;
  font-family: Inter;
  font-size: var(--link-head);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.we-help-right form textarea {
  border-radius: 8px;
  border: 1px solid rgba(109, 110, 118, 0.5);
  background: transparent;
  padding: 24px;
  max-height: 144px;
  resize: none;
  width: 100%;
}
/* why us end */

/* service */
.service-det {
  padding: 3rem var(--padding);
  gap: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-det p {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.048px;
  max-width: 1063px;
}
.group-service {
  padding: 1rem var(--padding);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* card */
/* card */
.flip-card {
  background-color: transparent;
  width: 405px;
  height: 311px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.flip-card-inner h5 {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: var(--link-head);
  font-style: normal;
  font-weight: 500;
  line-height: 135%; /* 24.3px */
  letter-spacing: -0.36px;
}
.flip-card-inner p {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.048px;
  max-width: 320px;
}
.flip-card-front h5 {
  margin-top: auto;
  /* padding-bottom: 1rem; */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.52) 45.62%,
    rgba(0, 0, 0, 0.87) 100%
  );
  width: 100%;
  height: 101px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flip-card-inner img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.flip-card-front {
  color: black;
}

.flip-card-back {
  transform: rotateY(180deg);
  background: rgba(0, 0, 0, 0.7);
}

/* card */
/* card */
/* service end */

/* faq-start */
.faq-contain {
  display: flex;
  flex-direction: column;
  padding: 3rem var(--padding);
  gap: 5rem;
  align-items: center;
}
.faq-full ul {
  display: flex;
  flex-direction: row;
}
.faq-full ul li.current-menu-item {
  background: #c993937e;
  /* color: white; */
}
.faq-full ul li {
  border: 1px solid #c993937e;
  color: white;
  padding: 5px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222;
}
.faq-full ul li {
}
.faq-full ul li a {
  padding: 5px 10px;
  font-family: Inter;
  font-size: var(--item-head);
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  padding: 0.5rem;
}
.faq-det {
  gap: 5rem;
  display: flex;
  width: 100%;
}
.faq-left {
  width: 40%;
}
.faq-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-right {
  width: 60%;
}
.faq-right > h4 {
  color: #222;
  font-family: Inter;
  font-size: var(--item-head);
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: -0.48px;
  margin: 1rem 0;
  padding-left: 10px;
}
.faq-right h3 {
  color: #000;
  font-family: Inter;
  font-size: var(--big-head);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 45.6px */
  margin-bottom: 3rem;
}
.faq-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  border: 0.5px solid #929292;
  min-height: 85px;
  padding: 0 2rem;
}
.faq-item button {
  color: #37393f;
  font-family: Inter;
  font-size: var(--link-head);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border: none;
  background: transparent;
  min-height: 85px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item button .iconify {
  transition: all 300ms;
}
.faq-item .collapsed .iconify {
  transform: rotate(180deg);
}
.faq-item p {
  color: #000;
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.048px;
  padding-bottom: 1rem;
}
/* faq-end */

/* blogs */

.blogs {
  padding: 3rem var(--padding);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.blogs .pagination li:hover {
  color: #6a951d;
}
.blogs .pagination li.active {
  color: #6a951d;
}
.blogs .pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.blogs-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.blogs-item:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  top: -5px;
  right: -5px;
}
.blogs-item {
  transition: all 100ms ease-in-out;
  top: 0;
  right: 0;
  width: 405px;
  height: 350px;
  position: relative;
  display: flex;
  align-items: end;
  /* background: #07070705; */
}
.blog-det {
  padding: 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blogs-item img {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.blogs-item h6 {
  color: #fff;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.blogs-item h4 {
  color: #fff;
  font-family: Inter;
  font-size: var(--link-head);
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 138.889% */
}
.blogs-item p {
  color: #fff;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
}
/* blogs end */

/* blogs-inner start */
.blogs-inner {
  padding: 3rem var(--padding);
  display: flex;
  gap: 3rem;
}
.bi-left {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.bi-left h4 {
  color: #000;
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.bi-left h3 {
  color: #000;
  font-family: Inter;
  font-size: var(--set-head);
  font-style: normal;
  font-weight: 700;
  line-height: 51px; /* 141.667% */
}
.bi-left h5 {
  color: #343a40;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
.bi-left h6 {
  color: #6c757d;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.bi-right {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bi-right p {
  color: #000;
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 168.75% */
}
.author img {
  width: 50px;
  height: 50px;
}
.author {
  display: flex;
  gap: 1rem;
}
.blog-contain {
  padding: 3rem var(--padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.blog-slider .bs-item {
}
.blog-slider .bs-item img {
  max-height: 350px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-fit: scale-down; */
}

.blog-contain .custom-nav {
}
/* blogs-inner end */

/* team start */
.team {
  padding: 3rem var(--padding);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.team-member:hover .team-det {
  background: #000000c5;
  backdrop-filter: blur(10px);
  color: #fff;
}
.team-member {
  width: 296px;
}
.team-member img {
  width: 296px;
  height: 327px;
}
.team-member h4 {
  text-align: center;
  font-family: Inter;
  font-size: var(--link-head);
  font-style: normal;
  font-weight: 500;
  line-height: 135%; /* 24.3px */
  letter-spacing: -0.36px;
  text-transform: uppercase;
}
.team-member h5 {
  /* color: #000; */
  text-align: center;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 13px */
  letter-spacing: 2px;
}
.team-det {
  transition: background 350ms;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  justify-content: center;
  align-items: center;
  height: 78px;
  background: #ececec;
}
/* team end */

/* career */
.careers {
  padding: 3rem var(--padding);
  display: flex;
  align-items: center;
  flex-direction: column;
}

.careers p {
  max-width: 1063px;
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.048px;
}
.careers form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 768px;
  gap: 1rem;
  margin-top: 3rem;
}
.input-contain span {
  width: 100%;
}
.input-contain input,
.file-input {
  border-radius: 8px;
  border: 1px solid rgba(109, 110, 118, 0.5);
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.input-contain label {
  position: absolute;
  cursor: text;
  background: transparent;
  /* padding: 2rem; */
}
.careers form input::-webkit-file-upload-button {
  display: none;
}

.careers form input::file-selector-button {
  display: none;
}
.file-input {
  display: flex;
}
.file-input label {
  border-radius: 5px;
  background: #dedede;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.07);
  padding: 2px 10px;
}

.file-input label h6 {
  color: var(--Black, #232536);
  /* Body 1 */
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.input-contain label h6 {
  color: #232536;
}
.input-contain label {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: #f00;
}
.file-input label {
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: var(--Black, #232536);
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.file-input label,
.file-input input {
  cursor: pointer;
  white-space: nowrap;
}
.input-contain input,
.file-input input {
  width: 100%;
  outline: transparent;
  /* border: none; */
  background: transparent;
  padding: 12px 20px;
}
.careers form textarea::placeholder,
.input-contain input::placeholder,
.file-input input::placeholder {
  color: var(--Black, #232536);
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.careers form button {
  height: 64px;
  border-radius: 39px;
  background: #5f6444;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: var(--link-head);
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 177.778% */
  outline: transparent;
  border: none;
  margin-top: 2rem;
}
.input-contain input:focus + label,
.input-contain input:active + label {
  opacity: 0;
  pointer-events: none;
}
.careers form textarea {
  border-radius: 8px;
  border: 1px solid rgba(109, 110, 118, 0.5);
  outline: none;
  resize: none;
  padding: 10px 20px;
  max-height: 144px;
  width: 100%;
}
.input-contain {
  width: 100%;
}
.file-input input {
  padding-left: 10px;
}
/* career end */

/* contact */
.contact {
  padding: 3rem var(--padding);
}
.contact-contain {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: flex;
  position: relative;
}
.contact-left {
  /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.53) 0%, rgba(0, 0, 0, 0.53) 100%); */
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}
.contact-left img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}
.contact-left {
  padding: 3rem;
  width: 40%;
  min-height: 647px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-det {
  z-index: 1;
}
.contact-det h3 {
  color: #fff;
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.contact-det p {
  color: #fff;
  font-family: Inter;
  font-size: var(--link-head);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contact-links .iconify {
  width: 24px;
  height: 24px;
}
.contact-links a,
.contact-links h6 {
  color: #fff;
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.contact-right {
}
.c-social-links {
  display: flex;
  gap: 1rem;
}
.c-social-links .iconify {
  width: 30px;
  height: 30px;
  padding: 5px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
}
.contact-right {
  width: 60%;
}
.contact-right form {
  padding: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  overflow: hidden;
  position: relative;
}
.contact-input {
  display: flex;
  width: calc(50% - 0.5rem);

  flex-direction: column;
}
.contact-input label {
  color: #000;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 166.667% */
}
.contact-right form .contact-input:nth-child(6) {
  width: 100%;
}
.contact-input input {
  border: none;
  border-bottom: 1px solid #000;
  outline: none;
  height: 40px;
  width: 100%;
}
.contact-right button {
  padding: 15px 48px;
  border-radius: 39px;
  background: #5f6444;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.12);
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
  outline: none;
  margin-left: auto;
  margin-top: 8rem;
}
.contact-contain > img {
  position: absolute;
  width: fit-content;
  height: fit-content;
  z-index: 10;
  right: 10rem;
  bottom: 0;
}
/* contact end */

/* new why us style */
/* new why us style */
/* new why us style */

.why-us-new {
  padding: 3rem var(--padding);
}
.why-us-new h3 {
  color: #222;
  font-family: Inter;
  font-size: var(--mid-head);
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -1.14px;
  margin-bottom: 2rem;
}

.wun-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  justify-content: center;
  padding: 2rem 0;
}
.wun-item {
  /* max-width: 350px; */
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  gap: 0.5rem;
}
.wun-item img {
  width: 70px;
  height: 70px;
}
.wun-item h5 {
  color: #222;
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: -0.36px;
}
.wun-item p {
  color: #706f6f;
  font-family: Inter;
  font-size: var(--small-head);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}

/* new why us style */
/* new why us style */
/* new why us style */

/* <!-- extra what we do --> */
/* <!-- extra what we do --> */
.what-we-do-extra {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.what-extra-item {
  min-width: 180px;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  background-color: white;
  border-radius: 10px;
  padding: 1rem;
}
.what-extra-item img {
  width: 40px;
  height: 40px;
}
.what-extra-item h5 {
  color: #222;
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

/* <!-- extra what we do --> */
/* <!-- extra what we do --> */

/* location extra */
/* location extra */
.featured-in {
}
.featured-in h3 {
  color: #222;
  font-family: Inter;
  font-size: var(--mid-head);
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -1.14px;
  margin-bottom: 2rem;
}
.fi-new-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
.fi-new-item {
  width: 150px;
  height: 70px;
}
.fi-new-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* location extra */
/* location extra */

/* news-letter */
/* news-letter */
.home-newletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem var(--padding);
  gap: 1rem;
}
.home-newletter h3 {
  width: 50%;
  color: #222;
  font-family: Inter;
  font-size: var(--sub-head);
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -0.96px;
  text-align: center;
}
.tnp.tnp-subscription {
  width: 100%;
  max-width: 390px;
  margin: 0;
}
.tnp.tnp-subscription .tnp-field.tnp-field-button input:hover {
  background-color: white;
  color: #000;
  border: 1px solid var(--Ayagreen, #5f6444);
}
.tnp.tnp-subscription .tnp-field.tnp-field-button input {
  transition: all 300ms;
  color: #fff;
  font-family: Inter;
  font-size: var(--small-link);
  font-style: normal;
  font-weight: 600;
  border-radius: 100px;
  height: 40px;
  padding: 0 24px;
  background: var(--Ayagreen, #5f6444);
  /* margin: 0 auto; */
}
.tnp.tnp-subscription .tnp-field.tnp-field-email label {
  color: #5e5e5e;
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -0.48px;
}
.tnp.tnp-subscription .tnp-field.tnp-field-email input {
  border-radius: 8px;
  border: 1px solid rgba(109, 110, 118, 0.5);
  display: flex;
  align-items: center;
  outline: none;
}
.tnp-field.tnp-privacy-field a {
  color: #000;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.tnp-field.tnp-privacy-field label {
  display: flex;
  align-items: center;
}
/* news-letter */
/* news-letter */

/* blog inner */
/* blog inner */

.blog-slider .bs-item {
  position: relative;
}

.blog-contain .blog-slider .bs-item a:hover {
  background-color: #3d3d3d2d;
}

.blog-contain .blog-slider .bs-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.blog-contain .blog-slider .bs-item h3 {
  position: absolute;
  color: #fff;
  bottom: 0;
  font-family: Inter;
  font-size: var(--link-head);
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  position: absolute;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  width: 100%;
}
/* blog inner */
/* blog inner */
/* home-featured */
/* home-featured */
.home-featuredin {
  padding: 3rem var(--padding);
}

/* home-featured */
/* home-featured */

/* modal  */
/* modal  */
.team-member {
  position: relative;
}
.btn.item-team-member {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: none;
  outline: none;
}
#teamModal .modal-content {
  position: relative;
  border: none;
  background-color: #000000a2;
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-box-shadow: 10px 10px 42px 5px rgba(133, 133, 133, 0.57);
  -moz-box-shadow: 10px 10px 42px 5px rgba(133, 133, 133, 0.57);
  box-shadow: 10px 10px 42px 5px rgba(133, 133, 133, 0.57);
}
#teamModal .modal-content .cbtn-cls {
  margin-left: auto;
  color: white;
  background: transparent;
  border: none;
  font-size: var(--item-head);
  padding-right: 0.5rem;
}
#teamModal .modal-content .modal-body {
  padding: 0 3rem 3rem 3rem;
}
.team-member-details {
  text-align: center;
  font-family: Inter;
  font-size: var(--normal-font);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 2px;
  padding: 0 3rem;
  padding-bottom: 3rem;
}
.team-member-details h3 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 60px;
  text-align: center;
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
}
.modal {
  --bs-modal-width: 80vw !important;
}

.team-member-image img {
  width: 200px;
  border-radius: 50%;
  height: 200px;
  object-fit: cover;
  object-position: top;
}
/* modal  */
/* modal  */

/* button style */
/* button style */
/* button style */

/* white back */
.footer-bottom-right2 a,
.we-do-left a,
.hac-left a {
  z-index: 20;
  overflow: hidden;
  position: relative;
  transition: all 600ms;
}

.footer-bottom-right2 a:after,
.we-do-left a:after,
.hac-left a:after {
  background: #020202;

  content: '';
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  /* transition: all 1ms cubic-bezier(0.19, 1, 0.22, 1); */
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);

  width: 50px;
  z-index: -10;
}
.footer-bottom-right2 a:hover,
.we-do-left a:hover,
.hac-left a:hover {
  background-color: #5f6444;
  color: white;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.footer-bottom-right2 a:hover::after,
.we-do-left a:hover::after,
.hac-left a:hover::after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  /* transition: all 1s cubic-bezier(0.19, 1, 0.22, 1); */
}

/* white back */

/* green-back */
.we-help-right form button,
.contact-right button,
.careers form button,
.h-location-contain > a,
.home-featured > a,
.hacr-top a {
  z-index: 20;
  overflow: hidden;
  position: relative;
  transition: all 600ms;
}

.we-help-right form button:after,
.contact-right button:after,
.careers form button:after,
.h-location-contain > a:after,
.home-featured > a:after,
.hacr-top a:after {
  background: #020202;
  content: '';
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}
.we-help-right form button:hover,
.contact-right button:hover,
.careers form button:hover,
.h-location-contain > a:hover,
.home-featured > a:hover,
.hacr-top a:hover {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border: 1px solid var(--Ayagreen, #5f6444);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.we-help-right form button:hover::after,
.contact-right button:hover::after,
.careers form button:hover::after,
.h-location-contain > a:hover::after,
.home-featured > a:hover::after,
.hacr-top a:hover::after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
/* green-back */

/* button style */
/* button style */
/* button style */

/* newwww */
/* newwww */

.page-deatils {
  padding: 3rem var(--padding);
}
.page-deatils div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.page-deatils div p {
  font-size: var(--normal-font);
}
.page-deatils div h2 {
  color: #000;
  font-family: Inter;
  font-size: var(--set-head);
  font-style: normal;
  font-weight: 700;
  line-height: 51px;
  margin-top: 1rem;
}

/* newwww */
/* newwww */

/* whats-appp */
/* whats-appp */
.whatsapp-float {
  position: fixed;
  z-index: 4;
  right: 30px;
  bottom: 30px;
  background: #5f6444;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--Ayagreen, #5f6444);
  transition: all 300ms;
}

.whatsapp-float:hover {
  background: white;
  color: #5f6444;
}
.whatsapp-float a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.whatsapp-float a .iconify {
  font-size: 30px;
}
/* whats-appp */
/* whats-appp */

/* ribbon-head */
/* ribbon-head */
.ribbon-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rh-top {
  margin-left: auto;
}

/* ribbon-head */
/* ribbon-head */
