@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  display: none;
}

:root {
  --mainHeading: clamp(2rem, -0.7143rem + 4.2411vw, 4.375rem);
  --font-30: clamp(1.25rem, 0.5357rem + 1.1161vw, 1.875rem);
  --font-16: clamp(0.8125rem, 0.5982rem + 0.3348vw, 1rem);
  --font14: clamp(0.75rem, 0.6667rem + 0.1736vw, 0.875rem);
  --font-20: clamp(1rem, 0.8333rem + 0.3472vw, 1.25rem);
  --font-40: clamp(1.5rem, 0.3571rem + 1.7857vw, 2.5rem);
  --big-font: clamp(1.25rem, 0.9643rem + 0.4464vw, 1.5rem);
  --text-color: #272725;
  --fade-text: #444444;
  --colored-text: #a2c617;
  --radius: clamp(1.875rem, 1.07rem + 3.0667vw, 4.75rem);
  --inner-radiues: clamp(1.5625rem, 1.23rem + 1.2667vw, 2.75rem);
  --lightfontColor: #808080;
}

body {
  max-width: 1920px;
  margin: 0 auto;
  background-color: #efefef;
  transform-origin: top;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Swipper css override */
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-left {
  background-image: none !important;
}

/* Swipper css override  */
#breadcrumbs {
  color: white;
  font-size: var(--font-16);
  position: absolute;
  bottom: 30px;
  height: -moz-min-content;
  height: min-content;
}
#breadcrumbs a {
  text-decoration: none;
  color: white;
}
#breadcrumbs .currentActive {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.heading {
  font-size: calc(var(--mainHeading) - 4px);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--text-color);
}
.heading span {
  font-weight: 800;
  color: var(--colored-text);
  line-height: 1.2;
}

.subheading {
  font-size: max(20px, var(--font-30) - 3px);
  color: var(--text-color);
}

.cta {
  all: unset;
  display: flex;
  align-items: center;
  border: 1px solid rgba(190, 190, 190, 0.393);
  padding: 5px;
  gap: 10px;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
}

.cta .ctaText {
  padding: 2px 5px;
  white-space: pre;
  text-transform: capitalize;
  font-size: 16px;
  color: var(--text-color);
}

.cta.big .ctaText {
  padding: 5px 5px;
  font-size: var(--big-font);
}

.cta img {
  width: 30px !important;
  height: 30px !important;
  transition: all 0.5s;
}

.cta.big img {
  width: 45px !important;
  height: 45px !important;
  -o-object-fit: unset !important;
     object-fit: unset !important;
  transition: all 0.5s;
}

.cta img:last-child {
  width: 0 !important;
  height: 30px !important;
  transform: translateX(550%);
}

.cta:hover img:last-child {
  width: 30px !important;
  height: 30px !important;
  transform: translateX(0%) rotate(45deg);
}

.cta img:first-child {
  width: 30px;
}

.cta:hover img:first-child {
  width: 0 !important;
  height: 30px !important;
  transform: translateX(-550%);
}

.cta.big img:last-child {
  width: 0;
  height: 45px !important;
  transform: translateX(550%);
}

.cta.big:hover img:last-child {
  width: 45px !important;
  height: 45px !important;
  transform: translateX(0%) rotate(45deg);
}

.cta.big.contact:hover img:last-child {
  width: 45px !important;
  height: 45px !important;
  transform: translateX(0%) rotate(0deg);
}

.cta.big img:first-child {
  width: 45px !important;
  height: 45px !important;
}

.cta.big:hover img:first-child {
  width: 0 !important;
  height: 45px !important;
  transform: translateX(-550%);
}

.locationSlider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.to-top {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  /* padding: 10px; */
  border-radius: 50%;
  z-index: 99999;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: scale(0);
  transition: all 0.2s;
}
.to-top svg {
  transition: all 0.2s;
  height: 40px;
  width: 40px;
  transform: rotate(-45deg);
}

.to-top:hover svg {
  transform: scale(1.2) rotate(-45deg);
}

.compareCta {
  all: unset;
  position: fixed;
  bottom: 40px;
  right: 100px;
  padding: 7px 20px;
  border-radius: 40px;
  gap: 10px;
  color: white;
  z-index: 99999;
  /* transform: scale(0); */
  display: none;
  place-items: center;
  cursor: pointer;
  background-color: #162269;
  transition: all 0.2s;
  /* box-shadow: 0px 0px 5px #ffffff; */
}
.compareCta .compareCount {
  background-color: #fff;
  color: #162269;
  width: 20px;
  padding: 0;
  height: 20px;
  display: grid;
  border-radius: 50%;
  place-items: center;
  align-content: center;
}

.removecompareCta {
  /* display: none; */
  position: absolute;
  bottom: 15px;
  right: 210px;
  cursor: pointer;
  border-radius: 10px;
  white-space: nowrap;
  gap: 10px;
  color: #000;
  z-index: 99999;
  display: flex;
  font-weight: 500;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
}
.removecompareCta img {
  height: 17px;
}

.compareBox {
  transform: scale(0);
  opacity: 0;
  /* display: none; */
  transform-origin: bottom right;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  box-shadow: 0px 0px 5px gainsboro;
  background-color: #ffffff;
  bottom: 36px;
  right: 96px;
  position: fixed;
  z-index: 99998;
  border-radius: 10px;
}
.compareBox .compareList {
  display: flex;
  padding: 25px;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.compareBox .compareList .compareItem {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.compareBox .compareList .compareItem .removeCompareIC {
  all: unset;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}
.compareBox .compareList .compareItem .compareImg {
  width: 130px;
  height: 130px;
  border-radius: 20px;
  box-shadow: 0px 0px 2px #e6e6e6;
  overflow: hidden;
}
.compareBox .compareList .compareItem .compareImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.quick_connectBtn {
  cursor: pointer !important;
}

.newsLetter_container {
  padding: 0% 5% 5%;
}

.newsLetterImg {
  width: 100%;
  height: 100vh;
  aspect-ratio: 16/9;
  position: relative;
}
.newsLetterImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.newsLetterImg .newsHeading {
  /* backdrop-filter: blur(3px); */
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: linear-gradient(0deg, black, transparent);
}
.newsLetterImg .heading {
  color: white;
}
.newsLetterImg .headingSub {
  color: white;
  font-size: var(--font-40);
}
.newsLetterImg .heading span {
  margin-bottom: 5px;
}
.newsLetterImg .cta {
  margin-bottom: 50px;
  margin-top: 20px;
}
.newsLetterImg .cta .ctaText {
  color: white;
}

.letter_detail {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 11% 20px 40px;
}
.letter_detail .heading {
  text-transform: capitalize;
  text-align: left;
  line-height: 1.1;
  font-size: var(--font-40);
  padding: 0;
}
.letter_detail .sub_heading {
  color: var(--lightfontColor);
  font-size: var(--font-30);
  line-height: 1.05;
  margin: 20px 0;
}
.letter_detail .tags {
  font-size: var(--font-20);
}
.letter_detail .sharing {
  float: right;
  display: flex;
  gap: 25px;
  padding-right: 30px;
  margin-left: 20px;
}
.letter_detail .sharing img {
  width: 20px;
  aspect-ratio: 1;
  cursor: pointer;
  border-radius: 0;
  -o-object-fit: contain;
  object-fit: contain;
}

#business_sector .subheading,
#business_locations .subheading {
  width: 82%;
  margin: 1.5% auto 5%;
  text-align: center;
}

#business_sector,
#business_locations {
  border-radius: var(--radius);
  background-color: #fff;
  padding: 5%;
  margin: 5%;
}
#business_sector .cta-div,
#business_locations .cta-div {
  display: flex;
  margin-top: 4%;
}
#business_sector .cta-div .cta,
#business_locations .cta-div .cta {
  margin: 0 auto;
}

.card_container > div {
  all: unset;
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
  -moz-column-gap: 50px;
       column-gap: 50px;
  justify-content: center;
}
.card_container .cards {
  text-decoration: none !important;
  cursor: unset;
  -webkit-appearance: none;
  backface-visibility: hidden;
  transform: translateZ(0);
  background-color: #f2f2f2;
  width: calc((80vw - 150px) / 4);
  max-width: 346px;
  min-width: 280px;
  min-height: 450px;
  aspect-ratio: 0.719;
  overflow: hidden;
  border-radius: var(--inner-radiues);
  position: relative;
}
.card_container .cards * {
  transition: all 0.3s;
}
.card_container .card_image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 11/9;
  position: relative;
}
.card_container .card_image::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: transparent linear-gradient(0deg, rgba(6, 6, 6, 0.831372549), transparent);
}
.card_container .card_image .label_text {
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  position: absolute;
  padding: 30px;
  z-index: 1;
  text-transform: capitalize;
  font-weight: 600;
  font-size: var(--font-30);
  text-align: center;
  color: #fff;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  line-height: 1.1;
}
.card_container .card_image .label_text img {
  height: 30px;
  width: auto;
  border-radius: 5px;
  aspect-ratio: 69/44;
}
.card_container .card_image .label_text p {
  line-height: 1.2;
  text-align: left;
}
.card_container .card_image .label_text.loc {
  /* white-space: pre; */
  text-transform: none;
}
.card_container .card_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.1);
}
.card_container .cta_div {
  display: flex;
  justify-content: center;
  opacity: 0;
}
.card_container .short_discription {
  padding: 0 7%;
  text-align: center;
  font-size: var(--font-16);
  color: #272725;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.card_container .statics {
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  display: flex;
  margin: 0 3%;
  justify-content: space-around;
  gap: 3px;
}
.card_container .statics > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 5.5% 0 5%;
  flex: 1;
}
.card_container .statics > div .title {
  font-size: var(--font14);
  color: var(--fade-text);
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card_container .statics > div .stats {
  font-weight: 600;
  font-size: calc(var(--font-20) - 3px);
  color: var(--text-color);
  position: relative;
}
.card_container .statics > div .stats sup {
  position: absolute;
}
.card_container .cards:hover .card_image img {
  transform: scale(1);
}
.card_container .cards:hover .short_discription {
  opacity: 0;
}
.card_container .cards:hover .cta_div {
  transform: translateY(-140%);
  opacity: 1;
}

.card_container.locationSlider > div {
  flex-wrap: nowrap;
  justify-content: unset;
  -moz-column-gap: 0;
       column-gap: 0;
}

/* news and media */
#news_media {
  padding: 5% 5%;
  border-radius: var(--radius);
  background-color: #fff;
  margin: 5%;
}
#news_media .heading {
  margin-bottom: 5%;
}
#news_media .cta.big {
  margin: 3% auto 5%;
  width: -moz-fit-content;
  width: fit-content;
}
#news_media .news_container > div {
  transform: translateZ(0);
  width: calc(24% - 25px);
  aspect-ratio: 0.8;
}
#news_media .news_container > div .news_data {
  padding: 0% 8%;
}
#news_media .news_container > div:hover .news_data {
  padding: 8%;
}

.news_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
.news_container > div:hover .news_overlay {
  bottom: 0;
  background: linear-gradient(0deg, black, transparent);
}
.news_container > div:hover .news_image {
  transform: scale(1.1);
}
.news_container > div:hover .news_data {
  transform: translate(0, 0);
}
.news_container > div:hover .news_data .cta {
  opacity: 1;
}
.news_container .reportCard {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-start;
  width: calc(50% - 25px);
}
.news_container > div {
  width: calc(50% - 25px);
  position: relative;
  overflow: hidden;
  min-width: 280px;
  border-radius: var(--inner-radiues);
}
.news_container > div .news_overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: -30%;
  background: linear-gradient(0deg, rgb(0, 0, 0), transparent);
}
.news_container > div .news_image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news_container > div * {
  transition: all 0.3s;
}
.news_container > div .reportCardImage {
  width: 30%;
  background-color: #f2f2f2;
  width: 231px;
  border: 0;
  aspect-ratio: 231/308;
  border-radius: 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 5px gainsboro;
}
.news_container > div .reportCardImage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news_container > div .reportCardText {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news_container > div .reportCardText .title {
  font-size: var(--font-20);
  font-weight: 600;
}
.news_container > div .reportCardText .description {
  font-size: var(--font-16);
}
.news_container > div .reportCardText button {
  all: unset;
  display: flex;
  height: 30px;
  gap: 10px;
  cursor: pointer;
  align-items: center;
  font-weight: 600;
  font-size: var(--font-16);
}
.news_container > div .reportCardText button img {
  height: 100%;
}
.news_container > div .news_data {
  transform: translate(0, 9%);
  display: flex;
  justify-content: flex-end;
  height: 100%;
  width: 100%;
  align-items: flex-start;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 8%;
}
.news_container > div .news_data .news_date {
  font-size: var(--font-16);
  color: #fff;
  font-weight: 300;
}
.news_container > div .news_data .headline {
  color: #fff;
  font-size: var(--font-20);
  margin-bottom: 10px;
  height: 94px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 5px;
}
.news_container > div .news_data .cta {
  opacity: 0;
}
.news_container > div .news_data .cta .ctaText {
  color: #fff;
}

.media {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.media > div {
  width: calc((80vw - 150px) / 4) !important;
  min-width: calc((80vw - 150px) / 4) !important;
}
.media iframe {
  min-height: 450px;
  height: 100%;
  width: calc((80vw - 150px) / 4) !important;
  min-width: calc((80vw - 150px) / 4) !important;
}

/*  specialist  */
#specialist {
  margin: 5% 0;
  padding: 5% 10%;
  background-color: #fff;
}
#specialist .heading {
  margin: 0 auto 5%;
  width: min(1100px, 100%);
}

