/*================================================
About Us Area CSS
=================================================*/
.mf-about-us-area {
  overflow: hidden;
}
.mf-about-us-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.mf-about-us-area .mf-section-title {
  max-width: 750px;
  margin: 0 auto 35px;
}
.mf-about-us-area .mf-section-title h2 {
  line-height: 1.4;
}

.mf-about-us-play {
  position: relative;
}
.mf-about-us-play .video-btn {
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: var(--optional-black-color);
  border-radius: 50%;
  color: var(--white-color);
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  transition: var(--transition);
}
.mf-about-us-play .video-btn i {
  font-size: 65px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mf-about-us-play .video-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  animation: ripple 2s linear infinite;
  background: transparent;
  border: 1px solid var(--black-color);
}

@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/*================================================
Success About Area CSS
=================================================*/
.mf-about-overview-content {
  border-bottom: 1px solid rgba(224, 223, 230, 0.4);
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.mf-about-overview-content .heading-content h3 {
  position: relative;
  font-size: 24px;
  line-height: 1.4;
  font-weight: bold;
  padding-left: 42px;
}
.mf-about-overview-content .heading-content h3 i {
  font-size: 28px;
  color: var(--main-color);
  position: absolute;
  left: 0;
  top: 0;
}
.mf-about-overview-content .paragraph-content {
  padding-left: 100px;
}
.mf-about-overview-content:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/*================================================
MF Funfacts Area CSS
=================================================*/
.mf-funfacts-card {
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.mf-funfacts-card::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: linear-gradient(270deg, #FF869E 0%, #FDAB79 100%);
  border-radius: 50px;
  height: 35px;
  width: 35px;
  right: 40px;
  top: -5px;
  z-index: -1;
}
.mf-funfacts-card h3 {
  font-weight: 900;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mf-funfacts-card h3 .odometer-formatting-mark {
  display: none;
}
.mf-funfacts-card h3 .sign {
  margin-top: -5px;
}
.mf-funfacts-card p {
  letter-spacing: 0.4em;
  color: #757171;
  font-weight: 500;
  line-height: 1;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .mf-about-us-play .video-btn {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
  .mf-about-us-play .video-btn i {
    font-size: 30px;
  }
  .mf-about-overview-content .heading-content h3 {
    font-size: 18px;
  }
  .mf-about-overview-content .paragraph-content {
    padding-left: 42px;
    margin-top: 12px;
  }
  .mf-funfacts-card h3 {
    font-size: 35px;
  }
  .mf-funfacts-card p {
    font-size: 14px;
  }
  .mf-funfacts-card::before {
    display: none;
  }
}
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mf-about-overview-content .heading-content h3 {
    font-size: 18px;
  }
  .mf-about-overview-content .paragraph-content {
    padding-left: 42px;
    margin-top: 12px;
  }
  .mf-funfacts-card h3 {
    font-size: 35px;
  }
  .mf-funfacts-card p {
    font-size: 14px;
  }
  .mf-funfacts-card::before {
    display: none;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mf-funfacts-card h3 {
    font-size: 50px;
  }
  .mf-funfacts-card p {
    font-size: 14px;
    letter-spacing: unset;
  }
}/*# sourceMappingURL=about.css.map */