section.c-info-type {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 100%;
    margin-bottom: 20px;
}
.c-info-type__card svg {
    width: 75px;
    height: 75px;
}
.c-info-type__img {
    width: 75px;
    height: 75px;
    /*border-radius: 50%;*/
    overflow: hidden;
    background: no-repeat center;
    background-size: cover;
}
.c-info-type__img img{
    width: 100px;
    height: 100px;
}
.c-info-type__card {
    padding: 7px;
    display: flex;
    width: 33%;
    height: 94px;
    border: 1px solid #f4f4f4;
    align-items: center;
}
.c-info-type__info {
    width: 80%;
    text-align: justify;
}
@media (max-width: 719px) {
    .c-info-type__card {
        width: 100%;
    }

    .c-info-type__info {
        margin-left: 10px;
    }
}
@media (max-width: 829px) {
    section.c-info-type {
        margin-top: 15px;
    }
}

/*
section.c-info-type {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.c-info-type__img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: no-repeat center;
    background-size: cover;
}
.c-info-type__img img{
    width: 100px;
    height: 100px;
}
.c-info-type__card {
    display: flex;
    width: 45%;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
}
.c-info-type__info {
    width: 67%;
    font-weight: 600;
    text-align: justify;
}
@media (max-width: 719px) {
    .c-info-type__card {
        width: 100%;
    }

    .c-info-type__info {
        margin-left: 10px;
    }
}
@media (max-width: 829px) {
    section.c-info-type {
        margin-top: 15px;
    }
}