/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.fade, .fade-up, .fade-down, .fade-left, .fade-right, .fade-zoomin, .fade-zoomout, .fade-zoomoutleft, .fade-zoomoutright, .cursor-up-left, .fade-rotate-cw, .fade-left-opacity-01, .fade-right-long-loop {
    opacity: 0;
}

.hs-baymax-editor .animated, .inpage-editor-active-field .animated
{
    opacity: 1 !important;
}

.fade.start-animation {
    animation: FADE 0.5s cubic-bezier(0.35, 0.81, 0.41, 1) forwards;
}

.fade-up.start-animation {
    animation: FADE-UP 0.5s cubic-bezier(0.35, 0.81, 0.41, 1) forwards;
}

.fade-down.start-animation {
    animation: FADE-DOWN 0.5s cubic-bezier(0.35, 0.81, 0.41, 1) forwards;
}

.fade-left.start-animation {
    animation: FADE-LEFT 0.5s cubic-bezier(0.35, 0.81, 0.41, 1) forwards;
}

.fade-right.start-animation {
    animation: FADE-RIGHT 0.5s cubic-bezier(0.35, 0.81, 0.41, 1) forwards;
}

.fade-zoomin.start-animation {
    animation: FADE-ZOOMIN 0.5s cubic-bezier(0.35, 0.81, 0.41, 1) forwards;
}

.fade-zoomout.start-animation {
    animation: FADE-ZOOMOUT 0.5s cubic-bezier(0.35, 0.81, 0.41, 1) forwards;
}

.fade-zoomoutleft.start-animation {
    animation: FADE-ZOOMOUTLEFT 0.5s cubic-bezier(0.35, 0.81, 0.41, 1) forwards;
}

.fade-zoomoutright.start-animation {
    animation: FADE-ZOOMOUTRIGHT 0.5s cubic-bezier(0.35, 0.81, 0.41, 1) forwards;
}

.fade-rotate-cw.start-animation {
    animation: FADE_ROTATE_CW 0.5s cubic-bezier(0.35, 0.81, 0.41, 1) forwards;
    transform-origin: bottom right;
}

.cursor-up-left.start-animation {
    animation: CURSOR-UP_LEFT 1.5s ease-out forwards;
    transform-origin: top left;
}

.fade-left-opacity-01.start-animation
{
    animation: FADE-LEFTOPACITY01 5s cubic-bezier(0.35, 0.81, 0.41, 1) forwards infinite;
}

.fade-right-long-loop.start-animation
{
    animation: FADE-RIGHTLOONGLOOP 5s cubic-bezier(0.35, 0.81, 0.41, 1) forwards infinite;
}

@keyframes FADE-LEFTOPACITY01 {
    0% {
        opacity: 0;
        transform: translate(100px, 0px);
    }


    10%
    {
        opacity: 1;
        transform: translate(0, 0);
    }

    40%
    {

        opacity: 1;
        transform: translate(0, 0);

    }

    50% {
        opacity: 0.1;
        transform: translate(0, 0);
    }

    90% {
        opacity: 0.1;
        transform: translate(0, 0);
    }

    100% {
        opacity: 0;
        transform: translate(0, 0);
    }
}

@keyframes FADE-RIGHTLOONGLOOP {
    40% {
        opacity: 0;
        transform: translate(-100px, 0px);
    }
    50% {
        opacity: 1;
        transform: translate(0, 0);
    }

    90% {
        opacity: 1;
        transform: translate(0, 0);
    }

    100% {
        opacity: 0;
        transform: translate(0, 0);
    }
}



