/*==============================================================================
-- GENERAL
==============================================================================*/

html {
  height: 100%;
  width: 100%;
}

body{
  padding: 0px;
  margin: 0px;
  height: 100%;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  color: #252525;
  overflow-x: hidden;
  line-height: 175%;
  background-color: #FFFFFF;
  position: relative;
}

a{
  color: #cd9f16;
}

h1{
  margin: 0px;
  padding: 0px;
  margin-bottom: 40px;
  color: #025590;
  font-size: 40px;
  text-align: center;
}

h2{
  margin: 0px;
  padding: 0px;
  margin-bottom: 40px;
  color: #025590;
  font-size: 20px;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
}

h3{
  margin: 0px;
  padding: 0px;
  color: #025590;
  font-size: 40px;
}

h4{
  margin: 0px;
  padding: 0px;
  margin-bottom: 20px;
  color: #025590;
  font-size: 20px;
  text-align: left;
}

img{
  margin: 0px;
  max-width: 100%;
}

/*==============================================================================
-- HEADER
==============================================================================*/

header {
  width: 100%;
  height: 100vh;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  /*background-image: url("../img/bg1.jpg");*/
  background-image: url("../img/main_cover_2.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

header > div {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header > .header-bottom {
  justify-content: center;
}

.header-top {
  height: 130px;
  transition: background .3s ease;
  background-color: transparent;
  position: fixed;
  z-index: 200;
}

.header-top.visible-background {
  background-color: #ffffff;
}

.header-logo {
  height: 100%;
  padding: 10px 20px;
}

.header-logo > img {
  height: 75px;
}

.header-nav nav ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0px;
  list-style: none;
  justify-content: center;
}

.header-nav nav li {
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  border-right: 1px solid #cd9f16;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: top;
}

.header-nav nav li:last-child {
  border-right: 0px
}

.header-nav nav a {
  font-size: 18px;
  text-transform: uppercase;
  color: #cd9f16;
  text-decoration: none;
  transition: text-decoration .3s ease;
}

header .nav-down-container {
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 100px;
  position: relative;
}

header .nav-down-arrow {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border-bottom: 5px solid #cd9f16;
  border-right: 5px solid #cd9f16;
  border-radius: 4px;
  transform: rotate(45deg);
  top: 0px;
  transition: top .4s ease;
}

header .nav-down-arrow:hover {
  top: 15px;
}

header .header-menu-toggle {
  display: none;
  margin-right: 30px;
}

header .header-lang {
  padding: 20px;
  display: flex;
}

header .header-logo-text {
  display: flex;
  justify-content: space-between;
}

header .header-logo-text span {
  color: #cd9f16;
  font-size: 14px;
}

.header-lang a:first-child{
  border-right: 0px;
}

/*==============================================================================
-- BUTTONS
==============================================================================*/

.button {
  display: block;
  padding: 10px;
  text-decoration: none;
  transition: background .2s ease, border .2s ease;
  -webkit-transition: background .2s ease, border .2s ease;
  -moz-transition: background .2s ease, border .2s ease;
}

.button-gold {
  background: transparent;
  color: #cd9f16;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid #cd9f16;
}

.button-gold:hover, .button-gold:active {
  background: #cd9f16;
  color: #ffffff;
}

.button-blue {
  background-color: #025590;
  color: #cd9f16;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  border: 1px solid #025590;
}

.button-blue:hover, .button-blue:active {
  background-color: #ffffff;
  border-color: #cd9f16;
}

.button-full-size {
  width: 100%;
}

/*==============================================================================
-- MENU
==============================================================================*/

.nav-top {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 70px;
  right: 50px;
  border: 1px solid #cd9f16;
  background-color: #ffffff;
  padding: 12.5px;
  z-index: 150;
  cursor: pointer;
  opacity: 0;
  transition: opacity .4s ease, bottom .4s ease;
  -webkit-transition: opacity .4s ease, bottom .4s ease;
  -moz-transition: opacity .4s ease, bottom .4s ease;
}

.nav-top.show {
  opacity: 1;
  bottom: 50px;
}

.nav-top > div {
  width: 100%;
  height: 100%;
  transform: rotate(45deg);
  border-left: 1px solid #cd9f16;
  border-top: 1px solid #cd9f16;
  margin-top: 7px;
}

.mobile-menu {
  position: fixed;
  height: 100%;
  width: 300px;
  transition: left .4s ease;
  -webkit-transition: left .4s ease;
  -moz-transition: left .4s ease;
  top: 0px;
  left: 100%;
  background-color: #ffffff;
  z-index: 200;
  border-left: 1px solid #cd9f16;
}

.mobile-menu.active {
  left: calc( 100% - 300px );
}

.mobile-menu .menu-header {
  height: 100px;
}

.menu-toggle {
  display: inline-block;
  cursor: pointer;
}

.mt-bar-1, .mt-bar-2, .mt-bar-3 {
  width: 35px;
  height: 5px;
  background-color: #cd9f16;
  margin: 6px 0;
  transition: 0.4s;
  border-radius: 2.5px;
}

.active .mt-bar-1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}

.active .mt-bar-2 {opacity: 0;}

.active .mt-bar-3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-9px, -7px);
}

