/**********************************************************************/
/**********************************************************************/
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 35px;
	padding: 0;
	list-style: none;
}
.breadcrumbs a {
	position: relative;
	display: block;
	padding-right: 15px;
	margin-right: 10px;
	margin-bottom: 5px;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #FFFFFF;
	text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.35);
	transition: opacity 0.3s;
}
.breadcrumbs a:hover {
	opacity: 0.6;
}
.breadcrumbs a:after {
	content: "/";
	position: absolute;
	right: 0;
	top: 0;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	color: #FFFFFF;
	text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.35);
}
.breadcrumbs p {
	margin-bottom: 5px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 30px;
	color: #FFFFFF;
	text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.35);
}




/**********************************************************************/
/*********************         RESPONSIVE         *********************/
/**********************************************************************/
@media screen and (max-width: 1440px) {
	/******************************************************************/
	/******************************************************************/
	.breadcrumbs {
		margin-bottom: 10px;
	}
	.breadcrumbs a,
	.breadcrumbs a:after,
	.breadcrumbs p {
		font-size: 14px;
		line-height: 20px;
	}
}