/** Shopify CDN: Minification failed

Line 118:17 Unexpected "{"
Line 118:26 Expected ":"
Line 161:13 Expected ":"
Line 161:15 Expected identifier but found "12px"
Line 174:13 Expected ":"
Line 174:15 Expected identifier but found "10px"

**/
.index_about_us .about_inner{
  display: flex;
  gap: 20px;
}
.index_about_us .content_inner,
.index_about_us .main_image{
  width: 50%;
}
.index_about_us .main_image{
  position: relative;
}
.index_about_us .main_image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index_about_us .content_inner{
  display: flex;
  align-items: center;
  justify-content: center;
}
.index_about_us .content_col{
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}
.index_about_us a.btn_svg {
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.index_about_us a.btn_svg svg{
  width: 82px;
  height: 82px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.index_about_us a.btn_svg:hover svg{
  background: #fff;
}
.index_about_us a.btn_svg:hover svg path{
  fill: #000;
  stroke: #000;
}

.index_about_us h2{
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
.index_about_us .desc p{
  font-size: 16px;
  font-style: normal;
  font-weight: 250;
  line-height: 139.577%;
  text-transform: capitalize;
  opacity: 1;
}
.index_about_us ul.counter_number {
  padding-left: unset;
  display: flex;
  margin: 20px 0;
  align-items: center;
  gap: 20px;
}
.index_about_us ul.counter_number li{
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  justify-content: center;
  text-align: center;
  gap: 4px;
   transition: box-shadow 0.6s ease;
  
}
  .index_about_us ul.counter_number li:hover{
    box-shadow: 8px 6px 15.5px -6px #5a5a5a;
  }
.index_about_us ul.counter_number li p{
  font-size: 13px;
  font-style: normal;
  font-weight: 100;
  line-height: 139.577%;
  text-transform: capitalize;
  /* opacity: 0.6; */
  opacity: 1;
}
.index_about_us ul.counter_number li h3{
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 139.577%;
  text-transform: capitalize;
}
#index_about_us-{{ section.id }} .desc p{
  margin: 20px 0;
}

@media (max-width: 1199px){
  .index_about_us a.btn_svg {
    bottom: 50px;
    width: 100px;
    height: 100px;
  }
  .index_about_us a.btn_svg svg {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 991px){
  .index_about_us .about_inner {
    flex-direction: column;
    gap: 40px;
  }
  .index_about_us .content_inner,
  .index_about_us .main_image{
    width: 100%;
  }
  .index_about_us a.btn_svg {
    bottom: 0px;
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 767px) {
  .index_about_us a.btn_svg {
    width: 115px;
    height: 115px;
  }
  .index_about_us h3{
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
  }
  .index_about_us p{
    font-size; 12px;
  }
}
@media (max-width: 450px){
  .index_about_us a.btn_svg {
    width: 80px;
    height: 80px;
  }
  .index_about_us a.btn_svg svg{
    width: 60px;
    height: 60px;
  }
  .index_about_us p{
    font-size; 10px;
  }
  .index_about_us h3{
    font-size: 18px;
  }
  .index_about_us ul.counter_number {
    flex-direction: column;
  }
}