.bf_hero {
	position: relative;
	background: #112E70;
	padding: 80px 0 80px 0;
}

.bf_hero h1 {
	color: white;
	text-align: center;

	font-size: clamp(40px, 10vw, 150px);
	color: white;
	font-weight: 900;
	margin: 0;
	padding: 0 30px;
}

.bf_hero h1 span {
	font-size: clamp(30px, 6vw, 80px);
	display: block;
}

.bf_hero h1 em {
	font-style: normal;
	color: #F05A4F;
}

.bf_lineup {
	position: relative;
	background: #3DB3E7;
	padding-bottom: 25px;
	margin-bottom: 20px;
	text-align: center;
}

.bf_lineup img {
	position: relative;
	margin-top: -60px;
	max-width: 100%;
}

.bf_cards {
	padding: 20px 20px 40px 20px;
}

.bf_container {
	margin-bottom: 80px;
}

.bf_three-col-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 20px;
}

@media (max-width: 1023px) {
	.bf_three-col-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 568px) {
	.bf_three-col-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

.bf_col {
	display: flex;
	flex-direction: column;
}

.bf_box {
	position: relative;
	display: flex;
	flex: 1; /* Makes all boxes equal height */
	background: #ffffff;
	padding: 40px 0 40px 20px;
	border: 1px solid #112E70;
	color: #112E70;

	min-height: 470px;
}

@media (max-width: 568px) {
	.bf_box { min-height: 400px; }
}

.bf_box_content {
	position: relative;
	flex: 0 0 40%;
	padding-top: 5px;
}

.bf_box_content div {
	position: absolute;
	top: 5px;
	left: 0;
	z-index: 1;
}

.bf_box_img {
	position: relative;
	flex: 0 0 60%;
	padding-top: 60px;
}

.bf_clearance .bf_box_content {
	flex: 0 0 62%;
}

.bf_clearance .bf_box_img {
	flex: 0 0 38%;
}

.bf_box h2 {
	font-size: clamp(40px, 3vw, 48px);
	line-height: 1;
	color: #112E70;
	font-weight: 900;
	margin: 0 0 10px 0;
	padding: 0;
}

.bf_box h2 span.upto {
	font-size: clamp(30px, 3vw, 34px);
	color: #112E70;
	margin-top: 2px;
	display: block;
}

.bf_box h2 span.discount {
	font-size: clamp(40px, 3vw, 54px);
	color: #3DB3E7;
	margin-top: 3px;
	display: block;
}

.bf_box h2 span.clearance {
	font-size: 25px;
	font-weight: 700;
	color: #F05A4F;
	margin-top: 0;
	margin-bottom: 5px;
	display: block;
}

.bf_box p {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
	padding-right: 30px;
}

@media (max-width: 768px) {
	.bf_box p {
		padding-right: 60px;
	}
}

.bf_box img {
	/*
	position: absolute;
	top: 0;
	right: 0;
	*/
	max-width: 100%;
}

.bf_box .btn {
	position: absolute;
	bottom: 40px;
	left: 20px;

    background-color: #F05A4F;
    color: #fff;
    font-weight: 500;
    padding: 12px 20px;
    margin: 0 auto;
    text-transform: uppercase;
    font-size: 16px;
    display: inline-block;
    white-space: normal;
}

.bf_box .btn:hover,
.bf_box .btn:focus {
	background-color: #ff4335;
}

.bf_box.laundrycenter .bf_box_img {
	padding-left: 10%;
}

@media (min-width: 1400px) {
    .bf_box.laundrycenter .bf_box_img img {
    	max-height: 388px;
    	width: auto;
    }
}

.reorder-on-mobile {
	display: flex;
	flex-wrap: wrap;
}

.mobile-order-1 {
	order: 2;
}
.mobile-order-2 {
	order: 1;
}

@media (max-width: 768px) {
	.mobile-order-1 {
		order: 1;
	}
	.mobile-order-2 {
		order: 2;
	}
}



.card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card-container-long {
    grid-template-columns: repeat(1, 1fr);
}

.card {
    background-color: #eaeaec;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    border: 2px solid #073b74;
    height: 100%;
}

.card h1 {
    font-size: 40px;
    font-weight: 600;
    color: #073b74;
    text-align: center;
}

.card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #073b74;
}

.card p {
    color: #666;
    line-height: 1.5;
}

.icon {
    font-size: 40px;
    margin-right: 15px;
    max-width: 70px;
}

.icon-longbar {
    margin-left: 15px;
}

.arrow {
    margin-top: 15px;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .card-container {
    grid-template-columns: 1fr;
    }
    .card {
    display: block;
    text-align: center;
    }
    .card h1 {
    font-size: 18px;
    }
    .card h3 {
    font-size: 16px;
    }
    .arrow {
    max-width: 30px;
    }
    .icon {
    margin-bottom: 15px;
    max-width: 60px;
	}
}