/**
    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, 0.0035rem + 4.1638vw, 5rem); /*  Min-20 & Max-80 */ }

.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 { display: inline-block; font-size: clamp(1.75rem, 1.4615rem + 1.2821vw, 3rem); /* Min-28 & Max-48 */
    font-weight: var(--wdt-elementor-typo-primary-font-weight); font-family: var(--wdt-elementor-typo-primary-font-family); text-transform: capitalize; line-height: 1; }

.wdt-animation-item.text-item,
.wdt-animation-item.text-item a { color: var(--wdt-elementor-color-primary); text-decoration: none !important; }
.wdt-animation-item.text-item a:hover { color: var(--wdt-elementor-color-accent); }

.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.2535rem + 4.1638vw, 11.25rem); /* Min-120 & Max-180 */ }
.wdt-dark-bg .wdt-animation-item.icon-item{color: var(--wdtAccentTxtColor);     transition: var(--wdt-Ad-Transition);}
.wdt-dark-bg .wdt-animation-item.icon-item:hover {
    opacity: 1;
    transition: var(--wdt-Ad-Transition);
}
.wdt-dark-bg .wdt-animation-item.icon-item:hover:not(:hover) {
    opacity: 0.3;
    transition: var(--wdt-Ad-Transition);
}

.wdt-animation-item.icon-item svg { width: 1em; height: auto; fill: currentColor; }


/**
    Animation Image Style 
*/

.wdt-animation-item.image-item img { object-fit: cover; object-position: center;
    width: clamp(1.75rem, 1.4615rem + 1.2821vw, 3rem); /* Min-28 & Max-48 */
    height: clamp(1.75rem, 1.4615rem + 1.2821vw, 3rem); /* Min-28 & Max-48 */ }

/* when container is hovered, dim ALL siblings except the hovered one */
.wdt-dark-bg:hover .wdt-animation-item.icon-item:not(:hover) {
    opacity: 0.3;
    transition: var(--wdt-Ad-Transition);
}

/* Animation text - Icon & text */

.wdt-animation-wrapper .wdt-animation-item.icon-text-item {
    padding: clamp(0.75rem, 0.5422rem + 0.694vw, 1.375rem) /*22px - 12px*/ 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.875rem, 1.4595rem + 1.3879vw, 3.125rem) /*50px - 30px*/;
    color: var(--wdtSecondaryColor);
}
.wdt-animation-wrapper .wdt-animation-item.icon-text-item span{
    font-size: clamp(1.5rem, 1.1676rem + 1.1103vw, 2.5rem) /*40px - 24px*/;
    font-family:var(--wdtFontTypo_Alt);
    font-weight: var(--wdtFontWeight_Ext);
    line-height: var(--wdtLineHeight_Ext);
}
.wdt-animation-wrapper .wdt-animation-item.icon-text-item svg{
    width: 50px;
    height: 50px;
}
.wdt-dark-bg .wdt-animation-wrapper .wdt-animation-item.icon-text-item {
    color: var(--wdtAccentTxtColor);
}
/**
    Responsive - AT Media Query
    --------------------------------
*/