.mobile-menu nav ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0px;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0px;
  font-size: 18px;
}

.mobile-menu nav li, .mobile-menu .header-lang {
  width: 100%;
  text-align: left;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: .5rem 1.2rem;
}

.mobile-menu nav li a, .mobile-menu .header-lang a {
  text-decoration: none;
}


.mobile-menu nav li br {
  display: none;
}

.menu-header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-size: 18px;
}

.header-nav nav li.active a, .mobile-menu nav li.active a {
  text-decoration: underline;
}

/*==============================================================================
-- BODY
==============================================================================*/

.main-body {
  left: 0px;

  transition: left .4s ease;
  -webkit-transition: left .4s ease;
  -moz-transition: left .4s ease;

  position: absolute;
  width: 100%;
}

.main-body.inactive {
  left: -300px;
}

main > section, main > footer {
  padding: 50px 0px;
}

main > section:nth-child(even) {
  background-color: #f4f4f4;
}

.container-full-width {
  width: 100%;
  padding-right: 50px;
  padding-left: 50px;
}

.section-title {
  width: 100%;
  text-align: center;
}

.section-title h1 {
  color: #025590;
  border-bottom: 1px solid #025590;
  width: max-content;
  max-width: 100%;
  margin: 0px auto 40px;
}

.section-sub-title h4, .section-sub-title h6 {
  text-align: center;
}

main > footer > .footer-text {
  text-align: center;
}

main > footer .open-footer-block {
  cursor: pointer;
}

main > footer .footer-block {
  display: none;
}

main > footer .footer-block.active {
  display: block;
}

/*==============================================================================
-- FORM
==============================================================================*/

.form-element input, .form-element textarea {
  width: 100%;
  font-size: 18px;
  padding: .2rem .5rem;
  border: 1px solid #cd9f16;
}

.form-element {
  margin-bottom: 0.8rem;
  margin-top: 1rem;
}

/*==============================================================================
-- NEWS
==============================================================================*/

.item{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  border: 1px solid #cd9f16;
  font-size: 16px;
  height: 100%;
}

.item a{
  text-decoration: none;
  width: 100%;
}

.item .newsdate {
  margin-top: 0px;
}



.owl-dots, .owl-nav {
  display: none;
}

