.newest{
    width: 100%;
    height: 100vh !important;
    background: url(../img/New-file-[copy].gif) no-repeat center;
    background-color: #1A76D1;
    position: fixed;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: relative; */
}

.loader-cover{
    /* display: none; */
    width: 100%;
    height: 250px;
    background-color: #1A76D1;
    position: absolute;
    bottom: 0;
    /* border: 2px solid red; */
}

.right-image{
    animation: bounce 3s infinite;
}

@keyframes bounce {
    20%,50%,80%,to{
        transform: translateY(0);
    }
    40%{
        transform: translateY(-30px);
    }
    70%{
        transform: translateY(-15px);
    }
    90%{
        transform: translateY(4px);
    }
}

@media screen and (min-width: 120px) and (max-width: 650px) {
    .newest{
        width: 100%;
        height: 100vh !important;
        display: flex;
        background: url(../img/pre_small.gif) #1A76D1 no-repeat center;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .loader-cover{
        display: block;
        position: absolute;
        width: 100%;
        height: 300px;
        background-color: #1A76D1;
        top: 55%;
        /* border: 3px solid white; */
    }

    .header-text h6 {
        color: blueviolet;
        font-weight: 600;
    }

    .header-text h2 {
        font-size: 15px;
    }

    .header-text em {
        font-size: 50px;
    }
}

@media screen and (min-width: 700px) and (max-width: 1000px) {
    .loader-cover{
        /* border: 3px solid red; */
        bottom: 25%;
        height: 150px;
    }
}

.small-logo{
    display: none;
    /* width: 150px; */
}

@media screen and (min-width: 227px) and (max-width: 761px) {
    .small-logo{
        display: flex;
        width: 150px;
        position: absolute;
        top: 30px;
        /* border: 3px solid red; */
    }

    .big-logo{
        display: none;
    }
}

@media screen and (min-width: 127px) and (max-width: 226px) {

    .header-area .main-nav{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .small-logo{
        display: flex;
        width: 100px;
        position: relative;
        top: 10px;
    }

    .big-logo{
        display: none;
    }
}

