.actions {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.actions h2 {
    color: var(--dark-blue);
    text-align: center;
    font-size: 2rem;
    line-height: 37px;
    font-family: "Mitr Bold", "sans-serif";
    font-weight: 700;
}

.actions .slider-actions .swiper {
    overflow: unset;
}

.actions article {
    display: flex;
    flex-direction: row;
    width: 320px;
    height: 420px;
    flex-wrap: wrap;
    box-shadow: 0px 14px 44px 0px hsla(230, 100%, 20%, 0.06);
    border-radius: 1.875rem;
    position: relative;
}

.actions .action-container {
    display: flex;
    gap: 1.25rem;
    flex-direction: column;
}

.actions .action-image {
    position: relative;
    -webkit-clip-path: ellipse(100% 55% at 44% 38%);
    -ms-clip-path: ellipse(100% 55% at 44% 38%);
    -o-clip-path: ellipse(100% 55% at 44% 38%);
    clip-path: ellipse(100% 55% at 44% 38%);
    z-index: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 1.875rem;
    border-top-right-radius: 1.875rem;
    > picture img {
        border-top-left-radius: 1.875rem;
        border-top-right-radius: 1.875rem;
    }
}

.actions .action-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 150px;
    gap: 0.938rem;
    padding: 0 1.25rem 1.563rem 1.25rem;
    > h3 {
        color:var(--dark-blue);
        text-align: center;
        margin: 0;
        font-family: "Mitr SemiBold", "sans-serif";
        font-weight: 600;
    }
    > .cta {
        padding: 0; 
        padding: 1rem 1.25rem;
        font-weight: 600;
        line-height:114.99999999999999%;
        font-size: 1rem;
    }
}
 @media screen and (min-width: 48rem) {
    .actions {
        display: flex;
        flex-direction: column;
    }

 }
 @media screen and (min-width: 64rem) {
    .actions article {
        width: 380px;
        height: 470px;
    }
    .actions .action-container {
        flex-direction: row;
    }

    .actions article:nth-child(2){
        top: 50px
    }
 }