.elementor-4998 .elementor-element.elementor-element-c70ec5e{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;}.elementor-4998 .elementor-element.elementor-element-c70ec5e:not(.elementor-motion-effects-element-type-background), .elementor-4998 .elementor-element.elementor-element-c70ec5e > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-accent );}.elementor-4998 .elementor-element.elementor-element-dcdc4ae{--display:flex;--position:absolute;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );top:10%;}body:not(.rtl) .elementor-4998 .elementor-element.elementor-element-dcdc4ae{left:0px;}body.rtl .elementor-4998 .elementor-element.elementor-element-dcdc4ae{right:0px;}:root{--page-title-display:none;}/* Start custom CSS */.cube{
    position: relative;
    height: 300px;
    width: 300px;
    transform-style: preserve-3d;
    transform: rotateX(-30deg);
    animation: animate 4s linear  infinite ;
}

.cube div{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

@keyframes animate {
    
    0%{
        transform: rotateX(-30deg) rotateY(0deg);
    }
    100%{
        transform: rotateX(-30deg) rotateY(360deg);
    }
}

.cube div span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient( black, rgb(0, 255, 0)); */
    /* background: linear-gradient( to left, black, red, green, blue) ; */
    transform: rotateY( calc(90deg * var(--i)) ) translateZ(150px);
}

.cube div span.red {
    background: linear-gradient( black, red) ;
}
.cube div span.green {
    background: linear-gradient( black, rgb(0, 255, 0)) ;
}
.cube div span.blue {
    background: linear-gradient( black, rgb(0, 0, 255)) ;
}
.cube div span.yellow {
    background: linear-gradient( black, rgb(255, 255, 0)) ;
}

.cube div span.white {
    background: linear-gradient( black, rgb(255, 255, 255)) ;
}

.top{
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: rgb(26, 26, 26);
    transform: rotateX(90deg) translateZ(150px);
}

.top::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    /* background: rgb(0, 255, 0); */
    transform: translateZ( -380px ) ;
    filter: blur(20px);
    /* box-shadow: 0 0 120px rgb(0, 255, 0, 0.2),
    0 0 200px rgb(0, 255, 0, 0.4),
    0 0 300px rgb(0, 255, 0, 0.6),
    0 0 400px rgb(0, 255, 0, 0.8),
    0 0 500px rgb(0, 255, 0, 1);*/
} 



.top.red::before{
    background: red;
    box-shadow: 0 0 120px rgb(255, 0, 0, 0.2),
    0 0 200px rgb(255, 0, 0, 0.4),
    0 0 300px rgb(255, 0, 0, 0.6),
    0 0 400px rgb(255, 0, 0, 0.8),
    0 0 500px rgb(255, 0, 0, 1);
}

.top.green::before{
    background: green;
    box-shadow: 0 0 120px rgb(0, 255, 0, 0.2),
    0 0 200px rgb(0, 255, 0, 0.4),
    0 0 300px rgb(0, 255, 0, 0.6),
    0 0 400px rgb(0, 255, 0, 0.8),
    0 0 500px rgb(0, 255, 0, 1);
}
.top.yellow::before{
    background: yellow;
    box-shadow: 0 0 120px rgb(255, 255, 0, 0.2),
    0 0 200px rgb(255, 255, 0, 0.4),
    0 0 300px rgb(255, 255, 0, 0.6),
    0 0 400px rgb(255, 255, 0, 0.8),
    0 0 500px rgb(255, 255, 0, 1);
}
.top.blue::before{
    background: blue;
    box-shadow: 0 0 120px rgb(0, 0, 255, 0.2),
    0 0 200px rgb(0, 0, 255, 0.4),
    0 0 300px rgb(0, 0, 255, 0.6),
    0 0 400px rgb(0, 0, 255, 0.8),
    0 0 500px rgb(0, 0, 255, 1);
}

.top.white::before{
    background: white;
    box-shadow: 0 0 120px rgb(255, 255, 255, 0.2),
    0 0 200px rgb(255, 255, 255, 0.4),
    0 0 300px rgb(255, 255, 255, 0.6),
    0 0 400px rgb(255, 255, 255, 0.8),
    0 0 500px rgb(255, 255, 255, 1);
}

div.options button {
    padding: 5px 15px;
    margin: 0 20px;
    font-size: 16px;
    color: white;
    background: black;
    border: 2px solid white;
    border-radius: 15px;
    cursor: pointer;
}

div.options button:hover{
    background: white;
    color: black;
}/* End custom CSS */