/**
    Marquee Animation Style 
*/

.wdt-animation-wrapper { -webkit-mask-image: linear-gradient(to right, transparent 0%, var(--wdtHeadAltColor) 5%, var(--wdtHeadAltColor) 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, var(--wdtHeadAltColor) 5%, var(--wdtHeadAltColor) 95%, transparent 100%);
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    overflow: visible;
    overflow-x: clip; }

.wdt-animation-wrapper div[class*="-marqee"] { width: auto; flex: 0 0 auto; display: grid; grid-auto-flow: column; align-items: center; }

.wdt-animation-wrapper div[class*="-marqee"] .wdt-animation-item { display: inline-flex; flex: 0 0 auto; text-align: center; position: relative; }
.wdt-animation-wrapper .wdt-animation-item { padding: 0 clamp(1.25rem, 1rem + 1.25vw, 2.5rem); /*  Min-20 & Max-40 */ }

.wdt-animation-wrapper div[class*="-marqee"].right-to-left { 
    -webkit-animation: MarqueeLeft 24s linear infinite 0ms; animation: MarqueeLeft 24s linear infinite 0ms; }
.wdt-animation-wrapper div[class*="-marqee"].left-to-right { 
    -webkit-animation: MarqueeRight 24s linear infinite 0ms; animation: MarqueeRight 24s linear infinite 0ms; }
  
.wdt-animation-wrapper:hover div[class*="-marqee"] { -webkit-animation-play-state: paused; animation-play-state: paused; }

@keyframes MarqueeLeft { 
    from { margin-left: 0; } 
    to { margin-left: var(--wdt-marque-Margin-Width); } 
}
@keyframes MarqueeRight { 
    from { margin-left: var(--wdt-marque-Margin-Width); } 
    to { margin-left: 0; } 
}

/**
    Animation Text Style 
*/
.wdt-animation-item.text-item, .wdt-animation-item.text-item a {
    display: inline-block;
    font-size: clamp(3.125rem, 2.6802rem + 2.454vw, 5.625rem); /* Min-50 & Max-90 */
    font-weight: var(--wdt-elementor-typo-primary-font-weight);
    font-family: var(--wdt-elementor-typo-primary-font-family);
    text-transform: capitalize;
    line-height: var(--wdtLineHeight_Alt);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(var(--wdtHeadAltColorRgb), 0.3);
    -webkit-transition: var(--wdt-Safe-Transition);
    transition: var(--wdt-Safe-Transition);
 }

.wdt-animation-item.text-item:hover, .wdt-animation-item.text-item:hover a {color: var(--wdtLinkHoverColor);-webkit-text-stroke: 1px var(--wdtLinkHoverColor);background-color: var(--wdtPrimaryColor);}

.wdt-dark-bg .wdt-animation-item.text-item,
.wdt-dark-bg .wdt-animation-item.text-item a:not(:hover) { color: var(--wdt-elementor-color-white); }

/**
    Animation Icon Style 
*/

.wdt-animation-item.icon-item { 
    display: flex; align-items: center; justify-content: center; 
    font-size: clamp(7.5rem, 6.6104rem + 4.908vw, 12.5rem); /* Min-120 & Max-200 */
    width: auto; height: auto; color: rgba(var(--wdtHeadAltColorRgb), 0.6); 
    -webkit-transition: var(--wdt-Safe-Transition); transition: var(--wdt-Safe-Transition); }

.wdt-animation-item.icon-item:hover { color: var(--wdtHeadAltColor); }

.wdt-animation-item.icon-item svg { width: 1em; height: auto; fill: currentColor; }

/**
    Animation Image Style 
*/
.wdt-animation-item.image-item { border: 1px solid var(--wdtPrimaryColor); -webkit-border-radius: var(--wdtRadius_Full); border-radius: var(--wdtRadius_Full); padding: 20px; }
.wdt-animation-item.image-item img { 
    width: clamp(2.5rem, 2.25rem + 1.25vw, 3.75rem); /* Min-40 & Max-60 */ 
    height: clamp(2.5rem, 2.25rem + 1.25vw, 3.75rem); /* Min-40 & Max-60 */
 }



/* ===========================
    Vertical Animation Style
=========================== */

.wdt-animation-holder.vertical { overflow: hidden; max-height: 300px; }

.wdt-animation-holder.vertical .wdt-animation-wrapper { height: var(--wdt-marque-height); flex-direction: column; }

.wdt-animation-holder.vertical .wdt-animation-wrapper div[class*="-marqee"] { 
    display: flex; flex-direction: column; flex-wrap: nowrap; }

