.testimonial2 {
    font-family: "Montserrat", sans-serif;
    color: #8d97ad;
    font-weight: 300;
  }
  
  .testimonial2 h1,
  .testimonial2 h2,
  .testimonial2 h3,
  .testimonial2 h4,
  .testimonial2 h5,
  .testimonial2 h6 {
    color: #3e4555;
  }
  
  .testimonial2 h5 {
      line-height: 22px;
      font-size: 18px;
          font-weight: 400;
  }
  
  .testimonial2 .font-weight-medium {
    font-weight: 500;
  }
  
  .testimonial2 .bg-light {
    background-color: #f4f8fa !important;
  }
  
  .testimonial2 .subtitle {
    color: #8d97ad;
    line-height: 24px;
  }
  
  .testimonial2 .testi2 .image-thumb {
    background: url(https://www.wrappixel.com/demos/ui-kit/wrapkit/assets/images/testimonial/greadint-bg.png) no-repeat top center;
    text-align: center;
    padding: 10% 0;
  }
  
  .testimonial2 .testi2 .image-thumb img {
    width: 400px;
  }
  
  .testimonial2 .testi2 .owl-dots {
    display: inline-block;
    position: relative;
    top: -100px;
  }
  
  .testimonial2 .testi2 .owl-dots .owl-dot {
    border-radius: 100%;
    width: 70px;
    height: 70px;
    background-size: cover;
    margin-right: 10px;
    opacity: 0.4;
    cursor: pointer;
  }
  
  .testimonial2 .testi2 .owl-dots .owl-dot span {
    display: none;
  }
  
  .testimonial2 .testi2 .owl-dots .owl-dot.active,
  .testimonial2 .testi2 .owl-dots .owl-dot:hover {
    opacity: 1;
  }
  
  @media (max-width: 767px) {
    .testimonial2 .testi2 .owl-dots {
      top: 0px;
    }
  }
  
  .testimonial2 .btn-md {
      padding: 18px 0px;
      width: 60px;
      height: 60px;
      font-size: 20px;
  }
  
  .testimonial2 .btn-danger {
      background: #ff4d7e !important;
      border: 1px solid #ff4d7e !important;
  }



  @import url(//fonts.googleapis.com/css?family=Montserrat:300,400,500);
.team3 {
  font-family: "Montserrat", sans-serif;
  color: #8d97ad;
  font-weight: 300;
}

.team3 h1,
.team3 h2,
.team3 h3,
.team3 h4,
.team3 h5,
.team3 h6 {
  color: #3e4555;
}

.team3 .font-weight-medium {
  font-weight: 500;
}

.team3 .bg-light {
  background-color: #f4f8fa !important;
}

.team3 .subtitle {
  color: #8d97ad;
  line-height: 24px;
  font-size: 13px;
}

.team3 ul {
  margin-top: 30px;
}

.team3 h5 {
  line-height: 22px;
  font-size: 18px;
}

.team3 ul li a {
  color: #8d97ad;
  padding-right: 15px;
  -webkit-transition: 0.1s ease-in;
  -o-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
}

.team3 ul li a:hover {
  -webkit-transform: translate3d(0px, -5px, 0px);
  transform: translate3d(0px, -5px, 0px);
	color: #316ce8;
}

.team3 .title {
  margin: 30px 0 0 0;
}

.team3 .subtitle {
  margin: 0 0 20px 0;
  font-size: 13px;
}









.flip-card {
  background-color: transparent;
  width: 300px;
  height: 200px;
  border: 1px solid #f1f1f1;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #bbb;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: #eee;
  color:black;
  transform: rotateY(180deg);
}









/*
flip card
*/
.card-flip > div {
  backface-visibility: hidden;
  transition: transform 300ms;
  transition-timing-function: linear;
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
}

.card-front {
  transform: rotateY(0deg);
}

.card-back {
  transform: rotateY(180deg);
  position: absolute;
  top: 0;
}

.card-flip:hover .card-front {
  transform: rotateY(-180deg);
}
  
.card-flip:hover .card-back {
  transform: rotateY(0deg);
}