/* software section styling */
.software, .teams{
    color:#fff;
    background: #111;

}
.software .title::before,
.teams .title::before{
    background: #fff;
}
.software .title::after,
.teams .title::after{
    background: #111;
    content: "Phần mềm chúng tôi cung cấp";
}
.software .serv-content .card{
    width: calc(33% - 20px);
    background: #222;
    text-align: center;
    border-radius: 6px;
    padding: 50px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.software .serv-content .card:hover{
    background: crimson;
}
.software .serv-content .card .box{
    transition: all 0.3s ease;
}
.software .serv-content .card:hover .box{
    transform: scale(1.05);
}
.software .serv-content .card i{
    font-size: 50px;
    color: crimson;
    transition: color 0.3s ease;
}
.software .serv-content .card:hover i{
    color: #fff;
}
.software .serv-content .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

.software .serv-content .card{
    width: calc(50% - 10px);
    margin-bottom: 20px;
}

@media (max-width: 690px) {
.software .serv-content .card{
    width: 100%;
}
}

.software .serv-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}