@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face {
    font-family: 'LaFabrique';
    src: url('../fonts/la_fabrique_de_chocolats.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
:root {
  --color-black: #000;
  --color-offblack: #2b2b2b;
  --secondary-color: #E90051;
  --color-white: #fff;
  --bg-color: #FFF3EB;
  --font-family: "Poppins", sans-serif;
}
body {
  padding: 0;
  margin: 0;
  font-family: var(--font-family);
  color: var(--color-offblack);
  background-color: var(--bg-color);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: #f5f5f5;
  border-radius: 50%;
}
::-webkit-scrollbar-thumb {
  border-radius: 4px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}
::-webkit-scrollbar-track {
  background-color: #ddd;
  border-radius: 4px;
}

ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

a,
img {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

select,
p,
h1,
h2,
h3,
h4,
h5,
h6,
div {
  font-family: var(--font-family);
}
.every_plate_text{
  font-family: 'LaFabrique';
}

body.loading{
  overflow: hidden;
}
body {
    overflow-x: hidden;
}
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Only count */
#loader .count {
  color: var(--color-offblack);
  font-size: 60px;
  font-weight: bold;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}
/* ======================== Header =========================== */
.header{
    /* padding-top: clamp(20px, 1.67vw, 32px); */
    padding-top: 0.89vw;
    padding-left: 1.77vw;
    padding-right: 1.77vw;
}
.logo {
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.logo a{
    width: clamp(180px, 12.66vw, 243px);
    display: block;
}
.loaded .logo{
  opacity: 1;
  transition-delay: 0.2s;
  padding-top: 15px;
}
.navigation ul {
    gap: clamp(10px, 0.83vw, 16px);
    overflow: hidden;
    padding: 15px;
}
.navigation ul li{
  position: relative;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translate(0px, 150%);
}
.navigation ul li a {
    width: clamp(40px, 3.13vw, 60px);
    display: flex;
    height: clamp(40px, 3.13vw, 60px);
    border-radius: 100%;
    background: var(--color-white);
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 4px 0 #E8E5E3;
}
.navigation ul li a img {
    width: 60%;
    filter: brightness(0) saturate(100%) invert(11%) sepia(64%) saturate(6541%) hue-rotate(331deg) brightness(109%) contrast(107%);
}
.navigation ul li.active a, .navigation ul li:hover a{
    box-shadow: 0 0 18px 0 #FF3636;
}
.active_svg{
    position: absolute;
    top: -1px;
    right: -1px;
    width: clamp(41.5px, 3.28vw, 63px);
    height: clamp(41px, 3.23vw, 62px);
}

.every_plate {
    /* text-align: center;
    position: fixed;
    left: 0;
    right: 0;
    top: calc(-75vh + clamp(20px, 2.6vw, 50px));
    height: 135vh;
    z-index: -1;
    top: calc(-40vw + clamp(20px, 2.6vw, 50px));
    height: auto; */
    width: 100%;
    display: flex;
   
}
.every_plate .ep_svg{
  width: 69.1vw;
  margin: 0 auto;
  z-index: -1;
  margin-top: calc(-44.7vw + clamp(20px, 2.6vw, 50px));
  position: absolute;
  left: 0;
  right: 0;
  transition: all 0.5s ease-in-out;
}
.every_plate svg{
  width: 100%;
  height: 100%;
}
.scroll {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    transform-origin: center center;
    transform-box: fill-box;
}
.scroll.active{
  opacity: 1;
  animation: spin 1.5s linear forwards;
}
.scroll.fade-out {
    opacity: 0;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(20deg);
    }
}
.ctSectionBox {
    padding-top: 25.2%;
    width: 100%;
    height: calc(100vh - clamp(86px, 5.83vw, 112px));
}
.ctSection {
    /* margin-top: clamp(-50px, -2.6vw, -30px); */
    text-align: center;
    width: 100%;
    align-self: flex-end;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.ct_content{
  margin-bottom: clamp(20px, 1.51vw, 29px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 0.94vw, 18px);
  transition: all 0.5s ease-in-out;
}
.ct_content h1{
  font-size: clamp(24px, 1.88vw, 36px);
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  color: var(--color-offblack);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  position: relative;
  text-align: left;
}
#typingText {
  position: relative;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.ct_content #typingText::after {
  content: "|";
  animation: blink 0.7s infinite;
  font-size: clamp(24px, 1.88vw, 36px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-offblack);
}
.ct_content #typingText.no-cursor::after {
  opacity: 0;
  transition: opacity 0.5s ease;
}
@keyframes blink {
  50% { opacity: 0; }
}
.ct_content h1 span{
  color: var(--secondary-color);
}
.arrow_btn {
  margin-top: -1.82vw;
  cursor: pointer;
  width: clamp(180px, 11.2vw, 215px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.arrow_btn svg{
  width: 100%;
  transform: rotate(5deg);
}
.arrow_btn svg path {
  transform: scale(0);
  transform-origin: left;  
  /* opacity: 0; */
}
.people{
  width: 100%;
  position: relative;
  bottom: -1px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  margin-top: auto;
}
/* ========================= Home Page Animation ===================== */
.ani_opacity, .ani_text{
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.loaded g.ani_opacity, .loaded .ani_text {
    opacity: 1;
}
.loaded g.ani_opacity {
    transition-delay: 0.5s;
}
.loaded .ani_text {
    transition-delay: 1s;
}
.loaded .navigation ul li{
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 1.3s;
}
.loaded .navigation ul li+li{
  transition-delay: 1.4s;
}
.loaded .navigation ul li+li+li{
  transition-delay: 1.6s;
}
.loaded .ct_content h1, .loaded #typingText{
  opacity: 1;
  transition-delay: 2s;
}
.arrowAni .arrow_btn{
  opacity: 1;
  /* transition-delay: 0.3s; */
}
.arrowAni .arrow_btn svg path{
  animation: zoomInLTR 0.3s ease forwards;
  transition-delay: 0.3s;
}
@keyframes zoomInLTR {
  to {
    transform: scale(1);
  }
}
.peopleShow{
  opacity: 1;
  transition-delay: 0.6s;
}
.hand {
  position: fixed;
  bottom: 0;
  width: clamp(80px, 6.46vw, 124px);
  height: clamp(80px, 6.46vw, 124px);
  display: flex;
  align-items: flex-start;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translate(0, 50%);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.hand.handModal{
  position: absolute;
  bottom: 0px;
}

.hand a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 55%;
  transform: translate(0, 100%);
  box-shadow: 0 -3px 12px rgb(233 84 110 / 40%);
}
.hand a img {
  height: clamp(30px, 2.19vw, 42px);
  filter: brightness(0) saturate(100%) invert(19%) sepia(97%) saturate(5359%) hue-rotate(335deg) brightness(105%) contrast(117%);
  animation: handShake 1.5s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes handShake {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(15deg);
    }
    20% {
        transform: rotate(-15deg);
    }
    30% {
        transform: rotate(12deg);
    }
    40% {
        transform: rotate(-12deg);
    }
    50% {
        transform: rotate(8deg);
    }
    60% {
        transform: rotate(-8deg);
    }
    70%,
    100% {
        transform: rotate(0deg);
    }
}
.handShow{
  transition-delay: 1s;
  box-shadow: rgb(255 158 189) 0px 2px 4px 0px, rgb(255 194 214) 0px 2px 16px 0px;
}
.hand.handShow a {
    transform: translate(0, 0);
    transition-delay: 0.3s;
}
/* ========================= Home Page Animation ===================== */
.header {
  display: flex;
  align-items: center;
   padding-top: clamp(20px, 1.67vw, 32px);
   padding-left: 1.77vw;
   padding-right: 1.77vw;
}

/* Logo */
.mapHeader .logo-wrap {
  display: flex;
  flex-direction: column;
  width: 220px;
  flex-shrink: 0;
}

.every_plate.detailsSlide .ep_svg {
    width: 55%;
    left: 50%;
}
.every_plate.detailsSlide .ep_svg .ani_text {
    opacity: 0;
    transition-delay: unset;
}
.every_plate.detailsSlide .ct_content {
    transform: translate(-100%, 0%);
    transition-delay: 0.3s;
}

.every_plate.detailsSlide .ctSectionBox{
  padding-top: clamp(100px, 8.49vw, 163px);
  transition: all 0.3s ease-in-out;
  transition-delay: 0.5s;
}
.barriersBox {
    padding-left: clamp(12px, 8.8vw, 169px);
    padding-right: clamp(12px, 6.41vw, 123px);
    transform: translate(110%, 0);
    transition: all 0.5s ease-in-out;
}
.every_plate.detailsSlide .barriersBox{
  transform: translate(0, 0);
  transition-delay: 0.6s;
}
.detailsSection{
  padding-bottom: clamp(20px, 1.82vw, 35px);
  display: none;
}
.detailsSection p {
    font-size: clamp(14px, 1.25vw, 24px);
    line-height: 1.584;
    margin-bottom: clamp(12px, 0.83vw, 16px);
    text-align: left;
    color: var(--color-offblack);
    transition: all 0.3s ease-in-out;
    transform: translate(130%, 0);
}
.detailsSection p span{
  color: var(--secondary-color);
}
.detailsSection .col-md-7 {
    padding-right: clamp(12px, 4.11vw, 79px);
    overflow: hidden;
}
.detailsSection .col-md-5{
  position: relative;
  padding-left: clamp(15px, 4.53vw, 87px);
  overflow: hidden;
}
.detailsSection .col-md-5:after{
  position: absolute;
  width: clamp(5px, 0.31vw, 6px);
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url('../images/line.svg') 0 0 no-repeat;
  background-size: 100%;
}

.detailsSection h2 {
    font-weight: 300;
    text-align: left;
    font-size: clamp(24px, 2.5vw, 48px);
    margin-bottom: clamp(20px, 2.45vw, 47px);
    line-height: 1.5;
    color: var(--color-offblack);
    position: relative;
}
.detailsSection #typingText2::after {
  content: "|";
  animation: blink 0.7s infinite;
  font-size: clamp(24px, 1.88vw, 36px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-offblack);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.detailsSection.dsAni #typingText2::after{
  opacity: 1;
  transition-delay: 0.2s;
}
.detailsSection #typingText2.no-cursor::after {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.detailsSection .exploreBtn a {
    font-size: clamp(14px, 1.25vw, 24px);
    font-weight: 500;
    display: inline-block;
    color: var(--secondary-color);
    text-align: left;
    position: relative;
    padding-right: clamp(30px, 2.45vw, 47px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.detailsSection .exploreBtn a svg {
    width: clamp(180px, 10.94vw, 210px);
    position: absolute;
    right: 0;
    transform: rotate(-1deg);
}
.exploreBtn {
    display: flex;
    width: 100%;
    justify-content: end;
    padding-right: 3.13vw;
}
.every_plate.detailsSlide .detailsSection {
    display: block;
}
.every_plate.detailsSlide .people{
  position: absolute;
}
.every_plate.detailsSlide .people.peopleDetails{
  position: relative;
}
.detailsSection.dsAni p{
  transform: translate(0, 0);
  transition-delay: 0.2s;
}
.detailsSection.dsAni p+p{
  transition-delay: 0.25s;
}
.detailsSection.dsAni p+p+p{
  transition-delay: 0.3s;
}
.detailsSection.dsAni p+p+p+p{
  transition-delay: 0.35s;
}
.detailsSection .exploreBtn.exploreAni a{
  opacity: 1;
}
.exploreBtn svg path {
    transform: scale(0);
    transform-origin: left center;
}
.exploreBtn.exploreAni svg path{
  animation: zoomInLTR 0.3s ease forwards;
  transition-delay:1s;
}

.overlay{
    position: fixed;
    inset: 0;
    background: rgba(57, 56, 55, 0.9);
    z-index: 1050;
}

.bcm-modal .modal-dialog{
    position: relative;
    z-index: 1055;
}

.bcm-modal .modal-content{
    position: relative;
    z-index: 1056;
    overflow: visible;
}

/* ========================= Home Page Animation ===================== */
/* Vertical divider */
.mapHeader .vdivider {
  width: 1px;
  height: clamp(80px, 6.2vh, 119px);
  background: #FFFFFF;
  margin: 0 22px;
  flex-shrink: 0;
}

.mapHeader .title-block {
  flex-shrink: 0;
}
.mapHeader .title-block .most, .mapHeader .title-block .globally {
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: .25px;
}
.mapHeader .title-block .barriers {
   font-size: clamp(26px, 1.88vw, 36px);
   font-weight: 500;
   color: #E90051;
   line-height: 1.05;
   margin: 3px 0;
}

/* Filters */
.mapHeader .filters-wrap {
  display: flex;
  gap: 20px;
  margin-left: auto;
}
.mapHeader .filter-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mapHeader .filter-col label {
  font-size: clamp(10px, 0.83vw, 16px);
  color: #fff;
  letter-spacing: 0.3px;
  margin-left: clamp(20px, 1.56vw, 30px);
}
.mapHeader .filter-col select {
  width: clamp(220px, 14.38vw, 276px);
  outline: none;
}
.filters-wrap .barrierCol .select2-container { 
    width: clamp(400px, 29.22vw, 561px) !important; 
}

.filters-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
  background-color: #fff;
  font-size: clamp(10px, 0.83vw, 16px);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  border-radius: 25px;
}

.filters-wrap .select2-container--default .select2-results__option--selected, .select2-results__option--selectable {
  color: #000;
  font-size: clamp(10px, 0.83vw, 16px);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
 outline: none;
}

.select2-container--default .select2-selection--single {
    border-radius: 25px !important;
}

.body-wrap {
  display: flex;
  height: calc(100vh - 98px);
  overflow: auto;
}

/* ===== LEFT SIDEBAR ===== */
.body-wrap .sidebar {
  width: clamp(330px, 20.05vw, 385px);
  height: clamp(580px, 32.81vw, 630px);
  flex-shrink: 0;
  padding: 18px 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* background: #2c3340; */
  margin-top: clamp(30px, 2.34vw, 45px);
}

.body-wrap .sidebar .visitors-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: clamp(30px, 2.34vw, 45px);
  margin-bottom: clamp(10px, 1.04vw, 20px);
}
.body-wrap .sidebar .visitors-lbl {
  position: relative;
  padding-left: 18px;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.body-wrap .sidebar .visitors-lbl::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: clamp(55px, 3.8vw, 73px);
  background: #D9D9D9;
}
.body-wrap .sidebar .visitors-num {
  font-size: clamp(50px, 3.39vw, 65px);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
}


.body-wrap .barriers-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px 14px;
  flex: 1;
}
.body-wrap .barriers-card .card-title {
  font-size: clamp(17px, 1.2vw, 23px);
  font-weight: 600;
  font-style: italic;
  color: #E90051;
  margin-bottom: 16px;
}
.sidebar{
  display:none;
}

