.bg-custum {
	position: relative;
	z-index: 0;
}

.bg-custum {
	position: relative;
	z-index: 0;
}

.bg-color-primary,
.bg-color-tertiary {
	position: relative;
	z-index: 1;
}

.bg-custum::before,
.bg-custum::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50%;
}

.bg-custum::before {
	left: 0;
	background-color: #0074B1;
}

.bg-custum::after {
	right: 0;
	background-color: #EC6B25;
}

.card-body.text-center {
	margin-bottom: -1.0rem !important;
}

/* h4.card-title.mt-2.mb-0.text-3.font-weight-semibold {
	line-height: 1.3;
}

.thumb-info .thumb-info-wrapper .thumb-info-title .thumb-info-type {
	line-height: 1.5;
} */

.thumb-info-title-custum {
	height: auto !important;
	padding: 5px !important;
}

/* .thumb-info.thumb-info-bottom-info .thumb-info-type {
	line-height: 1.5;
	text-transform: math-auto;
} */

a.custom-card,
a.custom-card:hover {
	color: inherit;
}

.small-hr {
	width: 40px;
	margin: 0 auto;
	padding: 0.5px;
}

.small-hr-left {
	width: 40px;
	margin: initial;
	padding: 0.5px;
}

.gradient-div {
	background: linear-gradient(to bottom, #cccccc 0px, #efefef 10px), linear-gradient(to top, #cccccc 0px, #efefef 10px);
	background-repeat: no-repeat;
	background-position: top, bottom;
	background-size: 100% 50%;
}

.gradient-div-light {
	background: linear-gradient(to bottom, #f2f2f2 0px, #f7f7f7 10px), linear-gradient(to top, #f2f2f2 0px, #f7f7f7 10px);
	background-repeat: no-repeat;
	background-position: top, bottom;
	background-size: 100% 50%;
}

.custom-img {
	min-height: 180px;
	max-height: 180px;
	width: 100%;
	object-fit: cover;
	margin-bottom: 10px
}

.custom-img-foother {
	height: 50px;
	object-fit: contain;
}

.owl-carousel.carousel-custum .owl-item {
	width: auto !important;
}

.bl {
	border-left: 4px solid #EC6B25;
}

#header .header-top {
	min-height: auto;
}

.text-ellipsis {
	text-overflow: ellipsis; /* enables ellipsis */
	white-space: nowrap; /* keeps the text in a single line */
	overflow: hidden; /* keeps the element from overflowing its parent */
}

.multiline-ellipsis {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2; /* start showing ellipsis when 3rd line is reached */
	white-space: pre-wrap; /* let the text wrap preserving spaces */
  }