.gca-car-brands
{
	background-color: #363636;
}

.gca-car-brands ul
{
	text-align: center;
	font-size: 0;	/* fixes spaces between inline(-block) child elements */
	border-right: 1px solid #282828;
}

.gca-car-brands li
{
	width: 20%;
	display: inline-block;
	overflow: hidden;
	border-left: 1px solid #282828;
}

.gca-car-brands li
{
	height: 250px;
	border-bottom: 1px solid #282828;
}

.gca-car-brands li:nth-child(n + 6)
{
	border-bottom: none;
}

.gca-car-brands a
{
	height: 100%;
}

.gca-car-brands a
{
	display: block;
	position: relative;
	user-select: none;
}

.gca-car-brands img
{
	width: 70%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.gca-car-brands a:hover
{
	background-color: #fff;
	background: linear-gradient(to bottom, #d2d2d2 0%, #ffffff 33%, #ffffff 66%, #d2d2d2 100%);
}

.gca-car-brands li:hover .light,
.gca-car-brands li .dark
{
	display: none;
}

.gca-car-brands li .light,
.gca-car-brands li:hover .dark
{
	display: block;
}


@media (max-width: 1200px)
{
	.gca-car-brands ul
	{
		border: none;
	}

	.gca-car-brands li,
	.gca-car-brands li:last-child
	{
		height: 300px;
		width: 25%;
		border: 0;
	}
}

@media (max-width: 800px)
{
	.gca-car-brands li,
	.gca-car-brands li:last-child
	{
		height: 160px;
	}
}

@media (max-width: 600px)
{
	.gca-car-brands li,
	.gca-car-brands li:last-child
	{
		height: 180px;
		width: 50%;
		border: 0;
	}
}



.gca-product-bar
{
	min-height: 100px;
	background-color: #ccc;
	margin-top: -15px;
}

/* allow gca-product-bar to pull up to under main menu */
.vc_row[data-vc-full-width]
{
	overflow: initial !important;
}

.gca-product-bar ul
{
	list-style: none;
	text-align: center;
}

.gca-product-bar li
{
	display: inline-block;
	margin: 10px 50px 0 50px;
}

.gca-product-bar .image-container
{
	position: relative;
	width: 70px;
	height: 60px;
	text-align: center;
	line-height: 105px;
	margin: 0 auto;
}

.gca-product-bar .image-container img
{
	position: absolute;
    left: 6%;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	display: inline-block;
}

.gca-product-bar li .dark,
.gca-product-bar li:hover .light
{
	/*display: none;*/
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gca-product-bar .light,
.gca-product-bar li:hover .dark
{
	/*display: inline-block;*/
	opacity: 100;
	transition: opacity 0.3s ease;
}

.gca-product-bar li span
{
	display: block;
	text-align: center;
	font-size: 14px;
	color: #363636;
	font-family: 'Hero', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
}



/* Collapsable */
.collapsable .collapse-button
{
	text-align: center;
	margin-bottom: 25px;
}

.collapsable > p
{
	margin-bottom: 5px;
}

.collapsable .collapse-button span
{
	display: inline-block;
	background-color: #005b7f;
	color: #e1e1e1;
	font-size: 16px ;
	font-weight: 600;
	padding: 0 10px ;
	min-height: 50px;
	line-height: 50px;
	text-transform: uppercase;
	cursor: pointer;
}

.collapsable .collapse-container
{
	display: none;
}

/* cta-card */
.cta-card
{
	width: 100%;
	height: 255px;
	position: relative;
	z-index: 2;
	padding: 20px 25px 20px 25px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}

.cta-card::after
{
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	transition: background-color 0.3s ease;
}

.cta-card:hover::after
{
	background-color: rgba(0,0,0,0.6);
}

.cta-card img
{
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.cta-card .cta-card__content
{
	font-family: 'Hero', sans-serif;
	font-size: 22px;
	line-height: 28px;
	letter-spacing: 3.14px;
	color: #fff;
	text-transform: uppercase;
	padding-left: 30px;
	z-index: 3;
	position: relative;
}

.cta-card .cta-card__content .fb
{
	width: 19px;
	height: 19px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.cta-card .cta-card__content .fb::before
{
	content: '';
	display: block;
	background-image: url(../images/facebook.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 19px;
	height: 19px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
}

.cta-card .cta-card__content .insta
{
	width: 19px;
	height: 19px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.cta-card .cta-card__content .insta::before
{
	content: '';
	display: block;
	background-image: url(../images/insta.svg);
	background-size: cover;
	background-repeat: no-repeat;
	width: 19px;
	height: 19px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
}

@media (max-width: 767px)
{
	.mobile-spacing .vc_column-inner
	{
		margin-bottom: 50px;
	}
}