.body-wrap .barriers-card .b-item {
  margin-bottom: clamp(20px, 1.56vw, 30px);
}
.body-wrap .barriers-card .b-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 5px;
}
.body-wrap .barriers-card .b-name {
  font-size: clamp(13px, 0.83vw, 16px);
  color: #000;
  font-weight: 400;
  line-height: 1.35;
  flex: 1;
}
.body-wrap .barriers-card .b-pct {
  font-size: clamp(35px, 2.34vw, 45px);
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.body-wrap .barriers-card .b-pct sup { font-size: 12px; font-weight: 600; }
.body-wrap .barriers-card .b-line {
  height: 2px;
  border-radius: 2px;
  margin-top: 2px;
}

.body-wrap .barriers-card .genderNum {
  color: #E90051;
}

.body-wrap .barriers-card .socialNumber {
  color: #189CAC;
}

.body-wrap .barriers-card .knowledgeNum {
  color: #FFBD00;
}

.body-wrap .barriers-card .economicNumber {
  color: #7646AD;
}

.body-wrap .barriers-card .behavioralNumber {
  color: #10B864;
}

.body-wrap .barriers-card .serviceNumber {
  color: #F26E21;
}

.body-wrap .barriers-card .progress {
  height: 3px;
  background: #E8E5E3;
}

.body-wrap .barriers-card .progress-bar.gender-bar {
  background: #E90051; 
  width: 84%;
}

.body-wrap .barriers-card .progress-bar.social-bar {
  background: #189CAC; 
  width: 70%;
}

.body-wrap .barriers-card .progress-bar.knowledge-bar {
  background: #FFBD00; 
  width: 72%;
}

.body-wrap .barriers-card .progress-bar.economic-bar {
  background: #7646AD; 
  width: 54%;
}

.body-wrap .barriers-card .progress-bar.service-bar {
  background: #F26E21; 
  width: 23%;
}

.body-wrap .barriers-card .progress-bar.behavioral-bar {
  background: #10B864; 
  width: 68%;
}

/* ===== MAP AREA ===== */
.map-area {
  flex: 1;
  position: relative;
  /* background: #2c3340; */
  overflow: hidden;
  min-width: 0;
}

#chart {
  width: 100%;
  height: 100%;
}

