.profile-card-3 {
    font-family: 'Open Sans', Arial, sans-serif;
    position: relative;
    float: left;
    overflow: hidden;
    width: 90%;
    text-align: center;
    height: 368px;
    border: none;
}

    .profile-card-3 .background-block {
        float: left;
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

        .profile-card-3 .background-block .backgroundX {
            width: 100%;
            vertical-align: top;
            opacity: 0.9;
            /*-webkit-filter: blur(0.5px);
            filter: blur(0.5px);*/
            -webkit-transform: scale(1.8);
            transform: scale(2.8);
        }

    .profile-card-3 .card-content {
        width: 100%;
        padding: 15px 25px;
        color: #ffffff;
        float: left;
        background: #224f71;
        height: 50%;
        border-radius: 0 0 5px 5px;
        position: relative;
        z-index: 1000;
    }

        .profile-card-3 .card-content::before {
            content: '';
            background: #224f71;
            width: 120%;
            height: 100%;
            left: 11px;
            bottom: 51px;
            position: absolute;
            z-index: -1;
            transform: rotate(-13deg);
        }

    .profile-card-3 .profile {
        border-radius: 50%;
        position: absolute;
        bottom: 50%;
        left: 50%;
        max-width: 200px;
        max-height: 200px;
        opacity: 1;
        box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
        border: 2px solid rgba(255, 255, 255, 1);
        -webkit-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
        z-index: 2000;
    }

    .profile-card-3 h2 {
        margin: 0 0 5px;
        font-weight: 600;
        font-size: 20px;
    }

        .profile-card-3 h2 small {
            display: block;
            font-size: 15px;
            margin-top: 10px;
        }

    .profile-card-3 i {
        display: inline-block;
        font-size: 16px;
        color: #ffffff;
        text-align: center;
        border: 1px solid #ffffff;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 50%;
        margin: 0 5px;
    }

    .profile-card-3 .icon-block {
        float: left;
        width: 100%;
        margin-top: 15px;
    }

        .profile-card-3 .icon-block a {
            text-decoration: none;
        }

    .profile-card-3 i:hover {
        background-color: #232323;
        color: #fff;
        text-decoration: none;
    }





.col-md-2-5 {
    flex: 0 0 19.4%; /* 20% width, equivalent to col-md-2.5 */
    max-width: 19%;
    margin: 3px 0;
    margin-left: 10px;
   
}


@media only screen and (max-width: 768px) {
    .col-md-2-5 {
        flex: none;
        max-width: 100%;
        display: block!important;
        justify-content: center;
    }
}

body > div.pxp-content > main > div > div.container-fluid > div:nth-child(2) {
    justify-content: center;
}




.page {
    color: var(--gray-9);
    background-color: var(--gray-0);
    display: grid;
    grid-template-areas: "main";
    min-height: 100vh;
    font-family: var(--font-sans);
}

.page__main {
    grid-area: main;
}

.main {
    display: grid;
    place-content: center;
}

.main__cards {
    display: flex;
    gap: var(--size-6);
   
    padding: var(--size-4);
    justify-content: center;
}

@media screen and (min-width: 48em) {
    .main__cards {
        flex-direction: row;
    }
}

.team-card {
    color: var(--gray-9);
    background-color: var(--gray-0);
    max-width: 20em;
    box-shadow: 0px 12px 19px 0px rgba(0, 0, 0, 0.2);
}

.team-card__content {
    display: grid;
    padding: var(--size-3);
}

.team-card__img-box {
    max-width: 20em;
    aspect-ratio: 1;
}

.team-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__intro {
    margin-bottom: var(--size-4);
    display: grid;
    gap: var(--size-4);
    padding: 10px;
}

.team-card__title {
    font-size: var(--font-size-4);
    font-weight: var(--font-weight-6);
}

.team-card__job-title {
    color: var(--gray-6);
}

.team-card__desc {
    margin-bottom: var(--size-4);
    line-height: var(--font-lineheight-3);
}

.team-card__mail {
    margin-bottom: var(--size-4);
    font-size: 0.95rem;
    font-style: italic;
}

.team-card__btn {
    margin: 0;
    margin-top: auto;
}

.primary-btn {
    transition: 180ms ease-in;
    color: var(--gray-0);
    background-color: var(--gray-9);
    border: 0;
    padding: var(--size-3);
    cursor: pointer;
}

    .primary-btn:hover {
        background-color: var(--gray-7);
    }



body > div.pxp-content > main > div > div.container-fluid > div:nth-child(3) > div:nth-child(1) > div > article > div.team-card__img-box > img {
    height: 100%;
}