/*==================================================
        DDS PREMIUM TESTIMONIAL CSS - PART 1
==================================================*/

/*==============================
        SECTION
==============================*/

#dds-testimonial{

    position:relative;

    padding:110px 0;

    background:#050505;

    overflow:hidden;

}

#dds-testimonial::before{

    content:"";

    position:absolute;

    top:-220px;

    left:-220px;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(253,185,19,.05);

    filter:blur(80px);

}

#dds-testimonial::after{

    content:"";

    position:absolute;

    right:-220px;

    bottom:-220px;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(253,185,19,.04);

    filter:blur(90px);

}

/*==============================
        HEADING
==============================*/

#dds-testimonial .title{

    text-align:center;

    margin-bottom:30px;

}

.dds-subtitle{

    display:inline-block;

    color:#fdb913;

    font-size:15px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:15px;

}

#dds-testimonial h1{

    color:#fff;

    font-size:48px;

    font-weight:700;

    margin-bottom:18px;

}

#dds-testimonial .title p{

    color:#bfbfbf;

    font-size:18px;

    line-height:32px;

    max-width:760px;

    margin:auto;

}

/*==============================
        CAROUSEL
==============================*/

.active-testimonial-carusel{

    margin-top:20px;

}

/*==============================
        CARD
==============================*/

.single-testimonial{

    position:relative;
    background:#111;
    border:1px solid rgba(255,255,255,.05);
    border-radius:22px;
    padding:40px;
    margin:15px;
    overflow:hidden;
    transition:.45s;

    display:flex !important;
    align-items:center;

    min-height:340px;      /* ADD */
    height:340px;          /* ADD */

    box-shadow:0 10px 35px rgba(0,0,0,.25);

}

.single-testimonial:hover{

    transform:translateY(-10px);

    border-color:#fdb913;

    box-shadow:0 25px 60px rgba(253,185,19,.18);

}

/*==============================
        TOP GOLD BAR
==============================*/

.single-testimonial::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:5px;

    background:#fdb913;

    transition:.5s;

}

.single-testimonial:hover::before{

    left:0;

}

/*==============================
        CLIENT IMAGE
==============================*/

.single-testimonial .thumb{

    min-width:120px;

    margin-right:30px;

}

.single-testimonial .thumb img{

    width:110px;

    height:110px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #fdb913;

    transition:.5s;

}

.single-testimonial:hover .thumb img{

    transform:scale(1.08) rotate(3deg);

}

/*==============================
        CONTENT
==============================*/

.single-testimonial .desc{

    flex:1;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    height:100%;

}

.single-testimonial .desc p{

    color:#cfcfcf;

    font-size:17px;

    line-height:30px;

    margin-bottom:20px;

    min-height:120px;

}

.single-testimonial .desc h4{

    color:#fff;

    font-size:24px;

    font-weight:600;

    margin-bottom:6px;

}

.single-testimonial .desc small{

    display:block;

    color:#fdb913;

    font-size:15px;

    margin-bottom:15px;

    letter-spacing:1px;

}

/*==============================
        STARS
==============================*/

.star{

    display:flex;
    gap:6px;

    margin-top:auto;

}

.star .fa{

    font-size:18px;

    color:#555;

}

.star .checked{

    color:#fdb913;

}
/*==================================================
        DDS PREMIUM TESTIMONIAL CSS - PART 2
        Animation + Owl Carousel + Responsive
==================================================*/

/*==============================
        CARD GLOW
==============================*/

.single-testimonial::after{

    content:"";

    position:absolute;

    top:-120px;

    right:-120px;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(253,185,19,.05);

    transition:.5s;

    pointer-events:none;

}

.single-testimonial:hover::after{

    transform:scale(1.6);

}

/*==============================
        FLOAT ANIMATION
==============================*/

.single-testimonial{

    animation:ddsFloatTestimonial 6s ease-in-out infinite;

}

@keyframes ddsFloatTestimonial{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

}

/*==============================
        OWL DOTS
==============================*/

