.button {
    border: 1xp solid black;
    position: relative;
    height: 7vh;
    width: 27.6vw;
    transition: 1s ease-out;
    opacity: 0;
}

.button + .button {
    margin-top: 2.1vw;
}

.button p {
    position: absolute;
    left: -1vw;
    z-index: 3;
    padding: 0 2.76vw;
    font-family: "Lato";
    font-size: 2.116vw;
    font-weight: 300;
}

.button .button-bg {
    position: absolute;
    width: 0%;
    height: 1.564vw;
    z-index: 1;
    top: 3.404vw;
    background-color: #FBE603;
    transition: 1s;
    /*border: 1px solid white;*/
}

.button .point {
    width: 1.84vw;
    height: 1.84vw;   
    position: absolute;
    top: 2.484vw;
    right: 1.38vw;
    z-index: 2;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.point-down {
    background: url(../images/buttons/arrow_down.png);   
}

.point-right {
    background: url(../images/buttons/arrow_right.png);
}

.button:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.button:hover .button-bg{
    top:+4.232vw;
}

#button-portfolio,
#button-production, 
#button-details,
#button-consultation {
    left: -40vw;
}

#button-project, 
#button-products {
    right: -40vw;
}

@media (max-width:1023px) { 
    .button {
        transform: scale(2);
    }
}


