.splash .bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.splash .bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.splash .bg video::poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.splash main {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash .wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash .wrapper .inner {
    position: relative;
    background: var(--blue-primary);
    border-radius: 100%;
}

.splash .wrapper .inner .logo {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash .wrapper .inner .actions {
    position: absolute;
    bottom: 12.5%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash .wrapper .inner .image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--yellow-primary);
    border-radius: 100%;
}

.splash .wrapper .inner .image img {
    background: var(--blue-primary);
    border-radius: 100%;
    max-width: 80vw;
    max-height: 80vh;
    object-fit: cover;
}

.splash .wrapper .inner,
.splash .wrapper .inner .image,
.splash .wrapper .inner .image img {
    padding: 5px;
}

@media(min-width: 768px) {

    .splash .wrapper .inner,
    .splash .wrapper .inner .image,
    .splash .wrapper .inner .image img {
        padding: 10px;
    }
}

@media(max-width: 768px) {
    .splash .btn-warning {
        padding: 5px 10px;
        font-size: 14px;
    }
}

/* test */