/** Marquee Animation Style */

.wdt-animation-wrapper { position: relative; display: flex; flex-flow: row nowrap; overflow: visible; overflow-x: clip;   -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%); -webkit-transition: var(--wdtBaseTransition);transition: var(--wdtBaseTransition);}

.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(0.875rem, 0.425rem + 2.25vw, 3.125rem);/*  Min-14 & Max-50 */ }

.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 > div .wdt-animation-item.double-icon-item svg {
    transition-duration: 250ms;
}
.wdt-animation-wrapper > div .wdt-animation-item.double-icon-item svg:nth-child(2) {
    color: var(--wdtAccentTxtColor);
    position: absolute;
    transform: translateY(-100%);
    --webkit-transform: translateY(-100%);
    filter: blur(8px);  
    opacity: 0;
}
.wdt-dark-bg .wdt-animation-wrapper .wdt-animation-item.double-icon-item svg:nth-child(2){color: var(--wdtAccentTxtColor);}
.wdt-animation-wrapper .wdt-animation-item.double-icon-item:hover svg:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    --webkit-transform: translateY(0);
    filter: blur(0);  
}
.wdt-animation-wrapper .wdt-animation-item.double-icon-item:hover svg:nth-child(1) {
    transform: translateY(100%);
    --webkit-transform: translateY(100%);
    opacity: 0;
}

  
.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(--wdtFontWeight_Alt); font-family: var(--wdtFontTypo_Alt); text-transform: capitalize; line-height: 1; }
.wdt-dark-bg .wdt-animation-item.text-item,
.wdt-dark-bg .wdt-animation-item.text-item a{color: var(--wdtAccentTxtColor);}

.wdt-animation-item.text-item,
.wdt-animation-item.text-item a { color: var(--wdtHeadAltColor); text-decoration: none !important; font-size: clamp(6rem, 3.1576rem + 12.9936vw, 18.75rem);/* 96 - 300 */ }
.wdt-cust-animation .wdt-animation-item.text-item,
.wdt-cust-animation .wdt-animation-item.text-item a{font-size: clamp(1.5rem, 1.375rem + 0.625vw, 2.125rem);}/* 24 - 34 */
.wdt-cust-animation .wdt-animation-item.text-item + .wdt-animation-item.icon-item{font-size: clamp(1.5rem, 1.375rem + 0.625vw, 2.125rem);}/* 24 - 34 */
.wdt-cust-animation .wdt-animation-wrapper .wdt-animation-item{padding: 0 clamp(0.625rem, 0.5rem + 0.625vw, 1.25rem);}/* 10 - 20 */
.wdt-animation-item.text-item a:hover { color: var(--wdtPrimaryColor); }

/** Animation Icon Style */

.wdt-animation-item.icon-item { display: flex; align-items: center; justify-content: center;
    font-size: clamp(1.25rem, 1.075rem + 0.875vw, 2.125rem);/* Min-20 & Max-34 */ color: var(--wdtAccentTxtColor); transition: var(--wdt-Ad-Transition); overflow: hidden;}
.wdt-dark-bg .wdt-animation-item.icon-item:hover{ color: var(--wdtLinkHoverColor);}   
.wdt-animation-item.icon-item:hover{    color: var(--wdtSecondaryColor);}   

.wdt-animation-item.icon-item svg { width: auto; fill: currentColor; transition: var(--wdt-Ad-Transition);}
.wdt-animation-item.text-item + .wdt-animation-item.icon-item {
   font-size: clamp(4.375rem, 1.875rem + 12.5vw, 16.875rem);/* 70 - 270 */
}
.wdt-animation-main-marqee .wdt-animation-item.text-item + .wdt-animation-item.icon-item svg{ animation: wdt-spin-rev 10s linear infinite; -webkit-animation: wdt-spin-rev 10s linear infinite; }
.wdt-animation-main-marqee.right-to-left .wdt-animation-item.text-item + .wdt-animation-item.icon-item svg{ animation: wdt-spin-rev-alt 10s linear infinite; -webkit-animation: wdt-spin-rev-alt 10s linear infinite; }

@keyframes wdt-spin-rev { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg); }}
@-webkit-keyframes wdt-spin-rev { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg); }}

@keyframes wdt-spin-rev-alt { 100% { transform: rotate(-360deg); -webkit-transform: rotate(-360deg); }}
@-webkit-keyframes wdt-spin-rev-alt { 100% { transform: rotate(-360deg); -webkit-transform: rotate(-360deg); }}


/** 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 */ }

/** Responsive - AT Media Query -------------------------------- */