body{
    background:#f4f7fb;
    font-family:Segoe UI;
}

#intro{
    position:fixed;
    z-index:9999;
    background:#0f172a;
    width:100%;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    animation:fadeout 3s forwards;
}

#intro-logo{
    width:200px;
    animation:zoom 3s forwards;
}

@keyframes zoom{
    0%{
        transform:scale(3);
    }

    100%{
        transform:scale(1);
    }
}

@keyframes fadeout{
    0%,80%{
        opacity:1;
    }

    100%{
        opacity:0;
        visibility:hidden;
    }
}

.swiper{
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

table img{
    width:50px;
}

.btn{
    border-radius:10px;
}
