.rotate-me {
    animation: bounce-x 10s infinite linear;
}

@keyframes bounce-x {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(30px);
    }
    100% {
        transform: translateX(0);
    }
}


/* slider dot css start */

ul.slick-dots {
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0px;
    list-style: none;
    right: 0;
    text-align: center;
    justify-content: center;
    margin-bottom: 20px;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 31px;
    margin: 0;
    padding: 13px 2px;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 5px;
    height: 5px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

li.slick-active button {
    border: 3px solid #ffffff87;
    border-radius: 50%;
}

.slick-dots li button:before {
    content: "•";
    font-size: 40px;
    line-height: 42px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 21px;
    height: 21px;
    text-align: center;
    opacity: 1.25;
    color: rgb(186 41 68 / 65%)
}

.slick-arrow {
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: 50px;
    width: 50px;
    height: 50px;
    margin: auto;
    background-color: transparent;
    border-radius: 60px;
    border: 1px solid #fff;
    cursor: pointer;
    outline: none;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.slick-arrow.slick-prev {
    right: 135px;
}

.slick-arrow.slick-next {
    right: 35px;
}

.slick-arrow:before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.slick-arrow:hover {
    background-color: #900000;
}

.slick-arrow.slick-prev:before {
    transform: rotate(-45deg) translate(2px, 2px);
}

.slick-arrow.slick-next:before {
    transform: rotate(135deg) translate(2px, 2px);
}

.slider-progress span.active {
    width: 100%;
}

@keyframes fadeindown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.fadeindown {
    animation: fadeindown 2s infinite;
}
/* .img-wrap{
    background: linear-gradient(-45deg, #e96e21, #e99921, #d6427a, #8731db);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
} */
/* slider dot css end */


.chy-pr-btn-3 {
    display: inline-flex;
    position: relative;
    flex: 0 0 auto;
    overflow: hidden;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;

    color: #fff;
    padding: 18px 24px;
    border-radius: 31px;
    transition: .5s cubic-bezier(0,0,.2,1);
    cursor: pointer
}

.chy-pr-btn-3 svg {
    margin-left: 25px
}

.chy-pr-btn-3 .text {
    position: relative;
    z-index: 1
}

.chy-pr-btn-3 svg {
    position: relative;
    z-index: 1;
    height: 1em;
}

.chy-pr-btn-3:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 77%;
    height: 100%;
    background: #e96e21;
    border-radius: 0 0 31px;
    transition: .5s cubic-bezier(0,0,.2,1)
}

.chy-pr-btn-3:hover {
    color: #fff;
    letter-spacing: .5px
}

.chy-pr-btn-3:hover:after {
    width: 100%
}
.aniamtion-key-1 {
    position: relative;
    animation-name: animation-1;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
@keyframes animation-1 {
    0% {

      transform:translateY(0) ;
    }

    100% {

      transform: translateY(30px);
    }
  }
