* {
    /* margin: 0;
    padding: 0; */
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.hero-image {
    background: fixed;
    background-image: url("../assets/rado_hero.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
}

h5 {
    color: #191919;
}

p {
    color: #4f4f4f;
}

button {
    background-color: #EBEBEB;
    color: #4f4f4f;
}

.explore {
    color: #4f4f4f;
    background-color: #ebebeb;
}

.explore:hover {
    color: #ebebeb;
    background-color: #4f4f4f;
}

@keyframes scrolll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(500%);
    }
}

.animate-scrolll {
    animation: scroll 20s ease-in-out infinite;
}

body {
    font-family: "Barlow", sans-serif;
}

li a {
    color: #474747;
}

.btn,
.logo {
    background-color: #EBEBEB;
}

.btn a {
    color: #474747;
}


.hero {
    background: fixed;
    background-image: url("../assets/Banner\ 1.jpg.jpeg");
    background-size: cover;
    background-position: top center;
}

/* section-3 */
.service,
.team,
.sec-1 {
    background: fixed;
    background-image: url("../assets/222.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.sec-41 {
    background-image: url("../assets/Love.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.img-gallery:hover {
    background-color: rgb(225, 225, 225, 0.8);
}

.client {
    background: fixed;
    background-image: url("../assets/5555.jpg");
    background-size: cover;
}

/* Hide scrollbar */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.para {
    animation: ani 2s infinite ease-in-out;
}

@keyframes ani {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

footer {
    font-family: "Barlow", sans-serif;
}

@keyframes carousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

.carousel {
    animation: carousel 20s linear infinite;

}

.carousel:hover {
    animation-play-state: paused;
}

.marquee {
    width: 100%;
    overflow: hidden;
    /* background: #ffffff; */
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: scroll 20s linear infinite;
}

.marquee-content-1 {
    display: flex;
    width: fit-content;
    animation: scroll-left 20s linear infinite;
}

.marquee-content-1 img {
    height: 100px;
    margin: 0 40px;
    object-fit: contain;
}

.marquee-content img {
    height: 100px;
    margin: 0 40px;
    object-fit: contain;
}

/* Infinite scrolling animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Pause on hover */
.marquee:hover .marquee-content {
    animation-play-state: paused;
}

.marquee:hover .marquee-content-1 {
    animation-play-state: paused;
}
.slide-text,
.slide-text .para {
    --size: 2;
    line-height: 1;
    font-size: calc(var(--size) * 1rem);
    height: calc(var(--size) * 1rem);
    overflow: hidden;
    /* text-transform: uppercase; */
    /* font-weight: 500; */
}

.para {
    opacity: 0;
    animation: slideText 10s ease-in-out infinite;
}

@keyframes slideText {

    0%,
    20% {
        transform: translate(0, calc(var(--size) * 0rem));
        opacity: 1;
    }

    20%,
    40% {
        transform: translate(0, calc(var(--size) * -1rem));
        opacity: 1;
    }

    40%,
    60% {
        transform: translate(0, calc(var(--size) * -2rem));
        opacity: 1;
    }

    60%,
    80% {
        transform: translate(0, calc(var(--size) * -3rem));
        opacity: 1;
    }

    80%,
    100% {
        transform: translate(0, calc(var(--size) * -4rem));
        opacity: 1;
    }
}