h2,h3{
	color:#FFF;
}

.prem-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px;
	grid-auto-rows: minmax(100px, auto);
}

.prem-wrapper>.grid-1 {
	grid-column: 1 / 3;
	grid-row: 1;
}
.prem-wrapper>.grid-2 {
	grid-column: 1;
	grid-row: 2;
}
.prem-wrapper>.grid-3 {
	grid-column: 2;
	grid-row: 2;
}
.prem-wrapper>[class*=grid-] {
	padding: 10px;
	border-radius: 4px;
	letter-spacing: 1px;
	background-color: #191c24;
	background-clip: border-box;
	border: 1px solid rgba(0, 0, 0, 0.125);
}

.grid-2>p{
	margin-left: 23px;
	margin-right: 30px;
	line-height: 1.5em;
}
.hl1,.hl2,.hl3{
	font-weight:bold;
	font-size: 20px;
}
.hl1 { color:#0090e7; }
.hl2 { color:#00d25b; }
.hl3 { color:#8f5fe8; }

.benefits {
	list-style-type: none;
	padding-inline-start: 25px;
	color: #b9b6b6;
	font-size: 15px;
}
.benefits>li {
	margin-top:10px;
}
.benefits>li>.icon {
	display: inline-block;
	width: 35px;
	height: 35px;
	color: #191c24;
	line-height: 35px;
	text-align: center;
	margin-right: 6px;
}
.benefits>li>.text {
	display: inline-block;
}
.benefits>li:nth-child(5n+1)>.icon{background:#0090e7;}
.benefits>li:nth-child(5n+2)>.icon{background:#00d25b;}
.benefits>li:nth-child(5n+3)>.icon{background:#8f5fe8;}
.benefits>li:nth-child(5n+4)>.icon{background:#ffab00;}
.benefits>li:nth-child(5n+5)>.icon{background:#fc424a;}

.cta-area {
	text-align: center;
	margin-top:50px;
	margin-bottom:50px;
}
.cta-area>.cta-button {
	background: #0090e7;
	padding: 19px 36px;
	border-radius: 50px;
	color: #FFF;
	text-decoration: none;
	font-size: 25px;
	border: 1px solid #63a6cf;
}

@media only screen and (max-width: 1000px) {
	.prem-wrapper>.grid-1 {
		grid-column: 1 / 3;
		grid-row: 1;
	}
	.prem-wrapper>.grid-2 {
		grid-column: 1 / 3;
		grid-row: 2;
	}
	.prem-wrapper>.grid-3 {
		grid-column: 1 / 3;
		grid-row: 3;
	}
}