.b-img-box {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1571DA 55%, #1534B8);
    padding: 1em;
    text-decoration: none;
    transition: .3s;
}
.b-img-box:hover {
    transition: .3s;
    opacity: .8;
}
.b-img-box-img {
    width: 90%;
    margin: 0 auto;
    max-width: 100px;
}
.b-img-box-img img {
    width: 100%;
    height: 90px;
}
.b-img-box-textarea {
    margin-top: 2em;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 30px;
    position: relative;
}
.b-img-box-textarea::after {
    content: "";
    width: 12px;
    height: 12px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 9px;
    margin-top: -6px;
}
.b-img-box-textarea .b-img-box-textarea-text {
    color: white;
	font-size: 16px;
    font-weight: 600;
}
