/* Floating Icons Styles */

.floating-buttons {
    position: fixed;
    bottom: 85px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-button {
    width: 50px;
    height: 50px;
    background-color: #B78D65;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.floating-button:hover {
    transform: scale(1.1);
}



.slider {
	display: flex;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	padding: 2.5rem;
}
.item {
	animation: animate 25s linear infinite;
}
.item img
	{
		min-width: 200px;
		padding: 0 10px;
	}
.slider:hover .item {
	animation-play-state: paused;
}
@keyframes animate {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-1800px, 0, 0);
	}
}

.list-unstyled li{
    padding: 5px 0 5px;
}


.accordion-button{
    font-size: 20px;
}