/* Map right controls */
.body-wrap .map-tools {
  position: absolute;
  right: 16px;
  top: 31%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #F0F0F0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 25px;
  padding: 6px 5px;
  z-index: 9999;
}
.body-wrap .mtool {
  width: clamp(30px, 2.08vw, 40px);
  height: clamp(30px, 2.08vw, 40px);
  background: transparent;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex; 
  align-items: center; 
  justify-content: center;
  transition: all 0.15s;
  font-size: 13px;
}

.body-wrap .mtool svg { 
    width: 20px; 
    height: 20px; 
    stroke: currentColor; 
    fill: none; 
    stroke-width: 2; 
    stroke-linecap: round; 
    stroke-linejoin: round; 
}

.body-wrap .mtool img { 
    width: 16px; 
    height: 16px; 
}

/* Legend */
.map-area .legend {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  padding: 9px 24px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.map-area .leg-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  color: #000;
}
.map-area .leg-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.map-area .leg-item span {
  font-size: clamp(12px, 0.83vw, 16px);
}

/* Compass */
.compass-svg {
  position: absolute;
  bottom: 42px;
  right: 16px;
  width: clamp(50px, 3.28vw, 63px);
  height: clamp(70px, 4.58vw, 88px);
}

/* Disclaimer */
.compass_map .disclaimer_text {
    position: absolute;
    bottom: 0;
    right: 23px;
    font-size: 12px;
    cursor: pointer;
    color: #fff;
}

.compass_map .disclaimer_text .upwardArrow {
    filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(2%) hue-rotate(214deg) brightness(116%) contrast(100%);
    margin-left: 5px;
    cursor: pointer;
}

