.products-tabs {
	max-width: 1282px;
	margin: 0 auto;
	padding: 0;
	display: grid;
	grid-template-columns: 220px 1fr;
	column-gap: 30px;
}
.products-tabs__tabs {
	display: flex;
	flex-direction: column;
	row-gap: 18px;
}

.products-tabs__tab {
	padding: 15px 20px;
	display: flex;
	align-items: center;
	column-gap: 16px;
	background: #FFF;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.3s;
	position: relative;
}

.products-tabs__tab:hover,
.products-tabs__tab--active {
	box-shadow: 0px 4px 16px 0px rgba(17, 17, 26, 0.05), 0px 8px 32px 0px rgba(17, 17, 26, 0.05);
}

input.products-tabs__checkbox {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;  
}

.products-tabs__icon svg {
	width: 24px;
	height: 32px;
	vertical-align: middle;
}
.products-tabs__icon svg path {
	fill: #9c9c9c;
	transition: 0.3s;
}
.products-tabs__tab:hover svg path,
.products-tabs__tab--active svg path {
	fill: var(--primary);
}
.products-tabs__tab-name {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	color: #9c9c9c;
	transition: 0.3s;
}
.products-tabs__tab:hover .products-tabs__tab-name,
.products-tabs__tab--active .products-tabs__tab-name {
	color: var(--primary);
}
.products-tabs__content {
	position: relative;
	overflow: hidden;
}
.products-tabs__content-wrapper {
	display: none;
	opacity: 0;
	transform: scale(0.95); 
	transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; 
}
.products-tabs__content-wrapper--active {
	display: block;
	opacity: 1;
	transform: scale(1);
}
.products-tabs__title {
	margin: 0;
}
.products-tabs__divider {
	max-width: 113px;
	width: 100%;
	height: 2px;
	margin: 10px 0 20px;
	background: #D4AF37;
}
.products-tabs__description {
	margin: 0 0 40px;
}
.products-tabs__description p:last-of-type {
	margin: 0;
}
.products-tabs__content--mobile {
	display: none;
}
@media (max-width: 992px) {
	.products-tabs {
		padding: 0;
		grid-template-columns: 1fr;
	}
	.products-tabs__tabs {
		row-gap: 0;
	}
	.products-tabs__tab {
		margin: 0 0 20px;
	}
	.products-tabs--dropdown .products-tabs__content {
		display: none;
	}
	.products-tabs__content--mobile {
		display: block;
		max-height: 0;
		margin: 0 0 20px;
		background: #FFF;
		border-radius: 4px;		
		overflow: hidden;
		transition: all 0.6s ease-in-out; 
	}
	.products-tabs__tab--active + .products-tabs__content--mobile {
		max-height: 100vh;
	}
	.products-tabs__description {
		margin: 0 0 40px;
	}
}

