.review-page{
    min-height:auto;
    padding:80px 0 120px;
    background: transparent !important;
    position: relative;
    z-index:2;
}

.review-bg{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

.review-overlay{
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.45);
    z-index:-1;
}

.review-content{
    text-align:center;
    width:100%;
    padding:100px 80px;
}

.review-tag{
    color:#ff8a2a;
    letter-spacing:5px;
    font-size:15px;
}

.review-content h1{
    font-size:72px;
    font-weight:200;
    color:#fff;
    margin-top:20px;
}

.review-content p{
    color:rgba(255,255,255,.75);
    font-size:20px;
    margin-top:20px;
    line-height:1.8;
}

.review-cards{
    margin-top:80px;
    display:flex;
    justify-content:center;
    gap:35px;
}

.review-card{
    width:350px;
    padding:35px;
    border-radius:28px;

    background: rgba(255,255,255,.03);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
    inset 0 1px 2px rgba(255,255,255,.08),
    0 12px 25px rgba(0,0,0,.2);

    text-align:left;
}

.quote{
    font-size:60px;
    color:#ff8a2a;
}

.review-card p{
    font-size:18px;
    line-height:1.8;
    color:#fff;
    margin:20px 0;
}

.stars{
    color:#ff8a2a;
    font-size:22px;
    margin-bottom:30px;
}

.review-user{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:20px;
}

.review-user h4{
    color:#fff;
    font-size:22px;
    margin:0;
}

.review-user span{
    color:rgba(255,255,255,.65);
    font-size:16px;
}

.review-slider{
    display:flex;
    align-items:center;
    justify-content:center;
     position: relative;
    gap:25px;
    margin-top:70px;
}

.review-wrapper{
    width:1120px;
    overflow:hidden;
}

.review-track{
    display:flex;
    gap:35px;
    transition: transform .6s ease;
}

.review-card{
    min-width:350px;
}

.review-user{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:20px;
}

.review-user h4{
    margin:0;
    font-size:24px;
}

.review-user span{
    font-size:16px;
    color:rgba(255,255,255,.65);
}

.review-arrow{
    width:58px;
    height:58px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.03);
    color:#ff8a2a;
    font-size:24px;
    cursor:pointer;
    backdrop-filter:blur(15px);
    transition:.3s ease;
}

.review-arrow:hover{
    background:rgba(255,140,40,.12);
}

.review-dots{
    position:absolute;
    bottom:-60px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.25);
    transition:.35s ease;
}

.dot.active{
    background:#ff8a2a;
    transform:scale(1.2);
}

/* transition */

.review-tag,
.review-content h1,
.review-content p{
    opacity:0;
    transform:translateY(60px);
}

.review-page.in-view .review-tag{
    animation: reviewReveal .8s ease forwards;
    animation-delay:.1s;
}

.review-page.in-view h1{
    animation: reviewReveal .8s ease forwards;
    animation-delay:.3s;
}

.review-page.in-view p{
    animation: reviewReveal .8s ease forwards;
    animation-delay:.5s;
}

.review-page.in-view .review-card:nth-child(1){
    animation: reviewCardReveal .9s ease forwards;
    animation-delay:.7s;
}

.review-page.in-view .review-card:nth-child(2){
    animation: reviewCardReveal .9s ease forwards;
    animation-delay:.9s;
}

.review-page.in-view .review-card:nth-child(3){
    animation: reviewCardReveal .9s ease forwards;
    animation-delay:1.1s;
}

@keyframes reviewReveal{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes reviewCardReveal{
    to{
        opacity:1;
        transform:translateY(0);
    }
}