.NavbarServices {
    display: flex;
    background-color: #FAFAFA;
    position: fixed;
    top: 50px;
    width: 100%;
    height: 130px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.NavbarServices img {
    height: auto;
    margin: 20px 3vw;
    width: 40px;
}

.NavbarServices a {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-family: "Swiss 721", sans-serif;
    color: #9b9b9b;
    font-size: 14px;
    transition: 0.2s;
    margin-bottom: 10px;
    padding: 0 5px;
}

.NavbarServices a:hover {
    filter: sepia(100%) saturate(10000%) hue-rotate(120deg);
    cursor: pointer;
    margin-bottom: 20px;

}

.Works {
    display: grid;
    width: 100%;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: calc(50vh + 90px) calc(50vh - 90px);
}

.Works > * {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;

}

.Works > *:nth-child(1) {
    background-color: powderblue;
    padding-top: 180px;
}

.Works > *:nth-child(2) {
    background-color: red;
    padding-top: 180px;
}

.Back {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: cover;
    transition: 5s;
}

.Logo {
    z-index: 2;
    height: 50px;
    transition: 1s;
}

.Overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;

}

.Overlay:hover {
    opacity: 0.8;
    cursor: pointer;
    transition-delay: 1s;
    transition: 0.5s ease;
}

.Logo:hover {
    cursor: pointer;
}

.Overlay:hover + .Back {
    transform: scale(1.1);
}

.Logo:hover ~ .Back {
    transform: scale(1.1);
}

.Logo:hover + .Overlay {
    transition: 0.5s;
    opacity: 0.8;
}

@media only screen and (max-width: 768px) {
    .Logo {
        height: 30px;
    }
}

@media only screen and (max-width: 480px) {
    .Logo {
        height: 20px;
    }

    .NavbarServices a {
        font-size: 10px;
    }
}