.disclaimer-tooltip-container {
    font-size: clamp(9px, .63vw, 12px) !important;
    text-align: left;
    background-color: #fff;
    color: #333;
    padding: 10px;
    box-shadow: 1px 1px 20px #c3c3c3;
    bottom: 133%;
    width: 225px;
    z-index: 999;
    word-wrap: break-word;
    transform: translate(-100%, -5px);
    left: 100%;
}
.disclaimer-tooltip-container:after {
    content: "";
    position: absolute;
    bottom: -7px;
    right: 8px;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #fff;
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, .15));
}
.disclaimer-tooltip-container h6 {
    margin: 0 !important;
    font-size: clamp(12px, .78vw, 15px);
    color: #333;
    text-align: left;
}
.disclaimer-tooltip-container hr {
    border-color: #333 !important;
    margin: 10px 0;
}
.compass_map .disclaimer_text:hover .disclaimer-tooltip-container{
    display: block !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  #barrierFilter { min-width: 200px; }
}
@media (max-width: 900px) {
  html, body { overflow: auto; }
  .body-wrap { flex-direction: column; height: auto; overflow: visible; }
  .sidebar { width: 100%; flex-direction: column; }
  .map-area { height: 50vw; min-height: 300px; }
  .filters-wrap { margin-left: 20px; }
}
@media (max-width: 700px) {
  .header { flex-wrap: wrap; height: auto; padding: 10px 14px; gap: 8px; }
  .filters-wrap { flex-direction: column; gap: 8px; margin-left: 0; width: 100%; }
  #barrierFilter, .filter-col select { min-width: 0; width: 100%; }
  .vdivider { display: none; }
  .map-area { height: 280px; }
  .legend { gap: 10px; padding: 8px 14px; font-size: 11px; }
}
/* ================================== Modal ================================== */
.modal-backdrop { opacity: 0 !important; } 
.ccm-modal .modal-dialog.modal-xl {
    max-width: calc(100% - clamp(60px, 4.9vw, 94px));
    height: 100vh;
    margin: 0 auto;
    padding: clamp(20px, 2.08vw, 40px);
}
.ccm-modal .modal-content {
  border: none;
  border-radius: clamp(18px, 1.67vw, 32px);
  overflow: hidden;
  padding: 0;
  background: linear-gradient(72deg, rgba(255, 255, 255, 0.00) 53.41%, rgba(255, 255, 255, 0.30) 99.32%), rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid #ddd;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.50);
  height: 100%;
}

/* Frame */
.ccm-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
}

/* Foreground content */
.ccm-content {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1rem,4vw,2rem) clamp(30px, 8.85vw, 170px);
}

/* Title — left aligned */
.ccm-heading {
  font-size: clamp(30px, 3.13vw, 60px);
  font-weight: 400;
  color: var(--secondary-color);
  /* text-shadow: 0 1px 8px rgba(255, 255, 255, 0.6); */
  width: 100%;
  margin-bottom: 11px;
  line-height: 1.5;
  padding-left: clamp(12px, 5.16vw, 99px);
}

/* Search wrapper */
.ccm-search {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.ccm-search__input {
    width: 100%;
    border-radius: 100px;
    border: none;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 18px rgba(216, 26, 96, 0.10), 0 0 0 1.5px rgba(255, 255, 255, 0.9);
    padding: 0 clamp(120px, 10.42vw, 200px) 0 clamp(50px, 5.21vw, 100px);
    font-size: clamp(16px, 1.88vw, 36px);
    color: #000;
    outline: none;
    font-family: inherit;
    transition: box-shadow 0.2s;
    font-weight: 300;
    height: clamp(80px, 8.07vw, 155px);
}
.ccm-search__input::placeholder { color: #bbb; }
.ccm-search__input:focus {
  box-shadow: 0 2px 24px rgba(216,26,96,0.18), 0 0 0 2px rgba(216,26,96,0.2);
}

.ccm-search__btn {
  position: absolute;
  right: clamp(80px, 6.51vw, 125px);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex; align-items: center; justify-content: center;
  color: #222;
  transition: color 0.15s;
  z-index: 2;
}
.ccm-search__btn:hover { color: #d81a60; }
.ccm-search__btn svg {
  width: clamp(40px, 3.65vw, 70px);
  height: clamp(40px, 3.65vw, 70px);
  stroke: #333;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Dropdown ── */
.ccm-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 5px;
  box-shadow: 0 8px 32px rgba(216,26,96,0.13), 0 2px 8px rgba(0,0,0,0.08);
  border: 1.5px solid rgba(216,26,96,0.10);
  overflow: hidden;
  z-index: 100;
  display: none;
  flex-direction: column;
  max-height: 210px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(216,26,96,0.25) transparent;
}
.ccm-dropdown.open { display: flex; }

/* Webkit scrollbar styling */
.ccm-dropdown::-webkit-scrollbar {
  width: 6px;
}
.ccm-dropdown::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}
.ccm-dropdown::-webkit-scrollbar-thumb {
  background: rgba(216,26,96,0.25);
  border-radius: 999px;
}
.ccm-dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(216,26,96,0.45);
}

.ccm-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-size: clamp(16px, 1.25vw, 24px);
  color: #444;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  font-family: inherit;
}
.ccm-dropdown__item:last-child { border-bottom: none; }
.ccm-dropdown__item:hover,
.ccm-dropdown__item.highlighted {
  background: rgba(216,26,96,0.06);
  color: #d81a60;
}

.ccm-dropdown__flag {
  width: 26px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
}

.ccm-dropdown__empty {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
}

/* bcm section  */

.bcm-modal .modal-dialog.modal-xl {
  max-width: calc(100% - clamp(60px, 4.9vw, 94px));
  height: 100vh;
  margin: 0 auto;
  padding: clamp(20px, 2.08vw, 40px);
}

.bcm-modal .modal-content {
  padding: 0;
  background: #F7EDE6;
  border: 1px solid #ddd;
  height: 100%;
  position: relative;
}

/* .bcm-modal .modal-content .barrier-detail-container{
  display: flex;
  gap: 60px;
} */
.barrier-detail-container{
  background: #F7EDE6;
}
.bcm-modal .modal-content .modal-header{
  border: none;
  padding: 0;
  margin: 0;
}

.bcm-modal .modal-content .modal-body{
  overflow: hidden;
}

.bcm-modal .modal-content .modal-body .barrier-detail{
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  position: relative;
}

.bcm-modal .barrier-detail .bcm-left-wrapper{
  padding: 70px;
}

.bcm-modal .barrier-detail .bcm-left-wrapper .title-wrapper .bcm-title{
  font-size: 20px;
  color: var(--secondary-color);
}

.bcm-modal .barrier-detail .bcm-left-wrapper .title-wrapper .bcm-heading{
  font-size: clamp(20px, 2.91vw, 62px);
  font-weight: 300;
  margin-bottom: 10px;
  color:#333333;
}

.bcm-modal .barrier-detail .bcm-left-wrapper .bcm-content-wrapper .bcm-content{
  position: relative;
  padding-left: 25px;
  padding-right: 19px;
}

.bcm-modal .barrier-detail .bcm-left-wrapper .bcm-content-wrapper .bcm-content::before{
  content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 4px;
}

.bcm-modal .barrier-detail .bcm-left-wrapper .bcm-content-wrapper .bcm-para{
  font-size: clamp(17px, 1.25vw, 24px);
  color:#333333
}

.bcm-modal .barrier-detail .bcm-left-wrapper .bcm-content-wrapper .bcm-para-d{
  font-size: clamp(34px, 2.5vw, 48px);
  font-weight: 300;
}

.bcm-modal .barrier-detail .bcm-left-wrapper .bcm-content-wrapper .bcm-para-d .bcm-span{
  color: var(--secondary-color);
}