.specialist_container .swiper-wrapper {
  display: flex;
}
.specialist_container .swiper-wrapper > div {
  position: relative;
  overflow: hidden;
  border-radius: var(--inner-radiues);
  width: calc((80vw - 150px) / 4);
  aspect-ratio: 408/480;
}
.specialist_container .swiper-wrapper > div * {
  transition: all 0.3s;
}
.specialist_container .swiper-wrapper > div:hover .cta {
  opacity: 1;
}
.specialist_container .swiper-wrapper > div:hover .specialist_data {
  transform: translateY(0%);
}
.specialist_container .swiper-wrapper > div:hover .specialist_layer {
  height: 100%;
  opacity: 1;
}
.specialist_container .swiper-wrapper > div .specialist_image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.specialist_container .swiper-wrapper > div .specialist_layer {
  position: absolute;
  height: 50%;
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent);
  opacity: 0.7;
}
.specialist_container .swiper-wrapper > div .specialist_data {
  height: 100%;
  width: 100%;
  position: absolute;
  display: flex;
  gap: 0px;
  flex-direction: column;
  bottom: 8%;
  align-items: center;
  justify-content: flex-end;
  transform: translateY(15%);
}
.specialist_container .swiper-wrapper > div .specialist_data .post_name {
  cursor: auto;
  font-size: var(--font-30);
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
  text-align: center;
}
.specialist_container .swiper-wrapper > div .specialist_data .specialist_name {
  cursor: auto;
  color: #fff;
  font-size: var(--font-20);
  text-transform: capitalize;
  text-align: center;
}
.specialist_container .swiper-wrapper .cta {
  margin-top: 5%;
  opacity: 0;
}
.specialist_container .swiper-wrapper .cta .ctaText {
  color: #fff;
}

/* listing page hero banner */
.discriptor-text-listing-page {
  text-align: center;
  font-size: var(--font-30);
  color: var(--text-color);
  margin: 5% 15%;
}

#listing_hero {
  margin: 0;
  height: 100vh;
  max-height: 1080px;
}
#listing_hero .detailHero {
  width: 100%;
  overflow: hidden;
  height: 100vh;
  max-height: 1080px;
  position: relative;
}
#listing_hero .watch_now {
  all: unset;
  position: absolute;
  bottom: 5%;
  left: 5%;
  display: flex;
  white-space: pre;
  font-size: 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #fff;
  background: #162269;
  padding: 10px 20px 10px 10px;
  border-radius: 30px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
#listing_hero .watch_now img {
  height: 30px !important;
  width: 30px !important;
  display: none;
}
#listing_hero .watch_now .wat {
  display: block;
}
#listing_hero .watch_now.opened .wat {
  display: none;
}
#listing_hero .watch_now.opened .close__ {
  display: block;
}
#listing_hero .cta .ctaText {
  color: #fff;
}
#listing_hero .detailHero video,
#listing_hero .detailHero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#listing_hero .detailLayer {
  display: grid;
  place-items: center;
}
#listing_hero .detailLayer iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* aspect-ratio: 16/9; */
  display: none;
}
#listing_hero .detailLayer.showDetailLayer {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
#listing_hero .detailLayer.showDetailLayer iframe {
  display: block;
}
#listing_hero .detailHero .detailLayer {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(39, 39, 37, 0.4784313725);
  opacity: 1;
  transition: all 0.5s;
}
#listing_hero .detailHero .showDetailLayer {
  opacity: 1;
}
#listing_hero .detailHero .detailBox {
  position: absolute;
  right: 0%;
  top: 0;
  width: 45%;
  height: 100%;
  opacity: 1;
  background: rgba(0, 0, 0, 0.5) 0% 0% no-repeat padding-box;
  opacity: 1;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 0 5px 0 5%;
}
#listing_hero .detailBox.master {
  justify-content: center;
  gap: 4%;
  padding: 0 40px 0 6%;
}
#listing_hero .detailBox.master .discription {
  width: min(450px, 100%);
  line-height: 1.9;
  font-size: var(--font-20);
  color: #fff;
}
#listing_hero .detailBox.master .title_text {
  font-size: var(--font-40);
  font-weight: 800;
  color: var(--colored-text);
  line-height: 1.3;
  width: min(500px, 95%);
}
#listing_hero .heading {
  color: #fff;
  text-align: left;
}
#listing_hero .detailHero .showDetailBox {
  right: -60%;
}
#listing_hero .detailBox.white {
  background: rgba(255, 255, 255, 0.5) 0% 0% no-repeat padding-box;
}
#listing_hero .detailBox.white .heading {
  color: var(--text-color);
}
#listing_hero .detailBox.white .title_text {
  font-weight: 600;
}
#listing_hero .detailBox.white .discription {
  width: min(500px, 100%);
  color: var(--text-color);
}
#listing_hero .detailBox.white .cta {
  border-color: #595959;
}
#listing_hero .detailBox.white .cta .ctaText {
  color: black;
}

/*  clients & trade agreement (location details page) */
#clients,
#trade_agreement {
  overflow: hidden;
  background-color: transparent;
  padding: 5% 0;
  margin: 0;
}
#clients .heading,
#trade_agreement .heading {
  margin-bottom: 5%;
}
#clients .swiper-container,
#trade_agreement .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
  mix-blend-mode: multiply;
}
#clients .swiper-container > div:first-child,
#trade_agreement .swiper-container > div:first-child {
  margin-bottom: 3%;
}
#clients .swiper-container.swiper--bottom:after,
#trade_agreement .swiper-container.swiper--bottom:after {
  animation-direction: reverse;
}
#clients .swiper-wrapper,
#trade_agreement .swiper-wrapper {
  transition-timing-function: linear !important;
  position: relative !important;
  align-items: center;
  height: 55px;
}
#clients .swiper-slide,
#trade_agreement .swiper-slide {
  text-align: center;
  font-size: 33px;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}
#clients .swiper-slide img,
#trade_agreement .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1) brightness(1);
}
@keyframes line-slide {
  0% {
    background-position: -5% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

#trade_agreement .swiper-wrapper {
  height: 100px;
}

/* filter container */
#filter {
  background-color: transparent;
}
#filter > div .heading {
  margin-bottom: 4%;
}
#filter .slide_down,
#filter .filter_btn_div {
  display: none !important;
}
#filter > div {
  margin: 5% 10%;
}
#filter .paraa {
  margin-bottom: 45px;
  margin-top: 2%;
}
#filter .filter_main_container {
  display: grid;
  gap: 50px;
  grid-template-columns: 27% auto;
}
#filter .filter_main_container > div {
  height: -moz-fit-content;
  height: fit-content;
}
#filter .filter_img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.402;
}
#filter .filter_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#filter .filter_img .label_text {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: var(--font-40);
  text-align: center;
  color: #fff;
  line-height: 1.2;
}
#filter .filter_img .label_text > img {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
#filter .filter_img .label_text.loc {
  display: flex;
  width: 100%;
  padding: 10px 20px;
  align-items: center;
  justify-content: center;
  text-transform: none;
  gap: 20px;
}
#filter .filter_img .label_text.loc img {
  height: 40px;
  width: auto;
  aspect-ratio: 1.4/1;
  border-radius: 5px;
}
#filter .filter_item {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-content: flex-start;
}
#filter .filtered_card {
  all: unset;
  transform: translateZ(0);
  position: relative;
  background-color: white;
  width: calc(50% - 25px);
  aspect-ratio: 0.7845;
  overflow: hidden;
  border-radius: var(--inner-radiues);
}
#filter .filtered_card * {
  transition: all 0.3s;
}
#filter .statics {
  display: flex;
  margin: 0 3%;
  justify-content: space-around;
  gap: 5px;
}
#filter .statics > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  aspect-ratio: 1.3;
  justify-content: center;
  flex: 1;
  max-height: 100px;
}
#filter .statics > div .title {
  font-size: var(--font-16);
  color: var(--fade-text);
  text-transform: capitalize;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#filter .statics > div .stats {
  font-weight: 600;
  font-size: var(--font-20);
  color: var(--text-color);
  text-transform: capitalize;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  position: relative;
}
#filter .statics > div .stats sup {
  position: absolute;
}
#filter .filter_layer {
  width: 100%;
  height: 98%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.464);
}
#filter .card_discription {
  font-size: var(--font-16);
  padding: 0 10%;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
#filter .cta_div {
  opacity: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}
#filter .cta {
  margin: 0 auto;
  opacity: 1;
}
#filter .filtered_card:hover .card_discription {
  opacity: 0;
}
#filter .filtered_card:hover .cta_div {
  transform: translateY(-150%);
  opacity: 1;
}
#filter .filtered_card:hover .filter_img {
  aspect-ratio: 1.21;
}
#filter .filter_container {
  padding: 10% 8%;
  background-color: #fff;
  border-radius: var(--inner-radiues);
  position: sticky;
  top: 40px;
  max-height: 95vh;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  #filter .filter_container {
    max-height: none;
  }
}
#filter .filter_container > div {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-bottom: 2px solid #f2f2f2;
  transition: all 0.3s;
}
#filter .filter_container > div:last-child {
  border-bottom: 0px solid #f2f2f2;
}
#filter .filter_container .filter_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#filter .filter_container .filter_title :first-child {
  font-size: var(--font-20);
  font-weight: 600;
  text-transform: capitalize;
}
#filter .filter_container .filter_title img {
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(128, 128, 128, 0.431);
  aspect-ratio: 1;
  cursor: pointer;
  transform: rotate(45deg);
  transition: all 0.3s;
}
#filter .filter_container .filter_title.active img {
  transform: rotate(0deg);
}
#filter .filter_container .investment_size {
  padding-bottom: 50px;
}
#filter .filter_container .investment_size .middle {
  position: relative;
  width: 100%;
}
#filter .filter_container .investment_size .middle input[type=range] {
  position: absolute;
  width: 100%;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: rgba(128, 128, 128, 0.046);
  height: 8px;
  transition: all 0.3s;
}
#filter .filter_container .investment_size .middle input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: all;
  height: 25px !important;
  width: 25px !important;
  border-radius: 50%;
  background: #a2c617;
  z-index: 99;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
#filter .filter_container .investment_size .middle input[type=range]::-webkit-slider-thumb:hover {
  background: #8caa14;
  box-shadow: 0px 0px 0px 10px rgba(163, 198, 23, 0.3176470588);
}
#filter .filter_container .investment_size .range_value {
  display: flex;
  justify-content: space-between;
}
#filter .filter_container .investment_size .range_value > P {
  font-size: 12px;
  border: 1px solid #c2c2c2;
  line-height: 1;
  color: #818181;
  padding: 1px 16px;
  border-radius: 15px;
}
#filter .filter_container .checkboxes_filters .checkbox_filter {
  display: none;
  flex-wrap: wrap;
  row-gap: 15px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
#filter .filter_container .checkboxes_filters .checkbox_filter > div {
  display: flex;
  width: calc(50% - 10px);
  gap: 5%;
  align-items: flex-start;
}
#filter .filter_container .checkboxes_filters .checkbox_filter > div label {
  color: #818181;
  font-size: 12px;
  cursor: pointer;
  line-height: 1.2;
  padding-top: 2px;
}
#filter .filter_container .checkboxes_filters .checkbox_filter > div input[type=checkbox] {
  cursor: pointer;
  all: unset;
  position: relative;
  height: 15px;
  width: 15px;
  flex-shrink: 0;
}
#filter .filter_container .checkboxes_filters .checkbox_filter > div input[type=checkbox]::after {
  content: "";
  background-color: transparent;
  position: absolute;
  top: 0;
  height: 15px;
  width: 15px;
  top: 1px;
  border-radius: 5px;
  border: 1px solid #b8b8b8;
}
#filter .filter_container .checkboxes_filters .checkbox_filter > div input[type=checkbox]:checked::before {
  content: "✓";
  position: absolute;
  height: 25px;
  width: 25px;
  z-index: 1;
  top: -2px;
  left: 19%;
  font-weight: 1000;
  font-size: 14px;
}
#filter .filter_container .checkboxes_filters .checkbox_filter > div input[type=checkbox]:checked::after {
  content: "";
  background-color: #a2c617;
  border: 1px solid #a2c617;
}
#filter .filter_container .clear_all_filter {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 0;
}
#filter .filter_container .clear_all_filter p {
  font-size: var(--font-16);
  font-weight: 600;
  text-transform: capitalize;
}
#filter .filter_container .clear_all_filter img {
  height: var(--font-20);
}

