@import url('fonts.css');
@import url('bootstrap-icons.css');
@import url('vegas.min.css');

:root {
	--bs-primary: #a0c238;
	--bs-secondary: #444444;
	--bs-tertiary: #f8f8f8;
}

html, body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.8;
	color: var(--bs-secondary);
}

h1, .h1 {
	margin: 0 0 30px 0;
	color: var(--bs-primary);
	font-weight: 800;
}
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	margin: 0 0 30px 0;
	color: var(--bs-secondary);
	font-weight: 800;
}

h1, .h1 { font-size: 36px; }
h2, .h2 { font-size: 32px; }
h3, .h3 { font-size: 28px; }
h4, .h4 { font-size: 24px; }
h5, .h5 { font-size: 20px; }
h6, .h6 { font-size: 20px; }

h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small { margin-left: 15px; }

p {
  margin: 15px 0;
  text-align: justify;
  -moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens: auto;
}

a {
  color: var(--bs-primary);
  text-decoration: none;
  transition: all .25s;
}
a:hover {
  color: var(--bs-secondary);
  text-decoration: none;
}

small {
  font-size: 65%;
  display: block;
  font-weight: 300;
	color: var(--bs-secondary);
}

strong,
.fw-bold {
  font-weight: 600;
}

hr {
  display: block;
  margin: 45px 0;
	opacity: 0.1;
}

.text-primary {
	color: var(--bs-primary) !important;
}

.short-divider {
	width: 180px;
	display: block;
	margin: 30px 0;
	height: 5px;
	border-top: 1px solid var(--bs-primary);
	border-bottom: 1px solid var(--bs-primary);
}

/* buttons */
.btn {
	border-radius: 0;
	border: none;
	padding: 10px 15px;
}
.btn:hover,
.btn:focus {
	box-shadow: none;
}

.btn-sm {
	padding: 5px 10px;
	font-size: 14px;
}

