

.hubdb-loading-screen{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;
	opacity: 0;
	visibility: hidden;
	transition: all ease-in-out 0.2s;
}

.hubdb-loading-screen--active{
	opacity: 0.7;
	visibility: visible;
}

.hubdb-loading-ring {
	position: fixed;
	width: 80px;
	height: 80px;
	top: calc(50% - 40px);
	left: calc(50% - 40px);
}

.hubdb-loading-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 64px;
	height: 64px;
	margin: 8px;
	border: 8px solid black;
	border-radius: 50%;
	animation: loadingRing 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: black transparent transparent transparent;
}
.hubdb-loading-ring div:nth-child(1) {
	animation-delay: -0.45s;
}
.hubdb-loading-ring div:nth-child(2) {
	animation-delay: -0.3s;
}
.hubdb-loading-ring div:nth-child(3) {
	animation-delay: -0.15s;
}
@keyframes loadingRing {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.hubdb-filters{
	display: flex; 
	flex-wrap: wrap;
	align-items:center;
	column-gap:12px;
	max-width: 1214px;
	margin: auto;
	margin-bottom: 70px;
}

.hubdb-filter__field{
	margin: auto;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.hubdb-filter__field input{
	padding: 20px;
	background-color: transparent;
	color: #FFF;
	border: 1px solid #FFFFFF;
}
.hubdb-filter__field select{
	padding: 13px 160px 13px 20px;
	background-color: transparent;
	color: #FFF;
	border: 1px solid #FFFFFF;
	background-image: url('https://23594019.fs1.hubspotusercontent-na1.net/hubfs/23594019/Vector.svg');
	font-size:12px;
	background-position: calc(100% - 20px) 50%;
}


.hubdb-filter__field select:focus-visible {
	outline: none;
}
.hubdb-filter__field select option{
	color:var(--primary);
}

.hubdb-filter__field--multiselect{
	display: flex;
	justify-content: flex-start;
}

.hubdb-filter__checkbox-subfield{
	text-align: center;
	margin: 0;
}

.hubdb-filter__checkbox-subfield label{
	display: block;
}

.hubdb-container{
	display: flex; 
	flex-wrap: wrap; 
	justify-content: flex-start;
	row-gap: 100px;
	column-gap: 37px;
	margin: auto;
}

.hubdb-card{
	width: calc(25% - 28px);  
	text-align: center;
}



.hubdb .button--disabled{
	display: none;
}

.hubdb__pagination{
	margin: 50px auto;
	text-align: center;
	overflow:hidden;
	position: relative;
	display: flex;
	justify-content: center;
}

.hubdb__pagination-container{
	padding: 0 12px;
}

.swiper-slide{
	color: #ccc;
	font-weight: 600;
	cursor: pointer;
}

.swiper-slide-active{
	color: black;
	pointer-events: none;
}

.hubdb__button-prev,
.hubdb__button-next{
	cursor: pointer;
	top:0;
}



.hubdb__button-next{
	right: -15px;
}

.swiper-wrapper{
	width: 80%;
}

{# Hide Icons #}
.hubdb-card__content .hubdb-card__image > div{
	display:none;
}
{# Show specific icon #}
.hubdb-card__content.pdf .hubdb-card__image > .hubdb-card__pdf,
.hubdb-card__content.video .hubdb-card__image > .hubdb-card__video,
.hubdb-card__content.document .hubdb-card__image > .hubdb-card__document{
	display:block;
}
.hubdb-card__content{
	text-align:left;
}
.hubdb-card__image {
	
	margin: auto;
	padding-bottom: 50px;
}
.hubdb-card__document__divider{
	border:none;
	height:1px;
	background-color:#D4AF37;
	margin-bottom:15px;
}
.hubdb-card__type{
	margin-bottom:10px;
	text-transform:capitalize;
	color:#272727;
}
.hubdb-card__content.pdf .hubdb-card__type{
	text-transform:uppercase;
}
.hubdb-card__title{
	font-family: 'Inria Serif', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 125%;
	color: #1A214B;
}
.hubdb-card__description{
	color:#272727;
}
.swiper-button-disabled{
	display:none;
}
.swiper-slide{
	padding: 15px;
	border: 1px solid #9EA3A6;
	border-radius: 5px;
	color: #1A214B;
	width:64px !important;
	height:64px !important;
	font-size: 18px;
	font-weight: 800;
}
.swiper-slide-active{
	background: #1A214B;
	color:#fff;
}
.hubdb__pagination-container .swiper-wrapper{
	transform: translate3d(0px, 0px, 0px)!important;
	gap:20px;
}
.hubdb__pag{
	overflow:hidden;
}
.hubdb__pag > div{
	margin-left:-50px;
}
.hubdb-filters__label{
	width: 100%;
	margin:0;
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 28px;
	color: #A4A4A4;
	padding-bottom: 20px;
}
.hubdb-filter__field label{
	background: #1A214B;
	/*border: 4px solid #000000;*/
	border: 4px solid transparent;
	border-radius: 30px;
	padding: 10px 15px;
	font-family: 'Roboto Condensed', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFF;
	text-transform: uppercase;
	cursor: pointer;
}

.hubdb-filter__field label:hover{
	background: #D4AF37;
  color: #1A214B;
}

.hubdb-filter__checkbox-subfield input:checked + label{
	border: 4px solid #D4AF37;
	background: #D4AF37;
	color: #1A214B;
}

.check-with-label:checked + .label-for-check{
	background-color: #D4AF37;
}
.hubdb-card__position{
	font-family: 'Inria Serif', sans-serif;
	font-style: bold;
	font-weight: 700;
	font-size: 18px;
	line-height: 175%;
	color: #D6B858;
}

p.hubdb-card__phone, p.hubdb-card__email, p.hubdb-card__social {
	display: flex;
	align-items: center;
	gap: 10px;
}

p.hubdb-card__phone span, p.hubdb-card__email span, p.hubdb-card__social span{
	font-family: 'Roboto Condensed', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 175%;
	color: #000000;
}
.hubdb-card__email svg {
	min-width: 21px;
}
.hubdb-card__email span {
	inline-size: 225px;
	overflow-wrap: break-word;
	hyphens: manual;
}
p.hubdb-card__pdf{
	display: flex;
	align-items: center;
	gap: 10px;
	max-height: 25px;
}
p.hubdb-card__pdf svg{
	width: 20px;
}
@media(max-width:1040px){
	.hubdb-card{
		width: calc(33.33% - 28px);  
		text-align: center;
	}
}
@media(max-width:992px){
	.hubdb-card{
		width: calc(50% - 28px);  
		text-align: center;
	}
}
@media screen and (max-width: 765px){
	.hubdb-filters{
		flex-direction: column;
		align-items: center;
		padding:20px 0;
	}
	.hubdb-card{
		width:90%;
		margin: auto;
	}
	.hubdb-container {
		row-gap: 55px;
	}
}