.box
{
	width: 90vw;
	min-width: 320px;
	max-width: 1024px;
}

.box input,
.box .link,
.box button,
.box p
{
	display: block;
	
	width: 260px;
}

.box > h1,
.box > p
{
	margin: 0;
	padding: 0;
	
	line-height: normal;
}

.box ul
{
	margin: 20px 0;
	padding: 0;
	
	list-style: none;
	
	text-align: center;
}

.box ul li
{
	position: relative;
	
	display: inline-block;
	
	width: 220px;
	
	margin: 10px 1vw;
	padding: 10px 2vw 10px 2vw;
	
	text-align: center;
	color: white;
	
	overflow: hidden;
	
	border-radius: 10px;
	
	background: var(--gradient-main);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	
	-webkit-box-shadow: 0px 2px 6px 2px rgba(0,0,0,0.46); 
	box-shadow: 0px 2px 6px 2px rgba(0,0,0,0.46);
}

/*
.box ul li:nth-child(1){background: var(--gradient-blue);}
.box ul li:nth-child(2){background: var(--gradient-fucsia);}
.box ul li:nth-child(3){background: var(--gradient-green);}
.box ul li:nth-child(4){background: var(--gradient-orange);}
.box ul li:nth-child(5){background: var(--gradient-purple);}
.box ul li:nth-child(6){background: var(--gradient-teal);}
*/

.box ul li h3
{
/* 	font-family: 'aller_displayregular'; */
	font-family: 'Lato', sans-serif;
	font-weight: var(--font-weight-black);
	font-size: 18px;
	
	line-height: normal;
	
	margin: 0;
	padding: 0;
}

.box ul li p
{
/* 	font-family: 'aller_lightregular'; */
	font-family: 'Lato', sans-serif;
	font-weight: var(--font-weight-light);
	font-size: 12px;
	
	line-height: normal;
	
	margin: 0;
	padding: 0;
}

.box ul li .badge
{
	position: absolute;
	right: 6px;
	top: 16px;
	
	width: 40px;
	height: 32px;
	
	padding-top: 8px;
	
	display: flex;
	align-items: center;
	justify-content: center;
	
	background-image: url('../img/layout/calendar.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	
/* 	font-family: 'aller_displayregular'; */
	font-family: 'Lato', sans-serif;
	font-weight: var(--font-weight-black);
	font-size: 16px;
	color: #C65C5C;
}

.box ul li button
{
	width: 247px;
	
	-webkit-box-shadow: 0px 2px 6px 2px rgba(0,0,0,0.46); 
	box-shadow: 0px 2px 6px 2px rgba(0,0,0,0.46);
}

.box ul li:nth-child(1) button{background: var(--gradient-blue);}
.box ul li:nth-child(2) button{background: var(--gradient-fucsia);}
.box ul li:nth-child(3) button{background: var(--gradient-green);}
.box ul li:nth-child(4) button{background: var(--gradient-orange);}
.box ul li:nth-child(5) button{background: var(--gradient-purple);}
.box ul li:nth-child(6) button{background: var(--gradient-teal);}