.btn-primary {
	background-color: var(--bs-primary) !important;
	color: var(--bs-white);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:disabled {
	background-color: var(--bs-secondary) !important;
	color: var(--bs-white);
}

.btn-secondary {
	background-color: var(--bs-secondary);
	color: var(--bs-white);
}
.btn-secondary:hover,
.btn-secondary:focus {
	background-color: #555555;
	color: var(--bs-white);
}

/* header */
.header {
	display: block;
	position: relative;
	padding: 30px 0;
	background-color: var(--bs-white);
}
.header img {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 250px;
}
.header-infos {
	font-size: 20px;
	line-height: 2;
}
.header-infos i {
	display: inline-block;
	width: 30px;
}
.header-infos small {
	padding-left: 35px;
	font-weight: 600;
	font-size: 16px;
}
.header .slogan {
	text-align: center;
	font-weight: 600;
	color: var(--bs-primary);
	font-size: 20px;
	line-height: 1.5;
	font-style: italic;
}

/* nav */
.navbar {
	background-color: var(--bs-primary);
}
.navbar-nav {
	width: 100%;
}
.nav-item {
	width: 100%;
	text-align: center;
}
.nav-link {
	font-weight: 600;
	color: var(--bs-white);
	padding: 15px;
	transition: all .25s;
}
.nav-link:hover,
.nav-link:focus,
.nav-link.active {
	color: var(--bs-white) !important;
	opacity: 0.5;
}

.dropdown-menu {
	border-radius: 0;
	border: none;
	padding: 0;
	width: 280px;
}
.dropdown-item {
	padding: 5px 15px;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
	background-color: var(--bs-secondary);
	color: var(--bs-white);
}

.navbar-toggler {
	border-radius: 0;
	border: none;
	font-size: 32px;
	box-shadow: none !important;
	color: var(--bs-white);
}
.navbar-brand {
	color: var(--bs-white);
	font-weight: 600;
}

/* slider */
.slider {
	display: block;
	position: relative;
	min-height: 450px;
	border-bottom: 15px solid var(--bs-primary);
}

/* main */
.main {
	display: block;
	position: relative;
	padding: 45px 0;
	background-color: var(--bs-white);
}

/* aside */
.aside-section {
	display: block;
	padding: 30px;
	background-color: var(--bs-primary);
	color: var(--bs-white);
	margin-bottom: 15px;
	background-image: url('../img/logo-bg.png');
	background-position: left -50px bottom -50px;
	background-repeat: no-repeat;
	background-size: auto;
}
.aside-title {
	font-size: 20px;
	color: var(--bs-white);
}
.aside-text {
	text-align: start;
	line-height: 1.5;
}

/* footer */
.footer {
	display: block;
	position: relative;
	padding: 45px 0;
	background-color: #222;
	color: var(--bs-white);
	background-image: url('../img/logo-bg.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100px;
}
.footer a {
	color: var(--bs-white);
}
.footer a:hover {
	color: var(--bs-white);
	opacity: 0.5;
}

.pre-footer {
	padding: 45px 0;
	background-color: var(--bs-primary);
	color: var(--bs-white);
}
.pre-footer h3 {
	color: var(--bs-white);
	margin-bottom: 15px;
}

.pre-footer .row-grid [class*="col-"]:nth-child(1) {
	border-right: 1px solid #bcd669;
}
.pre-footer .row-grid [class*="col-"]:nth-child(2) {
	border-right: 1px solid #bcd669;
}

.to-top {
	position: absolute;
	top: -70px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 50px;
	height: 50px;
	font-size: 25px;
	background-color: #222;
	border: 3px solid var(--bs-primary);
	transition: all .25s;
}
.to-top:hover {
	opacity: 1 !important;
	background-color: var(--bs-primary);
	border-color: var(--bs-secondary);
}

/* card */
.card {
	border-radius: 0;
	border: none;
	margin: 15px 0;
}
.card-img-top {
	border-radius: 0;
}
.card-body {
	padding: 0;
}
.card-title {
	margin: 0 0 5px 0;
	font-size: 22px;
	line-height: 1.5;
}
.card-text {
	color: var(--bs-color) !important;
	line-height: 1.5;
	font-size: 14px;
	text-align: justify;
}
.card-img {
	height: 100%;
	min-height: 300px;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 0;
}
.card-link {
	margin-top: 15px;
	font-weight: 600;
	display: block;
	text-align: end;
	font-size: 16px;
}

.card-inline {
	background-color: var(--bs-tertiary);
	padding: 0;
}
.card-inline .card-img-outer {
	display: block;
	position: relative;
}
.card-inline .card-img {
	width: 100%;
	max-width: 300px;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	display: block;
	margin: 0 auto;
}
.card-inline .card-body {
	padding: 30px 30px 30px 30px;
	background-color: var(--bs-tertiary);
}

/* ACCORDION */
.accordion {
	margin-bottom: 15px;
}
.accordion-item {
	border: none;
	margin-bottom: 15px;
}
.accordion-button {
	background-color: var(--bs-tertiary);
	box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
	background-color: var(--bs-secondary);
	color: var(--bs-white);
}
.accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23444444' class='bi bi-plus-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3E%3C/svg%3E");
	--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-dash-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3E%3C/svg%3E");
}

/* FORM */
.form-group {
	margin-bottom: 15px;
}
.form-label {
	font-weight: 600;
}
.form-control,
.form-select {
	border-radius: 0;
}
.form-control:focus,
.form-select:focus {
	box-shadow: none;
	border-color: var(--bs-primary);
}

.has-error .form-label,
.has-error .form-check-label,
.has-error .help-block {
	color: var(--bs-danger);
}
.has-error .form-control,
.has-error .form-select {
	border-color: var(--bs-danger);
}

#danke {
	display: none;
}

