/*Create equal height, columns on desktop*/
    .row.eq-height {display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap: wrap;}
    .row.eq-height .col-xs-12 {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100%}
    @media (min-width: 768px){
        .row.eq-height .col-md-6{-ms-flex: 0 0 50%;flex: 0 0 50%;max-width:50%}
    }
    @media (min-width: 992px){
        .row.eq-height .col-lg-3{-ms-flex: 0 0 25%;flex: 0 0 25%;max-width:25%}
        .row.eq-height .col-lg-4{-ms-flex: 0 0 33.333333%;flex: 0 0 33.333333%;max-width: 33.333333%}
        .row.eq-height .col-lg-6{-ms-flex: 0 0 50%;flex: 0 0 50%;max-width:50%}
    }

    .row.no-gutters{margin-right:0;margin-left:0;}
    .row.no-gutters>[class*=col-]{padding-right:0;padding-left: 0;}

    .row.eq-gutters{margin-right:0.4687rem;margin-left:.4687rem}
    .row.eq-gutters>[class*=col-]{padding:.4687rem}

#custom-content .text-left {
	text-align: left;
}
.btn-outline-primary {
  color: #000 !important;
  background-color: transparent;
	border: 1px solid #000 !important;
	transition: .3s all linear !important;
}
.btn-outline-primary:hover {
    color: #fff !important;
    background-color: #000;
}
.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}
#custom-content .content-title h1 {
	float: none;
}
@media (min-width: 768px) {
	#custom-content .content-title h1 {
		float: left;
	}
}
#custom-content .content-title .breadcrumb {
	display: flex !important;
    justify-content: center;
	float: none;
	flex-wrap:wrap;
}
#custom-content .content-title .breadcrumb .active a {
	text-decoration: underline;
	pointer-events: none;
  	cursor: default;
}
#custom-content .content-title .breadcrumb>li+li:before {
    padding-right: .1rem;
    padding-left: .1rem;
    margin: 0 5px;
}
@media (min-width: 768px) {
    #custom-content .content-title .breadcrumb {
		float: right;
	}
}

#custom-content .search-container a {
	text-transform: capitalize;
}

#custom-content .search-container .btn-wrapper {
	position: relative;
	text-align: center;
	align-content: center;  
	margin-bottom: 2px;
}
#custom-content .search-container .btn-wrapper img {
	//display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(65%);
	transition: .2s all linear;
}


#custom-content .search-container .btn-wrapper:hover img {
	filter: brightness(50%);
}
#custom-content .search-container .btn-wrapper .btn {
	position: relative;
	z-index: 1;
	height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	font-weight: bold;
  font-size: 16px;
  text-wrap: auto;
	color: #fff;
	background-color: transparent;
	white-space: initial;
}
#custom-content .search-container .btn-wrapper .btn span {
	font-size: 12px;
}
@media (min-width: 768px) {
	#custom-content .search-container .btn-wrapper {
	  font-size: 28px;
	  margin-bottom: 0;
	  padding: 0;
	}
	#custom-content .search-container .btn-wrapper img {
		display: block;
		padding: 5px;
	}
	#custom-content .search-container .btn-wrapper .btn {
		height: 200px;
		padding: 0;
		margin: 5px;
	  	font-size: 28px;
		background: none;
		text-shadow: 0px 1px 2px #000;
	}
}
@media (min-width: 992px) {

}

#custom-content .card-header {
	padding: 0;
}
#custom-content .card-header a {
	position: relative;
	display: block;
	padding: .75rem 1.75rem .75rem 1.25rem;
	text-align: left;
	color: #000;
}
#custom-content .card-header:hover {
	background-color: #e4e4e4;
}
#custom-content .card-header a:hover,
#custom-content .card-header a:focus {
	text-decoration: none;
	outline: none;
}
#custom-content .card-header a::after {
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	content: '\f13a';
	font-family: FontAwesome;
	font-size: 18px;
}
#custom-content .card-header a[aria-expanded="true"]::after {
	content: '\f139';
}
#custom-content .card-header a h2 {
	font-size: 16px;
}
#custom-content .card-body {
	text-align: left;
}