/* footer */
#footer {
  background-color: transparent;
  margin: 0;
}
#footer .footer_contact {
  position: relative;
  margin: 0 auto;
  width: 80vw;
  max-width: 1536px;
  aspect-ratio: 2.32;
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 2;
}
#footer .footer_contact .footer_contact_banner {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
#footer .footer_contact .contact_us_footer {
  padding-right: min(60px, 10%);
  width: 55%;
  height: 100%;
  float: right;
  display: flex;
  gap: 5%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#footer .footer_contact .contact_us_footer .contact_us_heading {
  font-size: var(--font-40);
  text-align: left;
  color: #fff;
}
#footer .footer_contact .contact_us_footer #contact_form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}
#footer .footer_contact .contact_us_footer #contact_form .cta .ctaText {
  color: #fff;
}
#footer .footer_contact .contact_us_footer .contact_form {
  display: grid;
  width: 100%;
  aspect-ratio: 2.72;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 25px;
  grid-row-gap: 15px;
}
#footer .footer_contact .contact_us_footer .contact_form > div {
  display: flex;
  flex-direction: column;
}
#footer .footer_contact .contact_us_footer .contact_form > div label {
  padding-left: 5px;
  color: #ffffff;
  font-weight: 100;
  margin-bottom: 5px;
}
#footer .footer_contact .contact_us_footer .contact_form > div input,
#footer .footer_contact .contact_us_footer .contact_form > div textarea {
  all: unset;
  height: 100%;
  border: 1px solid #b8b8b8;
  border-radius: 10px;
  padding-left: 10px;
  color: #b8b8b8;
}
#footer .footer_contact .contact_us_footer .contact_form > div textarea {
  padding: 10px;
}
#footer .footer_contact .contact_us_footer .contact_form > div .number_div {
  position: relative;
  display: flex;
  height: 100%;
  gap: 10px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #b8b8b8;
  padding-left: 10px;
}
#footer .footer_contact .contact_us_footer .contact_form > div .number_div select {
  all: unset;
  color: #fff;
  border-right: 1px solid #b8b8b8;
  min-width: 50px;
  font-weight: 100;
  white-space: pre;
  max-width: 50px;
}
#footer .footer_contact .contact_us_footer .contact_form > div .number_div option {
  color: #000;
  padding: 5px;
}
#footer .footer_contact .contact_us_footer .contact_form > div .number_div input {
  width: 100%;
  border: 0;
  padding: 0;
  position: relative;
}
#footer .footer_contact .contact_us_footer .contact_form > div:nth-child(1) {
  grid-area: 1/1/2/2;
}
#footer .footer_contact .contact_us_footer .contact_form > div:nth-child(2) {
  grid-area: 2/1/3/2;
}
#footer .footer_contact .contact_us_footer .contact_form > div:nth-child(3) {
  grid-area: 3/1/4/2;
}
#footer .footer_contact .contact_us_footer .contact_form > div:nth-child(4) {
  grid-area: 1/2/4/3;
}
#footer .footer {
  position: relative;
  width: 100%;
  margin-top: -10rem;
  padding-top: 10rem;
  z-index: 1;
}
#footer .footer .under_anchor {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s;
}
#footer .footer .under_anchor:hover {
  text-decoration: underline !important;
}
#footer .footer .footer_video,
#footer .footer .video_overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: rgba(0, 0, 0, 0.87);
  z-index: -1;
}
#footer .footer .video_overlay {
  z-index: 0;
}
#footer .footer .footer_content {
  margin: 0 10%;
  margin-top: 5%;
  display: flex;
  flex-direction: column;
  gap: 45px;
  z-index: 999;
  position: relative;
}
#footer .footer .grid_design.first a {
  all: unset;
  font-size: var(--font-16);
  cursor: pointer;
}
#footer .footer .grid_design {
  display: grid;
  gap: 20px;
  grid-template-columns: calc(25% - 13.333px) calc(50% - 13.333px) calc(25% - 13.333px);
}
#footer .footer .grid_design * {
  color: #fff;
}
#footer .footer .grid_design .logo_footer {
  height: 80px;
}
#footer .footer .grid_design .grid_top {
  display: grid;
  grid-template-columns: auto auto calc(50% - 13.33px);
  height: auto;
}
#footer .footer .grid_design .mail_number a,
#footer .footer .grid_design .mail_number p {
  all: unset;
  cursor: pointer;
  color: #fff;
  font-weight: 100;
  opacity: 0.8;
  font-size: 12px;
  display: flex;
  align-items: center;
}
#footer .footer .grid_design .mail_number a .email_phone_icon,
#footer .footer .grid_design .mail_number p .email_phone_icon {
  height: 16px;
  aspect-ratio: 1;
  margin-right: 10px;
}
#footer .footer .grid_design.last {
  grid-template-columns: calc(12.5% - 15px) calc(25.5% - 15px) calc(25% - 15px) calc(37% - 15px);
  margin-bottom: 0;
}
#footer .footer .grid_design.last > div {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
#footer .footer .grid_design.last > div p {
  font-weight: 600;
  font-size: var(--font-16);
}
#footer .footer .grid_design.last > div .table_footer {
  display: grid;
  gap: 20px;
  row-gap: 8px;
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
}
#footer .footer .grid_design.last > div .table_footer a {
  all: unset;
  cursor: pointer;
  font-size: 12px;
  font-weight: 100;
  color: #ffffff;
  opacity: 0.8;
  line-height: 18px;
  transition: all 0.2s;
}
#footer .footer .grid_design.last > div .table_footer a:hover {
  opacity: 1;
  scale: 1.05;
}
#footer .footer .grid_design.last > div .table_footer.last {
  grid-template-columns: calc(33.33% - 13.33px) calc(33.33% - 13.33px) calc(33.33% - 13.33px);
}
#footer .footer .grid_design.last .locations_col .table_footer {
  grid-template-columns: 1fr;
}
#footer .footer .copyright {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 27%;
  padding: 0 5% 3% 0;
  flex-direction: row-reverse;
}
#footer .footer .copyright > div {
  display: flex;
  gap: 20px;
}
#footer .footer .copyright > div > div {
  display: flex;
  gap: 20px;
}
#footer .footer .copyright p {
  font-size: 12px;
  font-weight: 100;
  opacity: 0.8;
  color: #fff;
}
#footer .footer .copyright a {
  height: 25px;
  aspect-ratio: 1;
}
#footer .footer .copyright a img {
  height: 100%;
  width: 100%;
}

/* about us page */
#aboutus {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 100vh;
  background-color: transparent;
  position: relative;
}
#aboutus .about_hero_video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
#aboutus > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: linear-gradient(0deg, black, transparent);
}
#aboutus > div .heading {
  color: #fff;
}
#aboutus > div .heading span {
  font-size: var(--font-40);
}
#aboutus > div p {
  color: #fff;
  font-size: var(--font-20);
  font-weight: 100;
  text-transform: capitalize;
  margin: 30px 0 40px;
}
#aboutus > div .cta {
  margin-bottom: 50px;
}
#aboutus > div .cta .ctaText {
  color: #fff;
}

.about__sec a {
  all: unset;
  color: #1fa957;
  cursor: pointer;
}
.about__sec a:hover {
  text-decoration: underline;
}

#__about {
  background-color: #fff;
  display: grid;
  grid-template-columns: 50% 50%;
}
#__about > div {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#__about > div p {
  color: var(--text-color);
  line-height: 1.9;
  font-size: var(--font-20);
}
#__about > div p a {
  all: unset;
  color: #1fa957;
  cursor: pointer;
}
#__about > div p a:hover {
  text-decoration: underline;
}
#__about > div .heading {
  text-align: left;
}
#__about > div:first-child {
  padding: 16% 5% 16% 9.5vw;
  background-color: #efefef;
}
#__about > div:last-child {
  padding: 16% 7.5vw 16% 10%;
  color: #fff;
}
#__about > div:last-child .heading {
  margin-bottom: 4%;
}

#shareholder {
  background-color: #fff;
  display: grid;
  grid-template-columns: 55% 45%;
}
#shareholder > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#shareholder > div:first-child {
  padding: 15% 0;
}
#shareholder > div:first-child img {
  height: 60vh;
  max-height: 450px;
  aspect-ratio: 1;
}
#shareholder > div:last-child {
  width: 100%;
  align-items: flex-start;
}
#shareholder > div:last-child > div {
  text-align: left;
}
#shareholder > div:last-child > div:first-child {
  font-size: var(--font-40);
  margin-bottom: 10px;
}

/* governance */
#governance {
  overflow: hidden;
  background-color: transparent;
}
#governance > div {
  padding: 5% 10%;
}
#governance .members_board {
  display: flex;
  justify-content: space-between;
  margin: 4% 5%;
  border-bottom: 2px solid rgba(129, 129, 129, 0.8156862745);
  position: relative;
}
#governance .members_board .sliderme {
  position: absolute;
  left: 0%;
  height: 4px;
  width: 300px;
  background-color: #a2c617;
  bottom: -3px;
  border-radius: 20px;
  transform: translate(0, 0);
  transition: all 0.5s;
}
#governance .members_board p {
  font-size: var(--font-30);
  cursor: pointer;
  position: relative;
  color: var(--text-color);
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
#governance .member_container {
  display: flex;
  width: 260vw;
  gap: 10vw;
  transition: all 0.5s;
}
#governance .members_cards {
  display: block;
}

/* values  and mission */
#values {
  background-color: transparent;
  padding: 5% 10%;
}
#values .heading {
  margin-bottom: 4%;
}

#mission {
  background-color: transparent;
  padding: 5% 10%;
}
#mission .heading {
  margin-bottom: 4%;
}
#mission .value_container > div {
  padding: 5% 2%;
}

.value_container {
  display: flex;
  gap: 30px;
}
.value_container > div {
  flex: 1;
  padding: 5% 15px;
  background-color: #fff;
  border-radius: var(--inner-radiues);
  /* aspect-ratio: 0.8967; */
  display: flex;
  align-items: center;
  gap: 25px;
  flex-direction: column;
}
.value_container > div .title {
  font-size: var(--font-30);
  text-align: center;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.4;
}
.value_container > div .discription {
  font-size: var(--font-20);
  /* color: var(--text-color); */
  text-align: center;
  line-height: 1.9;
}

.hovering {
  box-shadow: -16px 25px 58px rgba(0, 0, 0, 0.0274509804);
  transition: all 0.3s;
}

.hovering:hover {
  box-shadow: -16px 25px 58px rgba(0, 0, 0, 0.1607843137);
}

#stats_master > div {
  margin: 5% 10%;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#stats_master > div .main_stats {
  display: flex;
  gap: 30px;
  justify-content: center;
}
#stats_master > div .main_stats > div {
  background-color: #fff;
  border-radius: var(--inner-radiues);
  aspect-ratio: 1.5;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9%;
  justify-content: center;
  align-items: center;
  padding: 3% 0;
  max-width: 362px;
}
#stats_master > div .main_stats > div sup {
  position: absolute;
}
#stats_master > div .main_stats > div .stats {
  font-size: var(--mainHeading);
  color: var(--colored-text);
  font-weight: 700;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  letter-spacing: -0.4px;
}
#stats_master > div .main_stats > div .title {
  font-size: var(--font-20);
  color: var(--text-color);
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  text-align: center;
  padding: 0 20px;
  line-height: 1.2;
}
#stats_master > div .stats_description {
  padding: 5% 8%;
  background-color: #fff;
  border-radius: var(--inner-radiues);
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
#stats_master > div .stats_description .heading {
  margin-bottom: 4%;
}
#stats_master > div .stats_description p {
  font-size: var(--font-20);
  color: var(--text-color);
  text-align: center;
  line-height: 1.9;
}

/* investment zone */
.compareDiv {
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 30px;
  overflow: hidden;
  z-index: 2;
}
.compareDiv * {
  cursor: pointer;
  color: var(--text-color) !important;
}
.compareDiv .compareDesign {
  height: 30px;
  background-color: #fff;
  gap: 10px;
  opacity: 1;
  z-index: 0;
  display: flex;
  align-items: center;
  padding: 10px;
  font-size: var(--font-16);
}
.compareDiv .compareLayer {
  background-color: #a2c617;
  z-index: 101;
  height: 30px;
  width: 100%;
  position: absolute;
  bottom: -100%;
  pointer-events: none;
  opacity: 1;
  z-index: 8;
  padding: 10px;
  border-radius: 30px;
  transition: all 0.3s;
  display: grid;
  place-items: center;
}
.compareDiv .compareLayer img {
  height: 20px;
  top: 6px;
  position: absolute;
  transition: all 0.3s;
}

.compareDiv.small {
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 30px;
  overflow: hidden;
  z-index: 2;
}
.compareDiv.small * {
  cursor: pointer;
}
.compareDiv.small .compareDesign {
  height: 28px;
  background-color: #fff;
  gap: 10px;
  opacity: 1;
  z-index: 0;
  display: flex;
  align-items: center;
  padding: 10px;
  font-size: 14px;
}
.compareDiv.small .compareLayer {
  background-color: #a2c617;
  z-index: 101;
  height: 28px;
  width: 100%;
  position: absolute;
  bottom: -100%;
  pointer-events: none;
  opacity: 1;
  z-index: 8;
  padding: 10px;
  border-radius: 30px;
  transition: all 0.3s;
  display: grid;
  place-items: center;
}
.compareDiv.small .compareLayer img {
  height: 15px;
  top: 6px;
  position: absolute;
  transition: all 0.3s;
}

.investCompareBtn:checked ~ .compareLayer {
  bottom: 0% !important;
}

.investCompareBtn {
  position: absolute;
  top: 0;
  opacity: 0;
  z-index: 9;
}

#investmentZone {
  width: 80%;
  margin: 100px auto;
  display: flex;
  align-items: center;
  background-color: transparent;
}
#investmentZone > div {
  flex: 1;
}
#investmentZone .headingDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
#investmentZone .headingDiv .heading {
  text-align: left;
}
#investmentZone .investCompare {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
#investmentZone .investCard {
  position: relative;
  background-color: #fff;
  width: calc((90vw - 80px) / 4);
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 30px;
  text-decoration: none;
  cursor: initial;
}
#investmentZone .investCard .cardInfoImg {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5254901961);
}
#investmentZone .investCard .cardImg {
  height: 60%;
}
#investmentZone .investCard .cardImg img {
  width: 100%;
  height: 100%;
}
#investmentZone .investCard .cardInfo {
  height: 40%;
  font-size: large;
  padding: 30px;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-color: #fff;
}
#investmentZone .investCard .cardInfo .cardInfoImg {
  width: calc((90vw - 80px) / 4 / 2);
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.537254902);
}
#investmentZone .investCard .cardInfo .cardInfoImg img {
  width: 100%;
}
#investmentZone .investCard .cardInfo .cardInfoTitle {
  line-height: 1.5;
  font-size: var(--font-16);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-align: center;
  color: var(--text-color);
  transition: all 0.2s;
}
#investmentZone .investCard .cardInfo .cta {
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.2s;
  margin: 0 auto;
}
#investmentZone .investCard:hover .cardInfo .cardInfoTitle {
  opacity: 0;
}
#investmentZone .investCard:hover .cardInfo .cta {
  opacity: 1;
  transform: translateY(-150%);
}

