﻿
/* WAVES */
/* ------------------------------------------------------------------------ */

.hero_area {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1099;
    pointer-events: none;
}

.waves {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
}

.parallax > use {
    animation: move-forever 100s cubic-bezier(.55, .5, .45, .5) infinite;
}

.no-animation .parallax > use {
    animation: none !important;
}

    .parallax > use:nth-child(1) {
        animation-delay: -8s;
        animation-duration: 28s;
    }

    .parallax > use:nth-child(2) {
        animation-delay: -12s;
        animation-duration: 40s;
    }

    .parallax > use:nth-child(3) {
        animation-delay: -16s;
        animation-duration: 52s;
    }

    .parallax > use:nth-child(4) {
        animation-delay: -20s;
        animation-duration: 80s;
    }

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

@media (max-width: 768px) {
    .hero_area {
        height: 80px;
    }
}


/* FOOTER */
/* ------------------------------------------------------------------------ */

.footer, .footer-login {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 0px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
}

.footer {
    z-index: 1100 !important;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: #fff;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
}

    .footer-container .footer-line1 {
        margin-bottom: 0px;
    }

    .footer-container .footer-line1 a, .footer-container .footer-line2 a {
        text-decoration: none;
        margin: 0px;
        color: #ffffff;
    }

        .footer-container .footer-line1 a:hover, .footer-container .footer-line2 a:hover {
            color: #38A8E0;
        }