body {
    background-color: #FFFFFF;
}

footer {
	background-color: #f4f4f5;
}

.navbar-custom {
    /*background-color: rgba(255,255,255,0.6);*/
    margin-bottom: 2em;
}

.navbar-brand {
    /*color: #EBE9EC;*/
    font-size: 1.5em;
}

.nav-link {
    /*color: #FFFFFF;*/
    font-size: 1.2em;
}

.nav-item a:hover {
    /*color: #F0E100;*/
}

.nav-container {
    border-bottom: 2px solid #000000;
	padding-bottom: 1em;
}

.section-white {
    background-color: #FFFFFF;
}

/*------------- image slider -----------------*/

div.slider-container {
	width: 800px;
	height: 627px;
	position: relative;
	margin: 20px;
}

div.slider-image {
	height: 100%;
	background-repeat: no-repeat;
	background-position: top left;
	background-size: cover;
	position: absolute;
	top: 0px;
	left: 0px;
}

div.before {
	width: 50%;
	z-index: 2;
}

div.after {
	width: 100%;
	z-index: 1;
}

input.slider {
	width: 100%;
	height: 100%;
	outline: none;
	background-color: transparent;
	position: absolute;
	margin: 0;
	cursor: pointer;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	transition: 0.25s all ease-in-out;
	-moz-transition: 0.25s all ease-in-out;
	-webkit-transition: 0.25s all ease-in-out;
	z-index: 4;
}

input.slider::-moz-range-thumb {
	width: 7px;
	height: 627px;
	background-color: white;
	cursor: pointer;
}

input.slider::-webkit-slider-thumb {
	width: 7px;
	height: 627px;
	background-color: white;
	cursor: pointer;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

div.slider-button {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	background-color: white;
	position: absolute;
	top: calc(50% - 19px);
	left: calc(50% - 19px);
	cursor: pointer;
	z-index: 3;
}

div.slider-button:before {
	color: #555;
	position: absolute;
	top: 3px;
	left: 0px;
	content: "\2B9C";
}

div.slider-button:after {
	color: #555;
	position: absolute;
	top: 3px;
	right: 0px;
	content: "\2B9E";
}

/*------------ about.php ---------------------*/

.aboutbg {
	z-index: 0;
	opacity: 0.5;
	/*max-height: 500px;*/
	overflow: hidden;
}

.card-img-top {
	height: 200px;
	object-fit: cover;
}

.clickable {
	cursor: pointer;
	transition: 0.3s;
}

.clickable:hover {
	border-color: #3C84AB;
}