.street_view {
  padding: 5% 10%;
  padding-top: 0;
  padding-bottom: 0;
}
.street_view .heading {
  text-align: left;
  margin-bottom: 4%;
}
.street_view .insights-numbers {
  display: grid;
  grid-template-columns: auto 22%;
  gap: 30px;
}
.street_view .insights-numbers .first-child {
  border-radius: var(--inner-radiues);
  overflow: hidden;
  width: 100%;
  min-height: 600px;
}
.street_view .insights-numbers .first-child video,
.street_view .insights-numbers .first-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.street_view .insights-numbers .first-child .title {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4%;
  align-items: flex-start;
  bottom: 0%;
  left: 0%;
  background: linear-gradient(0deg, black, transparent);
  transition: all 0.2s !important;
}
.street_view .insights-numbers .first-child .title P {
  font-size: var(--font-40);
  color: var(--colored-text);
  font-weight: 800;
  line-height: 1.3;
}
.street_view .insights-numbers .first-child .swiper-pagination-bullet {
  height: 3px;
  width: 20px;
  border-radius: 0;
  background-color: var(--colored-text);
}
.street_view .insights-numbers .first-child:hover .title {
  height: 25%;
}
.street_view .insights-numbers .last-child {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  padding: 30px 15px;
  border-radius: var(--inner-radiues);
  background-color: #fff;
}
.street_view .insights-numbers .last-child > div {
  display: flex;
  flex-direction: column;
}
.street_view .insights-numbers .last-child > div .numbers {
  font-size: var(--font-40);
  color: var(--colored-text);
  font-weight: 800;
}
.street_view .insights-numbers .last-child > div .text {
  font-size: var(--font-20);
  color: var(--text-color);
  line-height: 1.2;
}

/* header */
#mobileVersion .header {
  padding: 5px 13px;
  background-color: #fff;
}
#mobileVersion .wrapper-menu {
  all: unset;
  width: 16px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 330ms ease-out;
}
#mobileVersion .wrapper-menu.open {
  transform: rotate(-45deg);
}
#mobileVersion .line-menu {
  background-color: #000;
  border-radius: 5px;
  width: 100%;
  height: 2px;
}
#mobileVersion .line-menu.half {
  width: 50%;
}
#mobileVersion .line-menu.start {
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: right;
}
#mobileVersion .open .line-menu.start {
  transform: rotate(-90deg) translateX(2px);
}
#mobileVersion .line-menu.end {
  align-self: flex-end;
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: left;
}
#mobileVersion .open .line-menu.end {
  transform: rotate(-90deg) translateX(-2px);
}

#suggestionBox {
  top: 12px;
  position: absolute;
  z-index: -1;
}
#suggestionBox ul {
  list-style-type: none;
  padding-left: 3rem;
}
#suggestionBox ul li {
  margin: 10px 0px;
  color: gray;
}
#suggestionBox ul li:first-child {
  margin-top: 0px;
}
#suggestionBox ul li:last-child {
  margin-bottom: 0px;
}

#menuBox_MV {
  background-color: #ffffff;
  position: fixed;
  width: 95%;
  height: 100vh;
  overflow: scroll;
  right: -100%;
  padding: 60px 25px;
  top: 30px;
  border-radius: 30px 0px 0px 0px;
  z-index: 1111111111;
  transition: all 0.3s;
}
#menuBox_MV .searchBox {
  height: -moz-fit-content;
  height: fit-content;
}
#menuBox_MV .searchBox svg {
  fill: gray;
  transition: all 0.3s;
}
#menuBox_MV .searchBox input {
  color: #000;
  width: -webkit-fill-available;
}
#menuBox_MV .quickBox_MV {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 10px;
}
#menuBox_MV .quickBox_MV > button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  /* max-width: 300px; */
}
#menuBox_MV .quickBox_MV .whatsAppLink {
  background-color: #25d366;
}
#menuBox_MV .linkSection_MV > div {
  /* .linkBox_MVO{
    border: 1px solid #E5E5E5;
  } */
}
#menuBox_MV .linkSection_MV > div a {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}
#menuBox_MV .linkSection_MV > div:first-child .opportunities_MV {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  /* border-bottom: 1px solid #E5E5E5; */
}
#menuBox_MV .linkSection_MV > div:first-child .opportunities_MV .clear_filter {
  transform: rotate(45deg);
  transition: all 0.5s;
}
#menuBox_MV .linkSection_MV > div:first-child .opportunitiesList_MV {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
#menuBox_MV .linkSection_MV > div:first-child .opportunitiesList_MV ul {
  list-style-type: none;
}
#menuBox_MV .linkSection_MV > div:first-child .opportunitiesList_MV ul li {
  padding: 5px 0px;
}
#menuBox_MV .linkSection_MV > div:first-child .opportunitiesList_MV ul li a {
  padding: 0;
  border-bottom: 0;
  font-size: 14px;
}
#menuBox_MV .linkSection_MV > div:first-child .opportunitiesList_MV ul li:first-child {
  padding-bottom: 8px;
  font-weight: 700;
}
#menuBox_MV .linkSection_MV > div:first-child .opportunitiesList_MV ul li:first-child a {
  font-size: 16px;
  justify-content: flex-start;
  gap: 10px;
}
#menuBox_MV .linkSection_MV > div:first-child .opportunitiesList_MV ul li:first-child a span {
  display: grid;
  place-items: center;
}
#menuBox_MV .linkSection_MV > div:first-child .opportunitiesList_MV.openSlide {
  display: grid;
}
#menuBox_MV .linkSection_MV > div:first-child .opportunities_MV.openSlide .clear_filter {
  transform: rotate(0deg);
}
#menuBox_MV .linkSection_MV > div:last-child a {
  border: 0;
}
#menuBox_MV .linkSection_MV .linkBox_MVO.InsightsMob .opportunities_MV {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
#menuBox_MV .linkSection_MV .linkBox_MVO.InsightsMob .opportunities_MV .clear_filter {
  transform: rotate(45deg);
  transition: all 0.5s;
}
#menuBox_MV .linkSection_MV .linkBox_MVO.InsightsMob .opportunitiesList_MV {
  padding-left: 20px;
  display: none;
}
#menuBox_MV .linkSection_MV .linkBox_MVO.InsightsMob .opportunitiesList_MV > div a {
  padding: 15px 0px !important;
  border-bottom: 0 !important;
}
#menuBox_MV .linkSection_MV .linkBox_MVO.InsightsMob .opportunitiesList_MV.openSlide {
  display: grid;
}
#menuBox_MV .linkSection_MV .linkBox_MVO.InsightsMob .opportunities_MV.openSlide .clear_filter {
  transform: rotate(0deg);
}

.Insights {
  position: relative;
}

.Insights-opt {
  position: absolute;
  /* left: 0; */
  height: 0px;
  overflow: hidden;
  top: 100%;
  background-color: #fff;
  color: black;
  z-index: 999;
  border-radius: 0px 0px 20px 20px;
}
.Insights-opt ul {
  list-style-type: none;
  padding: 10px 5px;
}
.Insights-opt ul li {
  padding: 10px 30px;
}
.Insights-opt ul li:hover a {
  text-decoration: underline;
}

.headerLogo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.headerLogo img {
  max-height: 40px;
}

#mobileVersion {
  display: none;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  color: #fff;
}

.subHead {
  height: 0px;
  border-radius: 50px;
  background-color: #fff;
  position: absolute;
  left: 0;
  overflow: hidden;
  display: flex;
  width: 100%;
  top: 0;
  z-index: -1;
  transition: all 0.5s;
}

header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999999999999;
  top: clamp(2.75rem, 0.2843rem + 2.8881vw, 3.75rem);
  width: 80%;
}

.header {
  border-radius: 50px;
  padding: 10px 10px;
  background-color: #1c1c1c;
  position: relative;
  z-index: 11;
}

.headerLayer {
  position: fixed;
  z-index: 3;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  top: 0%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.2);
  left: 0;
  transition: all 0.5s;
  pointer-events: none;
}

.headerVisible {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
  transform: translate(-50%, 0);
}

.hideHeader {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
  transform: translate(-50%, -200%);
}

.quickConnect {
  all: unset;
  padding: 10px 16px;
  border-radius: 50px;
  background-color: #a2c617;
}

.whatsappHead > a {
  background-color: #25d366;
  padding: 0px 8px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  /* aspect-ratio: 1; */
  border-radius: 50%;
}

.searchNav {
  all: unset;
  padding: 10px 0px;
  padding-left: 45px;
  color: white;
  font-size: var(--font-16);
  border-radius: 50px;
  border: 1px solid rgba(133, 133, 133, 0.6117647059);
  background: transparent;
}

.searchBox {
  position: relative;
  height: 100%;
}

.searchBox svg {
  position: absolute;
  height: 50%;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  opacity: 0.7;
}

.rightHead {
  overflow: hidden;
  display: flex;
  gap: 10px;
  align-items: center;
}

.centerHead {
  display: flex;
  /* width: 100%; */
  gap: 40px;
}

.centerHead > a,
.centerHead > button {
  all: unset;
  cursor: pointer;
  font-weight: 600;
}

.Insights-opt ul li {
  padding: 7px 30px !important;
}

.Insights-opt li > a {
  all: unset;
  font-size: 14px;
  font-weight: normal;
}

.Insights-opt ul > .cta {
  font-weight: normal;
  transform: scale(0.8);
  transform-origin: left;
}

.subHeadContentleft,
.subHeadContentRight {
  width: 75%;
  display: flex;
  justify-content: flex-end;
}

.subHeadContentleft ul,
.subHeadContentRight ul {
  list-style-type: none;
  padding-top: 80px;
  padding-bottom: 30px;
}

.subHeadContentleft ul li:first-child a:first-child,
.subHeadContentRight ul li:first-child a:first-child {
  font-weight: 600;
  font-size: 16px;
  pointer-events: none;
}

.subHeadContentleft ul li:not(:last-child),
.subHeadContentRight ul li:not(:last-child) {
  margin: 8px 0px;
}
.subHeadContentleft ul li:not(:last-child) a,
.subHeadContentRight ul li:not(:last-child) a {
  all: unset;
  font-size: 12px;
  cursor: pointer;
}

.subHeadContentleft ul li .cta,
.subHeadContentRight ul li .cta {
  margin-top: 20px;
  transform: scale(0.8);
  transform-origin: left;
}

.subHeadContentRight {
  background-color: #eeeeee;
  width: 25.5%;
  justify-content: flex-start;
  padding-left: 35px;
}

/* testimonial */
#testimonial_container {
  background-color: #efefef;
  padding-top: 4%;
}

#testimonial {
  width: 80%;
  background-color: transparent;
  margin: 0px auto;
  margin-top: 0;
}
#testimonial .heading {
  margin-bottom: 8%;
}
#testimonial p {
  color: gray;
  font-size: var(--font-16);
  display: inline;
}
#testimonial p strong {
  color: #000;
  font-size: var(--font-20);
  white-space: pre;
}
#testimonial .swiper-wrapper {
  transition-timing-function: linear !important;
  position: relative;
  margin: 30px 0px;
}
#testimonial .card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 30px;
  padding: 30px;
  padding-bottom: 70px;
  gap: 20px;
  height: auto;
}
#testimonial .card .headCard {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100px;
}
#testimonial .card .headCard > div:first-child {
  width: 50%;
  max-height: 104px;
}
#testimonial .card .headCard > div:first-child strong {
  line-height: 1;
}
#testimonial .card .headCard .imgCard {
  width: 150px;
  height: 150px;
  position: relative;
  top: -47%;
}
#testimonial .card .headCard .imgCard img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
#testimonial .card .bodyCard {
  position: relative;
}
#testimonial .card .bodyCard img {
  position: absolute;
  right: -20px;
  bottom: -55px;
}

.swiper-button-next,
.swiper-button-prev {
  color: rgb(202, 202, 202) !important;
  transition: all 0.5s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: gray !important;
}

/* facilities */
#facilities-head > div {
  margin: 5% 0;
  padding: 5% 0;
  background-color: #fff;
}

.layerInFooter {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, black, transparent 20%);
  z-index: -1;
}

.contact_us_specialist_detail {
  /* padding-right: min(60px, 10%); */
  width: 45%;
  height: 100%;
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  align-items: center;
  padding-bottom: 30px;
}
.contact_us_specialist_detail .specialist_name {
  font-size: var(--font-20);
  text-align: center;
}
.contact_us_specialist_detail .post_name {
  font-size: var(--font-30);
  font-weight: 600;
  text-align: center;
}

.facilities_top,
.facilities_bottom {
  display: flex;
  position: relative;
}
.facilities_top .swiper-wrapper,
.facilities_bottom .swiper-wrapper {
  transition-timing-function: linear !important;
  position: relative;
  margin-top: 30px;
}
.facilities_top .facilities_child,
.facilities_bottom .facilities_child {
  aspect-ratio: 278/342;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  overflow: hidden;
  max-height: 342px;
}
.facilities_top .facilities_child img,
.facilities_bottom .facilities_child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.1);
  transition: all 0.5s;
}
.facilities_top .facilities_child:hover .facilitiesLayer,
.facilities_bottom .facilities_child:hover .facilitiesLayer {
  opacity: 0;
}
.facilities_top .facilities_child:hover img,
.facilities_bottom .facilities_child:hover img {
  transform: scale(1);
}
.facilities_top .facilities_child .facilitiesLayer,
.facilities_bottom .facilities_child .facilitiesLayer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.5490196078);
  opacity: 1;
  display: grid;
  place-items: center;
}
.facilities_top .facilities_child .facilitiesLayer p,
.facilities_bottom .facilities_child .facilitiesLayer p {
  text-align: center;
  color: white;
  padding: 0px 15px;
  font-size: var(--font-20);
}

