.mw-columns{
    display: flex;
    grid-column: span 4;
    grid-row: span 4;
    border-radius: 20px;
    padding: 24px;
    flex-direction: column;
    background-color: white;
    gap: 13px;
}

.mw-columns header{
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.mw-columns header h2{
    font-size: 18px;
    color:#00529E;
    font-family: "NunitoSans-Black";
    text-transform: uppercase;
}

.mw-columns header .row {
    width: 275px;
    height: 1px;
    background-color: #C4C4C4;
}

.mw-columns header > a{
    border-radius: 20px;
    border: 2px solid #B7B7B7;
    padding: 10px 20px;
    color: #B7B7B7;
    font-family: "NunitoSans-ExtraBold";
    font-size: 16px;
    white-space: nowrap;
}

.mw-columns .mw-columns-wrapper{
    display: flex;
    width: 100%;
    gap: 20px;
}

.mw-columns .mw-columns-wrapper figure {
    width: 125px;
    height: 125px;
    object-fit: cover;
    border: 2px solid #007bff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mw-columns .mw-columns-wrapper figure img {
    width: 122px;
    height: 121px;
    border-radius: 50%;
    padding: 10px;
}

.mw-columns .mw-columns-wrapper .mw-Columns-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.mw-Columns-text h3{
    font-size: 13px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-family: "NunitoSans-ExtraBold";
    color:#9E9A99;
}

.mw-Columns-text h2{
    font-size: 20px;
    line-height: 22px;
    font-family: "NunitoSans-Black";
    color: #4A4A4A;
    text-align: left;
}
@media (max-width:1024px){
    .mw-columns{
        grid-column: span 2;
        grid-row: span 4;
    }
    .mw-columns header{
        justify-content: space-between;
    }
    .mw-columns .mw-columns-wrapper {
        align-items: center;
        margin-bottom: 12px;
    }
    .mw-columns header .row {
        display: none;
    }
    .mw-columns header h2 {
        font-size: 16px;
    }
    .mw-columns header > a {
        border: 2px solid #B7B7B7;
        font-size: 14px;
    }
    .mw-columns .mw-columns-wrapper figure img {
        width: 105px;
        height: 105px;
        border-radius: 50%;
        padding: 10px;
    }
    .mw-Columns-text h2 {
        font-size: 16px;
        line-height: 20px;

    }
    .mw-Columns-text h3 {
        font-size: 11px;
        margin-bottom: unset;
    }
    .mw-columns .mw-columns-wrapper figure {
        width: 105px;
        height: 105px;
    }
}
