
#featured_logos {
    position: relative;
    z-index: 1;
	padding-bottom: 30px;
	margin-top: -30px;
}

#featured_logos_content {
	list-style: none;
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	gap: 5px;
}

#featured_logos_content li {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 145px;
	        flex: 0 1 145px;
	text-align: center;
}

#featured_logos h3 {
	font-size: var(--txt-l);
	font-weight: normal;
	font-style: italic;
	margin-bottom: 0;
}

#featured_logos h3 span {
	display: block;
	width: 50%;
	text-align: center;
}

#featured_logos_content #savings {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 30%;
	        flex: 1 1 30%;
	text-align: center;
}

#featured_logos_content #savings a {
	text-decoration: none;
}

#featured_logos_content #savings_title {
	font-size: var(--txt-m);
	font-weight: normal;
}

#featured_logos_content #dollars_saved {
	display: block;
	font-size: var(--h-2);
	font-weight: 800;
	color: var(--contrast-2);
}

#featured_logos_content #savings_more {
	font-size: var(--txt-m);
}
#featured_logos_content #savings_more:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    margin-left: 5px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231e1e1e' d='M21.1 18.7 12 9.6l-9.1 9.1-2.8-2.9L12 3.9l11.9 11.9-2.8 2.9z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#featured_logos > svg {
	display: block;
	pointer-events: none;
	margin-bottom: -2px;
}

@media (max-width: 1200px) {
	#featured_logos {
		margin-top: 0;
		padding-top: 30px;
	}
	#featured_logos > svg {
		margin-left: -1rem;
		margin-right: -1rem;
	}
	#featured_logos_content {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}
@media (max-width: 900px) {
	#featured_logos h3 span {
		width: 100%;
	}
	#featured_logos_content li {
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 100%;
		        flex: 1 1 100%;
	}
	#featured_logos_content:not(.slider-initialized) li:not(:first-child) {
		display: none;
	}
	#featured_logos_content.slider-initialized {
		position: relative;
		height: 150px;
	}
	#featured_logos_content.slider-initialized li {
		position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 300px;
        height: 150px;
        margin: auto;
		opacity: 0;
		-webkit-transition: opacity 0.5s ease;
		-o-transition: opacity 0.5s ease;
		transition: opacity 0.5s ease;
	}
	#featured_logos_content.slider-initialized li.active {
		opacity: 1;
	}
}