/* -------------------------ABOUT--------------------- */

.about-img {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;  
  border: rgb(253, 194, 228) solid 5px; 
  box-shadow: black  0px 0px 8px;
  animation: morph 6s ease-in-out infinite;
}

.quote-box {
	background: transparent !important;
	width: 450px;
	height: 300px;
 	perspective: 1000px;
 	text-align: center;
}
.quote-box-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: linear 1s;
	animation: flip  ease-in-out infinite 8s;
	transition: linear;
}


.quote-box .front, .back {
	font-size: 16px;
	border-radius: 20px;
	border: blue solid 5px;
	box-shadow: black 0px 0px 8px;
	background-color: #352961;
	padding: 10px 30px 40px 30px;
	position: absolute;
	width: 100%;
	height: 100%;
	line-height: 1.2;
	backface-visibility: hidden;
	perspective: 1000px;
	transform-style: preserve-3d;
}

.quote-box .front h3 {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.quote-box .front img {
	margin-top: 0.5rem;
}

.quote-box-inner .front  img, h3, p {
	transform: translate3d(0, 0, 50px);
}


.back-logo {
	transform: translate3d(0, 0, 50px);
	margin: 50px auto;
	width: 100px;
}

@keyframes morph {
  0% {
			border-radius:  60% 40% 30% 70% / 60% 30% 70% 40%;
	} 
	
	50% {
			border-radius:  30% 60% 70% 40% / 50% 60% 30% 60%;
	}
  
	100% {
		border-radius:  60% 40% 30% 70% / 60% 30% 70% 40%;
	} 
}

@keyframes flip {
	0% {
		transform: rotateY(0deg);
	}
	15% {
		transform: rotateY(180deg)
	}

	50% {
		transform: rotateY(180deg)
	}

	65% {
		transform: rotateY(360deg);
	}
	100% {
		transform: rotateY(360deg)
	}
}

/*--------------------- COUNTER -------------------------*/

.counter-text .number {
	padding-top: 20px;
	padding-bottom: 10px;
	background: -webkit-linear-gradient(45deg,red, blue) ;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.counter-no img{
	margin-top: 20px;
}

.counter-no {
	border-left: 5px solid;
	border-right: 5px solid;
	border-image: linear-gradient(white, red, blue, white);
	border-image-slice: 1;
}

@media screen and (max-width: 768px) {
.counter-no3 {
	margin-top: 3rem;
}
}