#why_us h3 {
    font-size: 20px;
    font-weight: 400;
}
#why_us .why-us-item {
    position: relative;
    height: calc(100% - 20px);
}
#why_us .why-us-item p {
    margin-bottom: 0;
}
#why_us .why-us-item .why-us-icon {
    display: inline-flex;
    width: 70px;
    height: 70px;
    padding: 12px;
    line-height: 46px;
    border-radius: 50%;
    background: #f3f3f3;
    border: 2px solid #e1e1e1;
    transition: all 1.5s ease-out 0.2s;
}
#why_us .why-us-item:hover .why-us-icon {
    border: 2px solid #ca4d51;
}

#why_us .why-us-item svg{
    width: 100%;
    height: 100%;
}
#why_us .why-us-item svg path {
    transition: all 1.5s ease-out 0.2s;
}
#why_us .why-us-item:hover path.activeItem{
    stroke: #ca4d51;
    fill: #ca4d51;
}
#why_us .read-more {
    font-weight: normal;
    text-decoration: underline;
    color: #bb494a;
    display: block;
    float: right;
}