.tf-steps-slider .owl-dots {
    text-align: center;
    margin-top: 30px;
}
.step-image-shape {
    position: absolute;
    top: 20%;
}
.tf-step-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tf-step-image {
    position: relative;
}
.tf-step-image .hover-image {
    width: 296px;
    height: 296px;
    border-radius: 100%;
}
.tf-step-image::before {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 1px solid #00A8D0;
    content: '';
    left: 10px;
    top: 0px;
    position: absolute;
    z-index: 1;
}
.tf-step-image img{
    width: 100%;
    height: 100% ;
}
.tf-step-number {
        font-weight: 600;
    font-size: 32px;
    text-align: center;
    width: 80px;
    height: 80px;
    color: #00A8D0;
    background: #fff;
    position: relative;
    z-index: 2;
    border-radius: 100%;
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 40px 60px 0px rgba(0, 0, 0, 0.1);
}
.tf-step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -48px;
}
.tf-step-subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #00A8D0;
    margin-top: 40px;
}
.tf-step-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    margin-top: 17px;
    margin-bottom: 17px;
}
.tf-step-desc {
    line-height: 140%;
}
.style2 .tf-step-image .hover-image {
    width: 234px;
    height: 234px;
    border-radius: 100%;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.style2 .tf-step-image .hover-image img{
    transition: all 0.3s ease-in-out;
}
.hover-image:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
  pointer-events: none;
}
.tf-step-image:hover .hover-image:after {
    height: 250%;
    transition: all 600ms 
linear;
    background-color: transparent;
}
.tf-step-image:hover .hover-image img {
  transform: scale(1.1);
}
@media only screen and (max-width: 768px) {

.tf-step-number {
    font-size: 25px;
    width: 60px;
    height: 60px;
    color: #00A8D0;
}
.tf-step-content {
    margin-top: -30px;
}
.tf-steps-slider .owl-dots {
    margin-top: 20px;
}
}