@import url('fonts.css');
@import url('bootstrap-icons.min.css');

:root {
  --bs-primary: #4cba3d;
  --bs-secondary: #00007f;
  --bs-tertiary: #333333;
}

html, body {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--bs-tertiary);
  height: 100%;
}

/* TYPOGRAPHY */
h1, .h1, 
h2, .h2, 
h3, .h3, 
h4, .h4, 
h5, .h5, 
h6, .h6 {
  font-family: 'Roboto Slab', 'Montserrat', sans-serif;
  font-weight: 600;
  margin: 30px 0 30px 0;
  line-height: 1.25;
  text-transform: uppercase;
}
h1, .h1 {
  margin-top: 0;
  font-size: 45px;
}
h2, .h2 {
  font-size: 40px;
}
h3, .h3 {
  font-size: 35px;
}
h4, .h4 {
  font-size: 30px;
} 
h5, .h5 {
  font-size: 25px;
} 
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 {
  letter-spacing: 0;
  font-weight: 300;
  margin-left: 30px;
}

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: var(--transition);
}
a:hover {
  color: var(--bs-secondary);
  text-decoration: none;
}

small {
  font-size: 65%;
  display: block;
  font-weight: 300;
}

strong,
.fw-bold,
b {
  font-weight: 600;
}

hr {
  display: block;
  margin: 30x 0;
}

.text-primary {
  color: var(--bs-primary) !important;
}

/* LISTS */
ol.ol {
  margin:0 0 1.5em;
  padding:0;
  counter-reset:item;
}
ol.ol>li {
  margin:0;
  padding:0 0 0 25px;
  text-indent:-2em;
  list-style-type:none;
  counter-increment:item;
  text-align: justify;
  -moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens: auto;
  margin-bottom: 10px;
}
ol.ol>li:before {
  display:inline-block;
  width:38px;
  padding-right:0.5em;
  font-weight:bold;
  text-align:right;
  content:counter(item) ".";
}
ol.ol>li:last-child {
  margin-bottom: 0;
}

ul {
  list-style-image: url('../img/ul.png');
  padding-left: 25px;
}

.headline-list {
  list-style: none;
  padding-left: 0;
}
.headline-list li {
  font-weight: 600;
  font-family: 'Roboto Slab', 'Montserrat', sans-serif;
  font-size: 25px;
  padding-left: 20px;
  position: relative;
}
.headline-list li::before {
  content: '...';
  display: inline-block;
  font-weight: 600;
  position: absolute;
  left: 0;
}

/* 3C */
.item3c-pagination-a {
  border-radius: 15px;
  background-color: var(--bs-tertiary);
  color: var(--bs-white);
}
.item3c-pagination-a:hover,
.item3c-pagination-a.active {
  background-color: var(--bs-secondary);
  color: var(--bs-white);
}

/* IMAGES */
.img-content {
  border-radius: 15px;
}

/* BUTTONS */
.btn  {
  border-radius: 15px;
  border: none;
  padding: 20px 20px;
  font-weight: 400;
  font-size: 18px;
}

.btn-primary {
  background-color: var(--bs-primary) !important;
  color: var(--bs-white);
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #409c34 !important;
  color: var(--bs-white);
}

.btn-secondary {
  background-color: var(--bs-secondary) !important;
  color: var(--bs-white);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #00006b !important;
  color: var(--bs-white);
}

/* BACKGROUND */
.bg-primary {
  background-color: var(--bs-primary) !important;
  color: var(--bs-white);
}
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6,
.bg-primary a {
  color: var(--bs-white);
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
  color: var(--bs-white);
}
.bg-secondary h2,
.bg-secondary h3,
.bg-secondary h4,
.bg-secondary h5,
.bg-secondary h6,
.bg-secondary a {
  color: var(--bs-white);
}

.bg-tertiary {
  background-color: var(--bs-tertiary);
  color: var(--bs-white);
}
.bg-tertiary h2,
.bg-tertiary h3,
.bg-tertiary h4,
.bg-tertiary h5,
.bg-tertiary h6,
.bg-tertiary a {
  color: var(--bs-white);
}

/* INFOLINE */
.infoline {
  display: block;
  position: relative;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 0;
  font-size: 16px;
  font-weight: 400;
}
.infoline i {
  display: inline-block;
  width: 20px;
}

