.extra-services-cards {
    max-width: 1170px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 365px);
    grid-template-rows: auto 151px auto;
    justify-content: center;
    gap: .9em 2rem
}
.extra-services-cards.three-cards {
    justify-content: space-between;
}

.extra-services-card {
    display: grid;
    gap: .5rem;
    grid-template-rows: subgrid;
    grid-row: span 3;
    justify-items: center;
}

.extra-services-title{
    color: var(--red-auth);
    font-family: var(--ff-semibold);
    font-size: 1.2rem !important;
    margin-block: 1.3em .3em;
    text-align: center
}

.extra-services-cards ul {
    list-style: none;
    padding: 0;
    margin: .2em 0 !important
}

.extra-services-cards li {
    display: flex;
    gap: .5em
}

.extra-services-cards li::before {
    content: "\f00c";
    display: inline-block;
    font-family: var(--ff-awesome);
    font-size: 1em;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--grey-mid-blue);
}

.extra-services-picture img{
    width: 100%;
    height: auto
}