:root {
  --primary-color: #000000;
  --secondary-color: #616161;
  --unfilled-color: #61616180; /* used in the progress bar. the 80 at the end is hex for 50% transparency*/
  --text-bg-color: #DCDCDC80;
}


.bb-bg-grey {
	margin-top: 70px;
	padding: 20px;
	background-color: #f7f8fa;
}

.bb-bg-white {
	margin-top: 40px;
	padding: 20px;
	background-color: #ffffff;
}

.bb-section-heading {
	text-align: center;
	font-size: 28px;
	line-height: 130%;
	font-weight: bold;
	font-variant: small-caps;
}

.bb-section-wrapper {
	width: 100%;
	text-align: center;
}

.bb-how-works {
	min-width: 300px;
	width: 28%;
	display: inline-block;
	margin: 0% 2% 0% 2%;
	text-align: center;
}

.bb-templates {
	min-width: 250px;
	width: 20%;
	display: inline-block;
	margin: 0% 2% 0% 2%;
}

.bb-features {
	float: left;
	text-align: left;
	width: 30%;
	min-width: 300px;
	line-height: 180%;
}

.bb-check {
	font-family: sans-serif;
	background: #616161;
	color: white;
	padding: 1px 4px;
	border-radius: 50%;
}

.cta {
	display: inline-block;
	background-color: #000000;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
}

.cta:hover { 
	background: #616161;
}

.hidden {
	display:none;
}

h3 {
	font: normal 18px 'Roboto', sans-serif;
	text-transform: uppercase;
	text-align: left;
	margin: 0px;
	cursor: pointer;
}

.slider-wrapper {
	margin: 1rem;
	position: relative;
	overflow: hidden;
	height: 200px;
}

.slides-container {
	height: calc(100vh - 2rem);
	width: 100%;
	display: flex;
	overflow: scroll;
	scroll-behavior: smooth;
	list-style: none;
	margin: 0;
	padding: 0;
}

.slide-arrow {
	position: absolute;
	display: flex;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 4rem;
	background-color: white;
	border: none;
	width: 2rem;
	font-size: 3rem;
	padding: 0;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 100ms;
}

.slide-arrow:hover,
.slide-arrow:focus {
	opacity: 1;
}

#slide-arrow-prev {
	left: 0;
	padding-left: 0.25rem;
	border-radius: 0 2rem 2rem 0;
}

#slide-arrow-next {
	right: 0;
	padding-left: 0.75rem;
	border-radius: 2rem 0 0 2rem;
}

.slide {
	flex: 1 0 100%;
}

.slides-container {
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none;  /* Internet Explorer 10+ */
}

/* WebKit */
.slides-container::-webkit-scrollbar { 
	width: 0;
	height: 0;
}

.testimonials {
	min-width: 500px;
	max-width: 75%;
	margin-left: 20px;
}

.testimonials-img {
	float: left;
	padding-right: 10px;
}

img.bb-sample-quiz {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	width: 200px;
	height: 200px;
}


@media (min-width: 600px) {
	.top-games-div {
		display: inline-block; 
		min-width: 49%;
		float: left;
	}
}

@media (max-width: 600px) {
	.slider-wrapper {
		height: 380px;
	}
	
	.testimonials-text {
		padding-top: 20px;
		display: block;
		max-width: 330px;
		clear: both;
	}
}