.newest{
    width: 100%;
    height: 100vh !important;
    background: url(../images/mariegif.gif) no-repeat center;
    background-color: #000000;
    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: #000000;
    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(../images/marieloaderph.gif) #000000 no-repeat center;
        justify-content: center;
        align-items: center;
        position: fixed;
    }

   
    .loader-cover{
        display: block;
        position: absolute;
        width: 100%;
        height: 300px;
        background-color: #000000;
        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;
    }
}

/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.portfolio-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(150, 130, 19, 0.438);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    padding-bottom: 30px !important;
}

/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    opacity: .7;
}

.team-item .team-text {
    position: absolute;
    left: 0;
    right: 60px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    right: 30px;
    opacity: 1;
}

.team-item .team-text div {
    transition: .5s;
}

.team-item:hover .team-text div {
    margin-left: 30px;
}


/* .img-fluid:hover{
    background-color: grey;
} */

