.nf-field-element input[type="submit"] {
    background: #EE1A7F!important;
    border-radius: 50px!important;
    padding-left: 20px!important;
    padding-right: 20px!important;
}

.insight-image-bg {
	height: 200px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 15px;
}

div#page-5570 {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

div#page-5570 > div {
	margin-bottom: 40px;
}

.insight-child{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.insight-child a.insight-button{
	border: 1px solid #76f16b;
	border-radius: 30px;
	padding: 10px 25px;
	color: #fff;
	background: #76f16b;
	font-weight: 700;
	margin: auto;
	width: 40%;
}
.insight-child{
	text-align: center;
}

.insight-child a.insight-button:hover{
	border: 1px solid #7bdcb5;
	color: #fff;
	background: #7bdcb5;
}

span.insight-excerpt {
	margin-bottom: 10px;
	color:black;
}



@media (max-width:767px){
	div#page-5570 {
		flex-direction: column;
	}
	.insight-child{
		margin-bottom: 20px;
		border-bottom: 1px solid #eee;
	}
}


/* Marquee */
@keyframes marquee_left {
	0% {
		transform: translateX(0%);
	}

	100% {
		transform: translateX(-100%);
	}
}

@keyframes marquee_right {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(0%);
	}
}

.marquee-left,
.marquee-right{
	animation-play-state: running;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.marquee-left{
	animation: marquee_left 60s linear infinite;
} 

.marquee-right
{
	animation: marquee_right 60s linear infinite;
}  

.marquee-left div,
.marquee-right div{
	width: 10%;
}

.marquee-left img,
.marquee-right img {
	min-width: 90px;
	height: 40px!important;
	object-fit: contain;
}

@media (max-width:768px){
	.marquee-left div,
	.marquee-right div{
		width: 20%;
	}
	
}