/*********************************
*                                *
*        WORKING HOURS           *
*                                *
**********************************/

.hours {
	width: 100%;
	height: max-content;
	background-image: url('../images/bg_hours.jpg');
	padding: 50px;
	background-size: cover;
	background-position: center;
	box-shadow: 5px 5px 10px #e0dad5;
	border-radius: 10px;
}

.block-hours {
	display: flex;
    flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #fff;
    width: 450px;
    gap: 20px;
	padding: 60px;
	color: #444;
	/* box-shadow: 5px 5px 10px #999; */
}

.hours .block-hours p {
	font-family: 'Manrope';
	font-weight: 400;
	font-style: normal;
	font-size: 25px;
	text-transform: uppercase;
}

.hours-item { /* Color point fill='%23 999(the last three parameters)' */
    display: flex;
	align-items: center;
    justify-content: space-between;
	width: 100%;
	background-image: url("data:image/svg+xml,%3Csvg width='6' height='1' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='1' height='1' fill='%23999' /%3E%3C/svg%3E");
	background-repeat: repeat-x;
	background-position: bottom left;
	background-size: auto 1px;
}

.hours-container-item {
    display: block;
	background-color: #fff;
    font-size: 15px;
}

.block-hours .button-book-now{
    width: 165px;
    height: 45px;
	padding: 10px 30px;
    background-color: #c4a995;
    font-family: 'Manrope';
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
	margin: 20px 10px 10px;
	color: #fff;
    text-decoration: none;
    border: none;
	cursor: pointer;
    transition: background-color 0.3s ease;
}

.block-hours .button-book-now:hover{
    background-color: #444;
}

@media (max-width: 1000px) {
	.hours {
		border-radius: 0;
	}
}

@media (max-width: 640px) {
	
	.hours {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 50px 0;
		border-radius: 0;
	}

	.block-hours {
			width: 90%;
			gap: 15px;
			padding: 50px 30px;
		}
	
}