/* about pic in zones master details page */
.about-zones {
  display: flex;
  background-color: #fff;
}
.about-zones > div {
  margin: 5% 10%;
  display: grid;
  grid-template-columns: auto 20%;
  gap: 50px;
  align-items: center;
}
.about-zones > div .heading {
  text-align: left;
}
.about-zones .first-child {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-zones .first-child > div:last-child {
  display: flex;
  gap: 50px;
}
.about-zones .first-child .inputtext {
  font-size: var(--font-20);
  color: var(--text-color);
  width: -webkit-fill-available;
}
.about-zones .last-child {
  background-color: var(--colored-text);
  border-radius: var(--inner-radiues);
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 30px;
  height: -moz-fit-content;
  height: fit-content;
}
.about-zones .last-child > div {
  display: flex;
  flex-direction: column;
}
.about-zones .last-child > div .big {
  font-size: var(--font-40);
  font-weight: 600;
  color: #fff;
}
.about-zones .last-child > div .small {
  font-size: var(--font-20);
  color: var(--text-color);
}

/* reports & documents */
#reports_documents {
  padding: 5% 10%;
  background-color: #fff;
  margin: 0px auto;
}
#reports_documents .heading {
  text-align: start;
}
#reports_documents .documentsCards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 4%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: clamp(30px, 7vh, 50px);
}
#reports_documents .reportCard {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-start;
}
#reports_documents .reportCard .reportCardText {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#reports_documents .reportCard .reportCardText .title {
  font-size: var(--font-30);
  font-weight: 600;
  line-height: 1.4;
}
#reports_documents .reportCard .reportCardText .description {
  font-size: var(--font-20);
}
#reports_documents .reportCard .reportCardText .downloadBtn button {
  all: unset;
  display: flex;
  height: 30px;
  gap: 10px;
  cursor: pointer;
  align-items: center;
  font-weight: 600;
  font-size: var(--font-16);
}
#reports_documents .reportCard .reportCardText .downloadBtn button img {
  height: 100%;
}
#reports_documents .reportCard .reportCardImage {
  width: 30%;
  background-color: #f2f2f2;
  width: 257px;
  border: 0;
  aspect-ratio: 257/342;
  border-radius: 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 5px gainsboro;
}
#reports_documents .reportCard .reportCardImage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* why invest  section */
#why_invest {
  padding: 5% 10%;
}
#why_invest .invest-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#why_invest .invest-head img {
  height: 40px;
  transform: rotate(-45deg);
}
#why_invest .investCards p {
  margin-top: 3%;
}
#why_invest .investCards ul,
#why_invest .investCards ol {
  padding-left: 1rem;
}
#why_invest .investCards ul li,
#why_invest .investCards ol li {
  margin-top: 3%;
}
#why_invest .investCards h2,
#why_invest .investCards h3,
#why_invest .investCards h4,
#why_invest .investCards h5,
#why_invest .investCards h6 {
  font-size: calc(var(--font-30) - 0px);
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  padding-bottom: 10px;
}
#why_invest .invest-fact {
  display: flex;
  gap: 30px;
}
#why_invest .invest-fact > div {
  background-color: #fff;
  border-radius: var(--radius);
  padding: 4% 5%;
  flex: 1;
}
#why_invest .invest-fact > div p {
  margin-top: 3%;
}
#why_invest .invest-fact > div ul,
#why_invest .invest-fact > div ol {
  padding-left: 1rem;
}
#why_invest .invest-fact > div ul li,
#why_invest .invest-fact > div ol li {
  margin-top: 3%;
}
#why_invest .invest-fact > div h2,
#why_invest .invest-fact > div h3,
#why_invest .invest-fact > div h4,
#why_invest .invest-fact > div h5,
#why_invest .invest-fact > div h6 {
  font-size: calc(var(--font-30) - 0px);
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  padding-bottom: 10px;
}
#why_invest .invest-fact > div * {
  font-size: var(--font-20);
  color: var(--text-color);
}

/* insoghts */
.insights {
  padding: 5% 10%;
}
.insights .heading {
  text-align: left;
  margin-bottom: 4%;
}
.insights .insights-numbers {
  display: grid;
  grid-template-columns: auto 22%;
  gap: 30px;
}
.insights .insights-numbers .first-child {
  border-radius: var(--inner-radiues);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
}
.insights .insights-numbers .first-child video,
.insights .insights-numbers .first-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.insights .insights-numbers .first-child .title {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4%;
  align-items: flex-start;
  bottom: 0%;
  left: 0%;
  background: linear-gradient(0deg, black, transparent);
  transition: all 0.2s !important;
}
.insights .insights-numbers .first-child .title P {
  font-size: var(--font-40);
  color: var(--colored-text);
  font-weight: 800;
  line-height: 1.3;
}
.insights .insights-numbers .first-child .swiper-pagination-bullet {
  height: 3px;
  width: 20px;
  border-radius: 0;
  background-color: var(--colored-text);
}
.insights .insights-numbers .first-child:hover .title {
  height: 25%;
}
.insights .insights-numbers .last-child {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  padding: 30px 40px;
  border-radius: var(--inner-radiues);
  background-color: #fff;
}
.insights .insights-numbers .last-child > div {
  display: flex;
  flex-direction: column;
}
.insights .insights-numbers .last-child > div .numbers {
  font-size: var(--font-40);
  color: var(--colored-text);
  font-weight: 800;
}
.insights .insights-numbers .last-child > div .text {
  font-size: var(--font-20);
  color: var(--text-color);
  line-height: 1.2;
}

#opportunity_insight .slider__ {
  width: 100%;
  aspect-ratio: 16/8;
  min-height: 300px;
}
#opportunity_insight .img_video img,
#opportunity_insight .img_video video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#opportunity_insight .swiper-pagination-bullet {
  height: 3px;
  width: 25px;
  border-radius: 0;
  background-color: var(--colored-text);
}

/* Trade agreement */
#trade_agreement {
  padding: 5% 0%;
  background-color: #f2f2f2;
}

/* Connectivity (location detail page) */
#connectivity {
  padding: 5% 10%;
}
#connectivity .heading {
  text-align: start;
  margin-bottom: 3%;
}
#connectivity .connectivityBox {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}
#connectivity .connectivityBox .connectivityCard {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
#connectivity .connectivityBox .connectivityCard img {
  max-height: 100px;
  height: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.for-mob {
  display: none;
}

/* why to invest */
#why_invest {
  padding: 5% 10%;
}
#why_invest .heading {
  text-align: left;
  margin-bottom: 4%;
}
#why_invest .investCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
#why_invest .investCards p {
  font-size: var(--font-20);
}

.by_products {
  padding: 5% 10%;
  background-color: #fff;
}
.by_products .heading {
  margin: 3% 0 4%;
}
.by_products .sub_product_container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.by_products .product_card {
  position: relative;
  width: calc((80vw - 150px) / 4);
  aspect-ratio: 0.917;
  overflow: hidden;
  border-radius: var(--inner-radiues);
}
.by_products .product_card * {
  transition: all 0.3s;
}
.by_products .product_img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scale(1);
  -o-object-fit: cover;
     object-fit: cover;
}
.by_products .back_layer {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, black, transparent);
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5%;
}
.by_products .back_layer .cta {
  position: absolute;
  transition: all 0.3s;
  bottom: -150%;
}
.by_products .back_layer .cta span {
  color: #fff;
}
.by_products .back_layer .card_title {
  font-size: var(--font-30);
  color: #fff;
  text-align: center;
}
.by_products .product_card:hover .product_img {
  transform: scale(1.1);
}
.by_products .product_card:hover .back_layer .cta {
  position: absolute;
  bottom: 30px;
}
.by_products .product_card:hover .back_layer .cta span {
  color: #fff;
}

.key_business {
  background-color: #fff;
  position: relative;
  padding: 5% 10%;
  padding-bottom: 10%;
}
.key_business .key_business_inner {
  position: relative;
}
.key_business .bakground_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 1080px;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
  -moz-user-select: none;
}
.key_business .heading {
  text-align: left;
  margin-bottom: max(30px, 4%);
  width: 90%;
}
.key_business .business_listing {
  width: max(600px, 45vw);
  background: #efefef;
  border-radius: var(--inner-radiues);
  padding: 8%;
}
.key_business .business_listing > P {
  margin-bottom: 10px;
}
.key_business .business_listing ul,
.key_business .business_listing ol {
  padding-left: 1rem;
}
.key_business .business_listing ul li,
.key_business .business_listing ol li {
  margin-bottom: 10px;
}

.listing_tags {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
  justify-content: flex-start;
}
.listing_tags a {
  text-decoration: none;
  padding: 2px 10px;
  border: 1px solid rgba(128, 128, 128, 0.507);
  border-radius: 20px;
  font-size: calc(var(--font-16) - 4px);
  color: rgba(128, 128, 128, 0.7803921569);
}