.close-circle{
  position: absolute;
  top: -20px;
  right: -16px;
  width: 38px;
  height: 38px;
  background: #e8e4df;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1060;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: all .3s ease;
}

.close-circle:hover{
    transform: scale(1.05);
}

.close-circle img{
    width: 12px;
    height: 12px;
    object-fit: contain;
}

.barrier-detail .exploreBtn a {
    font-size: clamp(14px, 1.25vw, 24px);
    font-weight: 500;
    display: inline-block;
    color: var(--secondary-color);
    text-align: left;
    position: relative;
    padding-right: clamp(30px, 2.45vw, 47px);
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.barrier-detail .exploreBtn a svg {
    width: clamp(180px, 10.94vw, 210px);
    position: absolute;
    right: 20px;
    top: 50px;
    transform: rotate(-1deg);
}

.barrier-detail .exploreBtn {
    display: flex;
    width: 100%;
    justify-content: start;
    padding-right: 3.13vw;
}

/* kcm section */
.kcm-modal .modal-dialog.modal-xl {
  max-width: calc(100% - clamp(60px, 4.9vw, 94px));
  height: 100vh;
  margin: 0 auto;
  padding: clamp(20px, 2.08vw, 40px);
}

.kcm-modal .modal-content {
  border: none;
  /* border-radius: clamp(18px, 1.67vw, 32px); */
  overflow: auto;
  padding: 0;
  background: #F7EDE6;
  border: 1px solid #ddd;
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.50); */
  height: 100%;
}

.kcm-frame {
  position: relative;
  width: 100%;
  /* height: calc(100% - 60px);
  overflow: auto; */
  display: flex;
  flex-direction: column;
  padding-top: 0.89vw;
  padding-right: 0.68vw;
  padding-left: clamp(15px, 3.23vw, 62px);
  /* padding-bottom: clamp(15px, 1.15vw, 22px); */
}
.barrier-challenge .kcm-frame .kcm-left .kcm-heading{
  font-size: 12px;
  margin-bottom: 0;
}

.barrier-challenge .kcm-frame .kcm-left .kcm-title{
  font-size:clamp(20px, 1.46vw, 28px);
  font-weight: 500;
  margin-bottom: 6px;
  color:#E90051;
}

.barrier-challenge .kcm-frame .kcm-content{
    position: relative;
    padding-left: 30px; /* space for line */
}

.barrier-challenge .kcm-frame .kcm-content::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #e91e63; /* pink color */
    border-radius: 4px;
}
.barrier-challenge .kcm-frame .kcm-content .kcm-content-span{
  color:#E90051;
}

.kcm-frame .bcm-right{
  width:100%;
  height:100%;
}

.kcm-frame .bcm-right svg{
  width:clamp(1130px,85.21vw ,1636px );
  height:100%;
}

.barrier-challenge .modalwizardFooter{
  height: 50px;
  width: 100%;
  padding: 0 40px;
  position:absolute;
  bottom:0;
  align-items: center;
  background: #f7ede6;
}

.barrier-challenge .modalwizardFooter .modalwizardFooter-wrapper{
  position: relative;
  display: flex;
  justify-content: space-between;
}

.barrier-challenge .kcmExploreBtn  {
    display: flex;
    /* width: auto; */
    /* justify-content: start;
    padding-right: 3.13vw; */
}

