.timeline {
  position: sticky;
  top: 0;
  z-index: 22;
  background-color: #fff;
  box-shadow: 0px 0px 24px 0px #cccccc73;
  padding: 6px;
}
.timeline ul{
  padding-top: 10px;
}
.logoWrap img{
  width: 180px;
}

.wrapper {
	min-height: 100vh;
    overflow-x: hidden;
}

.factsContainer {
    padding: 0em 2em;
    text-align: center;
    line-height: 10vh;
}

.factsContainer h2 {
    font-size: 1.8em;
    transform: scale(0);
    padding: 2em 0em;
    margin-bottom: 15vh;
    color: #F0C368;
}

.factsContainer_sm {
    display: flex;
    width: 125vw;
}

.fact {
    display: flex;
    flex-direction: column;
    height:500px;
    flex: 1;
    justify-content: space-between;
    padding: 1em;
    align-items: center;
    color: #F0C368;
}

.fact img {
    width: 25vw;
    height: 25vh;
    margin: 1em;
}

.socialContainer{
  width: 100vw;
  height: 100vh;
}
.factInner{
  overflow: hidden;
  position: relative;
  width: 100%;
}
.factInner::before{
  width: 100%;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: url(../images/home/line1.jpg) no-repeat;
  background-size: cover;
}
.factInner::after{
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background: url(../images/home/line1.jpg) no-repeat;
  background-size: cover;
}
.factImg{
  height: 500px;
  overflow: hidden;
}
.factImg a{
  display: block;
  height: 100%;
}
.factImg a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.factTitle{
  position: absolute;
  padding: 0px 30px;
  background-color: #BE822B;
  bottom: 12px;
  left: -30px;
  width: 90%;
  transform: skew(45deg);
  text-align: left;
  padding-left: 70px;
  z-index: 1;
}
.factTitle a{
  display: flex;
  color: #fff;
  font-size: 20px;
  transform: skew(-45deg);
  line-height: 65px;
}
.arrowIcon {
  position: absolute;
  right: 0;
  bottom: 15px;
  background-color: #F0C368;
  width: 200px;
  text-align: right;
  padding-right: 30px;
}
.arrowIcon a {
  display: block;
    line-height: 50px;
}
.arrowIcon a img{
  width: auto;
  height: auto;
}

/*--footer start--*/
.footerWrap{
  padding: 50px 0 5px;
  background-color: #BE822B;
}
.addressWrap{
  display: flex;
}
.addressWrap .addIcon{
  width: 50px;
}
.addText{
  width: calc(100% - 50px);
  padding-left:10px;
}
.foterWidget ul li{
  margin-bottom: 15px;
}
.foterWidget ul li a{
  display: flex;
  line-height: normal;
  align-items: center;
}
.foterWidget ul li a .slIcon{
  width: 40px;
}
.foterWidget ul li a .slTxt{
  width: calc(100% - 40px);
  padding-left: 10px;
}
.copyrightWrap{
  background-color: #F0C368;
  margin-top: 20px;
  padding: 10px 0;
}
/*--footer end--*/

.affordableWrap{
  padding: 30px 30px 0px 50px;
  margin-top: 30px;
}


/*--animation start--*/

@media (prefers-reduced-motion) {
  [data-animation] {
    animation: none;
  }
}
.animation-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 420px) {
  .animation-group {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, auto);
  }
}
.animation-group [data-animation] {
  background: #1e1c1e;
  box-shadow: inset 2px 2px 2px #232323;
  border-radius: 14px;
  padding: 20px 30px;
  max-width: 100%;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  opacity: 0;
}
.animation-group [data-animation].animate {
  opacity: 1;
}
.animation-group [data-animation] .icon {
  font-size: 5em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  transition: transform 0.3s ease;
}
.animation-group [data-animation]:hover {
  background: radial-gradient(circle at 50% 45%, rgba(189, 50, 255, 0.2) 0%, #232323 60%);
  box-shadow: 0 4px 25px rgba(189, 50, 255, 0.25), inset 2px 2px 2px #393939;
}
.animation-group [data-animation]:hover .icon {
  transform: scale(1.1);
}
.animation-group [data-animation]:nth-child(1) {
  animation-delay: 100ms;
}
.animation-group [data-animation]:nth-child(2) {
  animation-delay: 500ms;
}
.animation-group [data-animation]:nth-child(3) {
  animation-delay: 900ms;
}
.animation-group [data-animation]:nth-child(4) {
  animation-delay: 1300ms;
}

/* Animations */
.animatable {
  
  /* initially hide animatable objects */
  visibility: hidden;
  
  /* initially pause animatable objects their animations */
  -webkit-animation-play-state: paused;   
  -moz-animation-play-state: paused;     
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;   
  animation-play-state: paused; 
}

/* show objects being animated */
.animated {
  visibility: visible;
  
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;

  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -ms-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

/* CSS Animations (extracted from http://glifo.uiparade.com/) */
@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
	}	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}



