.app-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    text-align: center;
    text-decoration: none;
    color: #2d2f3b;
    box-shadow: 0px 12px 22px rgba(45, 47, 59, 0.2509803922);
    height: 100%;
    overflow: hidden;
    transition: all 300ms;
}

.app-card__content {
    margin-top: 1.5rem;
    margin-right: 1.5rem;
    margin-bottom: 2.0625rem;
    margin-left: 1.5rem;
}

.app-card__description {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
}

.app-card__description,
.app-card__description p {
    font-size: 0.875rem;
    line-height: 1.375rem;
    color: #2d2f3b;
}

.app-card__img {
    overflow: hidden;
    position: relative;
}

.app-card__img img {
    width: 100%;
    height: 176px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.app-card__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(3, 207, 255, 0.01);
    -webkit-transition: all 350ms;
    transition: all 350ms;
}

.app-card__links {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.app-card__links .app-card__link {
    font-family: 'Euclid Circular A Bold', sans-serif;
    position: relative;
    text-decoration: none;
    color: #122e52;
    font-size: 1rem;
    line-height: 1.5rem;
    display: inline-block;
    padding: 0;
    transition: all linear 0.125s;
}

.app-card__links .app-card__link svg {
    max-height: 16px;
    min-height: 16px;
    max-width: 14px;
    fill: #03cfff;
    margin-left: 0.375rem;
    transition: all 0.3s;
}

.app-card:hover,
.app-card:focus {
    transform: translateY(-4px);
}

.app-card:hover .app-card__img img,
.app-card:focus .app-card__img img {
    transform: scale(1.2);
}

.app-card:hover .app-card__img::after,
.app-card:focus .app-card__img::after {
    background: rgba(3, 207, 255, 0.6);
    mix-blend-mode: multiply;
}

.app-card:hover .app-card__link,
.app-card:focus .app-card__link {
    text-decoration: underline;
}

.app-card:hover .app-card__link svg,
.app-card:focus .app-card__link svg {
    transform: translateX(4px);
    transition: transform linear 0.125s;
}

@media (max-width: 1199.98px) {
    .app-card__content {
        margin-top: 1.5rem;
        margin-right: 1rem;
        margin-bottom: 1.5625rem;
        margin-left: 1rem;
    }

    .app-card__description,
    .app-card__description p {
        font-size: 0.875rem;
        line-height: 1.375rem;
    }
}


@media (max-width: 991.98px) {
    .app-card__img img {
        height: auto;
    }
}