.active-testimonial-carusel .owl-dots{

    text-align:center;

    margin-top:40px;

}

.active-testimonial-carusel .owl-dot{

    display:inline-block;

    width:14px;

    height:14px;

    margin:0 6px;

    border-radius:50%;

    background:#444;

    transition:.4s;

}

.active-testimonial-carusel .owl-dot.active{

    width:40px;

    border-radius:30px;

    background:#fdb913;

}

/*==============================
        OWL NAV
==============================*/

.active-testimonial-carusel .owl-nav{

    display:block;

}

.active-testimonial-carusel .owl-prev,
.active-testimonial-carusel .owl-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border-radius:50%;

    background:#111 !important;

    color:#fff !important;

    border:2px solid #fdb913 !important;

    transition:.4s;

    font-size:22px !important;

    line-height:50px !important;

    text-align:center;

}

.active-testimonial-carusel .owl-prev{

    left:-70px;

}

.active-testimonial-carusel .owl-next{

    right:-70px;

}

.active-testimonial-carusel .owl-prev:hover,
.active-testimonial-carusel .owl-next:hover{

    background:#fdb913 !important;

    color:#111 !important;

}

/*==============================
        IMAGE SHADOW
==============================*/

.single-testimonial .thumb img{

    box-shadow:0 10px 30px rgba(253,185,19,.25);

}

/*==============================
        STAR ANIMATION
==============================*/

.star .checked{

    animation:ddsStarGlow 2s infinite alternate;

}

@keyframes ddsStarGlow{

0%{

text-shadow:0 0 5px rgba(253,185,19,.3);

}

100%{

text-shadow:0 0 18px rgba(253,185,19,.9);

}

}

/*==============================
        CARD HOVER
==============================*/

.single-testimonial:hover .desc h4{

    color:#fdb913;

}

.single-testimonial:hover{

    background:#141414;

}

/*==============================
        TABLET
==============================*/
@media(max-width:991px){

#dds-testimonial{
    padding:90px 15px;
}

#dds-testimonial h1{
    font-size:38px;
}

.single-testimonial{
    display:flex !important;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    height:auto;
    min-height:auto;
    padding:35px 30px;
}

.single-testimonial .thumb{
    min-width:100%;
    margin:0 0 25px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.single-testimonial .desc{
    width:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    height:auto;
}

.single-testimonial .desc p{
    min-height:auto;
    margin-bottom:20px;
}

.star{
    justify-content:center;
    margin-top:15px;
}

.active-testimonial-carusel .owl-prev,
.active-testimonial-carusel .owl-next{
    display:none !important;
}

}

/*==============================
        MOBILE
==============================*/

@media(max-width:768px){

#dds-testimonial{

padding:80px 15px;

}

#dds-testimonial h1{

font-size:30px;

}

#dds-testimonial .title p{

font-size:16px;

line-height:28px;

}

.single-testimonial{

display:block !important;

text-align:center;

padding:30px 25px;

}

.single-testimonial .thumb{

margin:0 auto 25px;

}

.single-testimonial .thumb img{

width:95px;

height:95px;

}

.single-testimonial .desc h4{

font-size:22px;

}

.single-testimonial .desc p{

font-size:15px;

line-height:28px;

}

.star{

justify-content:center;

}

.active-testimonial-carusel .owl-prev,
.active-testimonial-carusel .owl-next{

display:none !important;

}

}

/*==============================
        SMALL MOBILE
==============================*/

@media(max-width:480px){

#dds-testimonial{

padding:70px 15px;

}

.dds-subtitle{

font-size:13px;

letter-spacing:2px;

}

#dds-testimonial h1{

font-size:25px;

}

.single-testimonial{

padding:25px 20px;

border-radius:18px;

}

.single-testimonial .thumb img{

width:80px;

height:80px;

}

.single-testimonial .desc h4{

font-size:20px;

}

.single-testimonial .desc p{

font-size:14px;

line-height:26px;

}

}