.owl-stage {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.owl-item {
  flex: 1;
}

.news-nav-button {
  display: block;
  width: 50px;
  height: 50px;
  border: 1px solid #cd9f16;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  z-index: 100;
  padding: 12.5px;
  cursor: pointer;
}

.news-nav-button > div {
  width: 100%;
  height: 100%;
  border-left: 1px solid #cd9f16;
  border-top: 1px solid #cd9f16;
}

.news-nav-button.news-nav-prev {
  left: -20px;
}

.news-nav-button.news-nav-prev > div {
  transform: rotate(315deg);
  margin-left: 7px;
}

.news-nav-button.news-nav-next {
  left: calc( 100% - 30px );
}

.news-nav-button.news-nav-next > div {
  transform: rotate(135deg);
  margin-left: -7px;
}

/*==============================================================================
-- ACCORDION
==============================================================================*/

.accordion-button {
  background-color: #ffffff;
  color: #025590;
  border: 1px solid #cd9f16;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  outline: none !important;
  font-size: 15px;
  transition: 0.4s;
  font-weight: 600;
  text-align: center;
}

.accordion-button:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordion-button.active:after {
  content: "\2212";
}

.accordion-panel {
  padding: 0px 0px;
  background-color: white;
  border-left: 1px solid #cd9f16;
  border-right: 1px solid #cd9f16;
  max-height: 0;
  overflow: hidden;
}

.accordion .accordion-panel:last-child {
  border-bottom: 1px solid #cd9f16;
}

.accordion-button.active + .accordion-panel {
  max-height: none;
  padding: 20px 0px;
}

/*==============================================================================
-- TEAM
==============================================================================*/
.team-item {
  width: 100%;
  border: 1px solid #cd9f16;
  padding: 30px;
}

.team-item-content > h5, .team-item-content > p {
  text-align: center;
}

.team-item-content p:last-child {
  margin-bottom: 0px;
}

.team-item-img {
  height: 200px;
  margin-bottom: 20px;
}

.team-item-img img, .team-item-img-placeholder {
  height: 100%;
  margin: auto;
  display: block;
  background-color: #d6d6d6;
}

/*==============================================================================
-- LEISTUNG
==============================================================================*/
.leistung-item .leistung-item-title h4 {
  text-align: center;
}

.leistung-item .leistung-item-img {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /*align-items: flex-start;*/
  justify-content: center;
}

.leistung-item .leistung-item-img img {
  max-width: 100px;
  margin: auto;
}

/*==============================================================================
-- RADIO CHECK
==============================================================================*/

.radio_check label {
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out
}
.radio_check {
	border-radius: 22px;
	float: right;
	height: 44px;
	overflow: hidden;
	width: 90px
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio_check label {
	background: none repeat scroll 0 0;
	cursor: pointer;
	padding-left: 20px;
	position: relative;
	width: 135px;
}
.radio_check input[type="checkbox"]:checked + label {
	background: none repeat scroll 0 0;
	transform: translateX(-44px);
	padding-right: 20px;
}
.radio_check label span {
	line-height: 44px;
}
.radio_check label span:first-child {
	float: left;
}
.radio_check label span:last-child {
	float: right;
}
.radio_check label::before {
	background: none repeat scroll 0 0;
	border-radius: 17px;
	content: "";
	height: 34px;
	position: absolute;
	right: 51px;
	top: 5px;
	width: 34px;
}

.check-switch > label {
	font-size: 15px;
	font-weight: 400;
	line-height: 22px;
  width: calc( 100% - 120px );
  margin-bottom: 0px;
}

.radio_check {
  border-radius: 22px;
  display: block;
  height: 46px;
  width: 100px;
	position: relative;
	overflow: hidden;
  border: 1px solid #cd9f16;
}
.radio_check input[type="checkbox"]{
	display: none
}
.radio_check label {
	padding:0 15px;
 transform: translateX(-2px);
	width: 156px;
	cursor: pointer;
	max-width: inherit
}
.radio_check input[type="checkbox"]:checked + label{
	transform:translateX(-56px)
}
.radio_check label span {
	line-height: 44px
}
.radio_check label span:first-child {
	float:left
}
.radio_check label span:last-child {
	float:right
}
.radio_check label::before {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 40px;
  left: 58px;
  position: absolute;
  top: 2px;
  width: 40px;
  z-index: 1;
}

.radio_check input[type="checkbox"]:checked + label {
  background-color: #025590;
  color: #fff !important;
}

/*==============================================================================
-- OTHER
==============================================================================*/

.display-none {
  display: none;
}

.checked-list {
  padding-left: 0px;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: max-content;
  margin: auto;
  max-width: inherit;
  border: 1px solid #cd9f16;
}

.checked-list li {
  list-style: none;
  text-align: center;
  flex: 1;
  padding: .2rem 1rem;
  border-bottom: 1px solid #cd9f16;
  /*color: #025590;*/
  /*color: #cd9f16;*/
}

.checked-list li:last-of-type {
  border-bottom: none;
}

.checked-list li:nth-child(odd) {
  background: #cd9f16;
  color: #ffffff;
}


/*==============================================================================
-- RESPONSIVE
==============================================================================*/

/*Small Screen*/
@media (max-width:1440px) {
  .header-nav nav, header .header-lang {
    display: none;
  }

  header .header-menu-toggle {
    display: block;
  }

  .header-logo > img {
    height: 100px;
  }
}

/*Tablet*/
@media (max-width:768px) {
  .container-full-width {
    padding-right: 25px;
    padding-left: 25px;
  }
  .header-logo > img {
    height: 75px;
  }
}

/*Handy*/
@media (max-width:425px) {
  h1 {
    font-size: 24px;
  }

  .container-full-width {
    padding-right: 15px;
    padding-left: 15px;
  }

  .news-nav-button {
    display: none;
  }
}
