.loader-container{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background: rgba(255,255,255,.75);
    display: none;
}
.loader-container.show{
    display: block;
}
.box-container {
    position: absolute;
    left: 50%;
    top: 50%;
    width:96px;
    height: 96px;
    transform: translate(-50%,-50%);
}
.boxes {
    --size: 32px;
    --duration: 800ms;
    height: calc(var(--size) * 2);
    width: calc(var(--size) * 3);
    position: fixed;
    transform-style: preserve-3d;
    transform-origin: 50% 50%;
    margin-top: calc(var(--size) * 1.5 * -1);
    transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
}
.boxes .box {
    width: var(--size);
    height: var(--size);
    top: 0;
    left: 0;
    position: absolute;
    transform-style: preserve-3d;
}
.boxes .box:nth-child(1) {
    transform: translate(100%, 0);
    animation: box1 var(--duration) linear infinite;
}
.boxes .box:nth-child(2) {
    transform: translate(0, 100%);
    animation: box2 var(--duration) linear infinite;
}
.boxes .box:nth-child(3) {
    transform: translate(100%, 100%);
    animation: box3 var(--duration) linear infinite;
}
.boxes .box:nth-child(4) {
    transform: translate(200%, 0);
    animation: box4 var(--duration) linear infinite;
}
.boxes .box > div {
    --background: rgba(16,30,160,1);
    --top: auto;
    --right: auto;
    --bottom: auto;
    --left: auto;
    --translateZ: calc(var(--size) / 2);
    --rotateY: 0deg;
    --rotateX: 0deg;
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--background);
    top: var(--top);
    right: var(--right);
    bottom: var(--bottom);
    left: var(--left);
    transform: rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
}
.boxes .box > div:nth-child(1) {
    --top: 0;
    --left: 0;
}
.boxes .box > div:nth-child(2) {
    --background:#5C8DF6;
    --right: 0;
    --rotateY: 90deg;
}
.boxes .box > div:nth-child(3) {
    --background: #5C8DF6;
    --rotateX: -90deg;
}
.boxes .box > div:nth-child(4) {
    --background: rgba(16,46,111,1);
    --top: 0;
    --left: 0;
    --translateZ: calc(var(--size) * 3 * -1);
}
        
    
.box-text{
    position: absolute;
    margin-top: 2rem!important;
    color: #63360D!important;
    font-size: 24px;
    margin-left: -32px;
    text-align: center;
}
@keyframes box1 {
    0%,
    50% {
        transform: translate(100%, 0);
    }
    100% {
        transform: translate(200%, 0);
    }
}

@keyframes box2 {
    0%{
        transform: translate(0, 100%);
    }
    50% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100%, 0);
    }
}

@keyframes box3 {
    0%,
    50% {
        transform: translate(100%, 100%);
    }
    100% {
        transform: translate(0, 100%);
    }
}

@keyframes box4 {
    0%{
        transform: translate(200%, 0);
    }
    50% {
        transform: translate(200%, 100%);
    }
    100% {
        transform: translate(100%, 100%);
    }
}

html {
    -webkit-font-smoothing: antialiased;
}

*,*:after,*:before {
    box-sizing: border-box;
}




#link {color: #E45635;display:block;font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif;text-align:center; text-decoration: none;}
#link:hover {color: #CCCCCC}

#link, #link:hover {-webkit-transition: color 0.5s ease-out;-moz-transition: color 0.5s ease-out;-ms-transition: color 0.5s ease-out;-o-transition: color 0.5s ease-out;transition: color 0.5s ease-out;}

/*==== LAODING NEW CSS ======*/

@keyframes l4 {
    0% {
        inset: 0 45px 45px 0;
    }
    12.5% {
        inset: 0 45px 0 0;
    }
    25% {
        inset: 45px 45px 0 0;
    }
    37.5% {
        inset: 45px 0 0 0;
    }
    50% {
        inset: 45px 0 0 45px;
    }
    62.5% {
        inset: 0 0 0 45px;
    }
    75% {
        inset: 0 0 45px 45px;
    }
    87.5% {
        inset: 0 0 45px 0;
    }
    100% {
        inset: 0 45px 45px 0;
    }
}
@keyframes loading-text-opacity {
    0%  {opacity: 0}
    20% {opacity: 0}
    50% {opacity: 1}
    100%{opacity: 0}
}

@-moz-keyframes loading-text-opacity {
    0%  {opacity: 0}
    20% {opacity: 0}
    50% {opacity: 1}
    100%{opacity: 0}
}

@-webkit-keyframes loading-text-opacity {
    0%  {opacity: 0}
    20% {opacity: 0}
    50% {opacity: 1}
    100%{opacity: 0}
}

@-o-keyframes loading-text-opacity {
    0%  {opacity: 0}
    20% {opacity: 0}
    50% {opacity: 1}
    100%{opacity: 0}
}
.loader-container .loader-new {
    width: 85px;
    aspect-ratio: 1;
    position: relative;
}
.loader-container .loader-new:before,
.loader-container .loader-new:after {
    content: "";
    position: absolute;
    border-radius: 50px;
    box-shadow: 0 0 1px 5px inset #63360D;
    background-color: rgba(255,255,255,.5);
    animation: l4 2.5s infinite;
}
.loader-container .loader-new:after {
    animation-delay: -1.25s;
}
.loader-container .loader-text {
    -moz-animation: loading-text-opacity 2s linear 0s infinite normal;
    -o-animation: loading-text-opacity 2s linear 0s infinite normal;
    -webkit-animation: loading-text-opacity 2s linear 0s infinite normal;
    animation: loading-text-opacity 2s linear 0s infinite normal;
}