.new_listing {
  padding: 5% 10%;
}
.new_listing .heading {
  margin: 3% 0 4%;
}
.new_listing .media_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.new_listing .both_tiles_banner {
  grid-area: 1/1/2/3;
}
.new_listing .latest_news {
  grid-area: 1/3/2/4;
  border-radius: var(--inner-radiues);
}
.new_listing .news_banner {
  margin-bottom: 30px;
  border-radius: var(--inner-radiues);
  overflow: hidden;
}
.new_listing .news_banner .swiper-wrapper {
  aspect-ratio: 1107/686;
}
.new_listing .news_banner .news_banner_card {
  text-decoration: none;
  position: relative;
}
.new_listing .news_banner .news_banner_card > img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.new_listing .news_banner .swiper-pagination-bullet {
  width: 20px;
  height: 2px;
  border-radius: 0;
  background-color: rgba(198, 198, 198, 0.8117647059);
  opacity: 1;
}
.new_listing .news_banner .swiper-pagination-bullet-active {
  background-color: #fff;
}
.new_listing .news_banner .news_banner_layer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0, black, transparent);
}
.new_listing .news_banner .news_details {
  all: inherit;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0, black, transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0% 10% 6% 4%;
  transition: all 0.2s;
}
.new_listing .news_banner .title_news {
  all: unset;
  cursor: pointer;
  font-size: calc(var(--mainHeading) - 10px);
  font-weight: 600;
  color: #fff;
  transition: all 0.2s !important;
  line-height: 1;
  margin-bottom: 3%;
}
.new_listing .news_banner .general_text {
  all: unset;
  line-height: 1.1;
  cursor: pointer;
  font-size: var(--font-16);
  color: rgba(255, 255, 255, 0.831372549);
  transition: all 0.2s !important;
}
.new_listing .news_banner .tags_date {
  right: 4%;
  bottom: 2%;
  font-size: calc(var(--font-20) - 3px);
  color: rgba(255, 255, 255, 0.831372549);
}
.new_listing .news_banner .news_banner_card:hover .news_details {
  height: 40%;
}
.new_listing .news_banner .news_banner_card:hover .title_news {
  font-size: calc(var(--mainHeading) - 13px);
}
.new_listing .news_banner .news_banner_card:hover .general_text {
  font-size: calc(var(--font-16) - 2px);
}
.new_listing .latest_news {
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  background-color: #fff;
  position: sticky;
  top: 50px;
  height: -moz-min-content;
  height: min-content;
  max-height: 90vh;
  overflow: scroll;
}
.new_listing .latest_news .latest_news-heading {
  background-color: var(--colored-text);
  position: sticky;
  top: 0;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  font-size: var(--font-30);
  font-weight: 600;
}
.new_listing .latest_news .latest_news_listing {
  width: 100%;
  padding: 5%;
}
.new_listing .latest_news .latest_news_card {
  all: unset;
  cursor: pointer;
  display: grid;
  grid-template-columns: 40% 56%;
  gap: 4%;
  margin-bottom: 5%;
}
.new_listing .latest_news .latest_news_card:last-child {
  margin-bottom: 0;
}
.new_listing .latest_news .img_div {
  aspect-ratio: 1;
  border-radius: calc(var(--inner-radiues) - 20px);
  overflow: hidden;
}
.new_listing .latest_news .img_div img,
.new_listing .latest_news .img_div iframe {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.new_listing .latest_news .text_div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.new_listing .latest_news .text_div .title_ {
  font-size: var(--font-20);
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text-color);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.new_listing .latest_news .text_div .news_ {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: calc(var(--font-20) - 2px);
  overflow: hidden;
  font-weight: 600;
  color: var(--text-color);
}
.new_listing .tiles_cards {
  overflow: hidden;
  display: grid;
  grid-template-columns: calc(50% - 15px) calc(50% - 15px);
  gap: 30px;
}
.new_listing .tiles_cards * {
  transition: all 0.3s;
}
.new_listing .tiles_cards .videoSup {
  text-decoration: none;
}
.new_listing .tiles_cards .videoSup .videoCon {
  border-radius: var(--inner-radiues);
  overflow: hidden;
  height: 300px;
  width: 100%;
  display: block;
}
.new_listing .tiles_cards .videoSup .videoCon iframe {
  width: 100%;
  height: 100%;
}
.new_listing .tiles_cards .videoSup .text_div {
  padding: 6% 2%;
}
.new_listing .tiles_cards .tile_card_ {
  transform: translateZ(0);
  text-decoration: none;
  background-color: #fff;
  border-radius: var(--inner-radiues);
  overflow: hidden;
  height: 100%;
}
.new_listing .tiles_cards .img_div {
  aspect-ratio: 538/341;
  overflow: hidden;
}
.new_listing .tiles_cards .img_div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.new_listing .tiles_cards .text_div {
  padding: 6% 7%;
}
.new_listing .tiles_cards .title_text {
  all: unset;
  cursor: pointer;
  font-weight: 700;
  color: var(--text-color);
  text-transform: capitalize;
  font-size: calc(var(--font-20) + 1px);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.new_listing .tiles_cards .date_text {
  margin: 1% 0 2%;
  font-size: var(--font14);
  color: var(--text-color);
}
.new_listing .tiles_cards .description_text {
  color: var(--text-color);
  font-size: var(--font-16);
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.new_listing .tile_card_:hover .img_div img {
  transform: scale(1.1);
}

.new_detail_head {
  padding: 15%;
  padding-top: 10%;
  padding-bottom: 13%;
  background-color: #efefef;
}
.new_detail_head .heading {
  text-transform: none;
  text-align: left;
  line-height: 1.1;
  margin-bottom: 1.5%;
  font-size: var(--font-40);
  padding: 0;
}
.new_detail_head .subheading {
  color: var(--lightfontColor);
  font-size: var(--font-30);
  line-height: 1.05;
}
.new_detail_head .group_tags_share_lang {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin-top: 15px;
  gap: 20px;
  justify-content: flex-start;
}
.new_detail_head .tags {
  margin-top: 15px;
  display: block;
  gap: 0px;
  margin-right: 10px;
}
.new_detail_head .tags p {
  padding: 2px 10px;
  border: 1px solid rgba(128, 128, 128, 0.507);
  border-radius: 20px;
  font-size: calc(var(--font-16) - 2px);
  color: rgba(128, 128, 128, 0.7803921569);
}
.new_detail_head .tags a {
  text-decoration: none;
  padding: 2px 10px;
  border: 1px solid rgba(128, 128, 128, 0.507);
  border-radius: 20px;
  font-size: calc(var(--font-16) - 2px);
  color: rgba(128, 128, 128, 0.7803921569);
}
.new_detail_head .sharing {
  float: left;
  display: flex;
  gap: 25px;
  padding-right: 30px;
}
.new_detail_head .sharing img {
  width: 20px;
  aspect-ratio: 1;
  cursor: pointer;
}
.new_detail_head .tags.sharing {
  gap: 15px;
}

.banner_video {
  padding: 0 15%;
  margin-top: -10%;
  background-color: transparent;
}
.banner_video video,
.banner_video img {
  overflow: hidden;
  border-radius: var(--inner-radiues);
  width: 100%;
  aspect-ratio: 16/6;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.news_details {
  padding: 5% 15%;
  display: grid;
  grid-template-columns: calc(66% - 30px) 33%;
  gap: 30px;
  width: 100%;
}
.news_details .free_detail .sharing {
  float: right;
  display: flex;
  gap: 25px;
  padding-right: 30px;
  margin-left: 20px;
}
.news_details .free_detail .sharing img {
  width: 20px;
  aspect-ratio: 1;
  cursor: pointer;
  border-radius: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.news_details .free_detail .embed_video {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 15px !important;
}
.news_details .free_detail .embed_video iframe {
  width: 100%;
  height: 100%;
  max-height: none;
  max-width: unset;
}
.news_details .free_detail h2,
.news_details .free_detail h1,
.news_details .free_detail h3,
.news_details .free_detail h4,
.news_details .free_detail h5,
.news_details .free_detail h6 {
  font-size: var(--font-40);
  color: var(--text-color);
  line-height: 1.3;
}
.news_details .free_detail h2 *, .news_details .free_detail h1 *, .news_details .free_detail h3 *, .news_details .free_detail h4 *, .news_details .free_detail h5 *, .news_details .free_detail h6 * {
  font-size: var(--font-40);
  color: var(--text-color);
  line-height: 1.3;
}
.news_details .free_detail p,
.news_details .free_detail li {
  font-size: var(--font-20);
  color: var(--text-color);
}
.news_details .free_detail p a,
.news_details .free_detail li a {
  all: unset;
  cursor: pointer;
  color: #1fa957;
}
.news_details .free_detail p a:hover,
.news_details .free_detail li a:hover {
  text-decoration: underline;
}
.news_details .free_detail img,
.news_details .free_detail video,
.news_details .free_detail iframe {
  border-radius: var(--inner-radiues);
  max-width: 700px;
  height: 100%;
  width: 100%;
  max-height: clamp(18.75rem, 11.6071rem + 11.1607vw, 25rem);
  -o-object-fit: cover;
     object-fit: cover;
}
.news_details .latest_news {
  background-color: #fff;
  position: sticky;
  top: 50px;
  height: -moz-min-content;
  height: min-content;
}
.news_details .latest_news .latest_news-heading {
  /* background-color: var(--colored-text); */
  color: var(--text-color);
  text-transform: uppercase;
  text-align: center;
  /* padding: 10px; */
  font-size: var(--font-30);
  font-weight: 700;
}
.news_details .latest_news .latest_news_listing {
  width: 100%;
  padding: 5%;
  height: -moz-min-content;
  height: min-content;
  max-height: 90vh;
  overflow: scroll;
}
.news_details .latest_news .latest_news_card {
  all: unset;
  cursor: pointer;
  display: grid;
  grid-template-columns: 40% 56%;
  gap: 4%;
  margin-bottom: 5%;
}
.news_details .latest_news .latest_news_card:last-child {
  margin-bottom: 0;
}
.news_details .latest_news .img_div {
  aspect-ratio: 1;
  border-radius: calc(var(--inner-radiues) - 20px);
  overflow: hidden;
}
.news_details .latest_news .img_div img,
.news_details .latest_news .img_div iframe {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.news_details .latest_news .text_div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.news_details .latest_news .text_div .title_ {
  font-size: var(--font-20);
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text-color);
}
.news_details .latest_news .text_div .news_ {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: calc(var(--font-20) - 2px);
  overflow: hidden;
  font-weight: 600;
  color: var(--text-color);
}

#newsInfo {
  padding: 0% 15%;
  padding-top: 5%;
  position: relative;
}
#newsInfo .newsBox {
  padding: 5%;
  border-radius: var(--inner-radiues);
  background-color: #a2c617;
}
#newsInfo .newsBox .heading {
  text-align: left;
  margin-bottom: 4%;
  padding: 0;
}
#newsInfo .newsBox .heading span {
  color: #ffffff;
}
#newsInfo .newsBox .subHeading {
  font-size: var(--font-30);
  margin-bottom: 1%;
  color: #272725;
}
#newsInfo .newsBox #newsLetters {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
#newsInfo .newsBox #newsLetters .subscribeBtn {
  position: relative;
}
#newsInfo .newsBox #newsLetters .subscribeBtn .msg_div_subs {
  position: absolute;
  bottom: -30px;
  right: 0;
}
#newsInfo .newsBox #newsLetters .subscribeBtn .msg_div_subs .alert {
  white-space: pre;
}
#newsInfo .newsBox #newsLetters .input_fields {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: var(--font-20);
}
#newsInfo .newsBox #newsLetters .input_fields input {
  all: unset;
  border: 1px solid #272725;
  border-radius: 5px;
  padding: 5px 10px;
  width: max(350px, 100%);
}
#newsInfo .newsBox #newsLetters .input_fields label {
  white-space: pre;
}
#newsInfo .newsBox #newsLetters .cta {
  border-color: #e8e8e8;
}

#exploreBlogs {
  padding: 5% 5%;
  padding-top: 15%;
  margin-top: -10%;
  background-color: transparent;
  background-color: #efefef;
}
#exploreBlogs .heading {
  margin-bottom: 4%;
}
#exploreBlogs .exploreBlogBox {
  /* display: grid; */
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* grid-template-columns: repeat(4,1fr); */
}
#exploreBlogs .exploreBlogBox .tile_card_ {
  all: unset;
  cursor: pointer;
  flex: 1;
  transform: translateZ(0);
  background-color: #ffffff;
  width: 100%;
  aspect-ratio: 390/490;
  min-width: 280px;
  max-width: 360px;
  border-radius: var(--inner-radiues);
  overflow: hidden;
}
#exploreBlogs .exploreBlogBox .tile_card_ .img_div {
  aspect-ratio: 390/271;
  transition: all 0.3s;
  overflow: hidden;
}
#exploreBlogs .exploreBlogBox .tile_card_ .img_div img,
#exploreBlogs .exploreBlogBox .tile_card_ .img_div iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
#exploreBlogs .exploreBlogBox .tile_card_:hover .img_div img {
  transform: scale(1.1);
}
#exploreBlogs .exploreBlogBox .tile_card_ .text_div {
  padding: 10px 20px;
  aspect-ratio: 1/0.55;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#exploreBlogs .exploreBlogBox .tile_card_ .text_div .title_text {
  all: unset;
  font-size: var(--font-20);
  font-weight: 700;
}
#exploreBlogs .exploreBlogBox .tile_card_ .text_div .date_text {
  font-size: 14px;
  margin: 5px 0px;
}
#exploreBlogs .exploreBlogBox .tile_card_ .description_text {
  color: var(--text-color);
  font-size: var(--font-16);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#download_form.download_form {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999999999991;
  background-color: rgba(0, 0, 0, 0.1607843137);
  margin: 0;
}
#download_form.download_form > div {
  position: relative;
  width: max(600px, 55%);
  background-color: #fff;
  border-radius: 30px;
  padding: max(40px, 4%);
}
#download_form.download_form > div form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#download_form.download_form > div .first_head {
  font-weight: 800;
  color: var(--text-color);
  text-transform: uppercase;
  font-size: var(--font-40);
  line-height: 1.6;
  margin-bottom: 5px;
}
#download_form.download_form > div .first_head span {
  color: var(--colored-text);
}
#download_form.download_form > div .sec_head {
  font-size: var(--font-30);
  text-transform: capitalize;
  line-height: 1.6;
  color: var(--text-color);
}
#download_form.download_form > div .input_field {
  display: flex;
  width: 100%;
  flex-direction: row;
  gap: 30px;
}
#download_form.download_form > div .input_field > div {
  display: flex;
  flex: 1;
  flex-direction: column;
}
#download_form.download_form > div .input_field > div label {
  font-size: var(--font-20);
  color: var(--text-color);
  margin-left: 5px;
  text-transform: capitalize;
}
#download_form.download_form > div .input_field > div input {
  border-radius: 8px;
  border: 1px solid rgba(128, 128, 128, 0.357);
  padding: 8px 5px;
  font-size: var(--font-20);
}
#download_form.download_form > div .check_boxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#download_form.download_form > div .check_boxes > div {
  display: grid;
  grid-template-columns: 25px auto;
}
#download_form.download_form > div .check_boxes > div label {
  font-size: var(--font-16);
  color: var(--text-color);
}
#download_form.download_form > div .check_boxes input[type=checkbox] {
  cursor: pointer;
  all: unset;
  position: relative;
  height: 15px;
  width: 15px;
  margin-top: 2px;
}
#download_form.download_form > div .check_boxes input[type=checkbox]::after {
  content: "";
  background-color: transparent;
  position: absolute;
  top: 0;
  height: 15px;
  width: 15px;
  top: 1px;
  border-radius: 5px;
  border: 1px solid #b8b8b8;
}
#download_form.download_form > div .check_boxes input[type=checkbox]:checked::before {
  content: "✓";
  position: absolute;
  height: 25px;
  width: 25px;
  z-index: 1;
  top: -2px;
  left: 19%;
  font-weight: 1000;
  font-size: 14px;
}
#download_form.download_form > div .check_boxes input[type=checkbox]:checked::after {
  content: "";
  background-color: #a2c617;
  border: 1px solid #a2c617;
}
#download_form.download_form > div .cta.right {
  margin: 0;
}
#download_form.download_form > div .close_download_form {
  position: absolute;
  top: 30px;
  right: 30px;
  height: 30px;
  width: 30px;
  cursor: pointer;
}
#download_form.download_form > div .alert {
  margin-top: 15px;
  color: red;
  font-size: 14px;
}
#download_form.download_form > div .alert-success {
  color: var(--colored-text);
}
#download_form.download_form > div .success {
  margin-top: 15px;
  font-size: 14px;
  color: green;
}
#download_form.download_form > div input.invalid,
#download_form.download_form > div input[type=checkbox].invalid::after {
  border-color: red;
}

