/**
 *	Farben Donkey Concepts:	#532c7b + #462568
	Farben e-drive Center:	#3aaa35 + #0ec645
 */

nav.navbar {
	background-color: white;
	box-shadow: 1px 1px 0 0 #e3e3e3;
}
nav.navbar .container {
	justify-content: flex-start;
	flex-wrap: nowrap;
}
@media (max-width: 400px) {
	nav.navbar .container img {
		max-width: 60%;
		height: auto; 
	}
}

nav.navbar .navbar-toggler {
	border: 0; 
	margin-right: 30px;
} 
@media (max-width: 400px) {
	nav.navbar .navbar-toggler {
		margin-right: 0;
	}
}
nav.navbar .nav-item {
	margin-left: 30px;
}

nav.navbar .nav-link {
	color: #242424;
	font-size: 18px;
	font-weight: 500;
}
nav.navbar .nav-link.donkey:hover, nav.navbar .nav-link.donkey:focus {
	color: #a6a6a6;
}
nav.navbar .nav-link.edrive:hover, nav.navbar .nav-link.edrive:focus {
	color: #3aaa35;
}

h2 {
	color: black;
	font-size: 1.5rem;
	margin-bottom: 20px;; 
}

h3 {
	font-size: 1.2rem;
	margin-top: 1rem;
}

.btn.w-100 {
	margin-top: 2rem;
	
}

.btn-donkey {
	background-color: #532c7b;
	color: white;
}
.btn-donkey:hover, .btn-donkey:focus {
	background-color: #462568;
	color: white;
}

.btn-edrive {
	color: white;
    background: -webkit-linear-gradient(left,#3aaa35,#0ec645);
    background: -moz-linear-gradient(left,#3aaa35,#0ec645);
    background: -o-linear-gradient(left,#3aaa35,#0ec645);
    background: linear-gradient(left,#3aaa35,#0ec645);
}
.btn-edrive:hover, .btn-edrive:focus {
	color: white;
    background: -webkit-linear-gradient(left,#0ec645,#3aaa35);
    background: -moz-linear-gradient(left,#0ec645,#3aaa35);
    background: -o-linear-gradient(left,#0ec645,#3aaa35);
    background: linear-gradient(left,#0ec645,#3aaa35);
    transition: all .2s;
}

img.logo-donkey {
	max-height: 80px;
	margin-bottom: 20px;
	width: auto;
	max-width: 100%;
}
img.logo-edrive{
	max-height: 60px;
	margin-top: 10px;
	margin-bottom: 30px;
	width: auto;
	max-width: 100%;
}

.card {
	background-color: #1e1e1e;
	border-radius: 0;
}

.card-img-top {
	object-fit: cover;
    object-position: top;
	max-height: 400px;
}

.card h2 {
	color: white;
}

footer {
	background-color: #1e1e1e;
	color: white;
	font-size: 18px;
	padding-top: 15px;
    border-top: 1px solid gray;
}

footer a {
	color: white;
	text-decoration: none;
	margin-left: 10px;
}

footer a:hover, footer a:focus {
	text-decoration: underline;
}

@media (max-width: 767px) {
	.navbar-brand {
		font-size: 17px;
	}
}