:root {
    --main-color: #166935;
    --dark-color: #041108;
    --text-color: #FCFCFC;

}

.page-loader {
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 999999;
    top: 0;
    left: 0;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    background-color: var(--dark-color);
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.spinner {
    width: 45px;
    height: 45px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
}

.spinner .double-bounce1,
.spinner .double-bounce2 {
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--text-color);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: ct-bounce 2s infinite ease-in-out;
    animation: ct-bounce 2s infinite ease-in-out;
}

.spinner .double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.image-animate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
    -khtml-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
    -moz-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
    -ms-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
    -o-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
    transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
    opacity: 0;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.image-animate.active {
    opacity: 1;
}

.image-animate div {
    position: absolute;
}

.image-animate .shape-animate2 {
    animation: animationFramesTwo 15s infinite linear alternate;
}

.image-animate .shape-animate1 {
    animation: animationFramesOne 15s infinite linear alternate;
}


.image-animate .shape-animate3 {
    animation: animationFramesThree 15s infinite linear alternate;
}

.image-animate .shape-animate4 {
    animation: animationFramesFour 15s infinite linear alternate;
}

@-moz-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@-ms-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@-webkit-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@-webkit-keyframes ct-bounce {

    0%,
    100% {
        -webkit-transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
    }
}

@keyframes ct-bounce {

    0%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

@keyframes animationFramesOne {
    0% {
        transform: translateX(0px);
    }

    25% {
        transform: translateX(-40px);
    }

    50% {
        transform: translateX(0px);
    }

    75% {
        transform: translateX(40px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes animationFramesTwo {
    0% {
        transform: translateX(0px);
    }

    25% {
        transform: translateX(40px);
    }

    50% {
        transform: translateX(0px);
    }

    75% {
        transform: translateX(-40px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes animationFramesThree {
    0% {
        transform: translate(0px, 0px);
    }

    20% {
        transform: translate(40px, -5px);
    }

    40% {
        transform: translate(60px, 40px);
    }

    60% {
        transform: translate(40px, 60px);
    }

    80% {
        transform: translate(-40px, 60px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes animationFramesFour {
    0% {
        transform: translate(0px, 0px);
    }

    20% {
        transform: translate(-30px, 40px);
    }

    40% {
        transform: translate(60px, 60px);
    }

    60% {
        transform: translate(80px, 40px);
    }

    80% {
        transform: translate(40px, -70px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}