/* counter-sec-start  */
  #counter-section1 {
      background-color: #000;
      padding: 80px 0;
  }
  
  #counter-section1.light{background-color: #ffffff;}


.counter-section{position:relative;}


#About_page{height:100vh; display:flex; align-items:flex-end; padding:50px 0;}


#About_page .background_image{position:absolute; left:50px; top:50px; right:50px; bottom:50px; border-radius:30px; overflow:hidden;}

#About_page .background_image img{width:100%; height:100%; object-fit:cover; object-position:center top;}
#About_page .counter-row{position: absolute; bottom: 80px;  left: 80px; right: 80px;}

#About_page .background_image:after{content:''; position:absolute; left:0; right:0; top:0; bottom:0;

background: #000000;
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);

}

#About_page .label{color:#ffffff;}

  .counter-row {
    display: flex;
    justify-content: center;
    gap: 194px;
    color: #fff;
  }
  .counter-box {
    text-align: center;
  }
  .counter-box .number {
    font-weight: 700;
    font-size: 70px;
    line-height: 66.75px;
    text-transform: uppercase;
	color:#ffffff;
  }
  
  .light .counter-box .number{color:#111111;}
  .light .counter-box .label{}
  
  .counter-box .label {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -0.4px; /* 3% of 20px = 0.6px */
    color: #5ADBFF;
    margin-top: 15px;
  }
/* counter-sec-end  */


/* Light-mode-start */
.counter-lightmode {
    background-color: #fff !important;
}
.counter-lightmode .counter-box .number {
    font-weight: 700;
    color: #F6B510;
}
.counter-lightmode .counter-row {
    gap: 190px;
}
.counter-lightmode .counter-box .label {
    color: #333333;
}
/* Light-mode-end */

/* Responsive Style  */

@media (max-width: 1500px){
.counter-row, .counter-lightmode .counter-row {
    justify-content: space-between;
    gap: 60px;
}
}

@media (max-width : 1199px){
#counter-section1 {
    padding: 60px 0;
  }
  .counter-box .number {
    font-size: 40px;
    line-height: 50px;
  }
  .counter-box .label {
      font-size: 18px;
      line-height: 26px;
      letter-spacing: 0.6px;
      margin-top: 10px;
  }
}

@media (max-width : 991px){
 .counter-row, .counter-lightmode .counter-row {
        gap: 20px;
    }
      .counter-box .number {
        font-size: 26px;
        line-height: 35px;
    }
        .counter-box .label {
        font-size: 15px;
        line-height: 22px;
        margin-top: 5px;
    }
	
	#About_page .background_image{left:30px; top:30px; right:30px; bottom:30px;     border-radius: 20px; }
	#About_page .counter-row{ bottom: 50px;  left: 50px; right: 50px;}
}


@media(max-width : 767px){
#About_page .background_image{left:20px; top:20px; right:20px; bottom:20px;     border-radius:12px; }
#About_page .counter-row { bottom: 40px;   left: 40px;   right: 40px; }
}



@media(max-width : 575px){
   .counter-row {
    flex-wrap: wrap;
}
.counter-box {
    width: calc(50% - 10px);
}
}

