html, body {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html,
    body {
        scroll-behavior: auto;
    }
}

.dodo-icon {
    display: inline-block;
    fill: none;
    flex: 0 0 auto;
    height: 1em;
    stroke: currentColor;
    stroke-width: 2;
    vertical-align: -0.14em;
    width: 1em;
}

.dodo-icon--brand {
    fill: currentColor;
    stroke: none;
}

.navigation .nav-item-icon {
    color: var(--tg-green-two, #7ddb39);
    font-size: 1.05em;
    margin-right: 0.35rem;
}

.dodo-nav-chevron,
.dodo-slider-arrow {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    display: inline-block;
    height: 8px;
    width: 8px;
}

.dodo-nav-chevron {
    transform: rotate(45deg) translateY(-2px);
}

.dodo-slider-arrow {
    height: 12px;
    width: 12px;
}

.dodo-slider-arrow--left {
    transform: rotate(135deg);
}

.dodo-slider-arrow--right {
    transform: rotate(-45deg);
}

.mobile-nav-toggler,
.mobile-menu .close-btn {
    background: transparent;
    border: 0;
    padding: 0;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--tg-cyan, #0dcaf0);
    outline-offset: 4px;
}

.menu-area .mobile-nav-toggler {
    height: 44px;
    min-width: 44px;
    width: 44px;
}

.mobile-nav-icon,
.mobile-nav-icon::before,
.mobile-nav-icon::after {
    background: currentColor;
    border-radius: 3px;
    display: block;
    height: 2px;
    position: absolute;
    right: 0;
    width: 28px;
}

.mobile-nav-icon {
    top: 21px;
}

.mobile-nav-icon::before,
.mobile-nav-icon::after {
    content: "";
}

.mobile-nav-icon::before {
    top: -8px;
}

.mobile-nav-icon::after {
    top: 8px;
}

.mobile-menu .close-btn {
    align-items: center;
    display: flex;
    font-size: 36px;
    height: 44px;
    justify-content: center;
    min-width: 44px;
}

.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);
}




