.revIntroArea {
    width: 100%;
    height: 100%;
    font-family: var(--fontOne);
}

.areaIntroRev {
    padding: 25px 30px 0 30px;
}

.areaIntroRev>h2 {
    width: fit-content;
    background: -webkit-linear-gradient(-45deg, #ffffff, #AA9CFC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 23px;
    line-height: 1.27;
}

.slidingRevs {
    margin: 25px 0;
    height: 200px;
    margin-inline: auto;
    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 1) 20%,
            rgba(0, 0, 0, 1) 80%,
            rgba(0, 0, 0, 0));
    overflow: hidden;
    position: relative;
    width: 90%;
}

.slidingRevs::before {
    content: '';
    height: 100%;
    width: 3px;
    background-color: #636AB6;
    position: absolute;
    top: 0;
    left: 0;
}

.oneRevSlide {
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-name: scrolltop;
    animation-timing-function: linear;
    background-color: rgba(99, 106, 182, 0.07);
    backdrop-filter: blur(3px);
    height: 100px;
    top: max(calc(100px * 8), 100%);
    position: absolute;
    width: 90%;
    right: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 7px;
}

.slidingRevs:hover .oneRevSlide,
.slidingRevs:focus-within .oneRevSlide {
    animation-play-state: paused;
}

.oneRevSlide::before {
    content: '';
    height: 2px;
    width: 20%;
    background-color: rgba(99, 106, 182, 0.2);
    position: absolute;
    left: -20%;
    top: 50%;
    transform: translateY(-50%);
}

.oneRevSlide::after {
    content: '';
    height: 9px;
    width: 9px;
    border-radius: 50%;
    background-color: rgba(99, 106, 182, 1);
    position: absolute;
    left: -12.5%;
    top: 50%;
    transform: translateY(-50%);
}

.oneRevSlide>img {
    width: 27px;
    height: 27px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: -17px;
    left: 15px;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(99, 106, 182, 0.07);
    padding: 1px;
}

.oneRevSlide>p {
    font-weight: 400;
    color: #ACA0E4;
    font-size: 70%;
    font-style: italic;
    position: relative;
    z-index: 10;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.oneRevSlide>h3 {
    color: #f0f0f0;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 70%;
    align-self: flex-end;
    position: relative;
    z-index: 10;
}

.oneRevSlide1 {
    animation-delay: calc(30s / 8 * (8 - 1) * -1);
}

.oneRevSlide2 {
    animation-delay: calc(30s / 8 * (8 - 2) * -1);
}

.oneRevSlide3 {
    animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.oneRevSlide4 {
    animation-delay: calc(30s / 8 * (8 - 4) * -1);
}

.oneRevSlide5 {
    animation-delay: calc(30s / 8 * (8 - 5) * -1);
}

.oneRevSlide6 {
    animation-delay: calc(30s / 8 * (8 - 6) * -1);
}

.oneRevSlide7 {
    animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.oneRevSlide8 {
    animation-delay: calc(30s / 8 * (8 - 8) * -1);
}

@keyframes scrolltop {
    to {
        top: -200px;
    }
}

.revDets {
    padding: 8px 30px 0 30px;
}

.revDets>img {
    width: 70px;
    height: auto;
    filter: drop-shadow(0 0 1px #ACA0E4);
    margin-bottom: 8px;
}

.revDets>h2 {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 4px;
}

.revDets>p {
    font-weight: 400;
    color: #ACA0E4;
    font-size: 90%;
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.revStars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.revStars>svg {
    width: 17px;
    height: 17px;
}

@media only screen and (max-width: 1280px) {
    .areaIntroRev>h2 {
        font-size: 19px;
    }

    .revDets>img {
        width: 55px;
    }

    .revDets>h2 {
        font-size: 15px;
    }

    .revDets>p {
        font-size: 80%;
    }

    .revStars>svg {
        width: 15px;
        height: 15px;
    }
}

@media only screen and (max-width: 1080px) {
    .revIntroArea {
        height: auto;
    }

    .areaIntroRev>h2 {
        font-size: 23px;
    }

    .revDets {
        padding: 8px 30px 25px 30px;
    }

    .revDets>img {
        width: 70px;
    }

    .revDets>h2 {
        font-size: 17px;
    }

    .revDets>p {
        font-size: 90%;
    }

    .revStars>svg {
        width: 17px;
        height: 17px;
    }

    .slidingRevs {
        height: 270px;
    }

    .oneRevSlide>p {
        font-size: 72%;
    }

    .oneRevSlide>h3 {
        font-size: 75%;
    }
}

@media only screen and (max-width: 768px) {
    .areaIntroRev>h2 {
        font-size: 19px;
    }

    .revDets>img {
        width: 55px;
    }

    .revDets>h2 {
        font-size: 15px;
    }

    .revDets>p {
        font-size: 80%;
    }

    .revStars>svg {
        width: 15px;
        height: 15px;
    }
    .oneRevSlide>p {
        font-size: 70%;
    }

    .oneRevSlide>h3 {
        font-size: 70%;
    }
}

@media only screen and (max-width: 576px) {
    .slidingRevs {
        height: 350px;
    }
}