.hubdb{
	scroll-margin-top: 140px;
}
{#******* FILTERS *******#}
.hubdb__filters{
	display: flex; 
	justify-content: space-between;
	gap:20px;
}
.hubdb__filter-field{
	width:100%;
}
.hubdb__filter-field input,
.hubdb__filter-field select{
	padding: 10px;
	width:100%;
	height: 50px;
	border: 1px solid #B5B5B5;
}
.hubdb__filter-field input::placeholder,
.hubdb__filter-field select{
	color: #B5B5B5;
}
.hubdb__filter-field select:focus{
	color:revert;
}
.hubdb__filter-field input[type="checkbox"],
.hubdb__filter-field input[type="radio"]{
	display: block;
}

.hubdb__filter-field label{
	display: block;
}
.hubdb__filter-field--multiselect:not(.hubdb--SELECT){
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.hubdb__filter--checkbox-subfield{
	text-align: center;
	margin: 0 10px;
}
.hubdb__filter--checkbox-subfield label{
	display: block;
}
.hubdb__filter-subfield{
	margin: 10px;
}
.hubdb__filter-field label::after{
	content: "*";
	padding-left:4px;
	color: #EB5D57;
}
.hubdb__not-found-results{
	color:var(--secondary)
}
.hubdb__information .hubdb__card-button.button {
	margin: unset;
	display: inline-block;
	text-transform:uppercase;
	margin-bottom:8px;
}
.card__content .hubdb__card-button.button {
	margin: unset;
	display: flex;
	padding: 0;
	line-height: 1.75;
	text-transform: capitalize;
}
.hubdb .button{
	margin: 0 auto;
	display: none;
}
.hubdb__load-more.button.button--active {
	display: flex;
	justify-content: center;
	margin: 50px auto 0;
	width: fit-content;
}

{#******* PAGINATION *******#}
.hubdb__pagination{
	margin: 50px auto 0px;
	text-align: center;
	width: fit-content;
	position: relative;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	opacity: 1;
	transition: 0.3s;
}
.hubdb__pagination-container{
	padding: 0 16px;
	display: flex;
	justify-content: center;
	gap: 4px;
}
.hubdb__button-prev,
.hubdb__button-next{
	pointer-events: none;
	cursor: initial;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .3s ease-in-out;
	opacity:0.6;
	text-decoration:none;
}
.hubdb__button-prev.button--active,
.hubdb__button-next.button--active{
	pointer-events: initial;
	cursor: pointer;
	opacity:0.95;
}
.hubdb__button-prev:hover,
.hubdb__button-next:hover{
	opacity:1;
}
.hubdb--pagination-hide .hubdb__button-prev,
.hubdb--pagination-hide .hubdb__button-next{
	opacity: 0;
	transition: all .3s ease;
}
.hubdb__button-prev{
	left: -32px;
}
.hubdb__button-next{
	right: -32px;
}
.hubdb__button-page {
	width:40px;
	height: 40px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration:none;
	transition: all .3s ease;
}
.hubdb__button-page--active{
	pointer-events:none;
}
.hubdb__button-page:hover{
	text-decoration:none;
}
{#******* CARD *******#}
.hubdb__container{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.hubdb__card{
	position: relative;
	height: 332px;
	display: flex;
	align-items: stretch;
	border: 1px solid #EDEDED;
	border-radius: 10px;
	box-shadow: -4px 4px 20px 0px rgba(0, 0, 0, 0.03);
	overflow: hidden;
	transition: .3s ease;
}
.hubdb__card:hover{
	box-shadow: 0px 4px 16px 0px rgba(17, 17, 26, 0.05), 0px 8px 32px 0px rgba(17, 17, 26, 0.05);
}
.card__featured-image {
	flex-shrink: 0;
	width: 42%;
	height: 100%;
	line-height: 0;
	position: relative;
}
.card__featured-image::after {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(46, 69, 137, 0.48) 0%, rgba(46, 69, 137, 0.48) 100%);
	opacity: 0;
	transition: 0.3s ease;
}
.hubdb__card:hover .card__featured-image::after {
	opacity: 1;
}
.card__featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.card__content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: start;
}
.card__model {
	margin: 0 0 12px;
	color: #53A4E4;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.card__name {
	margin: 0 0 16px;
	color: var(--primary);
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 125%; 
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.card__description {
	flex-grow: 1;
	margin: 0 0 16px;
	color: #9c9c9c;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 125%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.hubdb__card.card .hs-embed-wrapper {
	display: none !important;
}
.card__description p {
	margin: 0;
}
.card__description *{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.card__description > *:not(:first-child) {
	display: none;
}
.hubdb--hide{
	opacity: 0;
	min-height: 40px;
	transition: 0.3s;
}
{#*************** MEDIA QUERYS ***************#}
@media screen and (max-width: 992px){
	.hubdb__filters{
		flex-wrap: wrap;
		align-items: center;
	}
	.hubdb__filter-field{
		width:48%;
	}
}