/* 3C CMS */
h1.item3c-title,
h2.item3c-title,
h3.item3c-title,
h4.item3c-title,
h5.item3c-title,
h6.item3c-title {
	font-family: 'Poppins', sans-serif;
	color: var(--bs-secondary);
}
.item3c-box {
	padding: 30px;
	background-color: var(--bs-tertiary);
}
.item3c-box .item3c-title {
	font-family: 'Poppins', sans-serif;
	font-size: 22px;
}
.item3c-btn {
	background-color: var(--bs-primary);
}

.item3c-detail {
	padding: 0;
	box-shadow: none;
}

/* TABS */
.nav-pills .nav-item {
	width: auto;
}
.nav-pills .nav-link {
	background-color: var(--bs-white);
	color: var(--bs-secondary);
	padding: 5px 15px;
	margin-right: 5px;
}
.nav-pills .nav-item:last-child .nav-link {
	margin-right: 0;
}
.nav-pills .nav-link:hover,
.nav-pills .nav-link.active, 
.nav-pills .show > .nav-link {
	background-color: var(--bs-primary);
}


/* MODAL */
.modal-content {
	border-radius: 0;
	border: none;
}
.modal-header {
	padding: 30px;
}
.modal-body {
	padding: 30px;
}

/* 3C */
.item3c-row {
  display: flex;
  flex-direction: row;
  margin: 0 0 0 -15px;
  width: calc(100% + 30px);
}
.item3c-col {
  width: 100%;
  max-width: 100%;
}
.item3c-box .item3c-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
	margin-bottom: 0;
}
.item3c-box {
  display: block;
  margin-bottom: 15px;
  box-shadow: 3px 3px 5px 0 rgba(0,0,0,0.25);
  position: relative;
  transition: all .25s;
	padding: 30px;
  background-color: var(--bs-tertiary);
}
a.item3c-box:hover {
  box-shadow: 0 0 5px 0 rgba(0,0,0,0.25);
}
.item3c-btn {
  border: none;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  padding: 10px 15px;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  display: inline-block;
  width: max-content;
  text-align: center;
}
.item3c-btn:hover {
  background-color: var(--bs-secondary);
  color: var(--bs-white);
}


/* MOBIL */
@media (max-width: 1399.98px) {}
@media (max-width: 1199.98px) {  
	/* CARD */
	.card-inline .card-img {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}
}
@media (max-width: 991.98px) { 
	h1, .h1 { font-size: 32px; }
	h2, .h2 { font-size: 28px; }
	h3, .h3 { font-size: 24px; }
	h4, .h4 { font-size: 22px; }
	h5, .h5 { font-size: 18px; }
	h6, .h6 { font-size: 18px; }
	
	/* slider */
	.slider {
		min-height: 350px;
	}
	
	/* slider */
	.nav-link {
		text-align: start;
		padding: 5px 0;
	}
	
	.dropdown-menu {
		width: 100%;
	}
	
	/* CARD */
	.card-inline {
		padding: 0;
	}
	.card-inline .card-img {
		width: 100%;
		max-width: 100%;
	}
	
	/* FOOTER */
	.pre-footer .row-grid [class*="col-"]:nth-child(1) {
		border-right: 1px solid #bcd669;
	}
	.pre-footer .row-grid [class*="col-"]:nth-child(2) {
		border-right: none;
	}
	.pre-footer .row-grid [class*="col-"]:nth-child(3) {
		border-top: 1px solid #bcd669;
		padding-top: 15px;
	}
	.footer {
		background-image: none;
	}
}
@media (max-width: 767.98px) {  
	/* header */
	.header .slogan {
		font-size: 14px;
	}
	
	/* slider */
	.slider {
		min-height: 250px;
	}
	
	/* FOOTER */
	.pre-footer .row-grid [class*="col-"]:nth-child(1) {
		border-right: none;
	}
	.pre-footer .row-grid [class*="col-"]:nth-child(2) {
		border-right: none;
		border-top: 1px solid #bcd669;
		padding-top: 15px;
	}
	.pre-footer .row-grid [class*="col-"]:nth-child(3) {
		border-top: 1px solid #bcd669;
		padding-top: 15px;
	}
}
@media (max-width: 575.98px) {  }