/* NAVBAR */
.navbar {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  background-color: var(--bs-white) !important;
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 600;
  transition: all .25s;
}
.navbar-brand {
  display: inline-block;
  position: relative;
  padding: 0;
  overflow: hidden;
  transition: all .25s;
}
.navbar-brand img {
  display: block;
  width: 120px;
  transition: all .25s;
}
.navbar-nav {
  list-style: none;
}
.nav-link {
  font-family: 'Roboto Slab', 'Montserrat', sans-serif;
  font-weight: 600;
  color: #888;
  padding: 10px 15px !important;
  font-size: 20px;
}
.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--bs-tertiary) !important;
}
.fixed-top {
  position: fixed;
  top: 0;
  box-shadow: 0 0 15px 0 rgba(33, 33, 33, .25);
}
.fixed-top .navbar-brand img {
  width: 90px;
}
.nav-whatsapp {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  border-radius: 15px;
}
.nav-whatsapp:hover,
.nav-whatsapp:focus {
  background-color: #409c34;
  color: var(--bs-white) !important;
}

.navbar-toggler {
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 1;
  color: var(--bs-tertiary);
  box-shadow: none !important;
}
.navbar-toggler i {
  font-size: 42px;
  margin-left: 5px;
}

/* SUBNAV */
.subnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  flex-direction:row;
  z-index: 400;
  box-shadow: 0 0 15px 0 rgba(33, 33, 33, .25);
}
.subnav a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  width: 100%;
  height: 45px;
  font-size: 20px;
}
.subnav a:nth-child(even) {
  background-color: #3f9a33;
}

/* HEADER */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--bs-primary);
  min-height: calc(100% - 137px);
  margin-top: 137px;
  color: var(--bs-white);
}
.header::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  min-height: 100%;
  background-image: url('../img/header/1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header-small::before {
  display: none;
}
.header-small {
  min-height: 50px;
}
.header-content {
  display: block;
  position: relative;
  padding: 45px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.header-title {
  text-align: center;
  color: var(--bs-white);
  margin-top: 0;
  font-size: 45px;
  line-height: 1;
}
.header-text {
  text-align: center;
  color: var(--bs-white);
}
.header-text a {
  color: var(--bs-white);
}
.header-text a:hover {
  color: var(--bs-white);
  opacity: .5;
}

/* SECTION */
.section {
  display: block;
  position: relative;
  padding: 90px 0;
}

.section-text {
  padding: 45px;
  width: 100%;
  max-width: 1000px;
}
.section-split {
  padding: 15px 0;
}
.section-split::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  min-height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-split#section-split1::before {
  background-image: url('../img/section/1.jpg');
}
.section-split#section-split2::before {
  background-image: url('../img/section/2.jpg');
}

.bg-style1 {
  background-image: url('../img/bg/1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section-split#section-split1 {
  min-height: 825px;
}

/* FOOTER */
.footer {
  display: block;
  position: relative;
  background-color: #222;
  padding: 45px 0;
  color: #888;
}
.footer a {
  color: #888;
}
.footer a:hover {
  color: #666;
}
.footer-nav a {
  margin-right: 15px;
}
.footer-nav a:last-child {
  margin-right: 0;
}

/* CARD */
.card {
  position: relative;
  border: none;
  border-radius: 15px;
  background-color: #f3f3f3;
}
.card-title {
  font-size: 22px;
  margin-top: 0;
}
.card-text {
  font-size: 16px;
}
.card-body {
  position: relative;
  padding: 30px;
  border-radius: 15px;
}
.card-img {
  display: block;
  min-height: 100%;
  min-width: 220px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px 0 0 15px;
}
.card-special {
  display: flex;
  flex-direction: row;
  min-height: 100%;
}
.card-special .card-body {
  padding: 30px 30px 45px 30px;
}
.card-special .card-body {
  border-radius: 0 15px 15px 0;
}
.card-special .card-more {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: var(--bs-secondary);
}
.card-special .card-more:hover {
  opacity: .5;
}

.card-jobs {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23fff" class="bi bi-arrow-up-right-circle" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M5.854 10.803a.5.5 0 1 1-.708-.707L9.243 6H6.475a.5.5 0 1 1 0-1h3.975a.5.5 0 0 1 .5.5v3.975a.5.5 0 1 1-1 0V6.707z"/></svg>');
  background-repeat: no-repeat;
  background-position: center right 30px;
  background-size: 25px;
  padding-right: 45px;
}


/* FORM */
.form-label {
	font-weight: 600;
}
.form-group {
	margin-bottom: 15px;
}
.form-control,
.form-select {
	border-radius: 15px;
  border-color: var(--bs-tertiary);
}
.form-control:focus,
.form-select:focus {
	box-shadow: none;
	border-color: var(--bs-primary);
}

.input-group-text {
	border-radius: 0;
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
	color: var(--bs-white);
}

.has-error .form-control,
.has-error .form-select {
	border-color: var(--bs-danger);
}
.has-error .form-label,
.has-error .form-check-label,
.has-error .help-block {
	color: var(--bs-danger);
}

#danke {
	display: none;
}

