html, body{
    scroll-behavior: smooth;
}

.background-gradient.background-gradient-1 {
    background: linear-gradient(200deg, #000, #000, #ae00d1);
    background-size: 400% 300%;
    background-position: top left;
}

.background-gradient.background-gradient-2 {
    background: linear-gradient(200deg, #000, #000, #00e1b8);
    background-size: 400% 300%;
    background-position: top left;
}

.background-gradient.background-gradient-3 {
    background: linear-gradient(200deg, #000, #000, #e1a900);
    background-size: 400% 300%;
    background-position: top left;
}

.background-gradient.background-gradient-4 {
    background: linear-gradient(200deg, #000, #000, #00b0e1);
    background-size: 400% 300%;
    background-position: top left;
}


.animated-background-gradient{
    background: linear-gradient(200deg,#00e1b8,#000,#000,#ae00d1);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}


.background-gradient .banner-shape-wrap-two {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 0;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.scroll-left-right .swiper-wrapper{
    /*animation: scroll-left-right 50s ease-in-out infinite alternate;*/
}

.scroll-right-left .swiper-wrapper{
    /*animation: scroll-right-left 50s ease-in-out infinite alternate;*/
    margin-left: -16%;
}


@keyframes scroll-left-right {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(-25%);
    }
}

@keyframes scroll-right-left {
    0% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(-100%);
    }
}



footer {
    background: linear-gradient(180deg, #000, #000, #00e1b8);
    background-size: 100% 175% !important;
    background-position: top center;
}

footer .footer-area-three .footer-content-two p {
    opacity: 1;
    color: var(--bs-teal);
}

footer .footer-area-three .footer-bottom-two .copyright-text p {
    opacity: 1;
    color: #fff;
}

footer .footer-social-two .list-wrap {
    column-gap: 24px;
    font-size: 24px;
    animation: all .5s ease;
}

footer .footer-social-two .list-wrap li a:hover {
    color: var(--bs-teal);
}




