.animation-wrapper {
    position: relative;
    width: 100%;
    height: 2000px;
    overflow: hidden;
}

.half .animation-wrapper {
    position: relative;
    width: 100%;
    height: 1500px;
    overflow: hidden;
}

#signet.animation-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}


@media only screen and (max-width: 1200px) {
    .animation-wrapper {
        position: relative;
        width: 100%;
        height: 1500px;
        overflow: hidden;
    }

    .half .animation-wrapper {
        position: relative;
        width: 100%;
        height: 750px;
        overflow: hidden;
    }
}

@media only screen and (max-width: 900px) {
    .animation-wrapper {
        position: relative;
        width: 100%;
        height: 1000px;
        overflow: hidden;
    }

    .half .animation-wrapper {
        position: relative;
        width: 100%;
        height: 700px;
        overflow: hidden;
    }
}

@media only screen and (max-width: 768px) {
    .animation-wrapper {
        position: relative;
        width: 100%;
        height: 850px;
        overflow: hidden;
    }

    .half .animation-wrapper {
        position: relative;
        width: 100%;
        height: 850px;
        overflow: hidden;
    }
}

@media only screen and (max-width: 450px) {
    .animation-wrapper {
        position: relative;
        width: 100%;
        height: 500px;
        overflow: hidden;
    }

    .half .animation-wrapper {
        position: relative;
        width: 100%;
        height: 500px;
        overflow: hidden;
    }
}

.lottie-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    /* ensures the SVG doesn't overflow */
    display: flex;
    align-items: center;
    justify-content: center;
}

.lottie-layer svg {
    height: 100%;
    width: auto;
    min-width: 100%;
    /* ensures horizontal fill */
    object-fit: cover;
    /* just in case for future Lottie renderers */
}


.gfm-container {}

.gfm-box {}