*{font-family:'Poppins',sans-serif}.mainBg{background:#17263a;background:#17263a;background:linear-gradient(151deg,rgba(23,38,58,1) 28%,rgba(25,63,113,1) 100%)}.mainBg::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.2);z-index:1}.boxContent{position:relative;z-index:10}.boxContent .title{font-size:60px;font-weight:700;animation:showText .5s alternate both}.boxContent .subtitle{font-size:24px;font-weight:600;animation:showText .5s .3s alternate both}@media (min-width:576px){.boxContent .title{font-size:70px}.boxContent .subtitle{font-size:30px}}.boxContent .title span,.boxContent .subtitle span{color:#66ae05}.icons .sett1{position:absolute;top:30px;left:35px;color:#fff;width:30px;height:30px;animation:rotate2 10s infinite}.icons .sett2{position:absolute;top:50px;left:50px;color:#66ae05;width:60px;height:60px;animation:rotate 10s infinite}@keyframes rotate {
    0% {
        transform: rotate(0);
    } 
    100% {
        transform: rotate(360deg);
    }
}@keyframes rotate2 {
    0% {
        transform: rotate(0);
    } 
    100% {
        transform: rotate(-360deg);
    }
}@keyframes showText {
    0% {
        transform: translateY(-40px);
        opacity: 0;
    } 
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}