@keyframes CURSOR-UP_LEFT {
    0% {
        opacity: 0;
        transform: translate(100px, 100px);
    }

    10%{opacity: 1;
        transform: translate(85px, 90px);
    }

    50%
    {
        transform: translate(40px, 60px);
    }

    90%
    {
        transform: translate(0, 0) scale(1);
    }

    95%
    {
        transform: translate(0, 0) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

@keyframes FADE {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes FADE-UP {
    0% {
        opacity: 0;
        transform: translate(0, 100px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes FADE_ROTATE_CW {
    0% {
        opacity: 0;
        transform: rotate(-30deg);
    }
    100% {
        opacity: 1;
        transform: rotate(0);
    }
}

@keyframes FADE-DOWN {
    0% {
        opacity: 0;
        transform: translate(0, -100px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes FADE-LEFT {
    0% {
        opacity: 0;
        transform: translate(100px, 0px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes FADE-RIGHT {
    0% {
        opacity: 0;
        transform: translate(-100px, 0px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes FADE-ZOOMIN {
    0% {
        opacity: 0;
        transform: scale(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes FADE-ZOOMOUT {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes FADE-ZOOMOUTLEFT {
    0% {
        opacity: 0;
        transform: scale(0.8) translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

@keyframes FADE-ZOOMOUTRIGHT {
    0% {
        opacity: 0;
        transform: scale(0.8) translateX(100px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}



.start-animation.a-d-200, .start-animation.a-d-200 * {
    animation-delay: 200ms;
}
.start-animation.a-d-400, .start-animation.a-d-400 * {
    animation-delay: 400ms;
}
.start-animation.a-d-600, .start-animation.a-d-600 * {
    animation-delay: 600ms;
}
.start-animation.a-d-800, .start-animation.a-d-800 * {
    animation-delay: 800ms;
}
.start-animation.a-d-1000, .start-animation.a-d-1000 * {
    animation-delay: 1000ms;
}
.start-animation.a-d-1200, .start-animation.a-d-1200 * {
    animation-delay: 1200ms;
}
.start-animation.a-d-1400, .start-animation.a-d-1400 * {
    animation-delay: 1400ms;
}
.start-animation.a-d-1600, .start-animation.a-d-1600 * {
    animation-delay: 1600ms;
}
.start-animation.a-d-1800, .start-animation.a-d-1800 * {
    animation-delay: 1800ms;
}
.start-animation.a-d-2000, .start-animation.a-d-2000 * {
    animation-delay: 2000ms;
}
.start-animation.a-d-2200, .start-animation.a-d-2200 * {
    animation-delay: 2200ms;
}
.start-animation.a-d-2400, .start-animation.a-d-2400 * {
    animation-delay: 2400ms;
}
.start-animation.a-d-2600, .start-animation.a-d-2600 * {
    animation-delay: 2600ms;
}
.start-animation.a-d-2800, .start-animation.a-d-2800 * {
    animation-delay: 2800ms;
}
.start-animation.a-d-3000, .start-animation.a-d-3000 * {
    animation-delay: 3000ms;
}
.start-animation.a-d-3200, .start-animation.a-d-3200 * {
    animation-delay: 3200ms;
}
.start-animation.a-d-3400, .start-animation.a-d-3400 * {
    animation-delay: 3400ms;
}
.start-animation.a-d-3600, .start-animation.a-d-3600 * {
    animation-delay: 3600ms;
}
.start-animation.a-d-3800, .start-animation.a-d-3800 * {
    animation-delay: 3800ms;
}
.start-animation.a-d-4000, .start-animation.a-d-4000 * {
    animation-delay: 4000ms;
}

.start-animation.a-d-4200, .start-animation.a-d-4200 * {
    animation-delay: 4200ms;
}

.parallax
{
    transition: transform 0.3s ease-out;
    width: 100%;
}
.column.plx
{
    pointer-events: none;
}

.parallax-image-container
{
    pointer-events: none;
}
.parallax-image-container.clip-bottom
{
    display: flex;
    align-items: flex-end;
}

.parallax-image-container.clip-bottom .parallax-clip-container
{
    display: flex;
    align-items: flex-end;
    height: 1000px;
    overflow: hidden;
}

.parallax-image-container.clip-top
{
    display: flex;
    align-items: flex-start;
}

.parallax-image-container.clip-top .parallax-clip-container
{
    display: flex;
    align-items: flex-start;
    height: 1000px;
    overflow: hidden;
}

.moving-element:not(.double)
{
    transition: transform 0.3s ease-out, opacity 0.3s 0.3s ease-in-out;
}
.moving-element.double{
    transition:  opacity 0.3s 0.3s ease-in-out;
}