* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    list-style:none ;
    font-family: Arial, Helvetica, sans-serif;
    
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 10px 5px rgba(0,0,0,.4); 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    background: #000;
    

}
ul li {
    position: relative;
    float:left;
}

ul li a {
    color:#808080 ;
    font-size: 18px;
    display: block;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

ul li a:hover{
   color: #000000; 
   background: #fff;
}

nav ul li ul {
    position: absolute;
    left: 0;
    width: 160px;
    background: #fff;
    display: none;

}

nav ul li ul li {
    width: 100%;
    border: 1px solid rgba(0,0,0,.2);
}

nav ul li:hover > ul {
    display: initial;

}



header .logo{
    font-size: 25px;
    color: #fff;
    font-weight: 800;
    font-family: Arial, Helvetica, sans-serif;
}


 

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

}

.container__quote{
    position: relative;
    width: 870px;
    display: flex;
    justify-content: space-between;
    align-items: center;


}

.container__quote .block{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 380px;
    background: #606060;
    border-radius: 10px;
    box-shadow: 0 0 20px #000;
    transition: .7s;

}


.container__quote .block .content{
    padding: 30px;
    text-align: center;
}

.container__quote .block .content .quote-img {
    width: 40px;

}


.container__quote .block p{
    color: #000;
    padding: 20px 0;
}

.container__quote .block .content .face{
    width: 80px;
    border-radius: 50%;
    padding: 4px;
    background: #000;
}


.container__quote .block .content h3{
    margin-top: 20px;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 700;
    
}

.container__quote .block:hover{
    transform: translateY(-10px);
}