@charset "ISO-8859-1";



/** Gallery **/

.gallery img {
	width: 400px;
	height: 300px;
	cursor: pointer;
}

.modal-content {
	position: relative;
}

.modal-body {
	position: relative;
	/* Make the modal body relative for absolute positioning */
}

#prevButton,
#nextButton {
	position: absolute;
	top: 45%;
	/* Center vertically */
	transform: translateY(-50%);
	/* Adjust for the height of the button */
	transition: background-color 0.3s, color 0.3s;
	/* Smooth transition */
}

#prevButton {
	left: 10px;
	/* Move to the left */
}

#nextButton {
	right: 10px;
	/* Move to the right */
}

#prevButton:hover:not(:disabled),
#nextButton:hover:not(:disabled) {
	background-color: #007bff;
	/* Change to a blue background on hover */
	color: white;
	/* Change text color to white */
}

#prevButton:disabled,
#nextButton:disabled {
	opacity: 0.5;
	/* Make the button semi-transparent */
	cursor: not-allowed;
	/* Change the cursor to indicate it's disabled */
}



.img-fluid {
	width: 600px;
	height: 400px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (max-width: 950px) {
	.img-fluid {
		width: 500px;
		height: 300px;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}


}

.pagination .page-item.active .page-link {
	background-color: #007bff;
	/* Active background color */
	border-color: #007bff;
	/* Active border color */
	color: white;
	/* Active text color */
}

.bg-modal-header {
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	color: #ffffff;
	background-color: #0480be;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;

}

.icon-dt {
	color: #C70039;

}

.icon-desc {
	color: #0480be;
}

.img-desc {
	color: #073069;
}

@media only screen and (max-width: 950px) {
	.img-desc {
		color: #073069;
		font-size: 0.9rem;
	}
}