#work {
    padding-top: 3rem;
}

#work h2 {
    text-align: left;
}

#work .subtitle {
    font-size: 18px;
    color: #61c6e9;
    margin-bottom: 60px;
}

.w-icons {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 1px 12px 25px rgba(0, 0, 0, 0.78);
    background: linear-gradient(180deg, #08295e 0%, #021c41 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.w-icon {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #c1d1e9;
    padding: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.w-icon:last-child {
    border-bottom: none;
}

.w-icon .img {
    display: flex;
    justify-content: center;
}

.w-icon .img img {
    width: 90px;
    display: block;
    margin-right: 15px;
}

.w-icon p {
    margin: 0;
}

.w-text {
    font-size: 18px;
    color: #ececec;
    margin: 0;
}

.w-buttons {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

@media (max-width: 576px) {
    .w-icon {
        flex-direction: column;
        text-align: left;
        padding: 30px 20px;
        align-items: flex-start;
    }
    
    .w-icon .img {
        margin-bottom: 15px;
    }
    
    .w-icon .img img {
        margin-right: 0;
    }
}