/*--------------------------------------------------------------
    Loader
--------------------------------------------------------------*/

    .pre-loader {
        height: 100%;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999991;
        background-color: #fff;
    }

    .loader-inner {
        padding: 0px;
        position: absolute;
        left: 50%;
        top: 50%;
        text-align: center;
        width: 100%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .loader-text {
        display: inline-block;
        font-family: var(--wdtFontTypo_Base);
        font-size: clamp(1.875rem, 0.1442rem + 7.6923vw, 9.375rem);
        font-weight: bold !important;
        letter-spacing: 1px;
        line-height: normal;
        text-transform: uppercase;
        color: #2953ab;
        position: relative;
        overflow: hidden;
        /* background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-fill-color: transparent;
        -webkit-animation: textclip 1.5s linear infinite;
        animation: textclip 1.5s linear infinite; */
    }
    .loader-text:before {
        content: attr(data-preloader);
        display: block;
        color: var(--wdtAccentTxtColor);
        animation: preloader 3s infinite backwards;
        -webkit-animation: preloader 3s infinite backwards;
        position: absolute;
        top: 0;
        left: 0;
    }
    .pre-loader .loader-text:nth-child(2):before{ animation-delay: 0.3s; -moz-animation-delay: 0.3s; -webkit-animation-delay: 0.3s; -ms-animation-delay: 0.3s; }
	.pre-loader .loader-text:nth-child(3):before { animation-delay: 0.45s; -moz-animation-delay: 0.45s; -webkit-animation-delay: 0.45s; -ms-animation-delay: 0.45s; }
	.pre-loader .loader-text:nth-child(4):before { animation-delay: 0.6s; -moz-animation-delay: 0.6s; -webkit-animation-delay: 0.6s; -ms-animation-delay: 0.6s; }
	.pre-loader .loader-text:nth-child(5):before { animation-delay: 0.75s; -moz-animation-delay: 0.75s; -webkit-animation-delay: 0.75s; -ms-animation-delay: 0.75s; }
	.pre-loader .loader-text:nth-child(6):before { animation-delay: 0.9s; -moz-animation-delay: 0.9s; -webkit-animation-delay: 0.9s; -ms-animation-delay: 0.9s; }
	.pre-loader .loader-text:nth-child(7):before { animation-delay: 1.05s; -moz-animation-delay: 1.05s; -webkit-animation-delay: 1.05s; -ms-animation-delay: 1.05s; } 
    @keyframes preloader {
        0%, 100% { transform: rotateY(-90deg) scale(1); opacity: 0; }
	  20%, 50% {	transform: rotateY(0) scale(1); opacity: 1; }
	  75% { transform: rotateY(0) scale(0.8); opacity: 0; }
    }
    @-webkit-keyframes preloader {
        0%, 100% { transform: rotateY(-90deg) scale(1); opacity: 0; }
        20%, 50% {	transform: rotateY(0) scale(1); opacity: 1; }
        75% { transform: rotateY(0) scale(0.8); opacity: 0; }
    }

    /* -webkit-@keyframes textclip {
        to {
            background-position: 200% center;
        }
    }

    @keyframes textclip {
        to {
            background-position: 200% center;
        }
    } */


/*--------------------------------------------------------------
    Accents
--------------------------------------------------------------*/

    .pre-loader { background-color: var(--wdtBodyBGColor); }
    /* .loader-text { background-image: linear-gradient(to right, var(--wdtPrimaryColor) 10%, var(--wdtHeadAltColor) 50%, var(--wdtPrimaryColor) 60%); } */


/*--------------------------------------------------------------
    Responsive
--------------------------------------------------------------*/

    /*----*****---- << Mobile (Landscape) >> ----*****----*/

    /* Note: Design for a width of 480px */

    @media only screen and (min-width: 480px) and (max-width: 767px) {

    }


    /* Common Styles for the devices below 479px width */

    @media only screen and (max-width: 479px) {

    }