/*Red color for SB*/
.text-primary
{
	color: #ff0000;
}

/*Buttons*/


.btn
{
	cursor:pointer;
	display:inline-block;
	padding: 10px 30px;
	color: #fff;
	border: none;
	border-radius: 5px;
	background-color: #ff0000;
}

.btn:hover
{
	opacity: 0.9;
}
/*Bg gark*/

.btn-dark, .bg-dark
{
	background-color: #333;
	color: #fff;
}
/*4 bloks*/

.flex-items
{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 100%;
	margin-bottom: 70px;
}

.flex-items > div
{
	padding: 20px;
}

.howitworks
{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
}

.howitworks h1
{
	margin-top:50px;
	margin-bottom: 50px;
	font-size:40px;
	border-bottom: 2px solid  #ff0000;

}


/*Section header*/

.section-header
{
	padding-top:5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
/*	padding-top: 50px;
*/	/*padding-bottom: 50px;*/
}

.section-header h2
{
	font-size:40px;
	border-bottom: 2px solid  #ff0000;
	margin: 20px 0;
}


