body{
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #fff;

    font-family: Oswald;

}


header{
    height: 10vh;
    background-color:white;
    background-size: cover;
    background-position: center;
}

ul{
    float: left;
    list-style: none;
    margin-top: 35px;
    margin-left: 30px;
}

ul li{
    display: inline-block;
    
}

ul li a{
    text-decoration: none;
    color: #000;
    padding: 5px 20px;
    text-transform: uppercase;
    font-size: 90%;
    border: 1px solid transparent;
    transition: 0.6s ease;
    font-size: 150%;
    font-family: Oswald
}

ul li a:hover{
    border-bottom: 2px solid rgb(167, 41, 41);
    color: #000;
}

ul li.active a{
    border-bottom: 2px solid rgb(167, 41, 41);
    color: #000;
}


/*  ----------- CARDSSS -------- */



.container{
    width:  1500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    margin-left: 150px;
}

.container .card{
    position: relative;
    margin-top: 50px;

}

.container .card .face{
    width: 400px;
    height: 400px;
    transition: 0.5s;
}

.container .card .face.face1{
    position: relative;
    background: rgb(252, 252, 252);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(100px);
}

.container .card:hover .face.face1{
    background: #ff0057;
    transform: translateY(0);
}

.container .card .face.face1 .content{
    opacity: 0.2;
    transition: 0.5s;
}

.container .card:hover .face.face1 .content{
    opacity: 1;
}

.container .card.face.face1 .content img{
    max-width: 100px;
}

.container .card.face.face1 .content h3{
    margin: 10px 0 0;
    padding: 0;
    color: #fff;
    text-align: center;
    font-size: 1.5em;
    font-family: Oswald;
}

.container .card .face.face2{
    position: relative;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: translateY(-100px);
}

.container .card:hover .face.face2{
    transform: translateY(0);
}

.container .card .face.face2 p{
    margin: 0;
    padding: 0;

}

.container .card .face.face2 a{
    margin: 15px 0 0;
    display: inline-block;
    text-decoration: none;
    font-family: Oswald;
    font-weight: 900;
    color: #333;
    padding: 5px;
    border: 1px solid #333;
    
}

.container .card .face.face2 a:hover{
    background: #333;
    color: #fff;
}

