.header__loading {
    height: 95px;
    overflow: hidden;
}

.loading_effect {
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
    padding-left: 0px;
    margin-left: -43px;
}   

.loading_element {
    height: 200%;
    margin-top: 0;
    width: 14px;
    margin-left: 27px;
    background-color: #000;
    transform: rotate(33deg);
    display: block;
}

@media only screen and (max-width: 1000px) {
    .header__loading {
        height: 45px;
    }

    .loading_element {
        width: 6px;
        margin-left: 14px;
    }
    
}