.section-competencies .competenze-col {
    border: 1px solid #cfcfcf;
}

.section-competencies .competenza {
    display: block;
    height: 290px;
    width: 100%;
    transition: all 0.2s ease-in-out;
}

.section-competencies .competenza .text-wrapper {
    padding: 60px 20px 60px 45px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
}

.section-competencies .competenza .text-wrapper p {
    font-family: 'Playfair Display', serif !important;
}

.section-competencies .competenza .arrow-cta {
    margin-top: 55px;
}

.section-competencies .competenza:hover.competenza .arrow-cta::before {
    width: 80px;
}

.section-competencies .competenza:hover {
    background-color: #EBEBEB;
}

@media screen and (max-width: 568px) {
    .section-competencies .competenza {
        height: fit-content;
    }

    .section-competencies .competenza .text-wrapper {
        padding: 30px;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        height: fit-content;
        gap: 30px;
    }

    .section-competencies .competenza .arrow-cta {
        margin-top: 0px;
    }
}