.barrier-challenge .kcmExploreBtn  a {
    font-size: clamp(14px, 1.25vw, 24px);
    font-weight: 500;
    display: inline-block;
    color: var(--secondary-color);
    text-align: left;
    position: relative;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.barrier-challenge .kcmExploreBtn a svg {
    width: clamp(180px, 10.94vw, 210px);
    position: absolute;
    right: -30px;
    top: 16px;
    transform: rotate(-1deg);
}

.barrier-challenge .kcmExploreBtn a img {
  width: clamp(130px, 8.64vw, 210px);
  position: absolute;
  left: -20px;
  top: 30px;
  transform: rotate(0deg);
}

.bcm-modal .modal-content .touchpoint-detail, .bcm-modal .modal-content .perception-detail{
  background: #FFF9F6;
  overflow: auto;
  height: 100%;
}
.bcm-modal .modal-content .perception-detail .perception-wrapper{
  padding-top: 0.89vw;
  padding-right: 0.68vw;
  padding-left: clamp(15px, 3.23vw, 62px);
  padding-bottom: clamp(15px, 1.15vw, 22px);
  height: 100%;
  position: relative;
}
.touchpoint-wrapper {
    padding-top: 0.89vw;
    padding-right: 0.68vw;
    padding-left: clamp(15px, 3.23vw, 62px);
    padding-bottom: clamp(15px, 1.15vw, 22px);
    height: 100%;
}

    /* ── TOP BAR ── */
    .top-bar-wrapper {
      display: flex;
      justify-content: space-between;
      padding: 0px 0px clamp(9px, 0.68vw, 13px);

      /* border-bottom: 1px solid #f0e0e8; */
    }
    .top-bar .barrier-label {
      font-size: clamp(14px, 1.04vw, 20px);
      color: var(--color-black);
      font-weight: 400;
      line-height: 2;
    }
    .top-bar .barrier-title {
      font-size: clamp(16px, 1.15vw, 22px);
      color: var(--secondary-color);
      font-weight: 500;
      line-height: 1.2;
    }
    .top-icons { display: flex; gap: 14px; }
    .top-icons svg { width: 26px; height: 26px; stroke: var(--secondary-color); fill: none; stroke-width: 1.7; }

    /* ── HERO HEADLINE ── */
    .headline {
      padding: 0 0 0 clamp(20px, 1.61vw, 31px);
      font-size: clamp(18px, 1.56vw, 30px);
      font-weight: 400;
      color: var(--color-black);
      line-height: 1.5;
      position: relative;
      max-width: 65%;
    }

    .headline span { color: var(--secondary-color); font-weight: 400; }

    /* ── MAIN LAYOUT ── */
    .main-layout {
      display: flex;
      /* gap: 20px; */
      padding: 0;
      /* min-height: calc(100vh - 160px); */
    }

    /* ── LEFT: CHANNELS GRID ── */
    .channels-area {
      padding-left: 1.35vw;
      width: 70%;
      padding-top: clamp(30px, 2.97vw, 57px);
    }

    .channels-grid {
      display: flex;
      gap: 0;
    }

    .channel-col {
      display: flex;
      flex-direction: column;
      position: relative;
      padding: 0 clamp(10px, 0.78vw, 15px);
      gap: clamp(16px, 1.56vw, 30px);
      flex: 1;
    }


    .channel-col::after {
      content: '';
      display: block;
      width: 8px;
      height: 100%;
      background: url("../images/touchLine.svg") no-repeat center center;
      background-size: 100%;
      position: absolute;
      right: 0;
      top: 0;
    }

    .channel-col:last-child::after {
      display: none;
    }

    .channel-col:last-child { border-right: none; }

    .channel-illustration {
      display: flex;
      align-items: center;
      /* justify-content: center; */
    }
    .channel-illustration img {
      height: clamp(130px, 7.81vw, 150px);
      max-width: 100%;
      object-fit: contain;
    }

    .channel-illustration.mass-group img{
      height: 120px;
    }
    /* SVG placeholder illustrations */
    .illus-placeholder {
      width: 110px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .channel-title {
      font-size: clamp(14px, 0.94vw, 18px);
      font-weight: 500;
      line-height: 1.4;
      color: var(--secondary-color);
      margin-bottom: clamp(15px, 1.56vw, 30px);
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: clamp(10px, 1.04vw, 20px);
    }
    .info-icon {
      width: 16px; height: 16px;
      border-radius: 50%;
      border: 1.5px solid var(--secondary-color);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: var(--secondary-color);
      flex-shrink: 0;
      cursor: pointer;
    }

    .channel-body ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: clamp(8px ,0.63vw, 12px);
      width: calc(100% - clamp(15px, 1.04vw, 20px));
    }
.ct_img img {
    width: clamp(15px, 1.04vw, 20px);
}
.channel-body ul li {    
    padding-top: clamp(8px, 0.63vw, 12px);
    padding-bottom: clamp(8px, 0.63vw, 12px);
    position: relative;
}
.channel-body ul li p{
  font-size: clamp(12px, 0.83vw, 16px);
  color: var(--color-black);
  line-height: 1.5;
  padding-left: clamp(12px, 0.94vw, 18px);
  position: relative;
  margin: 0;
}
.channel-body ul li p::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    height: 90%;
    width: 1px;
    background: var(--secondary-color);
    bottom:0;
    margin:auto;
}
.channel-body ul li::before {
    content: "";
    width: calc(100% + clamp(15px, 1.04vw, 20px));
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: -1px 0 4px #fa88b07d;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.channel-body ul li.active::before {
  opacity: 1;
}
.channel-body ul li.inactive-item {
  opacity: 0.45;
}

    /* ── VILLAGE FOOTER SCENE ── */
    .village-scene {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 0;
        pointer-events: none;
    }

    .village-scene .village-img {
        width: 100%;
        object-fit: cover;
        display: block;
    }

    .touchpoint-detail .hand.handModal2, .perception-detail .hand.handModal2 {
    position: absolute;
    bottom: 0px;              /* floats above the village scene */
    pointer-events: auto;
}


    /* ── NAVIGATION ── */
    .nav-buttons {
      display: flex;
      align-items: center;
      gap: clamp(12px, 0.83vw, 16px);
      padding: 0 0 clamp(15px, 1.15vw, 22px) clamp(15px, 1.77vw, 34px);
      position: absolute;
      bottom: 0;
      z-index: 1;              /* sits above village scene */
      pointer-events: auto;
      background: #fff9f6;
      padding-right: 20px;
      border-radius: 5px;
    }
    .nav-arrow {
      display: flex;
      align-items: end;
      flex-direction: column;
      gap: 0px;
      font-size: clamp(14px, 1.04vw, 20px);
      font-weight: 400;
      color: var(--secondary-color);
      cursor: pointer;
      text-decoration: none;
    }

    .nav-arrow-next {
      display: flex;
      align-items: start;
      flex-direction: column;
      gap: 0px;
      font-size: clamp(14px, 1.04vw, 20px);
      font-weight: 400;
      color: var(--secondary-color);
      cursor: pointer;
      text-decoration: none;
    }

    .nav-arrow-next .rotate{
      transform: rotate(180deg);
    }
    /* .nav-arrow img { width: 36px; height: 18px; } */

    /* ── RIGHT SIDEBAR ── */
.sidebar {
    width: 30%;
    flex-shrink: 0;
    padding: 0 clamp(12px, 2.86vw, 55px) 0 clamp(12px, 3.23vw, 62px);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    margin-top: -20px;
}

.sidebar-title {
    margin-bottom: 0;
    text-align: center;
    width: 100%;
    font-size: clamp(16px, 1.25vw, 24px);
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.67;
    position: relative;
    padding-bottom: 12px;
}

.sidebar-title::after {
    content: '';
    display: block;
    width: 100%;
    height: clamp(16px, 1.04vw, 20px);
    background: url("../images/bottomLine.svg") no-repeat center center;
    background-size: contain;
    position: absolute;
    bottom: 0;
}

/* ── CHEVRONS ── */
.chevron-up,
.chevron-down {
    text-align: center;
    margin: clamp(10px, 0.73vw, 14px) 0;
    z-index:1;
}
.chevron-up img,
.chevron-down img {
    width: 48px;
    height: 48px;
}

/* ── CARDS WRAPPER ── */
.challenge-cards {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.41vw, 27px);
    width: 100%;
    /* overflow: auto; */
}

/* ── BASE CARD ── */
.challenge-card {
    border-radius: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    position: relative;
    /* overflow: hidden; */
    border-bottom: 4px solid transparent;
    cursor: pointer;
}

/* ── CARD VARIANTS ── */
.challenge-card.pink {
    background: #FFE6EA;
    border-bottom-color: #e0357a;
}

.challenge-card.white-blue {
    background: #DCE9EB;
    border-bottom: 4px solid #189CAC;
}

.challenge-card.yellow {
    background: #FAF3E0;
    border-bottom: 4px solid #FFBD00;
}

.challenge-card.purple {
    background: #ECE7F1;
    border-bottom: 4px solid #7646AD;
}

/* ── CARD INNER LAYOUT ── */
.challenge-card .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(12px, 1.09vw, 21px) 30px;
    height: 100%;
}

.challenge-card .card-text {
    font-size: clamp(12px, 0.83vw, 16px);
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.5;
}

/* ── IMAGE WRAPPER ── */
.challenge-card .card-img-wrap {
    position: relative;
    width: 38%;
    /* height: 100%; */
    max-height: clamp(90px, 5.99vw, 115px);
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #f4f0f8;
    padding: 1px;
}

.challenge-card .card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: none;
    object-position: bottom;
    background: #f4f0f8;
}

/* ── CLOSE X (Pink card only) ── */
.challenge-card .close-x {
    position: absolute;
    top: -60px;
    right: 0px;
    font-size: 10px;
    color: var(--secondary-color);
    font-weight: 900;
    cursor: pointer;
    z-index: 2;
    line-height: 1;
}
/* 
  .perception-detail .headline{
    position: relative;
    padding-left: 30px; 
}*/

