.actions {
    max-width: 1200px;
    margin: 50px auto;
    padding: 15px;
}

.actions .actions-card {
    display: flex;
    margin-bottom: 50px;
    gap: 20px;
    justify-content: space-between;

}

.actions .actions-card:nth-child(even) {
    flex-direction: row-reverse;
}

.actions .actions-card img{
    width: 300px;
    height: auto;
    object-fit: contain;
}

.actions .actions-card .description{
    max-width: 700px;
}
.actions .actions-card .description h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}
.actions .actions-card .description  p {
    color: #978f8f;
}

.actions .actions-card .description ul {
    list-style: none;
    padding: 10px;
    border-radius: 20px;
    border-left: 3px solid #a1f500;
}

.actions .actions-card .description ul li {
    margin-bottom: 5px;
    color: #978f8f;
}

@media(max-width: 700px) {
    .actions {
        margin-bottom: 0;
    }
    .actions .actions-card {
        flex-direction: column-reverse !important;
    }
    .actions .actions-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
}