/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/

:root {
  --primary-color: #D2A109;
  --secondary-color: #BF9206;
  --text-color: #091526;
  --white: #ffffff;
  --light-grey: #F9F9F9;
  color-scheme: only light;
}

/*--------------------------------------------------------------
# Body
--------------------------------------------------------------*/

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--text-color);
  font-size: 18px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/

@media (min-width: 1600px) {
.container {
    max-width: 1420px!important;
}
}

.abstand {
    margin-top: 120px;
    margin-bottom: 120px;
}

.abstandpadding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.abstandpaddingheader {
    padding-top: 64px;
    padding-bottom: 80px;
}

@media (max-width: 991px) {
.abstandlg {
    margin-bottom: 40px;
}
.abstandcol-lg {
    margin-bottom: 30px;
}
.abstandpadding {
    padding-top: 80px;
    padding-bottom: 80px;
}
}

@media (max-width: 767px) {
.abstandmd {
    margin-bottom: 40px;
}
}

.slidescroller {
    margin-top: -118px;
    padding-top: 118px;
}

@media (max-width: 1199px) {
.slidescroller {
    margin-top: -108px;
    padding-top: 108px;
}
}

@media (max-width: 991px) {
.slidescroller {
    margin-top: -92px;
    padding-top: 92px;
}
}

@media (max-width: 310px) {
.slidescroller {
    margin-top: -82px;
    padding-top: 82px;
}
}

/*--------------------------------------------------------------
# Backgrounds
--------------------------------------------------------------*/


.hero {
    width: 100%;
    height: calc(100vh - 118px);
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
    min-height: 100%;
}

.text-container {
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {
.text-container {
    width: 540px;
}
}

@media (min-width: 768px) {
.text-container {
    width: 720px;
}
}

@media (min-width: 992px) {
.text-container {
    width: 960px;
}
}

@media (min-width: 1200px) {
.text-container {
    max-width: calc(1140px / 2)!important;
    padding-left: 30px;
    padding-right: 80px;
}
.card-col {
  padding-right: 30px;
}
.card-col-home {
  padding-right: 30px;
  padding-left: 30px;
}
}

@media (min-width: 1600px) {
.text-container {
    max-width: calc(1420px / 2)!important;
    width: calc(1420px / 2)!important;
    padding-left: 30px;
    padding-right: 200px;
}
}

.bg-card {
  height: 100%;
  -webkit-clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
          clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
}

@media (min-width: 1200px) and (max-height: 600px) {
.hero {
    height: calc(600px - 118px);
}
}

@media (max-width: 1199px) {
.text-container {
  padding-top: 64px;
  padding-bottom: 80px;
}
.hero {
    height: 100%;
}
.bg-card {
  aspect-ratio: 1 / 1;
}
.card-col {
  padding-right: 30px;
  padding-left: 30px;
}
.card-col-home {
  padding-right: 30px;
  padding-left: 30px;
}
}

.bg-primary {
    background-color: var(--primary-color)!important;
}

.bg-light {
    background-color: var(--light-grey)!important;
}

/*--------------------------------------------------------------
# Typografie
--------------------------------------------------------------*/

a {
  color: var(--primary-color);
}

a:focus, a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

a.link-white {
  color: var(--white);
}

a:focus.link-white, a:hover.link-white {
  color: var(--white);
  opacity: 0.5;
}

h1 {
  font-size: 60px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
}

h2 {
  font-size: 60px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
}

h3 {
  font-size: 30px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
}

.marked {
  color: var(--secondary-color);  
}

.lead {
  font-weight: 400;
  font-size: 22px;
}

@media (max-width: 1199px) {
h1 {
  font-size: 40px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 24px;
}
.lead {
    font-size: 20px!important;
}
body {
  font-size: 17px;
}
}

@media (max-width: 991px) {
h1 {
  font-size: 32px;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 22px;
}
.lead {
    font-size: 20px!important;
}
body {
  font-size: 17px;
}
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn, .btn-lg {
    padding: 0.4rem 1.15rem 0.48rem 1.15rem;
    border-radius: 0;
    font-size: 18px;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
}

@media (min-width: 1200px) {
.btn-lg {
    padding: 0.45rem 1.25rem 0.51rem 1.25rem;
    border-radius: 0;
    font-size: 20px;
}
}

.btn-main {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-main:hover {
  color: var(--white);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-grey {
  color: var(--text-color);
  background-color: var(--light-grey);
  border-color: var(--light-grey);
}

.btn-grey:hover {
  color: var(--white);
  background-color: var(--text-color);
  border-color: var(--text-color);
}

.btn-outline-main {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-main:hover {
  color: var(--white);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-dark {
  color: var(--text-color);
  border-color: var(--text-color);
}

.btn-outline-dark:hover {
  color: var(--white);
  background-color: var(--text-color);
  border-color: var(--text-color);
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

.card {
  border: none;
  border-radius: 10px;
}

.dl-hr {
  border-color: var(--primary-color);
  margin-bottom: 0!important;
  margin-top: 40px;
}

@media (max-width: 991px) {
.dl-hr {
  display: none;
}
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

#navigation {
  z-index: 997;
  padding-top: 11px;
  padding-bottom: 11px;
  background: var(--white);
}

.navbar-logo {
  height: 70px;
}

@media (max-width: 1199px) {
.navbar-logo {
  height: 60px;
}
}

@media (max-width: 991px) {
.navbar-logo {
  height: 50px;
}
#main-menu {
    margin-top: 20px;
    margin-bottom: 6px;
}
#navigation {
  padding-top: 8px;
  padding-bottom: 8px;
}
}

@media (max-width: 310px) {
.navbar-logo {
  height: 40px;
}
}

.navbar-nav .nav-link, .nav-item {
  color: var(--text-color);
  font-size: 18px;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
  color: var(--primary-color);
}

.navbar-nav .show > .nav-link,
.navbar-nav .active > .nav-link,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-toggler {
  color: var(--primary-color);
  border: none;
  padding: 0;
  outline: none!important;
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: var(--primary-color);
  color: var(--white);
}

.dropdown-item.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.collapsed .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M7 4l19 19m0-19L7 23'/%3e%3c/svg%3e");
}


/*--------------------------------------------------------------
# Sidenavigation
--------------------------------------------------------------*/

#collapsesidenav {
	list-style-type: none;
  margin: 0;
  padding: 0;
}

#collapsesidenav ul {
	list-style-type: none;
  margin: 0;
  padding: 0;
}

#collapsesidenav .active a {
  color: var(--white);
}

#collapsesidenav a:hover {
  color: var(--white);
}

#collapsesidenav a {
  color: var(--white);
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  background-color: var(--text-color);
  color: var(--white);
}

/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/

.carousel-inner > .carousel-item {
    height: 400px;
    position: relative;
}

@media (max-width: 768px) {
.carousel-inner > .carousel-item {
    height: 250px;
    position: relative;
}
}

.carousel-inner img {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.85);
    
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transition-delay: 1000ms;
            transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-top: 10px;
    vertical-align: baseline;
}

.disclaimer-footer {
  text-align: right;
}

@media (max-width: 768px) {
.disclaimer-footer {
  text-align: left;
}
}

/*--------------------------------------------------------------
# Tiny MCE
--------------------------------------------------------------*/

.tox-tinymce {
  top: auto!important;
  bottom: 0!important;
  position: fixed!important;
}

.tox-form__group--stretched .tox-label {
  display: none!important;
}

.tox-form__group {
  margin-bottom: 10px!important;
}