.pt-120 {
  padding-top: 60px;
}
.maha-about-wrap{
  display: none;
}
@media only screen and (min-width: 992px) {
  .pt-120 {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 1200px) {
  .pt-120 {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 1400px) {
  .pt-120 {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 575px) {
  .maha-about-wrap {
    width: 100%;
  }
}

.pb-120 {
  padding-bottom: 60px;
}
@media only screen and (min-width: 992px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 1200px) {
  .pb-120 {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 1400px) {
  .pb-120 {
    padding-bottom: 120px;
  }
}

/*----------------------------------
    SECTION TITLE 
    -----------------------------------*/
.section-title-wrap {
  position: relative;
  margin-bottom: 40px;
}
.section-title-wrap .section-title {
  display: inline-block;
  position: relative;
  margin: 5px 0 40px;
  text-transform: capitalize;
  line-height: 1.4;
  font-size: calc(1.525rem + 3.3vw);
}
@media (min-width: 1200px) {
  .section-title-wrap .section-title {
    font-size: 2rem;
  }
}
.section-title-wrap .section-title::before,
.section-title-wrap .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 20px;
  height: 8px;
  border-radius: 4px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  background-color: var(--color-primary)!important;
  -webkit-animation: animate 6s linear infinite;
  animation: animate 6s linear infinite;
}
.section-title-wrap .section-title::before {
  right: 50%;
  margin-right: 4px;
}
.section-title-wrap .section-title::after {
  left: 50%;
  margin-left: 4px;
}
.section-title-wrap p {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
  max-width: 1200px;
}

@-webkit-keyframes animate {
  0% {
    width: 20px;
  }
  25% {
    width: 50px;
  }
  50% {
    width: 50px;
  }
  75% {
    width: 100px;
  }
  100% {
    width: 100px;
  }
}

@keyframes animate {
  0% {
    width: 20px;
  }
  25% {
    width: 50px;
  }
  50% {
    width: 50px;
  }
  75% {
    width: 100px;
  }
  100% {
    width: 100px;
  }
}

/*-------------------------------
  BUTTON
  --------------------------------*/
.maha-about-wrap .button-wrapper {
  position: relative;
  padding: 1.5rem 0;
  -webkit-filter: url("#goo");
  filter: url("#goo");
}

.maha-about-wrap .button {
  display: inline-block;
  position: relative;
  min-width: 8.23em;
  min-width: 200px;
  font-family: var(--title-font-family);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: var(--title-text-color);
  background: #fff;
  border-radius: 1em;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  padding: 1.03em 1.32em;
  line-height: 1;
}
.maha-about-wrap .button:before,
.maha-about-wrap .button:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 4.4em;
  height: 2.95em;
  background: #fff;
  border-radius: 50%;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
  z-index: -1;
}

.maha-about-wrap .button-yellow {
  background: var(--color-primary);
  color: #fff;
}
.maha-about-wrap .button-yellow:before,
.maha-about-wrap .button-yellow:after {
  background: var(--color-primary);
}

.maha-about-wrap .button:before {
  top: -25%;
  left: 20%;
}

.maha-about-wrap .button:after {
  bottom: -25%;
  right: 20%;
}

.maha-about-wrap .button:hover:before,
.maha-about-wrap .button:hover:after {
  -webkit-transform: none;
  transform: none;
}

.maha-about-wrap .loading-button .drops {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-filter: url("#liquid");
  filter: url("#liquid");
  -webkit-animation: fade-in 0.1s linear 0.4s forwards;
  animation: fade-in 0.1s linear 0.4s forwards;
}
.maha-about-wrap .loading-button .drop1,
.maha-about-wrap .loading-button .drop2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 21px;
  height: 24px;
  border-radius: 50%;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  background-color: var(--color-primary);
}
.maha-about-wrap .loading-button .drop1 {
  width: 90px;
  height: 16px;
  bottom: 2px;
  border-radius: 0;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}
.maha-about-wrap .loading-button .drop2 {
  -webkit-animation: drop 1.3s cubic-bezier(1, 0.19, 0.66, 0.12) 0.5s infinite;
  animation: drop 1.3s cubic-bezier(1, 0.19, 0.66, 0.12) 0.5s infinite;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@-webkit-keyframes drop {
  0% {
    bottom: 0px;
    opacity: 1;
    filter: alpha(opacity=100);
  }
  80% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    bottom: -200px;
  }
}
@keyframes drop {
  0% {
    bottom: 0px;
    opacity: 1;
    filter: alpha(opacity=100);
  }
  80% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    bottom: -200px;
  }
}

/*--------------------------
  ABOUT US
  --------------------------*/
.maha-about-wrap {
  position: relative;
  overflow: hidden;
}

.maha-about-wrap .counter-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.maha-about-wrap .counter-wrap .counter-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 190px;
  height: 160px;
  margin-bottom: 30px;
  background-image: url(https://okki-shop.oss-cn-hangzhou.aliyuncs.com/category/417564/2980/cd756ca419a3bfd11f8ab6efe08e409f/%E5%A4%84%E7%90%86%E5%AE%8C%E6%88%90%E5%9B%BE%E7%89%8720250401091515%281%2911.png);
}
.maha-about-wrap .counter-wrap .counter {
  text-align: center;
}
.maha-about-wrap .counter-wrap .counter h4 {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--title-font-family);
  font-size: 2rem;
  font-weight: 700;
  /*background: -webkit-gradient(*/
  /*  linear,*/
  /*  left top,*/
  /*  right top,*/
  /*  color-stop(10%, #41b681),*/
  /*  color-stop(10%, #41d49f),*/
  /*  color-stop(60%, #41b681)*/
  /*);*/
  background: linear-gradient(to right, rgba(var(--color-primary-rgb), 0.5) 10%, rgba(var(--color-primary-rgb), 0.7) 10%, rgba(var(--color-primary-rgb), 0.9) 60%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: textshadow 1.8s linear infinite;
  animation: textshadow 1.8s linear infinite;
}
.maha-about-wrap .counter-wrap h5 {
  text-transform: uppercase;
  font-size: 1.5rem;
}

@-webkit-keyframes textshadow {
  to {
    background-position: -200% center;
  }
}

@keyframes textshadow {
  to {
    background-position: -200% center;
  }
}
