.branch-section{
    padding:20px 0 40px;
}

.branch-card{
    background:#ffffff;
    border-radius:15px;
    padding:20px 25px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    text-align:center;
    height:100%;
    transition:all .3s ease;
    border:1px solid #f1f1f1;
}

.branch-card:hover{
    transform:translateY(-5px);
}

.branch-icon{
    width:50px;
    height:50px;
    margin:0 auto 20px;
    background:#1e7936;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.branch-icon i{
    color:#fff;
    font-size:20px;
}

.branch-card h5{
    font-size:25px;
    margin-bottom:15px;
    font-weight:700;
    color:#222;
}

.branch-address{
    color:#777;
    margin-bottom:10px;
    min-height:40px;
}

.branch-contact{
    padding:12px 0;
    border-top:1px solid #eee;
}

.branch-contact a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    display:block;
}

.branch-contact i{
    color:#1e7936;
    margin-right:8px;
}

.branch-contact a:hover{
    color:#1e7936;
}

@media(max-width:991px){
    .branch-card{
        margin-bottom:20px;
    }
}