.touchpoint-detail .headline::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 90%;
    background: var(--secondary-color);
    margin: auto;
    bottom: 0;
}

.perception-detail .headline::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 90%;
    background: var(--secondary-color);
    margin: auto;
    bottom: 0;
} 

.perception-detail .perception-wrapper .top-bar .headline{
  padding-left: clamp(20px, 1.46vw, 28px);
  font-size: clamp(12px, 0.83vw, 16px);
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.87;
}

.i-img {
  width:100%;
  margin-top: clamp(40px, 4.17vw, 80px);
}

.i-img svg {
    width: 65%;
}
/* Media Queries */
@media (max-width: 480px) {
  .ccm-heading { font-size: 1.05rem; }
  .ccm-search { width: 95%; }
}

/* ========================== Search Result ========================== */
.searchResults {
  margin-top: clamp(-55px, -2.86vw, -30px);
  padding: 0 clamp(12px, 4.48vw, 86px) clamp(60px, 5.21vw, 100px);
  min-height: calc(100vh - clamp(57px, 3.75vw, 72px));
  display: flex;
  flex-direction: column;
}
/* .searchResults .srHeading{
  margin-bottom: clamp(40px, 4.58vw, 88px);
} */
.srHeading h2 {
  text-align: center;
  font-size: clamp(30px, 3.13vw, 60px);
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}
.srHeading #typingHeading::after {
  content: "|";
  animation: blink 0.7s infinite;
  font-size: clamp(30px, 3.13vw, 60px);
  font-weight: 200;
  line-height: 1.3;
  color: var(--color-offblack);
}
.srHeading #typingHeading.no-cursor::after {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.srHeading h2 span{
  color: var(--secondary-color);
}
.srColumn {
    overflow: hidden;
    padding-top: clamp(40px, 4.58vw, 88px);
    height: 100%;
    flex: 1;
    /* display: flex; */
    padding-bottom: clamp(15px, 1.41vw, 27px);
}
.srColumn ul{
  margin: 0 -11px;
  display: flex;
  /* flex-wrap: wrap; */
  /* height: 100%; */
}
.srColumn ul li {
    padding: 0 11px;
    width: calc(100% / 5);
    transition: all 0.3s ease-in-out;
    transform: translate(0, 150%);
}
.srColumn ul li .src_item {
  height: 100%;
  min-height: clamp(453px, 33.18vw, 637px);
  border-radius: clamp(20px, 1.67vw, 32px);
  overflow: hidden;
  position: relative;
  box-shadow: 10px 20px 30px #F2E4DB;
  background: linear-gradient(120deg, rgba(254, 244, 235, 0.00) 36.96%, #FFF 74%);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.srColumn ul li .src_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.srci_text {
    position: absolute;
    bottom: 0;
    z-index: 1;
    font-size: clamp(16px, 1.46vw, 28px);
    line-height: 1.14;
    padding-bottom: clamp(12px, 0.89vw, 17px);
    padding-right: clamp(12px, 1.04vw, 20px);
    padding-top: clamp(20px, 2.34vw, 45px);
    padding-left: clamp(35px, 3.65vw, 70px);
    min-height: clamp(150px, 9.9vw, 190px);
    display: flex;
    align-items: center;
    width: 100%;
}
.shape{
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.srColumn ul li .src_item .srct_content{
  transition: all 0.3s ease-in-out;
}
.srColumn ul li .src_item:hover .srct_content {
    transform: translate(0, -30px);
}
.srColumn ul li .src_item:hover img {
    transform: scale(1.1);
}
.srColumn ul li .src_item:hover svg.shape {
    transform: scale(1.1);
    height: 130%;
}
.srColumn.srcAni ul li{
  transform: translate(0, 0);
  transition-delay: 0.3s;
}
.srColumn.srcAni ul li:nth-child(2){
  transition-delay: 0.5s;
}
.srColumn.srcAni ul li:nth-child(3){
  transition-delay: 0.7s;
}
.srColumn.srcAni ul li:nth-child(4){
  transition-delay: 0.9s;
}
.srColumn.srcAni ul li:nth-child(5){
  transition-delay: 1.1s;
}
.srColumn.srcAni.srcdelay ul li{
  transition-delay: unset !important;
}
.hand.handShow2 a {
  transform: translate(0, 0);
  transition-delay: 1.3s;
  box-shadow: rgb(255 158 189) 0px 2px 4px 0px, rgb(255 194 214) 0px 2px 16px 0px;
}


.contact-form-section {
    background: #f4efed;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.bcm-modal .contact-form-section .bcm-left-wrapper{
  padding: 70px;
}

/* .form-wrapper {
    max-width: 430px;
    width: 100%;
} */

.bcm-left-wrapper h2 {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 400;
    color: #333333;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
}

.bcm-left-wrapper h2 .bcm-span {
    color: var(--secondary-color);
    font-size: 39px;
}

.contact-form{
  position: relative;
}

.form-group {
    margin-bottom: 35px;
}

.form-group input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 8px 5px 10px;
    font-size: 1.1rem;
    color: #222;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.form-group::after{
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: url('../images/cLine.svg') no-repeat center;
    background-size: cover;
    /* position: absolute; */
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}


.form-group input::placeholder {
    color: #333;
    opacity: 1;
}

.submit-btn {
    margin-top: 20px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 12px 29px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    min-width: 160px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 72, 0.25);
}

.mailModal .modal-dialog.modal-md{
  max-width: 600px;
}

.contact-overflow{
    overflow: auto;
    height: 90vh;
}

.newsletter{
    margin:0;
    background:#FEF8F5 !important;
}

.newsletter-box{
    width:100%;
    max-width:380px;
    margin:30px auto;
    text-align:center;
}

/* Icon */
.mail-icon{
width: 92px;
    height: 92px;
    margin:0 auto 20px;
}

.mail-icon img{
    width:100%;
    height:100%;
    display:block;
}

