.sbf-section {
  --item-border: #ECEEF1;
	--scrolling-button-color: #5378FC;
}
.sbf-section h3 {
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1rem;
}
.sbf-list-container {
	display: flex;
	position: relative;
	align-items: center;
	gap: 20px;
}
.sbf-section ul {
	display: flex;
	overflow: hidden;
	scroll-behavior: smooth;
	align-items: center;
	height: 200px;
	gap: 20px;
	padding: 0 10px;
	flex-basis: 100%;
	justify-content: space-between;
}
.sbf-section ul li {
	border-radius: 8px;
	transition: 0.3s;
}
.sbf-section ul li a {
	color: inherit;
	font-weight: 700;
	font-size: 18px;
}
.sbf-section ul li a:hover,
.sbf-section ul li a:visited,
.sbf-section ul li a:focus {
	text-decoration: none;
	color: inherit;
}
.sbf-section ul li:hover {
	transform: scale(1.1);
	cursor: pointer;
}
.sbf-section .sbf-item-container {
	width: 155px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 10px;
	justify-content: space-between;
	text-align: center;
}
.sbf-section .sbf-item-container .sbf-icon {
	display: flex;
	justify-content: center;
}
.sbf-section .sbf-item-container .sbf-icon img {
	align-self: center;
}
.sbf-section .sbf-scroll-button {
	cursor: pointer;
}
.sbf-section .sbf-scroll-disabled {
	opacity: 0.3;
}

@media (max-width: 768px) {
    .sbf-section h3 {
        margin-top: 20px;
    }
    .sbf-section .sbf-scroll-button {
        position: absolute;
        display: flex;
        height: 35px;
        width: 35px;
        border-radius: 100%;
        background-color: var(--scrolling-button-color);
        z-index: 9;
        align-items: center;
        justify-content: center;
    }
    .sbf-section .sbf-item-container {
        width: 135px;
        /* The height: 135px; line was removed here */
    }
    .sbf-section ul li:hover {
        transform: scale(1);
    }
    .sbf-section .sbf-scroll-button:first-child {
        left: -7px;
    }
    .sbf-section .sbf-scroll-button:last-child {
        right: -7px;
    }
}