.home .blue-checklist li{
	font-size: 20px;
}

/* #region home slider/header */
	.home-header{
		background-image: url('/files/images/home-banner.png');
		background-size: cover;
		background-position: center;
	}

	/* .home .page-heading .caption-small{
		font-size: calc(0.7rem + 1.1vw);
	} */
	
	.home .button-row a{
		margin-right: 35px;
	}
/* #endregion home slider/header */

/* #region home-accordions */
	.radiotabs{
		display: flex;
		flex-wrap: wrap;
		margin: 0 auto;
		justify-content: center;
		padding: 0;
	}

	.radiotabs * {
		box-sizing: border-box !important;
	}

	.radiotabs .panel > .row > div{
		padding-left: 0;
		padding-right: 0;
	}
	
	.radiotabs .tabs {
		display: flex;
		flex-wrap: wrap;
		margin: 0 auto 20px;
		border-radius: 10px 10px 0 0;
	}

	.radiotabs .tab {
		position: absolute;
		opacity: 0;
	}

	.radiotabs .panel .text-side{
		padding: 30px !important;
	}

	.radiotabs .panel img{
		object-fit: cover;
	}
	
	.radiotabs .label {
		flex: 1;
		cursor: pointer;
		font-size: 24px;
		/* text-transform: uppercase; */
		color: var(--primary-grey);
		transition: all .3s;
		border-bottom: solid 1px var(--main-teal);
	}
	
	.radiotabs .label:hover {
		color: var(--main-teal);
	}

	.radiotabs .tab:checked + .label {
		color: white;
		background: var(--main-dark-blue);
	}

	.radiotabs .panel {
		transition: all .3s;
		height: 0;
		overflow: hidden;
		/* padding: 0 30px; */
		padding: 0;
		width: 100%;
	}
	.radiotabs .panel .tab-title{
		margin-bottom: 25px;
		font-weight: 600;
	}
	.radiotabs .panel p:not(.tab-title){
		/* font-size: 20px; */
	}
	.radiotabs .tab:checked + .label + .panel {
		height: auto;
		/* padding: 40px 30px; */
		/* padding: 40px 0; */
	}
	@media (min-width: 600px) {
		.radiotabs .panel {
			/* unless on mobile, push all content panels to the end */
			order: 99;
		}
		.radiotabs .tab:checked + .label + .panel {
			border-top: solid 2px var(--main-teal);
			margin-top: -5px;
		}
		.radiotabs .label {
			flex: 1;
			border-bottom: none;
			margin: 0 0 5px 0px;
			padding: 10px 18px;
			text-align: center;
			display: flex;
			align-items: center;
			justify-content: center;
		}
	}

	@media (max-width: 599px) {
		.radiotabs .label{
			width: 100%;
			text-align: center;
		}
	}
/* #endregion home-accordions */

/* #region home proven-results */
	.home-proven-results .button-row{
		display: flex;
		justify-content: space-around;
		align-self: flex-end;
	}
	.home-proven-results .button-row a{
		margin-left: 20px;
		width: 250px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.home-proven-results .count-up {
		font-size: 65px;
		font-weight: 700;
		margin-bottom: 10px;
	}
	.home-proven-results .counters .label {
		color: var(--main-grey);
		font-size: 1.45rem;
	}

	.home-proven-results.bg-blue .counters .label {
		color: white;
	}
/* #endregion home proven-results */