
/* 
 * ARTICLE
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 */

.catalogue_article .inner {
	padding: 0 15px;
	margin: 0 auto;
	max-width: 1465px;
	margin-bottom: 40px;
}

.catalogue_article .wysiwyg-styling .button {
	display: block;
	margin: 30px auto 60px auto;
	border: 1px solid #3C3C3C;
	background-color: #FFFFFF;
	color: #484848;
}

.catalogue_article .wysiwyg-styling .button:hover {
	border: 1px solid #000000;
	background-color: #FFFFFF !important;
	color: #000000;
}

.catalogue_article h3 {
	color: #747474;
	font-weight: normal;
}



@media (min-width: 1200px) {

	.catalogue_article .inner {
		margin-bottom: 80px;
		font-size: 28px;
		line-height: 39px;
	}

}

/* 
 * PRODUCT LINKS
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 */

.catalogue_prodlinks {
	padding: 0 0 40px 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
}

.catalogue_prodlinks .item {
	position: relative;
	flex-basis: 45%;
	flex-grow: 1;
}

.catalogue_prodlinks .item-placeholder-fix {
	flex-basis: 45%;
	flex-grow: 1;
	font-size: 0;
	height: 1px;
}

.catalogue_prodlinks .item a.cover {
	position: relative;
	/*aspect-ratio: 16/10;*/
	min-height: 100px;
	background-image: none;
	background-repeat: no-repeat;
	background-position: center center;
	background-size:contain;
	display: flex;
}

.catalogue_prodlinks .item a.cover:hover {
}

.catalogue_prodlinks .item a.link {
	display: block;
	text-align: center;
	font-family:  "Barlow Semi Condensed";
	font-weight: 500;
}

.catalogue_prodlinks .item a.link:hover {
	color: #000000;
}

@media (min-width: 768px) {

	.catalogue_prodlinks .item a.cover {
		min-height: 140px;
	}

	.catalogue_prodlinks .item {
		flex-basis: 20%;
	}

	.catalogue_prodlinks .item-placeholder-fix {
		flex-basis: 20%;
	}

}

@media (min-width: 992px) {

	.catalogue_prodlinks .item a.cover {
		min-height: 190px;
	}

	.catalogue_prodlinks {
		padding: 0 0 60px 0;
	}

}

@media (min-width: 1200px) {

	.catalogue_prodlinks {
		padding: 0 0 80px 0;
		gap: 40px;
		row-gap: 60px;
	}

	.catalogue_prodlinks .item a.link {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.catalogue_prodlinks .item a.cover {
		min-height: 220px;
	}

}

@media (min-width: 1377px) {

	.catalogue_prodlinks {
		padding: 0 0 100px 0;
	}

	.catalogue_prodlinks .item a.cover {
		min-height: 260px;
	}

}

/* 
 * DETAIL VIEW
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 */

.detail-view .inner {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 40px;
}

.detail-view .left,
.detail-view .right {
	flex-basis: 100%;
	flex-grow: 1;
}

.detail-view .gallery {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
	justify-items: space-between;
}

.detail-view .gallery a {
	flex-basis: 25%;
	flex-grow: 1;
	background-image: none;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	aspect-ratio: 4 / 3;
	min-height: 80px;
	border: 1px solid lightgrey;
}

.detail-view .gallery a:hover {
}

.detail-view .gallery a:first-child {
	flex-basis: 100%;
	min-height: 270px;
}

.detail-view .gallery .item-placeholder-fix {
	flex-basis: 25%;
	flex-grow: 1;
	font-size: 0;
	height: 1px;
}

.detail-view ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.detail-view ol li {
	display: inline-block;
	background-color: #9d9d9d;
	margin-right: 10px;
	padding: 10px 20px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 16px;
	color: #FFFFFF;
}

.detail-view .enquire {
	margin-bottom: 40px;
}

.detail-view .enquire .button {
	display: inline-block;
	background-color: #9F2225;
}

.detail-view .info {
	margin-bottom: 40px;
}

.detail-view .back {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	display: inline-block;
	margin-top: 20px;
	text-transform: uppercase;
}

.detail-view .attachments,
.detail-view .videos {
	padding: 30px 0 0 0;
}

.detail-view .attachments h6,
.detail-view .videos h6 {
	margin: 0 0 30px 0;
	padding: 4px 0;
	font-family:  "Barlow Semi Condensed";
	font-weight: 700;
	font-size: 26px;
	border-bottom: 1px solid #979797;
}

.detail-view .attachments a {
	display: block;
	padding-left: 30px;
	margin-bottom: 10px;
	background-image: url('../images/filetype_pdf.png');
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
}

.detail-view .attachments a:hover {
	color: #000000;
}

@media (min-width: 768px) {

	.detail-view .left,
	.detail-view .right {
		flex-basis: 45%;
	}

	.detail-view .gallery .item-placeholder-fix {
		flex-basis: 25%;
	}

}

@media (min-width: 992px) {
	
	

}

@media (min-width: 1200px) {

	.detail-view .gallery a {
		min-height: 120px;
	}

	.detail-view .gallery a:first-child {
		background-size: contain;
		min-height: 420px;
	}

	.detail-view .gallery {
		gap: 30px 40px;
	}

	.detail-view .attachments a {
		padding-left: 50px;
	}

	.detail-view .info {
		font-size: 24px;
	}

	.detail-view .info a {
		font-size: 24px;
	}

}

@media (min-width: 1377px) {

	.detail-view .inner {
		gap: 70px;
	}

	.detail-view .info {
		margin-bottom: 60px;
		font-size: 24px;
	}

	.detail-view .info a {
		font-size: 24px;
	}

	.detail-view .enquire {
		margin-bottom: 80px;
	}

	.detail-view .enquire .button {
		padding: 30px 36px;
		font-size: 18px;
	}

}

.detail-view > .inner > h1 {
	width: 100%;
	margin-bottom: 0;
}

.detail-view .button {
	background-color: #1074BC;
	border-radius: 5px;
	text-transform: none;
}






















.category-view .left {
	display: none;
}







.category-view .sidemenu > a {
	display: block;
	background-color: #cde4f2;
	padding: 12px 20px;
	color: #494949;
	font-size: 22px;
	line-height: 26px;
	margin-bottom: 6px;
}

.category-view .sidemenu > a:hover {
	color: #FFFFFF;
	background-color: #1074BC;
}

.category-view .sidemenu > a.active {
	font-weight: bold;
}









.category-view .sidemenu > .subs {
	background-color: #ecf5fb;
	padding: 15px 0 20px 18px;
	margin-bottom: 6px;
}





.category-view .sidemenu > .subs > a {
	display: block;
	padding: 8px 20px;
	color: #494949;
	font-size: 22px;
	line-height: 26px;
}

.category-view .sidemenu > .subs > a:hover,
.category-view .sidemenu > .subs > a.active {
	color: #000000;
}





@media (min-width: 992px) {

	.category-view > .inner {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.category-view > .inner > .left {
		display: block;
		flex-basis: 20%;
		margin-right: 42px;
	}

	.category-view > .inner > .right {
		flex-basis: 70%;
	}

	.category-view > .inner > .left,
	.category-view > .inner > .right {
		flex-grow: 1;
	}

}

@media (min-width: 992px) {

	.category-view > .inner > .left {
		flex-basis: 21%;
		margin-right: 42px;
	}

	.category-view > .inner > .right {
		flex-basis: 65%;
	}

}






