/* Padding */

.padding_top_default {
	padding-top: clamp(15px, 3vw, 40px);
}
.padding_top_half {
	padding-top: clamp(15px, 3vw, 20px);
}
.padding_top_none {
	padding-top: 0;
}
.padding_bottom_default {
	padding-bottom: clamp(15px, 3vw, 40px);
}
.padding_bottom_half {
	padding-bottom: clamp(15px, 3vw, 20px);
}
.padding_bottom_none {
	padding-bottom: 0;
}
.padding_full {
	padding-left: 15px;
	padding-right: 15px;
}
.padding_1400 {
	padding-left: max(clamp(20px, 6vw, 60px), calc(50% - 700px));
	padding-right: max(clamp(20px, 6vw, 60px), calc(50% - 700px));
}

	/* BG Colour */
.bg_white {
	background-color: #fff;
}
.bg_grey {
	background-color: #F1F1F1;
}

/* Split Content */
div.padding_full.fc_split_content {
	padding-left: 0;
	padding-right: 0;
}
.fc_split_content {
	display: flex;
}
.fc_split_content > * {
	flex: 1 1 50%;
	min-height: 620px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	position: relative;
}
.fc_split_content > div.content {
	padding: clamp(15px, 6vw, 100px);
}
.fc_split_content > .image {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	background: center / cover no-repeat;
}
.fc_split_content.right {
	flex-direction: row-reverse;
}

/* Call To Action Tiles */
.cta_tiles_container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.cta_tile_container {
	background-color: #fff;
	border: solid 1px #c1c1c1;
	margin: 0;
	font-weight: 900;
	box-shadow: 5px 10px 18px #c1c1c1;
	flex: 1 0 calc((100% - (20px * 1))/2);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 15px;
}
.cta_tile_top h1.entry-title {
	text-transform: none;
}
.cta_tile_text_image {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.cta_tile_text_image > div {
	flex: 1 1 calc((100%/2) - 5px);
}
.cta_tile_text {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	font-weight: 700;
	color: #ed1c24;
	font-size: clamp(36px, 4vw, 75px);
}
.cta_price_subtext {
	font-weight: 400;
	font-size: 20px;
}
.cta_tile_image {
	width: 100%;
	height: 0;
	padding-bottom: calc((100%/2) - 5px);
	background: center / contain no-repeat;
}
.cta_tile_bottom .first-offer-header-blue.highlight_text {
	padding-left: 30px !important;
}

/* Brands Banner */

.brands_banner {
	display: flex;
	gap: 40px;
	align-items: stretch;
	flex-wrap: wrap;
	margin: 35px auto;
}
.brands_banner .brand {
	width: calc(25% - 30px);
	background-color: white;
	max-height: 120px;
	padding: 10px;
	transition: all 150ms ease-in-out;
	box-sizing: border-box;
	height: 10vw;
	min-height: 75px;
}
.brands_banner .brand > div {
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.brands_banner .brand:hover {
	opacity: 0.7;
	transition: all 150ms ease-in-out;
}

@media (max-width: 1400px) {

	.fc_split_content > * {
		flex-basis: 45%;
		min-height: 400px;
	}
	.fc_split_content > div.content {
		flex-basis: 55%;
	}

}
@media (max-width: 1024px) {
	.brands_banner .brand {
		width: calc(50% - 10px);
	}
	.brands_banner {
		gap: 20px;
	}
}
@media (max-width:850px) {

	.fc_split_content {
		display: block;
	}
	.fc_split_content > div.content {
		min-height: 0;
	}
	.fc_split_content > .image {
		min-height: 60vw;
	}

}
