.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.flex-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width:45%;
    box-shadow: 1px 1px 3px 2px rgb(227, 222, 222);
    margin:20px;
    border-radius: 5px;
}
.flex-item h2 {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size:20px;
    text-transform: uppercase;
    margin-bottom: 10px
}
.flex-item h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    color:rgb(170, 159, 159);
}
.flex-item:hover {
    transition: 0.2s;
    box-shadow: 1px 1px 3px 2px rgba(227, 222, 222, 0.25);
    transform: scaleX(1.05);

}
.flex-item img {
    width: 100%;
}
.testimony-text {
    padding:15px;
    font-family: "Roboto", sans-serif;
}
.testimonial-socials {
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.testimonial-socials a {
    text-decoration: none;
    color:#f3d36b;
}
.testimonial-socials i {
    margin:5px 10px;
    font-size:24px;
}

@media only screen and (max-width: 550px) {
  .flex-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width:90%;
    box-shadow: 1px 1px 3px 2px rgb(227, 222, 222);
    margin:20px;
    border-radius: 5px;
}