/* ACCORDION */
.accordion-item {
  margin-bottom: 5px;
  border-radius: 15px !important;
  border: none;
}
.accordion-button {
  border: none;
  border-radius: 15px !important;
  box-shadow: none !important;
  padding: 10px 15px;
  font-size: 16px;
}
.accordion-button:not(.collapsed) {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
  font-size: 16px;
  text-align: justify;
  -moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens: auto;
}


/* MOBIL */
@media (max-width: 1399.98px) {
  /* HEADER */
  .header-title {
    font-size: 32px;
  }

  .section-split#section-split1 {
    min-height: 991px;
  }
}
@media (max-width: 1199.98px) {
  /* LISTS */
  ol.ol>li {
    padding-left: 15px;
  }

  /* CARD */
  .card-img {
    display: block;
    min-height: 220px;
    min-width: 100%;
    border-radius: 15px 15px 0 0;
  }
  .card-special {
    min-height: auto !important;
    flex-direction: column;
  }

  /* SECTION */
  .section-text {
    padding: 90px 15px 90px 15px;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
  }
  .section-split {
    padding: 0;
  }
  .section-split::before {
    position: relative;
    width: 100%;
    min-height: 420px;
  }

  /* NAV */
  .nav-link {
    font-size: 18px;
  }
}
@media (max-width: 991.98px) {
  body {
    font-size: 18px;
  }

  /* TYPOGRAPHY */
  h1, .h1 {
    font-size: 30px;
    line-height: 1.25;
  }
  h2, .h2 {
    font-size: 25px;
    line-height: 1.25;
  }
  h3, .h3 {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
  }
  h4, .h4 {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
  } 
  h5, .h5 {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
  } 
  h6, .h6 {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
  }

  /* INFOLINE */
  .infoline {
    display: none;
  }

  /* HEADER */
  .header {
    margin-top: 0;
  }
  .header-small {
    min-height: calc(137px + 50px);
  }
  .header::before {
    position: relative;
    width: 100%;
    margin-top: 137px;
    min-height: 300px;
    background-image: url('../img/header/1_sm.jpg');
  }
  .header-content {
    padding: 90px 15px;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: start;
  }
  .header-title, 
  .header-text {
    text-align: start;
  }
  .header-title {
    font-size: 25px;
  }

  /* NAV */
  .navbar-nav {
    padding-top: 15px;
  }
  .nav-link {
    padding: 5px 0 !important;
    font-size: 20px;
  }
  .nav-whatsapp {
    display: none;
  }

  /* SUBNAV */
  .subnav {
    display: flex;
  }

  /* SECTION */
  .section-text {
    padding: 90px 15px 90px 15px;
    max-width: 720px;
  }
  .section-split {
    padding: 0;
  }
  .section-split::before {
    min-height: 320px;
  }

  /* FOOTER */
  .footer {
    margin-bottom: 45px;
  }

  /* CARD */
  .card-title {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  /* LIST */
  .headline-list li {
    font-size: 18px;
    padding-left: 16px;
  }

  /* HEADER */
  .header-content {
    padding: 60px 15px;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }
  .header-title {
    font-size: 22px;
  }

  /* SECTION */
  .section {
    padding: 60px 0;
  }
  .section-text {
    padding: 60px 15px 60px 15px;
    max-width: 540px;
  }
  .section-split {
    padding: 0;
  }
}
@media (max-width: 575.98px) {
  /* HEADER */
  .header-content {
    padding: 30px 0;
  }

  /* SECTION */
  .section {
    padding: 30px 0;
  }
  .section-text {
    padding: 30px 0;
    max-width: 100%;
  }
  .section-split {
    padding: 0;
  }
}