.wdt-animation-holder.vertical .wdt-animation-wrapper .wdt-animation-item.text-item { 
    display: block; writing-mode: vertical-lr; -webkit-transform: scale(-1); transform: scale(-1); white-space: nowrap; 
    padding: clamp(0.625rem, 0.5694rem + 0.3067vw, 0.9375rem) 0; /* Min-10 & Max-15 */ }

.wdt-animation-holder.vertical .wdt-animation-wrapper .wdt-animation-item.text-item a {
    writing-mode: vertical-lr; -webkit-transform: scale(-1); transform: scale(-1); white-space: nowrap; }

.wdt-animation-holder.vertical .wdt-animation-wrapper div[class*="-marqee"].top-to-bottom,
.wdt-animation-holder.vertical .wdt-animation-wrapper div[class*="-marqee"].top-to-bottom~div[class*="-cloned-marqee"] {
    -webkit-animation: MarqueeTop 24s linear infinite 0ms;
    animation: MarqueeTop 24s linear infinite 0ms;
}

.wdt-animation-holder.vertical .wdt-animation-wrapper div[class*="-marqee"].bottom-to-top,
.wdt-animation-holder.vertical .wdt-animation-wrapper div[class*="-marqee"].bottom-to-top~div[class*="-cloned-marqee"] {
    -webkit-animation: MarqueeBottom 24s linear infinite 0ms;
    animation: MarqueeBottom 24s linear infinite 0ms;
}

.wdt-animation-wrapper:hover div[class*="-marqee"] {
    -webkit-animation-play-state: paused !important;
    animation-play-state: paused !important;
}

@keyframes MarqueeTop {
    from {
        transform: translateY(var(--wdt-marque-Margin-height));
    }

    to {
        transform: translateY(0);
    }
}

@keyframes MarqueeBottom {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(var(--wdt-marque-Margin-height));
    }
}



/* ===========================
    Testimonial Animation Style
=========================== */
.wdt-animation-wrapper .wdt-animation-item.testimonial-item { 
    margin: 0 clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem); /*  Min-10 & Max-15 */
    padding: clamp(1.25rem, 1rem + 1.25vw, 2.5rem); /*  Min-20 & Max-40 */
    border: 1px solid var(--wdtBorderColor);
    -webkit-border-radius: var(--wdtRadius_4X);
    border-radius: var(--wdtRadius_4X);
    -webkit-transition: var(--wdt-Safe-Transition);
    transition: var(--wdt-Safe-Transition);
}
.wdt-animation-wrapper .wdt-animation-item.testimonial-item:hover {
    border-color: var(--wdtPrimaryColor);
}
 .wdt-animation-wrapper div[class*="-marqee"] .wdt-animation-item.testimonial-item { 
    display: flex; flex-direction: column-reverse; gap: 50px; text-align: start; height: 100%;
    justify-content: space-between; }
.wdt-animation-wrapper .wdt-animation-item.testimonial-item .testimonial-content-group .testimonial-description {
    display: inline-flex;
    width: 100%;
    max-width: 350px;
    color: var(--wdtHeadAltColor);
    font-weight: var(--wdtFontWeight_Ext);
}

.wdt-animation-wrapper .wdt-animation-item.testimonial-item .testimonial-media-content-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}
.wdt-animation-wrapper .wdt-animation-item.testimonial-item .testimonial-media-group .image-item img {
    width: 50px;
    height: 50px;
    -webkit-border-radius: var(--wdtRadius_Full);
    border-radius: var(--wdtRadius_Full);
    object-fit: cover;
    object-position: center;
}
.wdt-animation-wrapper .wdt-animation-item.testimonial-item .testimonial-media-group .testimonial-text {
    font-size: var(--wdtFontSize_H6);
    font-weight: var(--wdtFontWeight_H6);
    color: var(--wdtHeadAltColor);
}
.wdt-animation-wrapper .wdt-animation-item.testimonial-item .testimonial-media-group .testimonial-subtitle {
    font-size: var(--wdtFontSize_Base);
    font-weight: var(--wdtFontWeight_Ext);
    color: var(--wdtHeadAltColor);
}
.wdt-animation-wrapper .wdt-animation-item.testimonial-item .testimonial-media-group {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.wdt-animation-wrapper .wdt-animation-item.testimonial-item .wdt-rating-container .wdt-rating-count {
    font-size: var(--wdtFontSize_Base); font-weight: var(--wdtFontWeight_Ext); color: var(--wdtHeadAltColor);
}
.wdt-animation-wrapper .wdt-animation-item.testimonial-item .wdt-rating-container .wdt-rating-count:after {
    content: "\e806";
    position: relative;
    font-family: "SafeX Icons";
    color: #E09D2E;
    margin-left: 5px;
}