#compare_ {
  height: 0;
  display: none;
  position: fixed;
  height: 100vh;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(203, 203, 203, 0.4705882353);
  z-index: 999999999999999;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 0 10%;
}
#compare_ .compare_ {
  height: 85vh;
  width: 100%;
  margin-top: 15vh;
  border-radius: var(--inner-radiues) var(--inner-radiues) 0 0;
  padding: 0%;
  display: flex;
  position: relative;
  flex-direction: column;
  background-color: #fff;
}
#compare_ .compare_ .cross_bar {
  background-color: #fff;
  height: 80px;
  min-height: 80px;
  position: sticky;
  top: 0;
  left: 0;
  border-radius: var(--inner-radiues) var(--inner-radiues) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#compare_ .compare_ .cross_bar .bar_ {
  height: 5px;
  width: 200px;
  background-color: grey;
  border-radius: 10px;
}
#compare_ .compare_ .item_container {
  background-color: #ffffff;
  display: flex;
  padding: 2% 10% 2% 10%;
  flex-wrap: wrap;
  gap: 20px;
  overflow-y: scroll;
  justify-content: center;
}
#compare_ .compare_ .item_container .cards__ {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  all: unset;
  width: calc((63vw - 40px) / 3);
  aspect-ratio: 415/578;
  background-color: rgba(242, 242, 242, 0.6941176471);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: var(--inner-radiues);
  overflow: hidden;
  min-width: 250px;
  max-width: 390px;
}
#compare_ .compare_ .item_container .cards__ * {
  transition: all 0.3s;
}
#compare_ .compare_ .item_container .cards__ .img_div {
  position: relative;
  aspect-ratio: 415/335;
  overflow: hidden;
}
#compare_ .compare_ .item_container .cards__ .img_div .label_text {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: absolute;
  padding: 30px;
  z-index: 1;
  text-transform: capitalize;
  font-weight: 600;
  font-size: var(--font-30);
  text-align: center;
  color: #fff;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  line-height: 1.1;
}
#compare_ .compare_ .item_container .cards__ .img_div .back_img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#compare_ .compare_ .item_container .cards__ .img_div .backlayer_ {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.635), transparent);
}
#compare_ .compare_ .item_container .cards__ .img_div .compare_div {
  position: relative;
  height: 100%;
  width: 100%;
}
#compare_ .compare_ .item_container .cards__ .img_div .compare_div input {
  opacity: 0;
}
#compare_ .compare_ .item_container .cards__ .img_div .compare_div label {
  z-index: 111;
  position: absolute;
  height: 40px;
  width: 40px;
  background-color: #fff;
  top: 4%;
  right: 4%;
  border-radius: 50%;
  transform: rotate(45deg);
  transition: all 0.3s;
  cursor: pointer;
}
#compare_ .compare_ .item_container .cards__ .img_div .compare_div label img {
  transition: all 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 5px;
}
#compare_ .compare_ .item_container .cards__ .img_div .compare_div input:checked + label {
  transform: rotate(90deg);
  border: 1px solid var(--colored-text);
}
#compare_ .compare_ .item_container .cards__ .img_div .compare_div input:checked + label img {
  filter: invert(63%) sepia(99%) saturate(406%) hue-rotate(26deg) brightness(99%) contrast(84%);
}
#compare_ .compare_ .item_container .cards__ .statics {
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  display: flex;
  margin: 0 3%;
  justify-content: space-around;
  gap: 3px;
}
#compare_ .compare_ .item_container .cards__ .statics > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 5.5% 0 5%;
  flex: 1;
}
#compare_ .compare_ .item_container .cards__ .statics > div .title {
  font-size: var(--font14);
  color: var(--fade-text);
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#compare_ .compare_ .item_container .cards__ .statics > div .stats {
  font-weight: 600;
  font-size: calc(var(--font-20) - 3px);
  color: var(--text-color);
  position: relative;
}
#compare_ .compare_ .item_container .cards__ .short_discription {
  padding: 0 7%;
  text-align: center;
  font-size: var(--font-16);
  color: #272725;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
#compare_ .compare_ .item_container .cards__ .cta_div {
  display: flex;
  justify-content: center;
  opacity: 0;
}
#compare_ .compare_ .item_container .cards__:hover .short_discription {
  opacity: 0;
}
#compare_ .compare_ .item_container .cards__:hover .cta_div {
  opacity: 1;
  transform: translate(0, -100%);
}
#compare_ .compare_ .item_container .cards__:hover .img_div img {
  transform: scale(1.1);
}

.compare_alert_layerr {
  position: fixed;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.631372549), transparent);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  display: none;
  z-index: 3;
}

.compare_alert {
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translate(-50%, 0);
  display: grid;
  grid-template-columns: auto auto;
  gap: 30px;
  background-color: #fff;
  border-radius: calc(var(--inner-radiues) - 5px);
  padding: 15px 40px;
  z-index: 3;
  align-items: center;
  display: none;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.compare_alert .cross_div {
  display: flex;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  justify-content: center;
  border: 2px solid var(--colored-text);
  border-radius: 50%;
  width: 25px;
  padding: 1px;
  aspect-ratio: 1;
}
.compare_alert p {
  font-size: var(--font-16);
  line-height: 1.3;
  display: grid;
  place-content: center;
}
.compare_alert img {
  height: 20px;
}

#listing_links {
  padding: 5% 10%;
}
#listing_links .heading {
  margin-bottom: 4%;
  text-align: center;
}
#listing_links > .cradd {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
#listing_links .in_cards {
  text-decoration: none;
  display: grid;
  grid-template-rows: 55% 45%;
  background-color: #fff;
  aspect-ratio: 0.8;
  border-radius: var(--inner-radiues);
  overflow: hidden;
  width: calc((80vw - 90px) / 4);
  max-width: 350px;
  min-width: 230px;
}
#listing_links .in_cards .imgg {
  height: 100%;
  width: 100%;
  position: relative;
}
#listing_links .in_cards img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#listing_links .in_cards .layer_text {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: max(25px, var(--font-30));
  text-align: center;
  text-transform: capitalize;
  background-color: rgba(0, 0, 0, 0.3960784314);
  color: #fff;
}
#listing_links .in_cards .text_content {
  padding: 12% 5%;
  position: relative;
}
#listing_links .in_cards .text_content p {
  text-align: center;
  font-size: var(--font-20);
  color: var(--text-color);
  transition: all 0.3s;
}
#listing_links .in_cards .text_content .cta {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 150%);
  opacity: 0;
  transition: all 0.3s;
}
#listing_links .in_cards:hover .text_content p {
  opacity: 0;
}
#listing_links .in_cards:hover .text_content .cta {
  opacity: 1;
  transform: translate(-50%, -50%);
}

#services__ {
  padding: 5% 10%;
  padding-top: 0;
}
#services__ .heading {
  margin-bottom: 4%;
}
#services__ .inner_html {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
#services__ .inner_html > div {
  min-width: calc((80vw - 90px) / 4);
  max-width: calc((80vw - 90px) / 4);
  display: flex;
  gap: 20px;
  flex-direction: column;
  flex: 1;
  padding: 4% 15px;
  background-color: #fff;
  border-radius: var(--inner-radiues);
}
#services__ .inner_html > div .titlee {
  font-size: var(--font-30);
  text-align: center;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.2;
}
#services__ .inner_html > div .dess {
  font-size: var(--font-20);
  text-align: center;
  line-height: 1.7;
}

#highlights {
  height: 0;
  opacity: 0;
  transition: all 0.3s;
  position: fixed;
  height: clamp(8.75rem, 4.4643rem + 6.6964vw, 12.5rem);
  aspect-ratio: 22/9;
  bottom: 40px;
  right: 40px;
  background-color: #1c1c1c;
  border-radius: calc(var(--inner-radiues) - 10px);
  padding: 20px;
  z-index: 999;
  box-sizing: border-box;
  overflow: hidden;
}
#highlights .highlights_swiper {
  display: flex;
}
#highlights .highlight_card {
  text-decoration: none;
  color: #fff;
  height: 100%;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 38% 58%;
  gap: 4%;
}
#highlights .highlight_card .imgg {
  pointer-events: none;
  height: 100%;
  width: 100%;
  border-radius: calc(var(--inner-radiues) - 20px);
  overflow: hidden;
}
#highlights .highlight_card .imgg img {
  pointer-events: none;
  height: 100%;
  width: 100%;
}
#highlights .highlight_card .hide_me_svg {
  position: absolute;
  height: 25px;
  width: 25px;
  top: -2px;
  right: -2px;
  filter: invert(1);
}
#highlights .highlight_card .redirecting_arrow {
  pointer-events: none;
  position: absolute;
  height: 40px;
  width: 40px;
  bottom: -2px;
  right: -2px;
  transition: all 0.3s;
}
#highlights .highlight_card .textt {
  pointer-events: none;
  padding: 7% 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#highlights .highlight_card .title {
  pointer-events: none;
  font-size: clamp(1.125rem, 0.4107rem + 1.1161vw, 1.75rem);
  line-height: 1;
}
#highlights .highlight_card .subtitle {
  pointer-events: none;
  font-size: clamp(0.875rem, 0.7321rem + 0.2232vw, 1rem);
  color: #efefef;
}
#highlights .highlight_card:hover .redirecting_arrow {
  transform: rotate(45deg);
}

#high_text {
  transition: 0.1s;
  opacity: 0;
  height: 0;
  overflow: hidden;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  padding: 7px 20px;
  background-color: #12236b;
  border-radius: 40px;
  overflow: hidden;
  cursor: pointer;
  z-index: 99;
}
#high_text :hover img {
  transform: translateX(10px);
}
#high_text .high_text {
  pointer-events: none;
  display: flex;
  gap: 20px;
  align-items: center;
}
#high_text .high_text img {
  height: 25px;
  width: 30px;
  filter: invert(1);
  transition: all 0.2s;
}
#high_text .high_text p {
  color: #fff;
}

#high_top {
  position: fixed;
  z-index: 9999999999999;
  top: 0;
  left: 0;
  height: clamp(1.875rem, 0.3339rem + 1.8051vw, 2.5rem);
  width: 100%;
  background-color: #312d7c;
  padding: 10px 0%;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
  transform: translate(0, 0);
}
#high_top .card_top {
  display: flex;
  align-items: center;
}
#high_top .card_top p {
  width: 100%;
  text-align: center;
  color: #fff;
  display: flex;
  width: 100%;
  white-space: pre;
  justify-content: center;
  line-height: 1;
  cursor: default;
}
#high_top .card_top p a {
  all: unset;
  color: #fff;
  cursor: pointer;
}
#high_top .card_top p a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
#high_top .card_top img {
  height: 30px;
  width: 30px;
  filter: invert(1);
  display: none;
}

#high_top.hide {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
  transform: translate(0, -150px);
}

#contact_number {
  padding: 5% 0%;
  margin: 0 10%;
  border-radius: var(--radius);
  background-color: #fff;
}
#contact_number .heading {
  margin-bottom: 4%;
}
#contact_number .numbers_contact_div {
  padding: 0 4%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
#contact_number .numbers_contact_div .cards_ {
  padding: 15px;
  border-radius: 15px;
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#contact_number .numbers_contact_div .cards_ > div {
  display: flex;
  align-items: center;
  gap: 15px;
}
#contact_number .numbers_contact_div .cards_ > div img {
  height: 25px;
  border-radius: 3px;
  width: 37px;
}
#contact_number .numbers_contact_div .cards_ > div .img_call_ {
  transform: scale(0.8);
}
#contact_number .numbers_contact_div .cards_ > div p,
#contact_number .numbers_contact_div .cards_ > div a {
  cursor: pointer;
  text-decoration: none;
  font-size: var(--font-16);
  color: var(--text-color);
}

#social_handles {
  padding: 4% 5%;
  margin: 0 10%;
  margin-top: 5%;
  background-color: #fff;
  border-radius: var(--inner-radiues);
}
#social_handles .heading {
  margin-bottom: 4%;
}
#social_handles .container_inter_ {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.alert.alert-success {
  display: flex;
  gap: 7px;
}

#all_insights {
  margin: 160px 10%;
}
#all_insights .insights_container {
  display: flex;
  flex-direction: column-reverse;
  grid-template-columns: calc(75% - 10px) calc(25% - 10px);
}
#all_insights .insights_container .insights_div .main__di {
  display: flex;
  align-items: center;
  gap: 40px;
}
#all_insights .insights_container .insights_div .sub_head {
  font-size: var(--font-40);
  margin: 40px 0 30px;
  font-weight: 800;
  color: var(--text-color);
  text-transform: uppercase;
}
#all_insights .insights_container .insights_div .items_fil {
  display: grid;
  grid-template-columns: calc(25% - 15px) calc(25% - 15px) calc(25% - 15px) calc(25% - 15px);
  gap: 20px;
}
#all_insights .insights_container .insights_div .items_fil > a, #all_insights .insights_container .insights_div .items_fil > div {
  transform: translateZ(0);
  text-decoration: none;
  width: 100%;
  background-color: #fff;
  border-radius: var(--inner-radiues);
  overflow: hidden;
}
#all_insights .insights_container .insights_div .items_fil > a .img_div, #all_insights .insights_container .insights_div .items_fil > div .img_div {
  aspect-ratio: 538/341;
  overflow: hidden;
}
#all_insights .insights_container .insights_div .items_fil > a .img_div img, #all_insights .insights_container .insights_div .items_fil > div .img_div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#all_insights .insights_container .insights_div .items_fil > a .text_div, #all_insights .insights_container .insights_div .items_fil > div .text_div {
  padding: 6% 7%;
}
#all_insights .insights_container .insights_div .items_fil > a .text_div .title_text, #all_insights .insights_container .insights_div .items_fil > div .text_div .title_text {
  all: unset;
  cursor: pointer;
  font-weight: 700;
  color: var(--text-color);
  text-transform: capitalize;
  font-size: calc(var(--font-20) + 1px);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#all_insights .insights_container .insights_div .items_fil > a .text_div .date_text, #all_insights .insights_container .insights_div .items_fil > div .text_div .date_text {
  margin: 1% 0 2%;
  font-size: var(--font14);
  color: var(--text-color);
}
#all_insights .insights_container .insights_div .items_fil > a .text_div .description_text, #all_insights .insights_container .insights_div .items_fil > div .text_div .description_text {
  color: var(--text-color);
  font-size: var(--font-16);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#all_insights .insights_container .insights_div .items_fil_video {
  display: grid;
  grid-template-columns: calc(25% - 15px) calc(25% - 15px) calc(25% - 15px) calc(25% - 15px);
  gap: 20px;
}
#all_insights .insights_container .insights_div .items_fil_video > div .videoCon {
  display: block;
  text-decoration: none;
  border-radius: var(--inner-radiues);
  overflow: hidden;
  height: 300px;
  width: 100%;
}
#all_insights .insights_container .insights_div .items_fil_video > div .videoCon iframe,
#all_insights .insights_container .insights_div .items_fil_video > div .videoCon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#all_insights .insights_container .insights_div .items_fil_video > div .text_div {
  padding: 6% 2%;
}
#all_insights .insights_container .insights_div .items_fil_video > div .text_div .title_text {
  all: unset;
  cursor: pointer;
  font-weight: 700;
  color: var(--text-color);
  text-transform: capitalize;
  font-size: calc(var(--font-20) + 1px);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#all_insights .insights_filter {
  background-color: #fff;
  margin-top: 20px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
  display: flex;
  gap: 20px;
  border-radius: 20px;
}
#all_insights .insights_filter .fill_text a {
  all: unset;
  font-size: var(--font-20);
  color: var(--text-color);
  transition: all 0.3s;
  cursor: pointer;
  text-wrap: nowrap;
}
#all_insights .insights_filter .fill_text a:hover {
  text-decoration: underline;
  color: #a2c617;
  transform: scale(1.1);
  transition: all 0.3s;
  transform-origin: left;
}

