/*----------  PAGE-LOADER-1  ----------*/
.page-loader-wrapper-1 {
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    margin: 0;
    padding: 0;
}

.page-loader-wrapper-1 #preloader_1 {
    width: 50px;
    height: 50px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
}

#preloader_1 {
    position: relative;
}

#preloader_1 span {
    display: block;
    bottom: 0px;
    width: 3px;
    height: 15px;
    background: #2a2a29;
    position: absolute;
    animation: preloader_1 1.5s infinite ease-in-out;
}

#preloader_1 span:nth-child(2) {
    left: 8px;
    animation-delay: .2s;

}

#preloader_1 span:nth-child(3) {
    left: 16px;
    animation-delay: .4s;
}

#preloader_1 span:nth-child(4) {
    left: 24px;
    animation-delay: .6s;
}

#preloader_1 span:nth-child(5) {
    left: 32px;
    animation-delay: .8s;
}

@keyframes preloader_1 {
    0% {
        height: 5px;
        transform: translateY(0px);
        background: #c13c3c;
    }
    25% {
        height: 30px;
        transform: translateY(15px);
        background: #c13c3c;
    }
    50% {
        height: 5px;
        transform: translateY(0px);
        background: #c13c3c;
    }
    100% {
        height: 5px;
        transform: translateY(0px);
        background: #c13c3c;
    }
}