/******* Do not edit this file *******
Woody ad snippets CSS and JS
Saved: Nov 26 2019 | 06:30:55 */
.parallax {
    position: relative;
    overflow: hidden;
}

.parallax__layer {
    position: absolute;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}

.parallax__layer:nth-of-type(1) {
    background-image: url(/wp-content/uploads/2019/11/hot-air.png);
    width: 140px;
    top: 30%;
    left: 90%;
    animation: rot 10s infinite linear;
}

.parallax__layer:nth-of-type(2) {
    background-image: url(/wp-content/uploads/2019/11/hot-air-2.png);
    width: 100px;
    top: 40%;
    left: 90%;
    animation: rot 6s infinite linear;
}

@keyframes rot {
    from {
        transform: rotate(0deg) translate(-50px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translate(-50px) rotate(-360deg);
    }
}