body{
    font-family: 'Open sans', sans-serif;
    padding: 0px 0px 200px 0px; 
    background: #fff;
    color: #424242;
    font-size: 1rem;
}
h1,h2,h3,h5{
    color: #000;
}
a{
    color: black;
    text-decoration: none;
}
.logo-silo{
    width: 20%;
    margin: auto;
    display: block;
}
.coq{
    animation: rotate 5s infinite ease-in;
    transform-origin: 60px 28px;
    stroke-width: 20;
}
@keyframes rotate{
    from { -webkit-transform: rotateY(0deg);    }
    to       { -webkit-transform: rotateY(-360deg); }
  }
.header__text{
    text-align: center;
    margin: 0 30% 100px 30%;
    /*background: #E6DE00;*/
}
@media (max-width: 700px){
    .header__text{
        text-align: center;
        margin: 0 4% 100px 4% !important;
    }
    .logo-silo {
        width: 60% !important;
    }
}
.header__text p {
    padding: 0px;
}
.clients{
    width: 100%;
}
.client{    
    width: 80%;
    max-width: 400px;
    margin: auto;
    text-align: center;
}
.client h4{
    color: #828282;
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: 23px;
    border-bottom: 1px solid #E6DE00;
    transition: all .5s ease-in-out;
}
.client h4:hover{
    color: #000;
    transform: scale(1.1);
}