/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 3px;
	right: 15px;
	bottom: 15px;
	color: #fff;
	transition: display 0.5s ease-in-out;
	z-index: 9999;
	background-color: #FF00FF;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #a6ca63;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# TESTIMONIOS
--------------------------------------------------------------*/
.testimonios {
	z-index: 999;
	position: relative;
	background-color: #ff6b39;
	background-image: url(../images/comercios.png);
}
 .testimonio h2 {
	color: #028d00; 
}
 .testimonio .dato {
	color: #FFFFFF;
	background-color: #1a9eba;
	margin-bottom: 10px;
	display: inline-block;
	border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
	-webkit-border-radius: 10px 10px 10px 10px;
	padding-right: 20px;
	padding-left: 20px;
	line-height: 30px;
}
 .testimonio .fa {
	float: left;
 line-height: 30px;
	width: 30px;
	text-align: center;
}
.testimonios .testimonio .comentario {
	background-color: #f4f4f4;
	border-radius: 20px 20px 20px 20px;
	-moz-border-radius: 20px 20px 20px 20px;
	-webkit-border-radius: 20px 20px 20px 20px;
	border: 0px solid #000000;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.testimonios .testimonio .abre {
	font-weight: bold;
	font-size: 68px;
	line-height: 54px;
	font-family: serif;
	color: #2287e7;	 
}
.testimonios .testimonio .cierra {
	font-weight: bold;
	font-size: 68px;
	line-height: 54px;
	font-family: serif;
	float:right;
	color: #2287e7;
}
.testimonios .testimonio {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
  padding-bottom: 15px;
  background: #fff;
 
	margin-bottom: 40px;
	padding-top: 20px;
}
 
 .testimonios .testimonio strong {
	font-size: 3rem; 
}

.testimonios .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#028d00 50%, rgba(148, 192, 69, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.testimonios .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.testimonios .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(2, 141, 0, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(2, 141, 0, 0);
}

.testimonios .play-btn:hover::after {
  border-left: 15px solid #028d00;
  transform: scale(20);
}

.testimonios .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


