.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.events {
	margin-bottom: 20px;
}
.event {
	padding-bottom: 30%;
    margin-bottom: 20px;
}
.event-content {
	position: absolute;
	display: flex;
	flex-direction: column;
	width: calc(100% - 20px);
	height: 100%;
	background-image: linear-gradient(135deg, #0580DA 93%, transparent 93%);
	color: #fff !important;
	padding: 20px;
}

.event-content h4 {
	color: #071F51 !important;
}
.evetn-desc{
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.event-cat {
	margin-top: auto;
	color: #66E2FF;
}