@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-o-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	60% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
	}
	60% {
		-webkit-transform: translateX(20px);
	}

	80% {
		-webkit-transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateX(-2000px);
	}

	60% {
		-moz-transform: translateX(20px);
	}

	80% {
		-moz-transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-o-transform: translateX(-2000px);
	}

	60% {
		opacity: 1;
		-o-transform: translateX(20px);
	}

	80% {
		-o-transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes bounceInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px);
	}

	60% {
		transform: translateX(20px);
	}

	80% {
		transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-webkit-keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
	}

	60% {
		-webkit-transform: translateX(-20px);
	}

	80% {
		-webkit-transform: translateX(5px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes bounceInRight {
	0% {
		opacity: 0;
		-moz-transform: translateX(2000px);
	}

	60% {
		-moz-transform: translateX(-20px);
	}

	80% {
		-moz-transform: translateX(5px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes bounceInRight {
	0% {
		opacity: 0;
		-o-transform: translateX(2000px);
	}

	60% {
		-o-transform: translateX(-20px);
	}

	80% {
		-o-transform: translateX(5px);
	}

	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes bounceInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px);
	}

	60% {
		transform: translateX(-20px);
	}

	80% {
		transform: translateX(5px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
	}	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
	}
	50% {
		-webkit-transform: scale(1.05);
	}

	70% {
		-webkit-transform: scale(.9);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
	}
}

@-moz-keyframes bounceIn {
	0% {
		opacity: 0;
		-moz-transform: scale(.3);
	}

	50% {
		-moz-transform: scale(1.05);
	}

	70% {
		-moz-transform: scale(.9);
	}

	100% {
		opacity: 1;
		-moz-transform: scale(1);
	}
}

@-o-keyframes bounceIn {
	0% {
		opacity: 0;
		-o-transform: scale(.3);
	}

	50% {
		-o-transform: scale(1.05);
	}

	70% {
		-o-transform: scale(.9);
	}

	100% {
		opacity: 1;
		-o-transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3);
	}

	50% {
		transform: scale(1.05);
	}

	70% {
		transform: scale(.9);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}
@-webkit-keyframes moveUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(40px);
	}	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes moveUp {
	0% {
		opacity: 1;
		-moz-transform: translateY(40px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes moveUp {
	0% {
		opacity: 1;
		-o-transform: translateY(40px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes moveUp {
	0% {
		opacity: 1;
		transform: translateY(40px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes fadeBgColor {
	0%{
		background:none;
	}
  70%{
		background:none;
	}
	100%{
		background:#464646;
	}
}
@-o-keyframes fadeBgColor {
	0%{
		background:none;
	}
  70%{
		background:none;
	}
	100%{
		background:#464646;
	}
}
@keyframes fadeBgColor {
	0%{
		background:none;
	}
  70%{
		background:none;
	}
	100%{
		background:#464646;
	}
}

.animated.animationDelay{
	animation-delay:.4s;
	-webkit-animation-delay:.4s;
}
.animated.animationDelayMed{
	animation-delay:1.2s;
	-webkit-animation-delay:1.2s;
}
.animated.animationDelayLong{
	animation-delay:1.6s;
	-webkit-animation-delay:1.6s;
}
.animated.fadeBgColor {
	-webkit-animation-name: fadeBgColor;
	-moz-animation-name: fadeBgColor;
	-o-animation-name: fadeBgColor;
	animation-name: fadeBgColor;
}
.animated.bounceIn {
	-webkit-animation-name: bounceIn;
	-moz-animation-name: bounceIn;
	-o-animation-name: bounceIn;
	animation-name: bounceIn;
}
.animated.bounceInRight {
	-webkit-animation-name: bounceInRight;
	-moz-animation-name: bounceInRight;
	-o-animation-name: bounceInRight;
	animation-name: bounceInRight;
}
.animated.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	-moz-animation-name: bounceInLeft;
	-o-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}
.animated.fadeIn {
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
}
.animated.fadeInDown {
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
.animated.fadeInUp {
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.animated.moveUp {
	-webkit-animation-name: moveUp;
	-moz-animation-name: moveUp;
	-o-animation-name: moveUp;
	animation-name: moveUp;
}
/*--animation end--*/

.irBlack{
	width: 30px;
}
.materialityContent{
	padding-left: 20px;
	width: 100%;

}
.materialityAssessmentTexture{
	width: 100% !important;
}

.promotionWrap h3{
	padding-bottom: 10px;
	position: relative;
}
.promotionWrap h3::after{
	width: 100%;
	height: 1px;
	background-color: #bf832b;
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
}
.promotionInnerTxt{
	padding-top: 20px;
	position: relative;
}
.promotionInnerTxt::after{
	width: 30px;
	height: 40px;
	position: absolute;
	content: "";
	left: 50%;
	transform: translateX(-50%);
	background: url(../images/environmentalInitiatives/arrow-bottom.png) no-repeat;
	top: 0;
	background-size: 100%;
}
.dotHeading{
	position: relative;
	padding-left: 20px;
	display: inline-flex;
}
.dotHeading::before{
	width: 20px;
    height: 20px;
    position: absolute;
    content: "";
    left: 0;
    background: url(../images/dot.png) no-repeat;
    background-size: 80%;
    top: 5px;
}
.promotionCount{
	background-color: #ebe2c9;
	display: flex;
	padding:50px 20px;
}
.qr_img{
	padding: 0 20px;
	text-align: center;
}
.promotionCountItem{
	width: calc(25.5% - 20px);
	margin-right: 20px;
	text-align:center;
}
.promotionCountItem:last-child{
	margin-right: 0px;
}
.promotionCountItem h4{
	color:#242056;
}
.logoWrasp img{
	width: 120px;
}
.dishaWrap .row{
	padding-bottom: 80px;
	position: relative;
}
.dishaWrap .row_1 .row{
	padding-bottom: 0px;
}
.dishaWrap .row_1 .row::after{
	display: none;
}
.dishaWrap .row::after{
	width: 100%;
	height: 30px;
	content: "";
	background:url(../images/line.png) no-repeat;
	position: absolute;
	bottom: 0;
	left: 0;
	background-size: 100%;

}
.dishaWrap .row.row_1::before{
	height: 100%;
	width: 30px;
	content: "";
	background:url(../images/environmentalInitiatives/rightDesign.png) repeat;
	position: absolute;
	top: 0;
	right: 0;
	background-size: 100%;

}
.dishaWrap{
	position: relative;
	padding-top:40px;
	margin-top: 60px;
}
.dishaWrap::before{
	width: 80px;
    height: 60px;
    position: absolute;
    content: "";
    top: -10px;
    right: -37px;
    background: url(../images/environmentalInitiatives/topArrow.png) no-repeat;
    background-size: 100%;
}
.dishaWrap .promotionInnerTxt::after {
    width: 30px;
    height: 40px;
    position: absolute;
    content: "";
    left: 46%;
    transform: translateX(-50%);
    background: url(../images/environmentalInitiatives/arrow-bottom.png) no-repeat;
    bottom: -50px;
    background-size: 100%;
    transform: rotate(180deg);
	top: auto;
}
.dishaWrap .row.row_2{
	padding-top: 30px;
}
.dishaWrap .row.row_2::before{
	height: 100%;
	width: 30px;
	content: "";
	background:url(../images/environmentalInitiatives/rightDesign.png) repeat;
	position: absolute;
	top: 0;
	left: 0;
	background-size: 100%;
}
.dishaWrap .row.row_3{
	padding-top: 30px;
}
.dishaWrap .row.row_3::before{
	height: 100%;
	width: 30px;
	content: "";
	background:url(../images/environmentalInitiatives/rightDesign.png) repeat;
	position: absolute;
	top: 0;
	right: 0;
	background-size: 100%;
}
.promotionWrap .promotionInnerTxt {
    padding-top: 55px;
    position: relative;
}
.mobView{
	display: none;
}
.promotionInnerTxt{
	position:relative;
}
.promotionInnerTxt .sideTxt{
	width: 40px;
	height: 100%;
	border-right: 1px solid #bf832b;
	position: absolute;
	left: 0;
	top: 0;
}
.promotionInnerTxt .sideTxt span {
    transform: rotate(270deg);
    position: absolute;
    left: -17px;
    top: 43%;
}
.dishaWrap .promotionCountItem{
	width: calc(34% - 20px);
}
.sosListBox{
	background-color: #ebe2c9;
	padding: 10px;
}
.sosListBox ul li{
	padding-left: 30px;
	position: relative;
}
.sosListBox ul li::before{
	width: 20px;
    height: 16px;
    position: absolute;
    content: "";
    top: 4px;
    left: 9px;
    background: url(../images/dot.png) no-repeat;
    background-size: 70%;
}
.rightArrow{
	width: 30px;
	margin-left: 10px !important;
}
/*--journey start--*/
.journeyItem {
    width: 100%;
	display: inline-block;
}
.journeyTop{
	display: flex;
}
.journeyBt{
	display: flex;
}
.journeyTop .jl, .journeyBt .jl{
	width: 50%;
	margin: 20px 0;
	height: 450px;
}
.journeyTop .jl{
	display: flex;
	align-items: flex-end;
}
.journeyBt .jl{
	display: flex;
	align-items: flex-start;
}
.textpurple11{
	margin-bottom: 0px !important;
}
.journeyTop{
	position: relative;
	padding-bottom: 40px;
}
.journeyTop::after {
    width: 100%;
    height: 40.8px;
    position: absolute;
    bottom: 0;
    content: "";
    background: url(../images/line2.png) repeat;
    background-size: contain;
}
.border-lr{
	border-left: 1px solid #BE822B;
	border-right: 1px solid #BE822B;
}
.topArrowIcon, .btmArrowIcon{
	position: relative;
}
.topArrowIcon::before{
	width: 20px;
    height: 70px;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    background: url(../images/topArrowIcon.png) no-repeat;
    background-size: 100%;
}
.btmArrowIcon::before{
	width: 20px;
    height: 70px;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    background: url(../images/bottomArrowIcon.png) no-repeat;
    background-size: 100%;
}
/*--journey end--*/
/*--building the community start--*/
.countBox{
	flex-wrap: wrap;
}
.countBox .countItem{
	width: 50%;
	padding: 20px;
	text-align: center;
	margin-bottom: 20px;
	position: relative;
}
.countBox .countItem::before{
	width: 1px;
	height: 80%;
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	background-color: #242056 ;
}
.countBox .countItem:nth-child(2n)::before{
	display: none;
}
.countBox .countItem::after{
	height: 1px;
	width: 80%;
	position: absolute;
	content: "";
	bottom: 0;
	left:50%;
	transform: translateX(-50%);
	background-color: #242056 ;
}
.workShopTxt .home_finacePara{
	padding-left: 20px;
}
.lightBrown2{
	padding-top: 10px;
}
.bba_none{
	margin-bottom: 0px !important;
}
.bba_none::after{
	display: none;
}
.lightBrown1{
	position: relative;
	margin-top: -30px;
}
.pankhLogo{
	position: relative;
	z-index: 12;
}
.platinumBB{
	margin: 10px 0;
}
.building-community p.home_finacePara{
	display: block;
}
/*--building the community end--*/
.chairmanMessageSec2Div2::after{
	position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    content: "";
    background-image: url(../images/chairmanMessage/chairmanBTop.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

.environmental-initiatives .home_finacePara{
	display: block;
}
.subBtmTxt{
	color: #ef705e;
}
.human-capital .home_finacePara{
	display: block;
}

.sec_H4{
	padding-bottom: 80px;
}
.mobView{
	display: none !important;
}
/*--key performance start--*/
.keyItem{
	border-right: 1px solid #ccc;
}
.keyItem:nth-child(3n){
	border-right: none;
}
/*--key performance end--*/
.stakeholderEngagement1.mobView{
	display: none !important;
}
.esgImg{
	height: 100%;
}
.esgImg img{
	width: 100%;
}
.subhead{
	margin-bottom: 15px;
}
.sec_H5{
	overflow: hidden;
}
.homeMa{
	display: none;
	width: 60% !important;
}
.cvSec{
	padding:30px 50px;
	position: relative;
}
.cvSec .lightBrown{
	position: relative;
}
.cvSec::before{
	width: 200px;
	height: 200px;
	background: url(../images/home_finace/boxB.png) no-repeat;
	background-size: 100%;
	position: absolute;
	top: 0;
	content: "";
	left: 0;
}
.cvSec::after{
	width: 200px;
    height: 200px;
    background: url(../images/home_finace/boxf.png) no-repeat;
    background-size: 100%;
    position: absolute;
    bottom: -47px;
    content: "";
    right: 0;
    z-index: -1;
}
.home_finaceSec2 .home_finaceimg2{
	max-width: 50%;
	margin: 0 auto;
}
.home_finacePara{
	display: table;
	margin: 0 auto;
}
.journeyTimeline{
	position: relative;
}
.journeyTimeline .sliderArH{
	position: absolute;
    top: 47%;
    transform: translateY(-50%);
    z-index: 12;
    display: flex;
    justify-content: space-between;
    width: 100%;
}