/* ===================================================
   Cyclone Hosting V5
   Segment 5A - Testimonials
=================================================== */

.v5-testimonials{

    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:
        radial-gradient(circle at top,#13dfff22,transparent),
        linear-gradient(180deg,#071225,#091a35);

}

.v5-testimonials::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

        linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

        linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:60px 60px;

    opacity:.4;

}

.v5-testimonials .container{

    position:relative;

    z-index:2;

    width:min(1300px,95%);

    margin:auto;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(19,223,255,.08);

    border:1px solid rgba(19,223,255,.25);

    color:#6fe8ff;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title h2{

    margin-top:25px;

    font-size:52px;

    font-weight:800;

    color:white;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#b7c8dd;

    line-height:1.8;

    font-size:18px;

}

/****************************************/

.testimonial-slider{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

/****************************************/

.testimonial-card{

    position:relative;

    padding:40px;

    border-radius:28px;

    background:

        linear-gradient(

            180deg,

            rgba(255,255,255,.08),

            rgba(255,255,255,.03)

        );

    border:1px solid rgba(90,160,255,.18);

    backdrop-filter:blur(18px);

    transition:.35s;

    overflow:hidden;

}

.testimonial-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        radial-gradient(

            circle at top,

            rgba(19,223,255,.18),

            transparent 60%

        );

    opacity:0;

    transition:.4s;

}

.testimonial-card:hover{

    transform:translateY(-12px);

    border-color:#18d3ff;

    box-shadow:

        0 35px 70px rgba(0,0,0,.45),

        0 0 40px rgba(19,223,255,.18);

}

.testimonial-card:hover::before{

    opacity:1;

}

/****************************************/

.stars{

    color:#ffd34d;

    font-size:20px;

    margin-bottom:25px;

}

.review{

    color:#d9e6f8;

    font-size:17px;

    line-height:1.9;

    min-height:170px;

}

/****************************************/

.customer{

    display:flex;

    align-items:center;

    margin-top:35px;

}

.avatar{

    width:70px;

    height:70px;

    border-radius:50%;

    background:

        linear-gradient(

            135deg,

            #13dfff,

            #247dff

        );

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    font-weight:bold;

    color:white;

    overflow:hidden;

    margin-right:18px;

    box-shadow:

        0 0 30px rgba(19,223,255,.25);

}

.avatar img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.customer strong{

    display:block;

    color:white;

    font-size:20px;

}

.customer small{

    display:block;

    margin-top:6px;

    color:#8fb0d7;

}

/****************************************/

@media(max-width:1000px){

.testimonial-slider{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.testimonial-slider{

grid-template-columns:1fr;

}

.section-title h2{

font-size:36px;

}

.review{

min-height:auto;

}

}

.testimonial-card{
    opacity:0;
    transform:translateY(30px);
}

.testimonial-card.show{
    opacity:1;
    transform:translateY(0);
}

.testimonial-card{
    opacity:1 !important;
    transform:none !important;
}