.forms-wrap {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.forms-item {
    width: 30%;
    flex-shrink: 0;
}

.forms-item-title {
	font-size: 18px;
	font-weight: 700;
	height: 60px;
	display: flex;
	align-items: flex-end;
    margin-bottom: 15px;
}

.forms-item-img {
	margin-bottom: 15px;
}

.forms-item-img img {
	width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 576px) {
	.forms-item {
    width: 100%;
}
}