footer {
	background: #5e1aa1;
	padding: 30px 0;
}

footer .play-row {
	padding: 20px 10%;
	background: #bf8cf1;
	border-radius: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

footer .play-row span,
footer .play-row a {
	color: #0f0c27;
	font-size: .9rem;
	font-weight: 600;
	text-transform: uppercase;
}
footer ul {
	list-style-type: none;
	padding: 0;
	margin-top: 50px;
}
footer ul li {
	color: #fff;
	font-size: 1rem;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 10px;
}
footer ul li:first-child {
	margin-bottom: 20px;
}
footer ul li a {
	color: #fff;
	font-size: 1rem;
	text-transform: capitalize;
	font-weight: 300;
}
footer ul li a:hover {
	color: #fff;
	text-decoration: underline;
}

footer .logos {
	margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .copy {
	margin-top: 25px;
}

@media ( max-width: 768px ) {
    footer .play-row {
        margin-bottom: 20px;
    }
	footer ul li:not(:first-child) {
		display: inline-block;
	}
	footer ul li:first-child {
		margin-bottom: 6px;
	}
	footer ul li:not(:first-child):after {
        content: '';
        border-right: 2px solid #ffffff4a;
        padding-left: 10px;
        margin-right: 5px;
        font-size: 11px;
	}
	footer ul li:last-child:after {
		display: none;
	}
	footer ul {
		margin-top: 10px;
	}
}