.brand {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}
.img-brand{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #1E6F5C;
    padding: 4px;
    transition: all .2s;
}
.img-brand:hover{
    border: 3px solid  grey;
}
.brand h3 {
    color: #1E6F5C;
    margin: 20px;
}
.brand p {
    text-align: justify;
    direction: rtl;
    line-height: 2;
    font-size: 15px;
}