#stats_master.terms_conditionsDetail .heading {
  margin: 0%;
  text-align: left;
}
#stats_master.terms_conditionsDetail p {
  text-align: left !important;
}
#stats_master.terms_conditionsDetail h3 {
  font-size: var(--font-30);
}
#stats_master.terms_conditionsDetail h4 {
  font-size: var(--font-20);
}
#stats_master.terms_conditionsDetail strong {
  font-size: var(--font-20);
}
#stats_master.terms_conditionsDetail ul {
  padding-left: 1rem;
}
#stats_master.terms_conditionsDetail ul li {
  padding-bottom: 12px;
  font-size: var(--font-20);
  line-height: 1.9;
}
#stats_master.terms_conditionsDetail ul a {
  all: unset;
  cursor: pointer;
  color: #1fa957;
}
#stats_master.terms_conditionsDetail ul a:hover {
  text-decoration: underline;
}

#exitpopup {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 100000000000000000000000000;
  display: none;
  overflow-y: scroll;
  left: 0;
  top: 0;
  place-items: center;
}
#exitpopup > div {
  width: max(400px, 55%);
  /* height: 90%; */
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background-color: #fff;
  border-radius: var(--inner-radiues);
  padding: 50px;
  position: relative;
}
#exitpopup > div .already {
  position: absolute;
  right: 30px;
  bottom: 15px;
  text-align: right;
  display: none;
  font-size: 14px;
}
#exitpopup > div .error_name {
  color: red;
}
#exitpopup > div .close_icon_exit {
  position: absolute;
  right: 30px;
  top: 30px;
  height: 25px;
  cursor: pointer;
  width: 25px;
}
#exitpopup > div .container_content .top_section {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
#exitpopup > div .container_content .top_section img {
  height: 60px;
  width: auto;
}
#exitpopup > div .container_content .top_section h3 {
  font-size: calc(var(--font-40) - 5px);
  color: var(--text-color);
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
  text-align: left;
}
#exitpopup > div .container_content .top_section h3 span {
  font-weight: 800;
  color: var(--colored-text);
  line-height: 1.2;
}
#exitpopup > div .container_content .top_section .sub_text {
  color: var(--text-color);
  font-size: calc(var(--font-30) - 5px);
  text-align: left;
}
#exitpopup > div .container_content .input_boxes {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  justify-content: center;
}
#exitpopup > div .container_content .input_boxes input {
  padding: 10px 5px;
  border: 1px solid #b8b8b8;
  border-radius: 0.5rem;
  width: 100%;
  width: 60%;
}
#exitpopup > div .container_content .shortDesc > div {
  display: flex;
  gap: 15px;
  justify-content: center;
}
#exitpopup > div .container_content .shortDesc > div input[type=checkbox] {
  cursor: pointer;
  all: unset;
  position: relative;
  height: 15px;
  width: 15px;
  margin-top: 2px;
}
#exitpopup > div .container_content .shortDesc > div input[type=checkbox]::after {
  content: "";
  background-color: transparent;
  position: absolute;
  top: 0;
  height: 15px;
  width: 15px;
  top: 1px;
  border-radius: 5px;
  border: 1px solid #b8b8b8;
}
#exitpopup > div .container_content .shortDesc > div input[type=checkbox]:checked::after {
  content: "";
  background-color: #a2c617;
  border: 1px solid #a2c617;
}
#exitpopup > div .container_content .shortDesc > div input[type=checkbox]:checked::before {
  content: "✓";
  position: absolute;
  height: 25px;
  width: 25px;
  z-index: 1;
  top: -2px;
  left: 19%;
  font-weight: 1000;
  font-size: 14px;
}
#exitpopup > div .container_content .cta_div_exit {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}
#exitpopup > div .container_content .cta_div_exit p {
  color: grey;
  font-size: 15px;
  text-decoration: underline;
  cursor: pointer;
}
#exitpopup > div .thanks_container {
  display: none;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
#exitpopup > div .thanks_container .p1 {
  font-size: var(--font-30);
  color: var(--text-color);
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
#exitpopup > div .thanks_container .p2 {
  text-transform: uppercase;
  font-size: var(--font-40);
  color: var(--text-color);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
  margin-top: -20px;
  text-align: center;
}
#exitpopup > div .thanks_container > img {
  height: 200px;
  width: 200px;
}
#exitpopup > div .thanks_container .follow_div {
  display: flex;
  gap: 50px;
  align-items: center;
}
#exitpopup > div .thanks_container .follow_div p {
  color: var(--text-color);
  font-size: var(--font-20);
  line-height: 1.2;
}
#exitpopup > div .thanks_container .follow_div > div {
  display: flex;
  gap: 15px;
  align-items: center;
}
#exitpopup > div .thanks_container .follow_div > div a {
  line-height: 0.9;
}
#exitpopup > div .thanks_container .follow_div > div img {
  height: 20px;
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
#exitpopup > div .thanks_container > a {
  all: unset;
  color: var(--colored-text);
  cursor: pointer;
}
#exitpopup > div .thanks_container > a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1154px) {
  .letter_detail {
    padding: 130px 20px 40px;
  }
  #exitpopup > div {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  #exitpopup > div {
    width: 100%;
    padding: 50px 30px;
  }
  #exitpopup > div .close_icon_exit {
    top: 20px;
    right: 20px;
  }
  #exitpopup > div .container_content .cta_div_exit {
    flex-direction: column;
  }
  #exitpopup > div .container_content .top_section {
    flex-direction: column;
  }
  #exitpopup > div .container_content .top_section img {
    height: 50px;
  }
  #exitpopup > div .container_content .top_section h3 {
    text-align: center;
  }
  #exitpopup > div .container_content .top_section .sub_text {
    text-align: center;
    margin-top: 10px;
  }
  #exitpopup > div .container_content .input_boxes {
    margin: 20px 0;
    gap: 15px;
  }
  #exitpopup > div .container_content .input_boxes input {
    width: 100%;
  }
  #exitpopup > div .container_content .shortDesc > div {
    justify-content: start;
  }
  #exitpopup > div .thanks_container > a {
    text-align: center;
  }
  #exitpopup > div .thanks_container .follow_div {
    gap: 20px;
    justify-content: center;
  }
  #exitpopup > div .thanks_container .follow_div > div {
    gap: 10px;
  }
  #exitpopup > div .thanks_container .p1 {
    margin-bottom: 10px;
  }
}
.mainGroup {
  padding: 5% 10%;
}
.mainGroup .cta.big {
  margin: 3% auto 5%;
  width: -moz-fit-content;
  width: fit-content;
}
.mainGroup .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
.mainGroup .section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
.mainGroup #home_Insights .homenewsSwiper .swiper-wrapper {
  max-width: 500px;
}
.mainGroup #home_Insights .blog {
  display: flex;
  flex-direction: column;
  min-height: 500px;
}
.mainGroup #home_Insights .blog > div {
  height: 100%;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.mainGroup #home_Insights .blog > div img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  left: 0;
  top: 0;
}
.mainGroup #home_Insights .blog > div img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, black, transparent);
}
.mainGroup #home_Insights .content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.mainGroup #home_Insights .content-item {
  /* background-color: #ddd; */
  /* padding: 20px; */
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.mainGroup #home_Insights .content-item > div {
  position: relative;
  width: 100%;
  height: 100%;
}
.mainGroup #home_Insights .content-item > div img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainGroup #home_Insights .homenewsSwiper div::after {
  content: "";
  position: absolute;
  height: 140%;
  width: 100%;
  inset: 0;
  z-index: -1;
  background: transparent linear-gradient(0deg, rgba(6, 6, 6, 0.8), transparent);
}
.mainGroup #home_Insights .content-item > div::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: transparent linear-gradient(0deg, rgba(6, 6, 6, 0.8), transparent);
}
.mainGroup #home_Insights .homenewsSwiper .layerdesc {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  padding: 20px;
  padding-bottom: 30px;
  color: white;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
  justify-content: flex-end;
}
.mainGroup #home_Insights .content-item > .layerdesc {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  padding: 20px;
  color: white;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
  justify-content: flex-end;
}
.mainGroup #home_Insights .media-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mainGroup #home_Insights .media-item {
  display: flex;
  align-items: center;
  /* background-color: #ddd; */
  padding: 0px;
  /* border-radius: 30px; */
}
.mainGroup #home_Insights .media-item > .media-item-img {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  background-color: #bbb;
  margin-right: 20px;
  border-radius: 20px;
  overflow: hidden;
}
.mainGroup #home_Insights .media-item > .media-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainGroup #home_Insights .media-item .headTitle {
  font-weight: 600;
}
.mainGroup #home_Insights .blogContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mainGroup #home_Insights .videos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.mainGroup #home_Insights .video {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.mainGroup #home_Insights .video > div {
  border-radius: 30px;
  width: 100%;
  height: 260px;
  background-color: #bbb;
  overflow: hidden;
}
.mainGroup #home_Insights .video > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainGroup #home_Insights .video > div iframe {
  width: 100%;
  height: 100%;
}
.mainGroup #home_Insights .swiper-pagination-bullet {
  height: 3px;
  width: 20px;
  border-radius: 0;
  background-color: var(--colored-text);
}

@media screen and (max-width: 1600px) {
  .mainGroup {
    padding: 5%;
  }
}
@media screen and (max-width: 1366px) {
  .mainGroup #home_Insights .blogContainer {
    grid-template-columns: repeat(2, 1fr);
  }
  .mainGroup #home_Insights .media-list {
    grid-column: 1/-1;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .mainGroup #home_Insights .blogContainer {
    grid-template-columns: 1fr;
  }
  .mainGroup #home_Insights .content-grid .content-item {
    min-height: 400px !important;
  }
  .mainGroup #home_Insights .media-list {
    gap: 20px;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .mainGroup {
    padding: 40px 5%;
  }
  .mainGroup .container {
    padding: 0;
  }
  .mainGroup #home_Insights .homenewsSwiper .swiper-wrapper {
    aspect-ratio: 4/5;
    max-width: 280px !important;
  }
}
#home_insights_slider #insights_slider {
  position: fixed;
  width: 300px;
  right: 40px;
  bottom: 40px;
  height: 220px;
  background-color: white;
  z-index: 999;
  border-radius: 20px;
  box-shadow: 0 0 3px gainsboro;
}

#home_insights_slider .close_insights_slider {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  padding: 4px;
  display: grid;
  place-items: center;
}
#home_insights_slider .close_insights_slider img {
  width: 100%;
}

#home_insights_slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

#home_insights_slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.2); /* Default scale */
  transition: transform 3s ease; /* Smooth scale transition */
}

#home_insights_slider .swiper-slide-active img {
  transform: scale(1); /* Scale down to 1 for the active slide */
}

#home_insights_slider .insights_title {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  padding: 20px;
  padding-bottom: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}

#home_insights_slider .insights_title p {
  font-weight: 600;
  color: white;
  font-size: 14px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#home_insights_slider .swiper-pagination {
  position: relative;
  bottom: 0 !important;
  display: flex;
  padding: 10px 0px;
}

/* Swiper Pagination Bullet */
#home_insights_slider .swiper-pagination-bullet {
  height: 2px;
  width: 15px;
  border-radius: 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  flex: 1;
  margin: 0 2px;
}

/* Progress Effect: Fills bullet */
#home_insights_slider .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #fff;
  animation: none;
}

#home_insights_slider .swiper-pagination-bullet-active {
  background-color: rgba(163, 198, 23, 0.2274509804);
  transition: background-color 3s ease;
}

#home_insights_slider .swiper-pagination-bullet-active::after {
  animation: progress-fill 3s linear forwards; /* Adjust duration to match autoplay delay */
}

/* Keyframe for progress animation */
@keyframes progress-fill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
#home_insights_slider .arisehead_insights {
  display: flex;
  gap: 10px;
  color: white;
  align-items: center;
  /* justify-content: center; */
}
#home_insights_slider .arisehead_insights p {
  font-size: 14px;
}

#home_insights_slider .insights_slider_header {
  padding: 10px;
  padding-top: 0;
  display: flex;
  position: absolute;
  flex-direction: column;
  top: 0;
  z-index: 9999;
  width: 100%;
  left: 0;
}

#home_insights_slider .ariseLogoCon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  background-color: #fff;
  place-items: center;
  border: 1px solid darkseagreen;
  padding: 2px;
}
#home_insights_slider .ariseLogoCon img {
  width: 100%;
}

.iti-mobile .iti--container {
  z-index: 100000000000000000 !important;
}

#news_media .inHomeSocial {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .letter_detail {
    padding: 120px 0px 40px;
  }
  #home_insights_slider #insights_slider {
    bottom: 100px !important;
    right: 30px !important;
    width: 180px !important;
    height: 135px !important;
    transform: scale(0);
    transition: transform 0.3s;
  }
  #home_insights_slider #insights_slider .arisehead_insights a {
    display: none;
  }
  #home_insights_slider #insights_slider .arisehead_insights .ariseLogoCon {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */