/* ==================================
TESTIMONIALS PAGE
================================== */

.testimonials-hero{
    padding:180px 0 100px;
    text-align:center;
}

.career-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 25px;
}

.testimonials-hero h1{
    color:#fff;
    font-size:clamp(42px,5vw,72px);
    font-weight:700;
    margin-bottom:20px;
}

.testimonials-hero p{
    max-width:750px;
    margin:auto;
    color:rgba(255,255,255,.75);
    font-size:18px;
}

/* FILTER */

.testimonial-filter{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:60px;
    flex-wrap:wrap;
}

.filter-btn{
    border:none;
    background:#fff;
    padding:14px 28px;
    border-radius:60px;
    font-weight:600;
    transition:.3s;
}

.filter-btn.active{
    background:#714B67;
    color:#fff;
}

/* CARD */

.testimonial-grid-card {
    height: 100%;
    border-radius: 30px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.testimonial-grid-card:hover{
    transform:translateY(-6px);
}

/* ODOO */

.odoo-theme{
    background: #724b68;

    color:#fff;
}

/* IFS */

.ifs-theme {
    background: #6941c6;
    color: #fff;
}

/* TOP */

.testimonial-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.service-tag {
    background: rgba(255,255,255,.15);
    padding: 0px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.testimonial-company-logo{
    width:110px;
    filter:grayscale(100%);
    opacity:.8;
}

/* CONTENT */

.testimonial-content i{
    font-size:45px;
    opacity:.2;
    margin-bottom:20px;
}

.testimonial-content p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

/* USER */

.testimonial-user h5 {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 20px;
}

.testimonial-user span {
    display: block;
    opacity: .85;
    font-size: 16px;
}

.testimonial-user small{
    opacity:.7;
    font-size: 15px;
}

.testimonial-item{
    transition:.4s ease;
}


/* ==================================
TESTIMONIAL INNER TABS
================================== */

.testimonial-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 100%;
}

.testimonial-tab-btn {
    border: none;
    background: rgba(255,255,255,.10);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
    transition: .3s;
}

.testimonial-tab-btn:hover{

    background:rgba(255,255,255,.18);
}

.testimonial-tab-btn.active {
    background: #fff;
    color: #111;
    display: none;
}

.testimonial-tab-content{

    display:none;

    animation:fadeTab .35s ease;
}

.testimonial-tab-content.active{

    display:block;
}

@keyframes fadeTab{

    from{

        opacity:0;
        transform:translateY(8px);
    }

    to{

        opacity:1;
        transform:translateY(0);
    }
}

.testimonial-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

    margin-bottom:35px;
}

@media(max-width:991px){

    .testimonial-top{

        flex-direction:column;
    }

    .testimonial-tabs{

        max-width:100%;
    }

    .testimonial-company-logo{

        width:90px;
    }

    .testimonial-tab-btn{

        font-size:11px;

        padding:8px 12px;
    }

}