/* Input */
.newsletter-form input{
    width:100%;
    height:46px;
    border:2px solid #E0E0E0;
    border-radius:30px;
    background:#FEF8F5;
    padding:0 28px;
    font-size:13px;
    color:#555;
    outline:none;
    box-sizing:border-box;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.newsletter-form input::placeholder{
    color:#8a8a8a;
}

/* Button */
.newsletter-form button{
    margin-top:24px;
  min-width: 106px;
    height: 37px;
    border:none;
    border-radius:30px;
    background:var(--secondary-color);
    color:#fff;
    font-size:13px;
    font-weight:500;
    cursor:pointer;
    transition:.3s ease;
}

.newsletter-form button:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 16px rgba(255,0,72,.25);
}
/* ========================== Search Result ========================== */
.wrapper_heading {
    padding-top: clamp(13px, 1.46vw, 28px);
}
.modal_footer {
    width: 100%;
    padding-left:5.21vw;
}
.perception-detail .channels-area {
    padding-bottom: 5.21vw;
}
.nav-arrow img, .nav-arrow-next img {
    width: clamp(100px, 7.97vw, 153px);
}
.activeArrow {
    position: absolute;
    /* z-index: -1; */
    height: 100%;
}
.cardBox {
    display: flex;
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    /* align-items: center; */
}
.activeArrow {
    position: absolute;
    height: 100%;
    left: 0;
    transition: all 0.3s ease-in-out;
    width: 0;
    overflow: hidden;
    z-index: 1;
}
.challenge-card.active .activeArrow, .challenge-card.multiClick .activeArrow, .challenge-card:hover .activeArrow {
    width: clamp(57px, 3.49vw, 67px);
    left: clamp(-37px, -1.93vw, -24px);
}
.clicker-img {
    position: absolute;
    z-index: 999;
    top: 0;
    bottom: 0;
    margin: auto;
    left: clamp(3px, 0.31vw, 6px);
    width: clamp(30px, 2.45vw, 47px);
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.challenge-card:hover .activeArrow .clicker-img {
  opacity: 1;
  transition-delay: 0.3s;
}
.channel-body ul li.disabled {
    opacity: 0.4;
    pointer-events: none;
}
body:has(#countryContextModal.show) div#contactUs {
    display: none;
}
.activeArrow svg {
    width: 100%;
    height: 100%;
}
.barrier-challenge {
    height: 100%;
}
.kcm_img {
    width: 86%;
    margin-bottom: clamp(50px, 4.9vw, 94px);
}
.kcm_img svg {
    width: 100%;
    height: 100%;
}
.exploreBtn #gotoIntervention {
    padding-bottom: 30px;
}
.kcm-frame .bcm-right {
    display: flex;
    align-items: center;
    padding-bottom: 0;
}
.kcm-frame .bcm-right .nav-buttons {
    position: relative;
    align-items: center;
    padding-bottom: 0;
    background: none;
}
.kcm-frame .top-bar {
    padding-bottom: clamp(20px, 2.08vw, 40px);
}
.wrapper_heading h3 {
    font-size: clamp(24px, 2.5vw, 48px);
    font-weight: 500;
    line-height: 1.15;
    margin: 0;
    color: var(--color-black);
    margin-bottom: clamp(4px, 0.31vw, 6px);
}
.wrapper_heading h3 span{
  color: var(--secondary-color);
}
.whBox {
    display: flex;
    max-width: 85%;
}
.whBox .whb_left {
    width: 58%;
    padding-right: clamp(20px, 1.82vw, 35px);
}
.whBox .whb_right {
    width: 42%;
    padding-left: clamp(40px, 3.13vw, 60px);
    position: relative;
}
.whBox .whb_right:after{
  position: absolute;
  left: 0;
  width: 6px;
  height: 100%;
  content: "";
  background: url('../images/line3.svg') 0 0 no-repeat;
  top: 0;
  background-size: cover;
}
.whBox .whb_left p {
    margin: 0;
    font-size: clamp(14px, 1.25vw, 24px);
    line-height: 1.67;
    color: var(--color-black);
}
.whBox .whb_right li {
    font-weight: 300;
    font-size: clamp(20px, 1.82vw, 35px);
    line-height: 1.5;
    color: var(--color-offblack);
    margin-bottom: clamp(5px, 0.36vw, 7px);
}
.whBox .whb_right li span {
    font-size: clamp(24px, 2.5vw, 48px);
    font-weight: 500;
    color: var(--secondary-color);
}
.whBox .whb_right li:last-child{
  margin-bottom: 0;
}
#accelerated-detail .main-layout {
    padding: 0 0 clamp(47px, 3.49vw, 67px);
}
.step5_img svg{
  width: 100%;
  height: auto;
}
.cardList{
  display: flex;
  gap: clamp(10px, 0.83vw, 16px);
  width: 100%;
  /* height: 100%; */
  position: relative;
  bottom: 3.65vw;
}
.cardList:after{
  position: absolute;
  left: 0;
  top: 0;
  background: #F7EDE6;
  content: "";
  width: clamp(200px, 14.06vw, 270px);
  height: 100%;
  background: linear-gradient(90deg, rgba(247, 237, 230, 1) 0%, rgba(221, 221, 221, 0) 100%);
}
.cardList::before{
  position: absolute;
  right: 0;
  top: 0;
  background: #F7EDE6;
  content: "";
  width: clamp(200px, 14.06vw, 270px);
  height: 100%;
  z-index: 1;
  background: linear-gradient(-90deg,rgba(247, 237, 230, 1) 0%, rgba(221, 221, 221, 0) 100%);
}
.cardList ul{
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.67vw, 32px);
  width: 100%;
  position: relative;
}
.cardList ul:first-child{
  top: 117px;
}
.cardList ul:nth-child(3){
  top: 117px;
}
.cardList ul:nth-child(5){
  top: 117px;
}
.cardList ul li{
  background-color: #F7E5CF;
  border-radius: 13px;
  min-height: clamp(200px, 13.7vw, 263px);
  width: 100%;
  overflow: hidden;
}
.cardList ul li img{
  object-fit: cover;
}
.cardList ul li+li{
  background: #F5E0DD;
}
.cardList ul li+li+li{
  background: #CADBD9;
}
.cardList ul li+li+li+li{
 background:#E0D2DE
}
.zindex-2{
  z-index: 2;
}
.right-0{
  right: 0;
}
.bcm-left-wrapper.col-md-7{
  width: 54%;
}
.bcm-right-wrapper.col-md-5{
  width: 46%;
  position: relative;
}
.bcm-right-wrapper::before{
  position: absolute;
  right: 0;
  bottom: 0;
  background: #F7EDE6;
  content: "";
  width: 100%;
  height: clamp(200px, 14.06vw, 270px);
  z-index: 1;
  background: linear-gradient(0deg, rgba(247, 237, 230, 1) 0%, rgba(221, 221, 221, 0) 100%);
}
.bcm-right-wrapper::before{
  position: absolute;
  right: 0;
  top: 0;
  background: #F7EDE6;
  content: "";
  width: 100%;
  height: clamp(200px, 14.06vw, 270px);
  z-index: 1;
  background: linear-gradient(180deg,rgba(247, 237, 230, 1) 0%, rgba(221, 221, 221, 0) 100%);
}
#contactUsModal.bcm-modal .modal-dialog.modal-xl {
    max-width: 73%;
    padding-left: 10px;
    padding-right: 10px;
}
#contactUsModal .cardList ul li {
    min-height: clamp(200px, 13.28vw, 255px);
}
