.about-section {
  height: 100vh;
  background-image: url("../images/bg/aboutbg.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
}

.about-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.about-caption {
  margin: 0 auto;
  padding-top: calc(50vh - 130px);
  color: #fff;
  position: relative;
  font-weight: bolder;
  text-align: center;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.about-caption span {
  font-size: 2em;
  font-weight: 500;
}
.about-caption h1 {
  color: #fff;
  font-size: 6em;
  font-weight: bolder;
}

/*** Hero Footer Mid Content ***/

.hero-footer-center {
  text-align: center;
  flex-grow: 1;
}

.stat-ticker{
  padding-top: 25px;
  color: #fff;
  height:90px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 30px;
}

.stat-ticker:nth-child(1){
  background-image: url('../images/icons/customerStat.png');
}

.stat-ticker:nth-child(2){
  background-image: url('../images/icons/expertsStat.png');
}

.stat-ticker:nth-child(3){
  background-image: url('../images/icons/experienceStat.png');
}

.stat-ticker h1{
  color: #ffffff;
  font-weight: bolder;
}

.stat-ticker h1:hover{
  transform: scale(1.4);
  transition: all ease-in-out 0.3s; 
}

.home-about {
  padding: 0 30px 10px 30px !important;
}

.home-about h2 {
  font-size: 20px;
  font-weight: bold;
  color: #888;
}

.home-about h1 {
  font-weight: 700;
  margin-bottom: 25px;
}

.services-wrapper {
  padding: 20px 0px;
  background-color: #9a258f;
}

.our-purpose {
  padding: 10px 120px;
  color: #fff !important;
}

.our-purpose h1 {
  color: #fff;
  text-align: center;
}

.purpose {
  margin-top: 25px;
  margin-bottom: 20px;
  font-weight: 300;
}

.our-core-values{
  background-color: #F4F4F4;
  margin-top: 35px;
}

.our-core-values h1, .our-core-values h2, .our-team h1, .our-team h2{
  color: #732B90;
  font-weight: bold;
  text-align: center;
}
.core-values{
  margin: 35px;
  padding-bottom: 40px;
}

.core-value-icons > div{
  margin: 20px 0;
}

.core-value-icons img{
  height: 100px;
}

.value-prop{
  position: relative;
}

.value-prop:hover{
  cursor: pointer;
}

.value-prop span{
  transition: all ease 1s;
  opacity: 0;
  max-width: 150px;
}

.value-prop:hover img{
  transition: all ease 1;
  opacity: 0;
}

.value-prop:hover .vp-hover-text{
  transition: all ease 1.5s;
  opacity: 1;
}

.vp-hover-text{
  opacity: 0;
  z-index: 9;
  position: absolute;
  top: 0;
  left:50%;
  margin-left: -75px;
}


.our-team {
  padding: 55px 0;
  text-align: center;
  position: relative;
}

.our-team-item {
  position: relative;
  text-align: center;
  padding: 25px 0;
  cursor: pointer;
}

.our-team-item img {
  width:120px;
  margin: auto;
}

.our-team-item img:hover{
  transform: scale(1.2);
  border-radius: 50%;
  border: 2px solid #732B90;
}


.our-team-item:hover .oti-overlay{
  opacity: 1;
  transition: all ease 0.5s;
  transform: translateY(-100%);
  height: 100%;
}

.oti-overlay{
  opacity: 0;
  position: absolute;
  backdrop-filter: blur(4px);
  z-index: 9;
  width: 100%;
  height: 0;
  top: 100%;
  background-color: rgba(255,255,255, 0.7);
  left:0;
  padding: 50px;
}

.team-profile{
  text-align: left !important;
}

.team-profile small{
  color: #888;
  font-size: 70%;
}

.team-profile h4{
  margin: 10px 0 20px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .our-purpose {
    padding: 10px 80px;
  }
  .our-team {
    padding: 45px 0;
  }
  .our-team-item {
    padding: 25px 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .our-purpose {
    padding: 10px 50px;
  }
  .our-team {
    padding: 40px 0;
  }
  .our-team-item {
    padding: 25px 50px;
  }
}

@media only screen and (max-width: 767px) {
  .our-purpose {
    padding: 10px 30px;
  }
  .our-team {
    padding: 30px 0;
  }
  .our-team-item {
    padding: 25px 30px;
  }

  .about-caption h1 {
    color: #fff;
    font-size: 3.5em;
    font-weight: bolder;
  }

  .about-caption {
    padding-top: 130px; 
  }

  .about-section, .about-section::after{
    height: calc(100vh - 90px);
  }

}
