* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif !important;
}

.splash {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.splash img {
    max-width: 180px !important;
    max-height: 180px !important;
    vertical-align: middle;
    animation-duration: 2500ms;
    transform-origin: 50% 50%;
    transition-timing-function: linear;
    animation-iteration-count: 1;
    animation-name: zoom-in;
    will-change: transform;
}


.splash .loader {
    width: 100%;
    height: 4px;
    background-color: #F4F4F4;
    position: absolute;
    top: 0;
    overflow: hidden;
}

.splash .loader .progress {
    position: absolute;
    bottom: 0;
    top: 0;
    width: 50%;
    background-color: #F6A35D;
    border-radius: 9999px;
    animation-duration: 1.4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-name: load-animation;
}

.splash img {
    margin: auto;
}


.content {
    display: flex;
    opacity: 0;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
}

.content::before {
    content: '';
    background-color: #F6A35D;
    width: 100%;
    height: 50%;
    position: fixed;
    top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    z-index: -1;
}



.content .anim-holder {
    max-width: 90%;
    max-height: 90%;

}

.content.animate-in img {
    opacity: 1;
    transition: opacity 0.4s ease-in;
}

.content img {
    width: 100%;
    height: 100%;
    opacity: 0;
}


.hide {
    display: none;
}

.show {
    opacity: 1;
    width: 100%;
    height: 100%;
    transition: opacity 0.35s ease-in-out;
}


@keyframes load-animation {
    from {
        left: -50%;
    }

    to {
        left: 100%;
    }
}

@keyframes zoom-in {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.1)
    }
}

.dot {
    /* font-family: system-ui, sans-serif; */
    font-size: 40px;
    color: white;
    text-align: center;
    padding-top: 40px;
    font-weight: 400;
}