/*
Theme Name:  Kensure
Theme URI:   https://kensurero.co.in
Version:     1.0
Description: A child theme created for our site Kensure.
Author:      CGxperts
Author URI:  https://cgxperts.com
Template:    Divi
*/

/*- Add any CSS custom code for this child theme below this line -*/
/*---------------Animation---------------*/
.move-underline{
	animation: moveLine 1s linear infinite;
}
@keyframes moveLine {  
	100% { transform: translateX(-10%); }
}
.animatedbg {
	background: linear-gradient(45deg,#7fa0ac,#70708d,#5c82a5,#f0f0f0,#7fa0ac,#70708d,#f0f0f0,#7fa0ac,#70708d);
	background-size: 100% 1100%;
	animation: animateBg 30s ease infinite;
}
.animatedbg-2 {
	background: linear-gradient(45deg,#f4d4d7,#d98e95,#e1e1e1,#f3d3d6,#f4d4d7,#d98e95,#f4d4d7);
    background-size: 100% 1100%;
    animation: animateBg 30s ease infinite;
}

@keyframes animateBg {
  0% { background-position: 0% 0%; }
  50% { background-position: 0% 100%; }
	100% { background-position: 0% 0%; }
}

.moving-underline1 {
    height: 20px;
    margin: 30px 0px 10px 0px;
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
}
  .moving-underline1 .mover-2 {
    animation: moveLine 3s linear infinite;
}
  .moving-underline1 > div {
    height: 100px;
    width: 3000px;
    background: url(https://kensurero.co.in/wp-content/uploads/2023/03/wave-line-thin.svg) repeat-x;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transform: translate3d(0, 0, 0);
   
}
/*------------Section Divider Animation-----------*/
.et_pb_top_inside_divider, .et_pb_bottom_inside_divider {
animation: myAnim 5s ease 0s infinite alternate-reverse forwards;
}
@keyframes myAnim {
	0% {
		background-position: 0% 50%;
	}

	100% {
		background-position: 100% 50%;
	}
}